/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */

.blocked__content__msg {
    position: relative;
    max-width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    aspect-ratio: 16/9;
    padding: 0 2rem;
    padding-bottom: 15px;
}

.blocked__content__msg .ext__content__plugin__logo {
    width: 4rem;
    height: auto;
    border-radius: 0;
}

.blocked__content__msg>h3 {
    margin-bottom: 1rem;
    margin-top: 0;
    font-weight: bold;
    font-size: 2rem;
}

.blocked__content__msg>p {
    font-size: 1.25rem;
    width: fit-content;
    margin-top: 0;
}

.blocked__content__msg>* {
    z-index: 1;
}

.d-flex {
    display: flex;
}

.flex-column {
    flex-direction: column;
}

.absolute {
    position: absolute;
}

#toggle_ext_content {
    color: var(--tt-green);
    cursor: pointer;
    text-decoration: underline;
}

/* The switch - the box around the slider */
.switch {
    position: relative;
    display: inline-block;
    width: 3.75rem;
    height: 2.125rem;
}

/* Hide default HTML checkbox */
.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

/* The slider */
.slider__wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0.1875rem;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
    height: 1.75rem;
}

.slider:before {
    position: absolute;
    content: "";
    height: 1.25rem;
    width: 1.25rem;
    left: 0.25rem;
    bottom: 0.25rem;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

input:checked+.slider {
    background-color: #2196F3;
}

input:focus+.slider {
    box-shadow: 0 0 1px #2196F3;
}

input:checked+.slider:before {
    -webkit-transform: translateX(2rem);
    -ms-transform: translateX(2rem);
    transform: translateX(2rem);
}

/* Rounded sliders */
.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

@media (min-width: 768px) {
    .blocked__content__msg {
        padding: 0 7rem;
    }
}