/* ===== cookies ===== */
.cookies {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    display: none;
}
.cookies__body {
    background-color: white;
    box-shadow: 0 0 40px rgba(196, 196, 196, 0.25);
    /*padding: 15px 0;*/
}
@media screen and (max-width: 575.5px) {
    .cookies__body {
        padding: 10px 0;
    }
}
.cookies__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
@media screen and (max-width: 575.5px) {
    .cookies__row {
        flex-direction: column;
    }
}
.cookies__text {
    font-weight: 300;
    font-size: 12px;
    line-height: 150%;
    color: #212121;
    flex: 1 1 auto;
    margin-right: 30px;
}
.cookies__text a {
    color: #02B2C3;
}
@media screen and (max-width: 575.5px) {
    .cookies__text {
        margin: 0 0 20px 0;
        font-size: 10px;
    }
}
.cookies__btn {
    justify-content: center;
    line-height: 100%;
    letter-spacing: -0.03em;
    color: #333333;
    border: 2px solid #02B2C3;
    border-radius: 5px;
    font-size: 16px;
    padding: 12px 30px;
    font-weight: 500;
    width: fit-content;
    display: inline-block;
    cursor: pointer;
    transition: background-color ease 0.3s;
}
.cookies__btn:hover {
    background-color: #02B2C3;
    border: 2px solid #02B2C3;
    color: #ffffff;
}
@media screen and (min-width: 1920px) {
    .cookies__btn {
        padding: 1.78125vw 2.0833333333vw;
        font-size: 14px;
    }
}