#consent-overlay {
    background-color: rgba(0, 0, 0, 0.7);
    width: 100vw;
    height: 100vh;
    display: none;
    opacity: 0;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
}

#consent-overlay .panel {
    max-height: 80%;
    width: 40%;
    min-width: 600px;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    position: fixed;
    top: 50%;
    left: 50%;
    right: auto;
    bottom: auto;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    color: #525252;
    background-color: white;
    border: 0;
    -webkit-transition: width 0.5s ease-in;
    -moz-transition: width 0.5s ease-in;
    -ms-transition: width 0.5s ease-in;
    -o-transition: width 0.5s ease-in;
    transition: width 0.5s ease-in;
}

#consent-overlay .panel-heading {
    text-align: center;
    font-size: 20px;
    color: #233b76;
    background-color: #f5f5f5;
    border-color: #ddd;
}

#consent-overlay .panel-body {
    flex: 1;
    overflow-y: auto;
    padding: 15px;
}

#consent-overlay .panel-footer {
    padding: 10px 15px;
    background-color: #f5f5f5;
    border-top: 1px solid #ddd;
}

#consent-overlay details {
    padding-left: 5px;
}

#consent-overlay details > summary {
    display: list-item;
    cursor: pointer;
    font-weight: 600;
    color: #233b76;
    margin-bottom: 5px;
}

#consent-overlay .details-content {
    padding: 0 1em;
}

#consent-overlay .table td {
    width: auto !important;
    vertical-align: top !important;
}

#consent-overlay .table tr:hover {
    background: none !important;
}

#consent-overlay details:not(:last-of-type) {
    margin-bottom: 1em;
}