/* FONT TELENEO DECLARATION */
@font-face {
    font-family: 'TeleNeo Var';
    font-style: normal;
    font-weight: 400 655;
    src: local('TeleNeo Var'), local('TeleNeo-Var'),
        url('https://cdn.t-mobile.cz/one-experience/fonts/teleneo-variable-upright-de.woff2') format('woff2');
    /* Chrome 26+, Opera 23+, Firefox 39+ */
}

@font-face {
    font-family: 'TeleNeo Var Italic';
    font-style: italic;
    font-weight: 400 655;
    src: local('TeleNeo Var Italic'), local('TeleNeo-Var-Italic'),
        url('https://cdn.t-mobile.cz/one-experience/fonts/teleneo-variable-italic.woff2') format('woff2');
    /* Chrome 26+, Opera 23+, Firefox 39+ */
}

:host,
:root {
    --color-black-v1: #262626;
    --white: #fff;
    --black: #000;
    --primary: #e20074;
    --grey: #B6B6B6;
}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    padding: 0;
    margin: 0;
}

.d-flex {
    display: flex;
}

.align-items-center {
    align-items: center;
}

.d-none {
    display: none;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
    border: 0;
}

.dialog-close {
    width: 48px;
    height: 48px;
    position: absolute;
    top: 9px;
    right: 9px;
    border-radius: 50%;
    border: 0;
    background-color: transparent;
    font-size: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    outline: 0;
    color: var(--black);
    transition: ease .5s;
}

.dialog-close:hover, .dialog-close:active {
    background-color: #DDDDDD;
}

.dialog-close:focus-visible, .dialog-close:active {
    box-shadow: 0 0 0 1px var(--black);
}

.dialog-close svg {
    color: var(--black);
    fill: var(--black);
}

a:not(.btn) {
    color: var(--black);
    font-weight: 655;
    position: relative;
    text-decoration: underline;
    transition: ease .5s;
}

a:not(.btn):hover {
    text-decoration: none;
}

.tab-item {
    display: none;
}

.tab-item.active {
    display: block;
}

.tab-nav-item.active {
    color: #E20074;
}

.gdpr-component {
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: end;
    font-family: 'TeleNeo Var';
    font-weight: 500;
    line-height: 20px;
    font-size: 16px;
    background-color: rgba(0, 0, 0, .5);
    color: var(--black);
    position: fixed;
    /*overflow: hidden;*/
}

.dialog-item {
    display: flex;
    height: 80vh;
    background-color: var(--white);
    padding: 24px;
    border-radius: 16px 16px 0 0;
    flex-direction: column;
    position: relative;
    transition: transform 520ms cubic-bezier(0.3, 0.0, 0.1, 1.0);
    transform: translateY(250%);
    position: absolute;
    bottom: 0;
}

.dialog-settings {
    height: 100vh;
    border-radius: 0;
}

.message-item {
    display: none;
    position: absolute;
    background: rgba(0, 0, 0, .5);
    color: var(--white);
}

.loader {
    width: 25px;
    height: 25px;
    margin: auto;
    margin-bottom: 15px;
    border: 4px solid #d6c4cd;
    border-radius: 50%;
    border-top: 4px solid var(--primary);
    animation: spinner 4s linear infinite;
}

@keyframes spinner {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.active-dialog-message .message-item {
    display: block;
    z-index: 2;
}

.ul-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-left: -8px;
    margin-right: -8px;
}

.ul-list li {
    padding: 6px 8px;
}

.font-bold {
    font-weight: 655;
}

.heading {
    color: var(--black);
    font-weight: 655;
    font-size: 22px;
    line-height: 22px;
    margin-bottom: 24px;
    margin-top: 0;
    padding-right: 10%;
}

#dialog-quick .consent-list .heading,
#dialog-settings .consent-list .heading {
    font-size: 20px;
    line-height: 28px;
}

.active-quick #dialog-quick {
    transform: translateY(0);
    position: relative;
}

.active-settings #dialog-settings {
    transform: translateY(0);
    position: relative;
}

.scroll-content {
    flex-grow: 1;
    overflow-x: hidden;
    overflow-y: auto;
}

.scroll-content > p, .consent-text-content > p {
    margin-top: 0;
    margin-bottom: 24px;
}

.scroll-content > p:last-of-type {
    margin-bottom: 8px;
}

.consent-item-content p {
    margin: 0;
}

.consent-item-body {
    margin-top: 4px;
}

.col-buttons {
    display: flex;
    padding-top: 16px;
    align-items: center;
    justify-content: space-between;
}

.btn-wrap {
    padding: 4px 0;
}

/* buttons */
.btn {
    font-family: 'TeleNeo Var';
    font-size: 16px;
    line-height: 38px;
    font-weight: 655;
    white-space: nowrap;
    text-decoration: none;
    text-align: center;

    padding: 0 20px;
    outline: 0;

    display: inline-flex;
    align-items: center;
    cursor: pointer;
    border: 1px solid transparent;
    border-radius: 80px;
    position: relative;

    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    touch-action: manipulation;

    transition: ease .5s;
}

.btn span {
    padding-left: 8px;
    position: relative;
    top: 1px;
}

.btn:before {
    content: "";
    position: absolute;
    left: -6px;
    right: -6px;
    top: -6px;
    bottom: -6px;
    border: 2px solid var(--black);
    border-radius: 80px;
    opacity: 0;
    z-index: -1;
}

.btn:hover {
    text-decoration: none;
    color: inherit;
}

.btn:focus-visible:before {
    opacity: 1;
    z-index: 0;
}

.btn.disabled,
.btn:disabled {
    pointer-events: none;
}

.btn-primary {
    color: var(--white);
    background-color: var(--primary);
    border-color: var(--primary);
}

.btn-primary:hover {
    color: var(--white);
    background-color: #e83390;
    box-shadow: 0px 0px 0px 2px #e83390;
}

.btn-primary:focus {
    color: #FFE;
    border-color: #F399C7;
    background-color: #E20074;
}

.btn-primary:active {
    color: #FFE;
    background-color: #F90984;
}

.btn-primary:disabled {
    background-color: #E20074;
    color: #FFE;
    opacity: 0.5;
}

.btn-outline-dark {
    background-color: transparent;
    color: var(--black);
    border-color: var(--black);
}

.btn-outline-dark:hover {
    background-color: #DDD;
    color: var(--black);
    box-shadow: 0px 0px 0px 1px var(--black);
}

.btn-outline-dark:active {
    background-color: #CACACA;
}

.consent-data {
    padding-top: 8px;
}

.consent-item {
    position: relative;
    padding: 16px 0;
    border-top: 1px solid var(--grey);
}

.consent-item:not(.dynamic):first-of-type {
    border-top: 0;
}

.consent-item .heading {
    font-size: 20px;
}

.switch {
    display: flex;
}

.switch-check {
    background: #FFFFFF;
    width: 44px;
    height: 24px;
    flex: 0 0 44px;
    position: relative;
    cursor: pointer;
}

.switch-check .track {
    position: absolute;
    width: 44px;
    height: 24px;
    top: 0;
    right: 0;
    display: block;
    border: 1px solid var(--black);
    border-radius: 13px;
    background: var(--white);
    transition: ease .5s;
}

.switch-check .button {
    position: absolute;
    width: 16px;
    height: 16px;
    top: 4px;
    right: 24px;
    display: block;
    border-radius: 50%;
    background: var(--black);
    transition: ease .5s;
}

.switch.active .switch-check .track {
    background-color: var(--primary);
    border-color: var(--primary);
}

.switch.active .switch-check .button {
    right: 4px;
    background-color: var(--white);
}

.switch.disabled .switch-check .track {
    background-color: var(--grey);
    border-color: var(--grey);
}

.switch-checkbox-input {
    position: absolute;
    left: 10px;
    /*left: -30px;*/
}

.switch-checkbox-input:focus+.track {
    border-color: #000000;
    border-width: 2px;
}

.switch-info {
    padding-left: 12px;
    padding-top: 3px;
}

.switch-info span {
    color: var(--black);
    font-weight: 655;
    font-size: 16px;
    line-height: 20px;
}

.active-text {
    display: none;
}

.inactive-text {
    display: block;
}

.switch.active .inactive-text {
    display: none;
}

.switch.active .active-text {
    display: block;
}

.switch.disabled .switch-info span {
    color: #828282;
}

.expand-toggler {
    display: flex;
    padding: 14px 0 14px;
    font-size: 16px;
    line-height: 20px;
    color: var(--black);
    font-weight: 655;
    text-decoration: none !important;
    border-radius: 8px;
    transition: ease .5s;
}

.expand-toggler:before {
    content: "";
    position: absolute;
    background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgaWQ9IkNvbGxhcHNlIERvd24iPgo8cGF0aCBpZD0iaWNvbiIgZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xOC41NTIxIDguNzIxODlDMTguMjcxMSA4LjQxNjg5IDE3Ljc5NjEgOC4zOTk4OSAxNy40OTIxIDguNjc5ODlMMTIuMDAxMSAxMy43NDg5TDYuNTEwMDkgOC42Nzk4OUM2LjIwNjA5IDguMzk5ODkgNS43MzEwOSA4LjQxNjg5IDUuNDQ5MDkgOC43MjE4OUM1LjE2OTA5IDkuMDI2ODkgNS4xODgwOSA5LjUwMDg5IDUuNDkyMDkgOS43ODE4OUwxMi4wMDExIDE1Ljc4OTlMMTguNTEwMSA5Ljc4MTg5QzE4LjgxNDEgOS41MDA4OSAxOC44MzMxIDkuMDI2ODkgMTguNTUyMSA4LjcyMTg5WiIgZmlsbD0iYmxhY2siLz4KPC9nPgo8L3N2Zz4K");
    top: 11px;
    right: 11px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    width: 24px;
    height: 24px;
    transition: ease .5s;
}

.expand-toggler:after {
    content: "";
    position: absolute;
    left: -2px;
    right: -2px;
    bottom: -2px;
    top: -2px;
    border: 2px solid #000;
    border-radius: 4px;
    opacity: 0;
    z-index: -1;
    -webkit-transition: ease .5s;
    transition: ease .5s;
}

.expand-toggler:hover {
    background-color: #f1f1f1;
    color: #000;
}

.expand-toggler:active {
    background-color: #ddd;
    color: #000;
}

.expand-toggler:not(.open):focus-visible:after {
    opacity: 1;
    z-index: 0;
}

.expand-toggler.open .open-text {
    display: none;
}

.expand-toggler .close-text {
    display: none;
}

.expand-toggler.open .close-text {
    display: block;
}

.expand-toggler.open:before {
    transform: rotate(-180deg);
}

.expand-content {
    display: none;
}

.expand-content.open {
    display: block;
}

.table-cookies {
    font-size: 14px;
}

.table-cookies th,
.table-cookies td {
    text-align: left;
    padding: 0 5px;
}

.table-cookies th:first-child,
.table-cookies td:first-child {
    padding-left: 0;
}

.table-cookies th:last-child,
.table-cookies td:last-child {
    padding-right: 0;
}

.mt-0 {
    margin-top: 0 !important;
}

.mb-8 {
    margin-bottom: 8px;
}

.pt-8 {
    padding-top: 8px;
}

.mb-24 {
    margin-bottom: 24px;
}

.consent-heading {
    font-size: 20px;
    line-height: 24px;
    font-weight: 655;
    margin: 0;
}

.consent-heading+p {
    margin-bottom: 0 !important;
}

.consent-item-header {
    position: relative;
}

.consent-item-switch {
    padding-top: 12px;
    padding-bottom: 12px;
}

@media screen and (max-width: 639.98px) {
    .btn-xs-block {
        width: 100%;
        display: flex;
        justify-content: center;
        flex: 1 0 100%;
    }

    .col-btn, .btn-wrap {
        flex: 1 0 100%;
    }

    .btn-wrap {
        margin-top: 8px;
    }

    .flex-wrap-xs {
        flex-wrap: wrap;
    }

    .col-buttons {
        flex-wrap: wrap;
    }

    .order-xs-0 {
        order: 0;
    }

    .order-xs-1 {
        order: 1;
    }

    .order-xs-2 {
        order: 2;
    }
}

@media screen and (min-width: 640px) {
    .col-list {
        flex: 1 0 100%;
    }

    .col-buttons {
        flex-wrap: wrap;
    }

    .btn-wrap+.btn-wrap {
        padding-left: 8px;
    }

    .consent-item-header {
        position: relative;
    }

    .consent-item-content {
        width: 63.5%;
    }
    
    .consent-item-switch {
        position: absolute;
        top: 10px;
        left: 63.5%;
        padding-left: 40px;
    }

    .consent-heading {
        margin-bottom: 0;
    }
}

@media screen and (min-width: 768px) {
    .d-md-flex {
        display: flex;
    }

    .dialog-item {
        max-height: 100%;
        border-radius: 16px;
        height: auto;
        width: 670px;
    }

    .dialog-settings {
        width: 690px;
        height: 70vh;
        border-radius: 16px;
    }

    .gdpr-component {
        align-items: center;
    }

    .d-md-block {
        display: block;
    }

    .d-md-none {
        display: none;
    }

    .col-buttons {
        padding-top: 24px;
    }
}

@media screen and (min-width: 1024px) {
    .dialog-item {
        width: 670px;
    }

    .dialog-settings {
        height: 80vh;
    }
}

@media screen and (min-width: 1040px) {
    .dialog-item {
        width: 670px;
    }

    .dialog-settings {
        width: 690px;
    }

    .heading {
        font-size: 23px;
        line-height: 23px;
    }

    .switch:not(.disabled) .switch-check:hover .track {
        transform: scale(1.1);
    }
}

@media screen and (min-width: 1440px) {
    .dialog-item {
        width: 670px;
    }

    .dialog-settings {
        width: 692px;
    }

    .heading {
        font-size: 24px;
        line-height: 24px;
    }

    .consent-item-content {
        width: 69%;
    }

    .consent-item-switch {
        left: 69%;
    }
}

@media screen and (min-width: 1680px) {
    .dialog-item {
        width: 670px;
    }

    .dialog-settings {
        width: 700px;
    }
}