.popup {
    width: 100%;
    max-width: 1920px;
    position: fixed;
    bottom: 10px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    animation: fadeIn 1s linear;
    z-index: 999;
    left: 50%;
    transform: translateX(-50%);
}

.popup .msgbox {
    width: 80%;
    color: black;
    background-color: #FCFCFC;
    text-align: center;
    padding: 10px;
    border-radius: 15px;
    line-height: normal;
    font-family: 'Lato', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
}

.popup .popuptext {
    font-size: 12px;
    font-family: "proxima-nova", sans-serif;
}

.popup .popuptext .ci_blue {
    color: #013970;
}

.popup button {
    border-radius: 15px;
    padding: 5px 10px 5px 10px;
    background-color: #154d86;
    margin-left: 10px;
    line-height: normal;
    font-size: 12px;
    font-family: "proxima-nova", sans-serif;
    border: 1px;
    text-transform: capitalize;
}

.popup button:hover {
    /* background-color: darkslategray; */
    color: white;
    text-transform: capitalize;
}

.disappear {
    opacity: 0 !important;
    display: none !important;
}

.hide {
    animation: fadeOut 0.2s linear;
    z-index: -1;
    opacity: 0;
}
.cookie-buttons {
    display: flex;
    gap: 10px; 
    justify-content: center; 
    flex-wrap: wrap; 
}

.cookie-buttons button {
    flex: 1; 
    min-width: 100px; 
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        z-index: 0;
    }
    100% {
        opacity: 1;
        z-index: 999;
    }
}

@keyframes fadeOut {
    0% {
        opacity: 1;
        z-index: 999;
    }
    100% {
        opacity: 0;
        z-index: -1;
    }
}

@media screen and (max-width: 767px) {
    .popup .msgbox {
        width: 90%;
        line-height: normal;
        flex-direction: column;
    }
    .popup .popuptext {
        font-size: 12px;
    }
    .popup button {
        margin-top: 5px;
        line-height: normal;
        font-size: 12px;
    }
}