:root {
    --v2-hints-primary-color: #EFF4FA;
    --v2-hints-progressbar-animation-duration: 5s;
}
.v2-hints-wrapper {
    background-color: var(--v2-hints-primary-color);
    padding-top: 40px;
    padding-bottom: 40px;
}
.v2-hints-wrapper li {
    background-image: none;
}
.v2-hints-wrapper .passe-partout {
    padding: 12px;
}
.v2-hints__header {
    margin-bottom: 24px !important;
}
.v2-hints__list-item {
    padding-left: 0;
}
.v2-hints__content {
    display: flex;
    flex-direction: column;
}
.v2-hints__content-text {
    margin-bottom: 28px;
}
.v2-hints__content-image-wrapper {
    max-width: 100%;
}
.v2-hints__content-image {
    max-height: 500px;
}
.v2-hints__aside-tab-button {
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    padding: 18px 12px;
    width: 100%;
}
.v2-hints__aside-tab,
.v2-hints__accordion {
    position: relative;
}
.v2-hints__aside-tab::before,
.v2-hints__accordion::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    height: 2px;
    width: 100%;
    background-color: rgba(229, 237, 248, 60);
}
.v2-hints__aside-tab-button::before,
.v2-hints__accordion-button::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    height: 2px;
    width: 100%;
    background-color: rgba(229, 237, 248, 60);
}
.v2-hints__aside-tab-button::after,
.v2-hints__accordion-button::after {
    content: "";
    transition: 900ms;
    -webkit-mask: url(https://trueconf.com/images/1-tc-web-icons/type-1/mono/t1-downward.svg) no-repeat 50% 50%;
    mask: url(https://trueconf.com/images/1-tc-web-icons/type-1/mono/t1-downward.svg) no-repeat 50% 50%;
    width: 24px;
    height: 24px;
    margin-left: 12px;
    mask-size: cover;
    background-color: #5D6162;
}
.v2-hints__aside-tab-button[aria-expanded=true]::after,
.v2-hints__accordion-button[aria-expanded=true]::after {
    transform: rotate(180deg);
    background-color: #30B1C8;
}
.v2-hints__aside-tab-button[aria-expanded=true]::before,
.v2-hints__accordion-button[aria-expanded=true]::before {
    background-image: linear-gradient(98.32deg, #0097A7 15.32%, #14D9EE 83.24%);
    animation-name: progress;
    animation-timing-function: ease-in-out;
    animation-duration: var(--v2-hints-progressbar-animation-duration);
}
@keyframes progress {
    0% {
        left: -100%;
    }
    100% {
        left: 0;
    }
}
.v2-hints__aside-tab-content {
    max-height: 0;
    padding: 0px 12px 28px;
    overflow: hidden;
    width: 100%;
}
.v2-hints__aside-tab-content[aria-hidden=true] {
    padding-top: 0;
    padding-bottom: 0;
}
.v2-hints__aside-tab-content[aria-hidden=false] {
    max-height: 100%;
}
.v2-hints__content--accordion[aria-hidden=false] {
    display: flex !important;
    align-items: center;
    max-height: unset;
}
@media (min-width: 1024px) {
    .v2-hints__accordion::before {
        display: none;
    }
    .v2-hints__accordion[aria-hidden=false] {
        display: flex;
    }
    .v2-hints {
        display: flex;
        flex-direction: row;
    }
    .v2-hints__aside-nav-container {
        flex: 0 0 434px;
        margin-right: 24px;
    }
    .v2-hints__aside-tab {
        padding: 0;
        cursor: pointer;
    }
    .v2-hints__slider-container {
        /*position: relative;*/
        height: 100%;
        width: 100%;
        margin: auto !important;
        display: flex;
        align-items: center;
    }
    .v2-hints__list-item {
        display: none;
        animation: slide-fade-in 2s;
    }
    @keyframes slide-fade-in {
        0% {
            opacity: 0;
        }
        100% {
            opacity: 1;
        }
    }
    .v2-hints__content-text-wrapper {
        display: none;
    }
    .v2-hints__content-image {
        width: 100%;
    }
    .v2-hints__accordion-button {
        display: none;
    }
}
@media (max-width: 1023px) {
    :root {
        --v2-hints-progressbar-animation-duration: 0;
    }
    .v2-hints-wrapper .passe-partout {
        all: unset;
    }
    .v2-hints__aside-nav-container * {
        margin: 0;
    }
    .v2-hints__header {
        text-align: center;
    }
    .v2-hints__content-image {
        max-width: 100%;
    }
    .v2-hints__aside {
        display: none;
    }
    .v2-hints__accordion-button,
    .v2-hints__content--accordion {
        padding-left: 12px;
        padding-right: 12px;
    }
    .v2-hints__accordion-button {
        position: relative;
        overflow: hidden;
        display: flex;
        width: 100%;
        padding-top: 18px;
        padding-bottom: 18px;
        align-items: center;
        justify-content: space-between;
    }
    .v2-hints__content--accordion {
        max-height: 0;
        padding-top: 0;
        padding-bottom: 0;
        overflow: hidden;
        transition: 700ms ease-in-out;
    }
    .v2-hints__content--accordion[aria-hidden=false] {
        padding-top: 12px;
        padding-bottom: 28px;
    }
}
@media (min-width: 577px) {
    .v2-hints-wrapper {
        padding-top: 60px;
        padding-bottom: 60px;
    }
}
@media (min-width: 770px) {
    .v2-hints-wrapper {
        padding-top: 80px;
        padding-bottom: 80px;
    }
}
@media (min-width: 1024px) {
    .v2-hints-wrapper {
        padding-top: 100px;
        padding-bottom: 100px;
    }
}