.consent__backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 4;
}

.consent__content {
    position: fixed;
    top: 20%;
    left: 50%;
    width: 100%;
    background-color: #fff;
    z-index: 5;
    max-width: 900px;
    transform: translateX(-50%);
}

.consent__manage {
    display: none;
    position: fixed;
    top: 10%;
    left: 50%;
    width: 100%;
    background-color: #fff;
    z-index: 5;
    max-width: 600px;
    transform: translateX(-50%);
}

.consent__content h6,
.consent__manage h6 {
    padding: 20px 40px;
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    border-bottom: solid 1px #dfe4e8;
}

.consent__content p,
.consent__manage p {
    padding: 12px 60px;
    font-size: 16px;
    line-height: 24px;
}

.consent__content a,
.consent__manage a {
    text-decoration: underline;
}

.consent__content .buttons {
    padding: 0 60px 20px;
}

.consent__content .buttons .btn {
    margin-right: 30px;
}

.consent__content .buttons a {
    font-size: 16px;
    float: right;
    margin-top: 12px;
}

@media (min-width: 768px) {
    .consent__manage .scrollable {
        max-height: 400px;
        overflow-y: scroll;
    }
}

@media (min-width: 768px) and (max-height: 720px) {
    .consent__manage .scrollable {
        max-height: 240px;
    }
}

.consent__manage .confirm-label {
    padding: 0 0 0 96px;
    font-size: 16px;
    font-weight: bold;
    position: relative;
}

.consent__manage .confirm-label .checkbx {
    position: absolute;
    top: 1px;
    left: 60px;
    width: 24px;
    height: 24px;
    border: 1px solid #00287e;
    cursor: pointer;
}

.consent__manage .confirm-label .checkbx.checkbx--checked::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 15px;
    height: 15px;
    transform: translate(-50%, -50%);
    background: url('/assets/images/svg/ico-checked-blue.svg') no-repeat;
    background-size: cover;
}

.consent__manage .option {
    position: relative;
}

.consent__manage .option .option__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    z-index: 5;
    opacity: 0.45;
}

.consent__manage .button {
    text-align: center;
    padding: 10px 0 30px
}

@media (max-width: 768px) {
    .consent__content {
        top: 0;
        max-height: 100vh;
        overflow: scroll;
    }
    
    .consent__content p {
        padding: 12px 20px;
        font-size: 14px;
        line-height: 22px;
    }

    .consent__content .buttons {
        overflow: hidden;
    }

    .consent__content .buttons .btn {
        display: block;
        width: 100%;
        max-width: 240px;
        margin: 20px auto;
    }

    .consent__manage {
        top: 0;
        height: 100vh;
        overflow: scroll;
    }
}