img {
    display: block;
    max-width: 100%;
}

#preloadContainer {
    display: flex;
    flex-direction: column;
}

.loader {
    border: 8px solid #f3f3f3;
    /* Light grey */
    border-top: 8px solid #eb322f;
    /* Blue */
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 2s linear infinite;
    margin: auto;
}

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

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

.container {
    width: 1600px;
    max-width: 100%;
}

.btn {
    display: inline-flex;
    color: #fff;
    font-family: DIN Next LT Pro;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    border-radius: 4px;
    letter-spacing: 0em;
    box-shadow: none !important;
    padding: 14px 18px 10px;
    text-transform: uppercase;
    text-align: center;
    justify-content: center;
}

.btn-danger {
    background: #eb322f;
    min-width: 106px;
}

@media (min-width: 992px) {
    .btn-danger {
        min-width: 126px;
    }
}

.btn-outline-light {
    color: #3b3c4b;
    border-color: #3b3c4b;
    background: #e3dbd4;
}

.btn-outline-light span {
    margin-top: auto;
    margin-bottom: auto;
}

.btn-outline-light .icon {
    font-size: 120%;
    margin-left: 10px;
    line-height: 1;
}

.btn-outline-light:hover {
    border-color: #3b3c4b;
}

.h1 {
    color: #eb322f;
    font-family: DIN Next LT Pro;
    font-size: 32px;
    font-size: 2rem;
    font-style: normal;
    font-weight: 700;
}

.h2 {
    font-family: DIN Next LT Pro;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0em;
    color: #eb322f;
}
@media (min-width: 992px) {
    .h2 {
        font-size: 32px;
    }
}
.h3 {
    font-family: DIN Next LT Pro;
    font-size: 18px;
    font-size: 1rem;
    font-weight: 700;
    color: #eb322f;
}

h4 {
    font-size: 22px;
    line-height: 1.3;
}

p {
    color: #3b3c4b;
    font-family: DIN Next LT Pro;
    font-size: 18px;
    /* font-size: 1.2rem; */
    font-style: normal;
    font-weight: 400;
    line-height: 21.6px;
}

html,
body {
    width: 100vh;
    height: 100vh;
    overflow: hidden;
    margin: 0;
    position: relative;

    font-family: "DIN Next LT Pro";
    font-weight: normal;
    font-style: normal;
    font-size: 14px;
    line-height: 1.3;
}

@media (min-width: 576px) {
    html,
    body {
        font-size: 15px;
    }
}

@media (min-width: 768px) {
    html,
    body {
        font-size: 16px;
    }
}

@media (min-width: 992px) {
    html,
    body {
        font-size: 17px;
    }
}

@media (min-width: 1140px) {
    html,
    body {
        font-size: 18px;
    }
}

@media (min-width: 1600px) {
    html,
    body {
        font-size: 24px;
    }
}

#container {
    width: 100%;
    height: 100%;
}

.panel,
.modal .modal-content {
    border-radius: 20px;
    border: 2px solid var(--secondary-white, #fefefe);
    background: rgba(255, 255, 255, 0.55);
    box-shadow: 0px 4px 34px 0px rgba(0, 0, 0, 0.16);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.panel {
    width: 1600px;
    max-width: 90%;
    min-height: 0%;
    max-height: 95%;

    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    z-index: 2;

    overflow: hidden;
    padding: 0px;
    opacity: 0;
    pointer-events: none;

    transition: all 300ms ease;

    filter: blur(10px);

    display: flex;
    flex-direction: column;
}

.panel.active {
    padding: 10px;
    opacity: 1;
    /* min-height: 50%; */
    pointer-events: all;
    filter: blur(0);
}

@media (min-width: 992px) {
    .panel {
        border-radius: 40px;
    }
    .panel.active {
        padding: 15px;
    }
}

.panel .scrollWrapper {
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: auto;
    padding-right: 5px;
}

/* Works on Firefox */
.panel .scrollWrapper {
    scrollbar-width: thin;
    scrollbar-color: #eb322f #fff;
    border-radius: 5px;
}

/* Works on Chrome, Edge, and Safari */
.panel .scrollWrapper::-webkit-scrollbar {
    width: 10px;
}

.panel .scrollWrapper::-webkit-scrollbar-track {
    background: #eee;
    border-radius: 5px;
}

.panel .scrollWrapper::-webkit-scrollbar-thumb {
    background-color: #eb322f;
    border-radius: 5px;
}

.panel.description {
    width: 660px;
    transform: translate(150%, -50%);
    left: auto;
    right: 5%;
    height: 95%;
    display: flex;
    flex-direction: column;
}

@media (min-width: 1200px) {
    .panel.description {
        max-width: 40%;
    }
}

.panel.description.active {
    transform: translate(0%, -50%);
}

.panel.description .container,
.panel.description .container > .row,
.panel.description .container > .row > div {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.panel.description .col-description {
}

#intro-wrapper .col-text {
    display: flex;
    flex-direction: column;
}

#intro-wrapper .col-image img {
    max-height: 60vh;
    display: block;
    margin: 20px auto;
}

#intro-wrapper .col-text .text-container {
    margin: auto 0;
}

#intro-wrapper {
    transition: all 1000ms ease;
    transform: translate(-50%, -50%);
}

#intro-wrapper.active {
    transform: translate(-50%, -50%);
}

#legend-wrapper {
    left: 5%;
    max-width: 90%;
    width: 600px;
    transition: all 1000ms ease;
    transform: translateY(-50%);
}

#legend-wrapper.active {
    transform: translateY(-50%);
}

@media (min-width: 768px) {
    #legend-wrapper {
        max-width: 40%;
    }
}

#menu-wrapper {
    width: 340px;
    top: 2.5%;
    left: 5%;
    transition: all 1000ms ease;
    transform: translate(-150%, 0);

    height: 95%;
    /* max-height: fit-content; */
}

#menu-wrapper.active {
    transform: translate(0, 0);
}

#menu-wrapper .closeMenu {
    display: block;
    background: none;
    border: none;
    padding: 0;
    width: 24px;
}

@media (min-width: 992px) {
    #menu-wrapper .closeMenu {
        width: 40px;
    }
}

.showMenu {
    opacity: 0;
    transform: scale(0.5);
    pointer-events: none;
    position: absolute;
    top: 25px;
    left: 5%;
    z-index: 2;
    border: none;
    background: none;
    padding: 0;
    margin: 0;
    width: 44px;
    transition: all 1200ms ease;
    background: rgba(255, 255, 255, 0);
    border-radius: 11%;
}

.showMenu:hover {
    background: rgba(255, 255, 255, 0.55);
}

@media (min-width: 1200px) {
    .showMenu {
        top: 5vh;
        width: 88px;
    }
}

.showMenu.active {
    opacity: 1;
    transform: scale(1);
    pointer-events: all;
}

.showMenu img {
    width: 100%;
}

.menu-list {
    margin: 0;
    padding: 0;
}

.menu-list li {
    list-style: none;
    margin: 5px 0;
}

.menu-list li a {
    display: flex;
    padding: 5px 0;
    font-family: DIN Next LT Pro;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0em;
    text-align: left;
    cursor: pointer;
    text-decoration: none;
    color: #3b3c4b !important;
    transition: all 300ms ease;
}

.menu-list li a:hover {
    color: #eb322f !important;
}

.menu-list li a.active {
    color: #eb322f !important;
}

.menu-list li ul {
    padding-left: 30px;
}

.menu-list li ul li a {
    font-size: 16px;
    line-height: 19px;
}

.menu-list li a span {
    margin: auto 0;
}

.menu-list li a .icon {
    display: block;
    width: 20px;
    height: 20px;
    margin: 0 10px auto 0;
    position: relative;
}

.menu-list li a .icon:before,
.menu-list li a .icon:after {
    display: block;
    position: absolute;
    content: "";
    background: #eb322f;
    transition: all 300ms ease;
    transform: translate(-50%, -50%);
}

.menu-list li a .icon.no-content:before,
.menu-list li a .icon.no-content:after {
    display: none;
}

.menu-list li a .icon:before {
    left: 50%;
    width: 100%;
    height: 2px;
    top: 50%;
}

.menu-list li a .icon:after {
    top: 50%;
    width: 2px;
    left: 50%;
    height: 100%;
}

.menu-list li a.active .icon:after {
    top: 50%;
    width: 2px;
    left: 50%;
    height: 0%;
}

.menu-list li a + ul {
    opacity: 0;
    height: 0;
    padding: 0 0 0 30px;
    overflow: hidden;
    transition: all 300ms ease;
}

.menu-list li a.active + ul {
    opacity: 1;
    height: auto;
    padding: 5px 0 5px 30px;
}

.tag {
    display: flex;
    border-radius: 64px;
    padding: 5px 10px;
    padding: 14px 16px;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
}

.tag span {
    margin-bottom: -2% !important;
}

.tag.product {
    background: #b4ab3b;
}

.tag.tips {
    background: #007a8b;
}

.tag.about {
    background: #b81a4b;
}

.tag img {
    min-width: 16px;
    margin-left: 10px;
}

.description-head {
    /* padding-bottom: 10px; */
}

.description-head .closePanel {
    background: none;
    border: none;
    display: block;
    width: 24px;
    padding: 0;
}

@media (min-width: 992px) {
    .description-head .closePanel {
        width: 40px;
    }
}

.description-content {
}

.description-content .image {
    margin: 10px 0 20px;
}

.description-content .image,
.description-content .image img {
    border-radius: 15px;
    overflow: hidden;
}

@media (min-width: 992px) {
    .description-content .image img {
        width: 100%;
    }
}

.description-footer {
    display: flex;
    justify-content: space-between;
    margin: auto 0 0 0;
    padding-top: 10px;
}

.description-footer button {
    background: none;
    border: none;
    display: block;
    width: 24px;
    padding: 0;
}

@media (min-width: 992px) {
    .description-footer button {
        width: 40px;
    }
}

.bg-scene {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.55);
    background-size: cover;
    background-position: center center;
    z-index: 0;
    opacity: 0;
    transition: all 300ms ease;
}

.bg-scene.active {
    /* top: 0%;
    left: 0%;
    right: 0%;
    bottom: 0%; */
    z-index: 1;
    opacity: 1;
}

[tdvlayer="content"] img {
    display: block !important;
    margin: 0 !important;
    height: 100% !important;
    width: 100% !important;
    object-fit: cover !important;
}

.inactive {
    transition: all 300ms ease;
    opacity: 0;
    pointer-events: none;
    z-index: -1 !important;
    position: relative;
}

.textSlider-wrapper {
    display: block;
    width: 100%;
}

.textSlider-wrapper .actions {
    position: relative;
    display: flex;
    padding: 0 30px;
}

.actions a {
    margin-top: 5px;
    margin-right: 5px;
}

.textSlider-wrapper .owl-nav button {
    display: flex;
    width: 24px;
    height: 24px;
    min-width: 24px;
    margin: auto 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border: none;
}

.textSlider-wrapper .owl-nav button.disabled {
    opacity: 0.25;
    cursor: default;
}

.textSlider-wrapper .owl-prev {
    background: url("/assets/img/front/icons/icon-arrow-circle-left-red.svg") no-repeat center center;
    background-size: contain;
    left: 0;
}

.textSlider-wrapper .owl-next {
    background: url("/assets/img/front/icons/icon-arrow-circle-right-red.svg") no-repeat center center;
    background-size: contain;
    right: 0;
}

.textSlider-wrapper .arrows {
    display: flex;
    flex-direction: row;
}

.textSlider-wrapper .actions .text {
    display: flex;
    width: 100%;
    margin: auto 0;
    padding: 0 0;
    justify-content: center;
}

.textSlider-wrapper .actions .text h4 {
    color: #eb322f;
    margin: 0;
    padding-top: 3px;
    font-size: 18px;
}

.textSlider-head .col-title,
.textSlider-head .col-actions {
    min-width: 100%;
}

.textSlider-head .col-actions {
    padding-top: 20px;
}

@media (min-width: 578px) {
    .textSlider-head {
        display: flex;
        flex-direction: row;
    }

    .textSlider-head .col-title,
    .textSlider-head .col-actions {
        min-width: 50%;
    }

    .textSlider-head .col-actions {
        padding-top: 0;
    }
}

.apple-btn {
    display: inline-block;
}

.google-btn {
    display: inline-block;
}

@media (max-width: 578px) {
    .panel > .container {
        padding: 0 !important;
    }
    .panel .scrollWrapper {
        padding-left: 10px;
        padding-right: 10px;
    }
}

.modal .btn-close {
    padding: 0 !important;
    background: none !important;
    width: 40px !important;
    height: 40px !important;
    position: absolute;
    top: 0;
    right: 0;
    transform: translate(0%, -120%);
    margin: 0 !important;
    transition: all 300ms ease;
}

.modal-backdrop {
    /* background: #fff; */
    /* opacity: 0.75 !important; */
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.modal-header {
    border-bottom: none !important;
    padding: 0 !important;
}

.modal-video iframe {
    border-radius: 15px !important;
}

@media (max-width: 578px) {
    .modal-body {
        padding: 0 !important;
        overflow: hidden !important;
    }
}
.footer-list {
    margin-left: 0;
    padding-left: 0;
    padding-top: 10px;
    border-top: 1px solid #fff;
}
.footer-list li {
    display: inline-block;
    margin-top: 5px;
    margin-left: 5px;
}
.footer-list a {
    color: #444;
    font-size: 16px;
    text-decoration: none;
    cursor: pointer;
    transition: all 300ms ease;
}
.footer-list a:hover {
    color: #eb322f !important;
    text-decoration: underline;
}
