﻿.consent-popup {
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    position: fixed;
    z-index: 1055;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
}

.consent-popup .consent-popup-container {
    width: 500px;
    flex-grow: 0;
    box-shadow: 
        0 1px 2px 0 rgba(16, 24, 40, 0.06), 
        0 1px 3px 0 rgba(16, 24, 40, 0.1);
    border: solid 2px black;
    background-color: #fafaf7;
}

@media (max-width: 576px) {
    .consent-popup .consent-popup-container {
        width: 300px;
    }
}

.consent-popup .line {
    margin: 20px 0 20px 0;
}

.consent-popup .title {
    font-size: 18px;
    font-weight: bold;
    line-height: 24px;
}

.st {
    font-family: NexaText, Arial, Helvetica, sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
}

.btn1 {
    padding: 15px 30px;
    text-align: center;
    min-width: 120px;
    background-color: black;
    color: white;
    transition: 0.3s ease-in-out;
    border: 1px solid black;
}

    .btn1:hover,
    .btn1.active {
        background-color: transparent;
        color: black;
        border-color: black;
    }

.btn1_gr {
    background-color: black;
    color: black;
    border-color: black;
}

    .btn1_gr:hover,
    .btn1_gr.active {
        background-color: black;
        color: white;
        border-color: black;
    }

.btn1_tr {
    background-color: transparent;
    color: black;
    border-color: black;
}

    .btn1_tr:hover,
    .btn1_tr.active {
        background-color: black;
        color: white;
        border-color: black;
    }

/* Replace this with your actual media query for md breakpoint */
@media (max-width: 768px) {
    .btn1_mdW100 {
        width: 100%;
    }
}

.btn1_svg {
    position: relative;
    padding-right: 40px;
}

    .btn1_svg svg {
        position: absolute;
        top: 50%;
        right: 0;
        transform: translate(-50%, -50%);
        fill: currentColor;
    }
