

/* Start:/local/components/alif/calculator/templates/.default/style.css?17867814011058*/

.calculate-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(20, 28, 36, 0.6);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.calculate-overlay.is-active {
    display: flex;
}

.calculate-overlay__box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 32px 40px;
    background: #fff;
    border-radius: 16px;
}

.calculate-overlay__loader {
    width: 44px;
    height: 44px;
    border: 4px solid #E4E9EE;
    border-top-color: var(--color-accent, #2EBB72);
    border-radius: 50%;
    animation: calculate-overlay-spin 0.8s linear infinite;
}

.calculate-overlay__text {
    font-weight: 600;
    font-size: 15px;
    line-height: 120%;
    color: #32475A;
    text-align: center;
    margin: 0;
}

@keyframes calculate-overlay-spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}
/* End */
/* /local/components/alif/calculator/templates/.default/style.css?17867814011058 */
