/* COOKIES */
.gv_sms_cookies {
    background-color: rgba(43, 49, 51, 0.6);
    color: #9A9A9A;
    padding: 40px 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    font-family: 'BankinterSans-Regular';
    font-weight: normal;
    font-size: 19px;
    line-height: 26px;
    display: none;
}

.gv_sms_cookies .gv_sms_cookies_wrapper {
    background-color: #FFF;
    position: absolute;
    padding: 40px 40px;
    max-height: 90%;
    min-height: 240px;
    width: 100%;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

.gv_sms_cookies.open {
    display: block;
}

.gv_sms_cookies .message__title {
    font-size: 24px;
    font-weight: 400;
    font-family: 'BankinterText-Regular';
    color: rgb(25, 27, 28);
    margin-bottom: 16px;
    line-height: 36px;
}

.gv_sms_cookies p {
    color: rgb(25, 27, 28);
    font-size: 14px;
    font-weight: 400;
    font-family: 'BankinterSans-Regular';
    line-height: 21px;
    margin-bottom: 24px;
}

.gv_sms_cookies p strong {
    font-family: 'BankinterSans-Bold';
    color: rgb(189, 67, 19);
}

.gv_sms_cookies button {
    border-radius: 32px;
    padding: 0 18px;
    font-size: 12px;
    font-family: 'BankinterSans-Regular';
    text-transform: uppercase;
    height: 48px;
    line-height: 48px;
    letter-spacing: 1.5px;
    display: inline-block;
    min-width: 150px;
    text-align: center;
    width: auto;
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    color: #191B1C;
    background-color: var(--primary-color);
    border: 1px solid var(--primary-color);
    margin-right: 24px;
    min-width: 185px;
}

@media screen and (max-width: 1023px) {
    .gv_sms_cookies .gv_sms_cookies_wrapper {
        left: 0;
        position: fixed;
        bottom: 0;
        transform: translate(0);
        top: auto;
        max-height: 92%;
        padding: 16px;
    }
}