/* style preloader */

.air-lds-ripple,
.air-lds-ripple div {
    box-sizing: border-box;
}

.air-lds-ripple {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
    color: #a3ca00;
}

.air-lds-ripple div {
    position: absolute;
    border: 4px solid currentColor;
    opacity: 1;
    border-radius: 50%;
    animation: air-lds-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

.air-lds-ripple div:nth-child(2) {
    animation-delay: -0.5s;
}

@keyframes air-lds-ripple {
    0% {
        top: 36px;
        left: 36px;
        width: 8px;
        height: 8px;
        opacity: 0;
    }
    4.9% {
        top: 36px;
        left: 36px;
        width: 8px;
        height: 8px;
        opacity: 0;
    }
    5% {
        top: 36px;
        left: 36px;
        width: 8px;
        height: 8px;
        opacity: 1;
    }
    100% {
        top: 0;
        left: 0;
        width: 80px;
        height: 80px;
        opacity: 0;
    }
}

.air-lds-ripple-hidden {
    opacity: 0;
}

.air-cookie-consent-banner {
    position: fixed;
    bottom: -300px;
    width: 100%;
    left: 0;
    transition: 0.3s all;
    z-index: 900;
    padding: 0;
    background: #222222CC;
}

.air-cookie-consent-banner.active {
    bottom: 0;
}

.air-cookie-consent-banner__actions {
    position: relative;
}

.air-cookie-consent-banner__container {
    position: relative;
    margin: 0 auto;
    padding: 40px 0 40px 0;
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: 0.6s all;
    gap: 24px;
    width: 100%;
    max-width: 1148px;
}

.air-cookie-consent-banner__container:hover {

}

.air-lds-ripple-consent {
    position: absolute;
    top: -22px;
    right: 0;
}

.air-cookie-consent-banner__button {
    border: 1px solid #92B700;
    color: #fff;
    cursor: pointer;
    transition: 0.3s all;
    white-space: nowrap;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 4px 12px;
    gap: 8px;
    width: 240px;
    min-width: 240px;
    height: 36px;
    background: #92B700;
    border-radius: 16px;
}

.air-cookie-consent-banner__button:hover {
    color: #fff;
    background: #898989;
    border: 1px solid #898989;
}

.air-cookie-consent-banner__text, .air-cookie-consent-banner__head {
    width: 884px;
    font-family: 'Roboto', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 130%;
    letter-spacing: -0.4px;
    color: #FFFFFF;
}

@media (max-width: 1279px) {
    .air-cookie-consent-banner__container {
        max-width: unset;
    }

    .air-cookie-consent-banner__text, .air-cookie-consent-banner__head {
        width: 650px;
    }

    .air-cookie-consent-banner__container {
        padding: 40px;
    }
}

@media (max-width: 1024px) {

    .air-cookie-consent-banner__text, .air-cookie-consent-banner__head {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .air-cookie-consent-banner__text, .air-cookie-consent-banner__head {
        text-align: center;
    }

    .air-cookie-consent-banner__container {
        padding: 40px;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        gap: 24px;
    }
}