/* =============================
    Cookie consent Box
================================ */
.cc-box {
    position: fixed;
    bottom: 25px;
    z-index: 1050;
    right: 15px;
    max-width: 350px;
    background-color: rgb(37, 46, 57);
    color: #ffffff;
    padding: 15px;
}

.cc-box .note,
.cc-box .more a {
    font-size: 12px !important;
    line-height: 1.5;
}

.cc-box .more {
    margin-bottom: 20px;
}

.cc-box .more a {
    color: #ffffff;
    text-decoration: underline;
}

.cc-box .more a:hover {
    color: #f1f1f1;
}

.cc-box .btn {
    font-size: 12px !important;
}

.cc-box .btn-outline-light:hover {
color: #fff;
background-color: #193268;
border-color: #fff;
}

#cookie-popup.hidden {
    display: none;
}

.cookieconsent .modal .form-check-input:disabled ~ .cookieconsent .form-check-label,
.cookieconsent .form-check-input[disabled] ~ .cookieconsent .form-check-label {
    color: #242729;
}

/* ====================================
    Cookie consent CheckBox
======================================= */

.cookieconsent .form-group.form-check {
    position: relative;
    display: block;
    padding-left: 0rem;
}

.cookieconsent .form-check-label *,
.cookieconsent .form-check-label *::before,
.cookieconsent .form-check-label *::after {
    box-sizing: content-box !important;
}

.cookieconsent .form-check-label input {
    position: absolute;
    z-index: -1;
    opacity: 0;
}

.cookieconsent .form-check-label .label-titel {
    line-height: 1.54;
    font-size: 1.25rem;
    font-family: inherit;
    margin-top: -4px;
}

.cookieconsent .form-check-label {
    display: table;
    position: relative;
    /*    padding-left: 2.1rem;*/
    cursor: pointer;
    margin-bottom: .5rem;
}

.cookieconsent .form-check-label,
.cookieconsent .form-check-text,
.cookieconsent .form-check-btn {
    margin-left: 2.1rem;
}

.cookieconsent .form-check-btn {
    margin-top: 2.1rem;
}

.cookieconsent .form-check-label input[type="checkbox"] ~ .form-check-input-styled {
    position: absolute;
    top: 0;
    left: 0;
    height: 1.25rem;
    width: 1.25rem;
    background: #ffffff;
    transition: background 250ms;
    border: 1px solid #193268;
    border-radius: 0.125rem;
    margin-left: -2.1rem;
}

.cookieconsent .form-check-label input[type="radio"] ~ .form-check-input-styled {
    position: absolute;
    top: 0;
    left: 0;
    height: 1.25rem;
    width: 1.25rem;
    background: rgba(241, 245, 248, 1);
    transition: background 250ms;
    border: 1px solid rgba(184, 194, 204, 1);
    border-radius: 2.0rem;
    margin-left: -2.1rem;
}

.cookieconsent .form-check-label input[type="checkbox"] ~ .form-check-input-styled::after {
    content: '';
    position: absolute;
    display: none;
    left: .45rem;
    top: .18rem;
    width: .25rem;
    height: .6rem;
    border: solid rgba(255, 255, 255, 1);
    border-width: 0 2px 2px 0;
    transition: background 250ms;
    transform: rotate(45deg);
}

.cookieconsent .form-check-label input[type="radio"] ~ .form-check-input-styled::after {
    content: '';
    position: absolute;
    display: none;
    left: .25rem;
    top: .25rem;
    width: .75rem;
    height: .75rem;
    border-radius: 2.0rem;
    background: rgba(255, 255, 255, 1);
    transition: background 250ms;
}

.cookieconsent .form-check-label input:disabled ~ .form-check-input-styled::after {
    border-color: rgba(135, 149, 161, 1);
}

.cookieconsent .form-check-label input:checked ~ .form-check-input-styled::after {
    display: block;
}

.cookieconsent .form-check-label:hover input ~ .form-check-input-styled,
.cookieconsent .form-check-label input:focus ~ .form-check-input-styled {
    background: rgb(231, 238, 243);
}

.cookieconsent .form-check-label input:focus ~ .form-check-input-styled {
    box-shadow: 0 0 0 2px rgba(52, 144, 220, 0.5);
}

.cookieconsent .form-check-label input:checked ~ .form-check-input-styled {
    background: #193268;
    border-color: #193268;
}

.cookieconsent .form-check-label input[type="checkbox"]:disabled ~ .form-check-input-styled {
    background: rgba(241, 245, 248, 1);
    border-color: rgba(184, 194, 204, 1);
    opacity: 0.6;
    cursor: not-allowed;
}

.cookieconsent .form-check-label input[type="radio"]:disabled ~ .form-check-input-styled {
    background: rgba(241, 245, 248, 1);
    border-color: rgba(184, 194, 204, 1);
    opacity: 0.6;
    cursor: not-allowed;
}

.cookieconsent .form-check-label input[type="radio"]:disabled ~ .form-check-input-styled::after {
    background: rgba(135, 149, 161, 1);
}

.cookieconsent .form-check-label input:checked:focus ~ .form-check-input-styled,
.cookieconsent .form-check-label:hover input:not([disabled]):checked ~ .form-check-input-styled {
    background: #193268;
    border-color: #193268;
}

.cookieconsent .form-check-label .form-check-input-styled::before {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 3rem;
    height: 3rem;
    margin-left: -0.85rem;
    margin-top: -0.85rem;
    background: rgba(0, 130, 243, 1);
    border-radius: 2rem;
    opacity: .6;
    z-index: 99999;
    transform: scale(0);
}

@keyframes b-ripple {
    0% {
        transform: scale(0);
    }

    20% {
        transform: scale(1);
    }

    100% {
        opacity: 0;
        transform: scale(1);
    }
}

@keyframes b-ripple-duplicate {
    0% {
        transform: scale(0);
    }

    30% {
        transform: scale(1);
    }

    60% {
        transform: scale(1);
    }

    100% {
        opacity: 0;
        transform: scale(1);
    }
}

.cookieconsent .form-check-label input + .form-check-input-styled::before {
    animation: b-ripple 250ms ease-out;
}

.cookieconsent .form-check-label input:checked + .form-check-input-styled::before {
    animation-name: b-ripple-duplicate;
}

.cookieconsent .form-check-label .form-check-input-styled::before {
    visibility: hidden;
}

.cookieconsent .form-check-label input:focus + .form-check-input-styled::before {
    visibility: visible;
}

.cookieconsent .form-check-label:first-child .form-check-input-styled::before {
    visibility: hidden;
}
*:focus,
.form-check-input-styled {
    outline: none !important;
    box-shadow: none !important;
}