.cookies {
    /*display: none; */
    position: fixed;
    bottom: 0;
    background: aliceblue;
    width: 100%;
    background: rgba(48, 48, 48, 0.80);
    z-index: 101;
}
.cookies .text{
    color: #FFF;
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 160%;
}
.cookies .text a{
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: none;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
    color: #FFF;
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 160%;
}
.cookies .btm-cookies{
    display: flex;
    height: 45px;
    padding: 0px 30px;
    justify-content: space-between;
    align-items: center;
    color: #192F7C;
    text-align: center;
    font-family: Montserrat;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    border-radius: 5px;
    border: 1px solid #192F7C;
    background: #FFF;
    cursor: pointer;
}
.cookies .btm-cookies:hover{
    color: rgba(48, 48, 48);;
}
.cookies .contain {
    display: flex;
    padding: 20px 0;
    flex-direction: row;
    align-items: center;
    gap: 40px;
}

@media (max-width: 992px) {
    .cookies .text a,
    .cookies .text{
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .cookies .contain {
        display: flex;
        padding: 20px 0;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        flex-wrap: nowrap;
    }
    .cookies .btm-cookies,
    .cookies .text a,
    .cookies .text {
        font-size: 12px;
    }
}