.cookies {
    position: fixed;
    z-index: 8000;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    padding: 16px 25px;
    background: #e1e1e1;
    border-radius: 10px;
    color: #000;
}
.cookies__grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cookies__mobile {
    display: none;
}

.cookies__desktop {
    display: block;
}

.cookies__desc {
    margin-right: 25px;
}

.cookies__desc p {
    margin: 0;
    font-size: 13px ;
    color: #000;
}

.cookies__desc a {
    color: #3eb1ff !important;
}

.cookies__desc a:hover {
    color: #3eb1ff !important;
}

.cookies__btns {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.cookies__how {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 164px;
    height: 36px;
    border: 1px solid #fff;
    font-size: 16px;
    color: #fff;
    transition: 0.3s linear;
    border-radius: 6px;
}
.cookies__how:hover {
    border-color: #3eb1ff;
    background: #3eb1ff;
    color: #fff;
}
.cookies__agree {
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 164px;
    height: 36px;
    background: #3eb1ff;
    font-size: 18px;
    color: #fff;
    transition: 0.3s linear;
}
.cookies__agree:hover {
    background: #3eb1ff;
}

@media screen and (max-width: 1399px) {
    .cookies {
        left: 0;
        transform: none;
    }
}

@media screen and (max-width: 991px) {
    .cookies__grid {
        grid-template-columns: 30px 1fr 154px;
    }
    .cookies__btns {
        flex-direction: column;
    }
    .cookies__agree {
        width: 154px;
        margin-top: 5px;
    }
}

@media screen and (max-width: 575px) {
    .cookies__mobile {
        display: block;
    }
    
    .cookies__desktop {
        display: none;
    }

    .cookies {
        padding: 20px 0;
    }
    .cookies__grid {
        flex-direction: column;
    }

    .cookies__agree {
        margin-top: 0;
    }

    .cookies__desc {
        margin-right: 0;
        margin-bottom: 25px;
    }
    
    .cookies__desc p, .cookies__desc a {
        font-size: 18px ;
        font-family: "Inter";
        line-height: 1.3;
    }
}

@media screen and (max-width: 370px) {
    .cookies__how {
        width: 140px;
        font-size: 14px;
    }
    .cookies__agree {
        width: 140px;
        font-size: 16px;
    }
}

.requisites {
    margin-top:30px;
}
.requisites td {
    text-align: left;
    font-size: 0.9rem;
    padding: 10px 30px;
    border-bottom: 1px solid #eee;
}

.form-check {
    align-items: start;
    gap: 14px;
    display: flex;
}

.form-check input {
    margin-top: 6px;
}

.form-check label {
    text-align: left;
    font-size: 16px;
}

.form-check label a,
.footer-copyright a,
.foo-links a {
    border-bottom: 1px solid #b7c2cd;
}

.form-check label a:hover,
.footer-copyright a:hover,
.foo-links a:hover {
    border-bottom: 1px solid #fff;
}