/*
* Modal: containers
*/
#cct .uk-modal-dialog {
    width: 960px;
    padding: 0;
}
#cct .uk-modal-body {
    padding: 10px 10px 15px 10px;
}
#cct .uk-modal-footer {
    padding: 10px;
}
#cct a,
#cct a:visited,
#cct a:hover {
    color: #1D1D1B;
    text-decoration: underline;
}

#cct.uk-modal .uk-close::after {
    content: '';
}
#cct.uk-modal .uk-close svg {
    display: block;
}
#cct.uk-modal .uk-close {
    right: 3px;
}
@media (min-width: 480px) {
    #cct.uk-modal .uk-close {
        right: 14px;
    }
    #cct .uk-modal-body {
        padding: 15px 20px 25px 20px;
    }
    #cct .uk-modal-footer {
        padding: 15px 20px;
        text-align: right;
    }
}

/*
* Modal: Fonts
*/
#cct {
    font-size: 14px;
    line-height: 1.2;
}
#cct h2 {
    font-size: 18px;
    font-weight: 500;
    margin: 5px 0 0 0;
}
#cct h3 {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.2;
    margin: 15px 0 0 0;
}
@media (min-width: 480px) {
    #cct,
    #cct h3 {
        font-size: 16px;
    }
    #cct h2 {
        font-size: 22px;
    }
}
@media (min-width: 960px) {
    #cct,
    #cct h3 {
        font-size: inherit;
    }
    #cct h2 {
        font-size: 26px;
    }
}
#cct p {
    margin: 15px 0;
}
#cct ul {
    list-style-type: none;
    padding: 0;
}
#cct li ul li {
    position: relative;
    padding: 8px 20px 8px 0;
    border-top: 1px solid #efefef;
}

/*
* Buttons
*/
#cct .buttons {
    margin-top: 15px;
}
#cct .uk-modal-body button,
.show-cct-btn {
    display: inline-block;
    font-family: inherit;
    font-size: 14px;
    margin-top: 5px;
    padding: 5px;
    border: 1px solid #e5e5e5;
    color: #222;
    background-color: #fff;
    cursor: pointer;
}
@media (min-width: 480px) {
    #cct .uk-modal-body button,
    .show-cct-btn {
        font-size: 16px;
    }
}
@media (min-width: 960px) {
    #cct .uk-modal-body button,
    .show-cct-btn {
        font-size: 18px;
    }
}
#cct .cookie-info-button {
    display: inline-block;
    position: absolute;
    top: 8px;
    right: 0px;
}
#cct .cookie-info-button a,
#cct .cookie-info-button a:visited,
#cct .cookie-info-button a:hover {
    color: #5e5e5e;
}
#cct .cookie-info-button .hide {
    display: none;
}

/*
* Cookie info: containers
*/
#cct .cct-cookie-info.active {
    display: block !important;
}
#cct .cct-cookie-info > *:last-child {
    margin-bottom: 10px;
}

/*
* Ask consent: containers 
*/
.ask-consent {
    font-size: 14px;
    line-height: 1.2;
    padding: 7px 8px;
    background-color: #efefef;
}
.ask-consent h3 {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 0;
}
.ask-consent h3 + p {
    margin-top: 0;
}
.ask-consent p:last-of-type {
    margin-bottom: 0;
}
@media (min-width: 480px) {
    .ask-consent,
    .ask-consent h3 {
        font-size: 16px;
    }
}
@media (min-width: 960px) {
    .ask-consent,
    .ask-consent h3 {
        font-size: inherit;
    }
}

/*
* Notification
*/
.uk-notification {
    font-size: 19px;
    left: 0;
    bottom: 0;
    margin-left: 0;
    width: 100%;
}
.uk-notification-message {
    font-size: inherit;
}

/*
* Cookie: toggle switch
*/
.toggle {
    cursor: pointer;
    display: inline-block;
}
.toggle-switch {
    display: inline-block;
    background: #ccc;
    border-radius: 16px;
    width: 34px;
    height: 20px;
    position: relative;
    vertical-align: middle;
    transition: background 0.2s;
}
.toggle-switch:before, .toggle-switch:after {
    content: "";
}
.toggle-switch:before {
    display: block;
    background: linear-gradient(to bottom, #fff 0%, #eee 100%);
    border-radius: 50%;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.25);
    width: 16px;
    height: 16px;
    position: absolute;
    top: 2px;
    left: 2px;
    transition: left 0.2s;
}
.toggle-checkbox:checked + .toggle-switch {
    /*background-color: #00A35D;*/
    background-color: #49B16F;
}
.toggle-checkbox:checked + .toggle-switch:before {
    left: 16px;
}
.toggle-checkbox {
    position: absolute;
    visibility: hidden;
}
.toggle-label {
    margin-left: 3px;
    position: relative;
    top: 2px;
}
.toggle.necessary {
    cursor: auto;
}