.cookies-overlay {
    display: grid;
    align-items: center;
    justify-content: center;
    position: fixed;
    background-color: rgba(0, 0, 0, .8);
    font-weight: 300;
    padding: 15px;
    left: 0;
    top: 0;
    visibility: hidden;
    opacity: 1;
    width: 100%;
    height: 100vh;
    z-index: 60;
    transition: opacity .5s ease-in-out;
}

.cookies-overlay a {
    /*color: #00af00;*/
    color: #342b3b;
    font-weight: 300;
    text-decoration: underline;
}

.cookies-overlay.hide {
    visibility: hidden;
    opacity: 0;
}

.cookies-modal {
    font-family: 'Poppins', sans-serif;
    max-width: 600px;
    background-color: #fff;
    color: #342b3b;
    padding: 20px 25px;
    border-radius: 3px;
}

.cookies-modal__title {
    font-size: 19px;
    font-weight: 600;
    margin-bottom: 15px;
}

.cookies-modal__content {
    font-size: 15px;
    font-weight: 300;
    line-height: 1.4;
}

.cookies-modal__content:not(:last-child),
.cookies-modal__btn:not(:last-child) {
    margin-bottom: 20px;
}

.cookies-modal__btn {
    display: block;
    font-size: 15px;
    border: none;
    background-color: transparent;
    cursor: pointer;
    padding: 0;
}

.cookies-modal__btn--accept {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 600;
    color: #fff;
    background-color: #00af00;
    padding: 15px;
    width: 100%;
    text-align: left;
    border-radius: 3px;
    transition: background-color .3s ease-in-out;
}

.cookies-modal__btn--accept:hover {
    background-color: #298129;
}

.cookies-modal__btn--accept svg {
    width: 23px;
    height:  23px;
    fill: #fff;
}

.cookies-modal__btn--opt-out {
    color: #575757;
    font-weight: 400;
    text-decoration: underline;
}

@media (max-width: 576px)  {
    .cookies-modal {
        padding: 15px;
    }
}
