#cookiedo-info-overlay {
    height: 0;
    width: 0;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    background-color: rgb(240,240,240);
    background-color: rgba(240,240,240, 1);
    overflow-x: hidden;
    /*transition: width 1.25s cubic-bezier(0.5, 0, 0.05, 2), height 1.25s cubic-bezier(0.5, 0, 0.05, 2);*/
    opacity: 0;
    transition: opacity .6s, width 1s linear 2s, height 1s linear 2s;
}
#cookiedo-info-overlay.on {
    width: 100%;
    height: 100%;
    /*border-bottom-right-radius: 100%;*/
    opacity: 1;
    transition: opacity .6s;
}

.overlay-grid {
    display: grid;
    grid-template-columns: 100%;
    grid-template-rows: auto;
    grid-template-areas:
            "consent";
}
/*privacy popup mobile*/

#cookiedo-privacy-popup {
    /*height: 200px;
    width: 300px;*/
    position: fixed;
    z-index: 9999;
    bottom: 10px;
    left: 10px;
    right: 10px;
    background-color: rgb(240, 240, 240);
    background-color: rgba(240, 240, 240, 1);
    overflow-x: auto;
    opacity: 1;
    transition: opacity .6s;
    padding: 1.4em;
    border-radius: 3px;
    max-width: 24em;
    -webkit-box-shadow: 0 0 20px 0px rgba(0, 0, 0, 0.35);
    box-shadow: 0 0 20px 0px rgba(0, 0, 0, 0.35);

}

.privacy-button-text, .save-consent {
    background-color: #93cab9;
    padding: 10px;
    float: right;
    margin-top: 10px;
    color: #3a4356;
    border-radius: 3px;
    cursor: pointer;
}

.privacy-popup-preferences {
    padding: 10px 10px 10px 0;
    margin-top: 10px;
}
#backdrop {
    height: 0;
    width: 0;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0, .9);
    overflow-x: hidden;
    /*transition: width 1.25s cubic-bezier(0.5, 0, 0.05, 2), height 1.25s cubic-bezier(0.5, 0, 0.05, 2);*/
    opacity: 0;
    transition: opacity .6s linear 1s, width 3s linear 2s, height 3s linear 2s;
}
#backdrop.on {
    width: 100%;
    height: 100%;
    /*border-bottom-right-radius: 100%;*/
    opacity: 1;
    transition: opacity .6s linear 3s;
}

/*cookie consents mobile*/
.cookie-consents {
    grid-area: consent;
    padding: 10% 10% 10% 10%;
}
.cookie-consents hr {
    border-top: 1px solid #cecece;
    margin: 5px 0 20px 0 !important;
    border-width: 0.1rem 0 0 0 !important;
}
.cookie-consents strong {
    text-decoration: underline;
}

.cookie-consents p {
    margin: 5px 0 0 0;
    color: #333;
    line-height: 1.4;
    font-size:  1.1em;
}

.functional-cookies {
    display: grid;
    grid-template-columns: 100%;
    row-gap: 16px;
}

.youtube-cookies {
    display: grid;
    grid-template-columns: 100%;
    row-gap: 16px;
}

.google-analytics-cookies {
    display: grid;
    grid-template-columns: 100%;
    row-gap: 16px;
}

#cookiedo-info-overlay > div > div.cookie-consents > div.youtube-cookies > span:nth-child(2) {
    justify-self: end;
    align-self: end;
}
#cookiedo-info-overlay > div > div.cookie-consents > div.google-analytics-cookies > span:nth-child(2) {
    justify-self: end;
    align-self: end;
}
#cookiedo-info-overlay > div > div.cookie-consents > div.functional-cookies > span:nth-child(2) {
    justify-self: end;
    align-self: start;
    font-weight: 600;
    color: #93cab9;
}
#close-overlay {
    background: none;
    border: 0;
    box-sizing: border-box;
    color: transparent;
    cursor: pointer;
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    right: 3%;
    letter-spacing: -0.5px;
    line-height: 90px;
    outline: none;
    overflow: hidden;
    padding: 10px 0 0;
    position: fixed;
    text-transform: uppercase;
    top: 5%;
    transition: all 0.2s ease-in;
    width: 100px;
    text-align: center;
    z-index: 9;
    display: none;
}

#close-overlay::before,
#close-overlay::after {
    background-color: #ced50c;
    content: '';
    display: block;
    height: 1px;
    left: 0;
    position: absolute;
    transform-origin: center left;
    transition: all 0.2s ease-in;
    width: 141.4214px;
    z-index: -1;
}

#close-overlay::before {
    top: 0;
    transform: rotate(45deg);
}

#close-overlay::after {
    bottom: 0;
    transform: rotate(-45deg);
}

#close-overlay:hover {
    color: #1D1D1B;
}

#close-overlay:hover::before,
#close-overlay:hover::after {
    height: 50px;
    transform: rotate(0deg);
}
.slide-in-bottom {
    -webkit-animation: slide-in-bottom 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) 1s both;
    animation: slide-in-bottom 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) 1s both;
}
/* ----------------------------------------------
 * Generated by Animista on 2020-4-15 23:29:11
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info.
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

/**
 * ----------------------------------------
 * animation slide-in-bottom
 * ----------------------------------------
 */
@-webkit-keyframes slide-in-bottom {
    0% {
        -webkit-transform: translateY(1000px);
        transform: translateY(1000px);
        opacity: 0;
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
    }
}
@keyframes slide-in-bottom {
    0% {
        -webkit-transform: translateY(1000px);
        transform: translateY(1000px);
        opacity: 0;
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
    }
}



.checkbox label:after,
.radio label:after {
    content: '';
    display: table;
    clear: both;
}
.checkbox .cr,
.radio .cr {
    position: relative;
    display: inline-block;
    border: 1px solid #a9a9a9;
    border-radius: .25em;
    width: 1.3em;
    height: 1.3em;
    float: left;
    margin-right: .5em;
}
.radio .cr {
    border-radius: 50%;
}
.checkbox .cr .cr-icon,
.radio .cr .cr-icon {
    position: absolute;
    font-size: .8em;
    line-height: 0;
    top: 50%;
    left: 20%;
}
.radio .cr .cr-icon {
    margin-left: 0.04em;
}
.checkbox label input[type="checkbox"],
.radio label input[type="radio"] {
    display: none;
}
.checkbox label input[type="checkbox"] + .cr > .cr-icon,
.radio label input[type="radio"] + .cr > .cr-icon {
    transform: scale(3) rotateZ(-20deg);
    opacity: 0;
    transition: all .3s ease-in;
}
.checkbox label input[type="checkbox"]:checked + .cr > .cr-icon,
.radio label input[type="radio"]:checked + .cr > .cr-icon {
    transform: scale(1) rotateZ(0deg);
    opacity: 1;
}
.checkbox label input[type="checkbox"]:disabled + .cr,
.radio label input[type="radio"]:disabled + .cr {
    opacity: .5;
}
.checkbox label {
    min-height: 0 !important;
    padding-left: 0 !important;
}
.checkbox {
    margin-top: 0 !important;
    margin-bottom:  0 !important;
}
.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}
.switch input {display:none !important;}
.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}
.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}
input:checked + .slider {
    background-color: #b8dcd1;
}
input:focus + .slider {
    box-shadow: 0 0 1px #2196F3;
}
input:checked + .slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}
.slider.round {
    border-radius: 34px;
}
.slider.round:before {
    border-radius: 50%;
}

.youtube-blocked-content {
    position: absolute;
    z-index: 2;
    width: 100%;
    height: 100%;
    background-color: #212121;
}

.youtube-blocked-content > div {
    transform: translate(-50%, -50%);
    top: 53%;
    left: 50%;
    position: relative;
    color: white;
    text-align: center;
    padding: 0 20px;
}
.youtube-blocked-content > div > div > a {
    color: #E91E63;
    text-decoration: underline;
    font-weight: 600;
}

.save-consent, .privacy-button-text {

    transition: all 0.5s;
    position: relative;
}
.save-consent::before, .privacy-button-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-color: rgba(255,255,255,0.2);
    transition: all 0.3s;
}
.save-consent:hover::before, .privacy-button-text:hover::before {
    opacity: 0 ;
    transform: scale(0.5,0.5);
}
.save-consent::after, .privacy-button-text::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0;
    transition: all 0.3s;
    border: 1px solid rgba(133,173,193,0.7);
    transform: scale(1.2,1.2);
    border-radius: 3px;
}
.save-consent:hover::after, .privacy-button-text:hover::after {
    opacity: 1;
    transform: scale(1,1);
}