.gdprModal {
    position: fixed;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: flex-end;
    -ms-flex-align: flex-end;
    align-items: flex-end;
    top: 100%;
    width: 100%;
    height: 0;
    left: 0;
    /* background: rgba(0, 0, 0, .8); */
    opacity: .01;
    -webkit-transition: opacity .4s ease;
    transition: opacity .4s ease;
    z-index: 99999;
    box-shadow: 0 3px 6px rgb(0 0 0 / 24%), 0 3px 6px rgb(0 0 0 / 24%);
    will-change: opacity;
}

.gdprModal * {
    visibility: hidden;
}
.gdprModal--visible * {
    visibility: visible;
}

.gdprModal footer label {
    line-height: 19px;
    margin-bottom: 0;
    padding-top: 2px;
    padding-bottom: 2px;
}

.gdprModal--visible {
    opacity: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: inherit !important;
    top: 0;
}
.gdprModal__placeholder {
    max-width: 100%;
    width: 100%;
    transform: translateY(100%);
    transition: transform .4s 1s ease-in-out;
    bottom: 0;
    z-index: 1;
    background-color: #fff;
    overflow: auto;
    max-height: calc(100vh - 48px);
    box-shadow: 0 0.125rem 0.5rem rgba(0,0,0,.10);
    position: fixed;
}
.gdprModal--visible .gdprModal__placeholder {
    transform: translateY(0%);
    display: block;
} 

@media only screen and (min-width: 992px) {
    .gdprModal__placeholder {
        top: 100%;
        bottom: initial;
        border-radius: 6px;
        left: 50%;
        width: 80vw;
        max-height: 90vh;
        transition-delay: unset;
        box-shadow: 0 0.125rem 0.5rem rgba(0,0,0,.25);
        transition-duration: 0s;
    }
    .gdprModal--visible .gdprModal__placeholder {
        top: 50%;
        transform: translate(-50%, -50%) !important;
    }
}

@media only screen and (min-width: 1360px) {
    .gdprModal__placeholder{
        width: 56vw;
    }
}

.gdprModal__placeholder > iframe:first-child:last-child, .gdprModal__placeholder > img:first-child:last-child, .gdprModal__placeholder > video:first-child:last-child {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    max-width: 95%;
    max-height: 95%
}

.gdprModal__placeholder > img:first-child:last-child, .gdprModal__placeholder > video:first-child:last-child {
    width: auto;
    height: auto
}

.gdprModal__placeholder > [data-gdprModal] {
    display: block !important
}

.gdprModal--iframe .gdprModal__placeholder, .gdprModal--img .gdprModal__placeholder, .gdprModal--video .gdprModal__placeholder {
    width: 100%;
    height: 100%;
    pointer-events: none
}

[data-gdprModal] {
    display: none !important
}

.overflow-shown .gdprModal {
    height: unset;
}

@media only screen and (min-width: 992px) {
.popup-position-bottom .gdpr-consent-tabs-content .table-responsive td.td_description .description,
.popup-position-top .gdpr-consent-tabs-content .table-responsive td.td_description .description {
        max-width: unset;
        white-space: unset;
        text-align: left;
    }
}

/* dopisane */

.overflow-shown div[id*='trustbadge-container-'] {
    display: none;
}

@media only screen and (min-width: 768px) {
    .gdpr__button_arrow {
        display: none;
    }
}
.gdpr__button_arrow {
    position: absolute;
    right: 20px;
}


.gdpr-section__header {
    display: flex;
    padding: 10px;
    align-content: center;
    justify-content: space-between;
}
.gdpr-section__title {
    margin: 0;
}
.div_text,
.cookie_cat_description {
    font-weight: 300;
}
.div_accept_moreinfo {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;

}
.btn-gdpr{
    flex-grow: 1;
}
.icon_show {
    transition: all .3s;
}
.collapsed .icon_show {
    transform: rotate(180deg);
}

input[type="checkbox"].ios8-switch {
    position: absolute;
    margin: 8px 0 0 16px;    
}
input[type="checkbox"].ios8-switch + label {
    position: relative;
    padding: 5px 0 0 50px;
    line-height: 2.0em;
}
input[type="checkbox"].ios8-switch + label:before {
    content: "";
    position: absolute;
    display: block;
    left: 0;
    top: 0;
    width: 40px; /* x*5 */
    height: 24px; /* x*3 */
    border-radius: 16px; /* x*2 */
    background: #fff;
    border: 1px solid #d9d9d9;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}
input[type="checkbox"].ios8-switch + label:after {
    content: "";
    position: absolute;
    display: block;
    left: 0px;
    top: 0px;
    width: 24px; /* x*3 */
    height: 24px; /* x*3 */
    border-radius: 16px; /* x*2 */
    background: #fff;
    border: 1px solid #d9d9d9;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}
input[type="checkbox"].ios8-switch:not([disabled]) + label:hover:after {
    box-shadow: 0 0 5px rgba(0,0,0,0.3);
}
input[type="checkbox"].ios8-switch:checked + label:after {
    margin-left: 16px;
}
input[type="checkbox"].ios8-switch:checked + label:before {
    background: #e50000;
}
input[type="checkbox"].ios8-switch:disabled + label:before {
    background: #9e9e9e;
}
.resize-animation-stopper *{
    transition: none !important;
    animation: none !important;
}