.cookie-overlay {
    display: none;
    position: fixed;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(6, 6, 19, 0.45);
    transition: all 350ms ease-out;
    overflow: auto;
    z-index: 10001;
}

.cookie-overlay .cookie-content {
    position: absolute;
    top: 80px;
    right: 0;
    background-color: white;
    width: 470px;
    padding: 32px 20px;
    font-size: 14px;
    border-radius: 4px 0 0 4px;
    z-index: 100;
}

@keyframes slideInFromRight {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(0);
    }
}

.cookie-overlay .cookie-content.visible {
    animation: 1s ease-out 0s 1 slideInFromRight;
}

.cookie-overlay .cookie-content h3 {
    padding-left: 15px;
    padding-bottom: 25px;
    line-height: 32px;
    font-size: 34px;
}

.cookie-overlay .cookie-content p {
    padding: 0 25px 15px 15px;
    line-height: 21px;
    font-size: 14px;
}

.cookie-overlay .cookie-content table {
    width: 432px;
    font-family: 'Open Sans';
    background-color: rgba(242, 242, 247, 1);
}

.cookie-overlay .cookie-content table tr:not(:last-child) {
    border-bottom: 1px solid rgba(9, 9, 89, 0.15);
}

.cookie-overlay .cookie-content th,
.cookie-overlay .cookie-content td {
    padding: 15px 5px;
    vertical-align: middle;
    text-align: center;
}

.cookie-overlay .cookie-content th {
    color: rgba(9, 9, 89, 1);
    font-weight: 600;
}

.cookie-overlay .cookie-content tr td:nth-child(3) {
    padding-right: 10px;
}

.cookie-overlay .cookie-content td > button.status {
    box-sizing: border-box;
    width: 172px;
    min-height: 54px;
    padding: 10px 25px;
    line-height: 17px;
    font-size: 12px;
    font-weight: 600;
    color: rgba(9, 9, 89, 1);
    border-radius: 4%;
}

.cookie-overlay .cookie-content td > button.status {
    background-color: rgba(9, 9, 89, 0.2);
}

.cookie-overlay .cookie-content td > button.status.active {
    background-color: rgba(9, 9, 89, 1);
    color: rgba(255, 255, 255, 1);
}

.cookie-overlay .cookie-content .description h4 {
    padding-left: 15px;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Open Sans';
}

.cookie-overlay .cookie-content .description {
    padding-top: 30px;
}

.cookie-overlay .cookie-content .description a {
    text-decoration: underline;
}

/* Mobile */
@media (max-width: 576px) {
    .cookie-overlay .cookie-content {
        width: 85%;
        top: 80px;
        padding: 20px 13px;
    }

    .cookie-overlay .cookie-content h3 {
        padding-bottom: 18px;
        padding-left: 10px;
        line-height: 23px;
        font-size: 24px;
    }

    .cookie-overlay .cookie-content p {
        padding: 0 0 15px 10px;
        line-height: 15px;
        font-size: 10px;
    }

    .cookie-overlay .cookie-content table {
        width: auto;
        font-size: 10px;
    }

    .cookie-overlay .cookie-content th {
        padding: 15px 10px;
    }

    .cookie-overlay .cookie-content td > button.status {
        width: 120px;
        padding: 5px 10px;
        line-height: 13px;
        font-size: 9px;
    }

    .cookie-overlay .cookie-content .description h4 {
        padding-left: 10px;
        font-size: 10px;
    }
}