/*------------------------
    Cookie Modal
-------------------------*/
@media only screen and (max-width: 768px) {
    .cookie-consent-modal {
        align-items: center !important;
    }

    .cookie-consent-modal .content {
        border-radius: 10px;
        padding: 10vw 10vw !important;
    }
}

.cookie-consent-modal {
    transition: all ease 1s;
    height: 100vh;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99999;
    display: none;
    align-items: flex-end;
}

.cookie-consent-modal a {
    color: blue;
}

.cookie-consent-modal .content {
    transition: all ease 1s;
    background-color: #fff;
    padding: 3vw 10vw;
    width: 100%;
    border-radius: 10px 10px 0 0;
}

.cookie-consent-modal.active {
    display: flex;
}

.cookie-btn {
    font-size: 15px;
    line-height: 40px;
    text-transform: unset;
    padding: 5px 30px 5px 30px;
    letter-spacing: normal;
}