/*=======================POLICY==================*/

.policy__container {
    padding: 50px 150px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.policy__main {
    text-align: center;
    line-height: 1.3;
}

.policy__all {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.policy__box {
    display: flex;
    flex-direction: column;
    gap: 20px;
    
}

.policy__subtitle {
    display: table;
        margin: 0 auto;
        font-weight: 600;
        text-align: center;
        border-bottom: 2px solid white;
}


.policy__subbox {
    display: flex;
    gap: 40px;
}

.policy__info {
    line-height: 1.2;
    font-size: 16px;
}

@media (max-width: 991.98px) {
    .policy__container {
        padding: 25px 50px;
    }
}
@media (max-width: 600px) {
    .policy__container {
        padding: 15px 15px;
    }
    .policy__main {
            line-height: 1.3;
            font-size: 17px;
            font-weight: 600;
            padding-top: 20px;
    }
    .policy__info {
        line-height: 1.4;
        font-size: 17px;
        font-weight: 500;
    }
}

/*=============FOOTER===============*/
.footer {
    padding-bottom: 100px !important;
}

.footer__bottom {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.footer__link {}

.footer__bottom-info {}

@media (max-width: 767.98px) {
    .footer {
            padding-bottom: 100px !important;
        }
}
@media (max-width: 475.98px) {
    .footer__bottom {
            bottom: 50px;
        gap: 12px;  }
}


/*==============COOKIE===============*/

.cookie-popup {
    position: fixed;
    bottom: 20px;

    max-width: 500px;
    background: #000;
    color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    display: none;
    font-size: 14px;
    line-height: 1.3;
}

.cookie-popup a {
    color: #007bff;
    text-decoration: underline;
}

.cookie-buttons {
    margin-top: 15px;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.cookie-buttons button {
    padding: 8px 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

#accept-cookies {
    background-color: white;
    color: #000;
    font-weight: 500;
}

#reject-cookies {
background-color: white;
    color: #000;
    font-weight: 400;
}
