.slidebox {
    position: relative;
}
.slidebox-container {
    position: relative;
    box-sizing: border-box;
}
.slidebox-track {
    position: relative;
    overflow: hidden;
    transition: height 0.2s ease;
}
.slidebox-list {
    position: relative;
    display: flex;
    backface-visibility: hidden;
    height: 100%;
    margin: 0;
    padding: 0;
}
.slidebox.is-initialized:not(.is-active) .slidebox-list {
    display: block;
}
.slidebox-item {
    position: relative;
    backface-visibility: hidden;
    box-sizing: border-box;
    flex-shrink: 0;
    list-style-type: none;
    margin: 0;
}
.slidebox-spinner {
    position: absolute;
    width: 20px;
    height: 20px;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    border: 2px solid var(--color-bg-grey);
    border-left-color: transparent;
    border-radius: 50%;
    contain: strict;
    display: inline-block;
    margin: auto;
    animation: Loading 1s linear infinite;
}
.slidebox-sr {
    position: absolute;
    width: 1px;
    height: 1px;
    border: 0;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    clip: rect(0 0 0 0);
}
.slidebox-track-draggable {
    -webkit-touch-callout: none;
    user-select: none;
}
.slidebox-track-fade > .slidebox-list > .slidebox-item {
    margin: 0;
    opacity: 0;
    z-index: 0;
}
.slidebox-track-fade > .slidebox-list > .slidebox-item.is-active {
    opacity: 1;
    z-index: 1;
}
.slidebox-rtl {
    direction: rtl;
}
.slidebox-draggable:active {
    cursor: grab;
}
.slidebox-track-ttb > .slidebox-list {
    display: block;
}
.slidebox-pagination {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    margin: 2rem 0;
    list-style-type: none;
}
.slidebox-pagination li {
    position: relative;
    display: inline-flex;
    line-height: 1;
    margin: 0.3rem;
}
.slidebox-pagination-page {
    position: relative;
    width: 0.2rem;
    height: 0.2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    background-color: var(--color-normal-dark);
    transform-origin: center center;
    z-index: 1;
}
.slidebox-pagination-page.is-active {
    transform: scale(3);
    pointer-events: none;
    background: var(--color-highlight);
}
.slidebox-pagination-ttb {
    position: absolute;
    left: -3em;
    top: 0;
    bottom: 0;
    flex-direction: column;
    padding: 1em;
}
.pagination-custom {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 30px 0;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1;
}
.pagination-custom .number-left {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    color: var(--color-normal);
    font-weight: 700;
}
.pagination-custom .number-right {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    color: var(--color-bg);
    font-weight: 700;
}
.pagination-custom .number-right::before {
    content: "";
    position: relative;
    display: block;
    width: 30px;
    height: 1px;
    margin: 0 20px;
    background-color: var(--color-bg);
}
.pagination-custom.disabled {
    opacity: 0.2;
}
.number-but .slidebox-pagination-page {
    width: 2rem;
    height: 2rem;
    color: var(--color-white);
    background-color: transparent;
}
.number-but .slidebox-pagination-page span {
    position: relative;
    font-size: 0.5rem;
    font-weight: 500;
    line-height: 1;
    z-index: 5;
}
.number-but .slidebox-pagination-page::before {
    content: "";
    position: absolute;
    width: 80%;
    height: 80%;
    left: 10%;
    top: 10%;
    background: var(--color-black-alpha-03);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}
.number-but .slidebox-pagination-page::after {
    content: "";
    position: absolute;
    width: 0.5rem;
    height: 1px;
    left: 2rem;
    top: 50%;
    background: var(--color-white-alpha);
}
.number-but .slidebox-pagination li:last-child .slidebox-pagination-page::after {
    display: none;
}
.number-but .slidebox-pagination-page.is-active {
    background: var(--color-highlight);
    transform: none;
}
.number-but .slidebox-pagination-page:hover {
    background: var(--color-highlight);
    transform: none;
}
.number-but .slidebox-pagination-page.is-active::before {
    opacity: 1;
}
.slidebox-arrows {
    position: relative;
    width: auto;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2rem 0;
    color: var(--color-normal-dark);
    z-index: 10;
}
.slidebox-arrow {
    position: relative;
    width: 4rem;
    height: 4rem;
    color: currentColor;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0.5rem;
    flex: none;
    z-index: 5;
}
.slidebox-arrow svg {
    position: absolute;
    width: 90%;
    height: 90%;
    display: block;
    left: 5%;
    top: 5%;
    transform-origin: center center;
    z-index: 2;
}
.slidebox-arrow-prev svg {
    transform: scaleX(-1);
}
.slidebox-arrow:disabled {
    opacity: 0.2 !important;
    pointer-events: none;
}
.slidebox-arrow .after {
    fill: none;
    stroke: var(--color-white-zero);
    stroke-width: 1.5;
    stroke-dasharray: 570;
    stroke-dashoffset: 570;
    transform-origin: 50% 50%;
}
.slidebox-arrow .before {
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
    opacity: 0.5;
    stroke-dasharray: 570;
    stroke-dashoffset: 570;
    transform-origin: 50% 50%;
}
.slidebox-arrows.show .before {
    animation-name: Show100;
    animation-duration: 2s;
    animation-fill-mode: forwards;
}
.slidebox-arrow::before {
    content: "";
    width: 60%;
    height: 60%;
    position: absolute;
    left: 20%;
    top: 20%;
    border-radius: 50%;
    transform: scale(0);
    transition: all 0.3s ease-in-out;
}
.slidebox-arrows .line {
    left: calc(50% + 6rem);
}
.arrow-normal .slidebox-arrow {
    background-color: var(--color-normal);
    border: none;
}
.slidebox-arrows-ttb {
    width: auto;
    height: 100%;
    top: 0;
    left: calc(100% + 1em);
}
.slidebox-arrows-ttb .slidebox-arrow-prev {
    top: 1em;
    left: 0;
}
.slidebox-arrows-ttb .slidebox-arrow-next {
    bottom: 1em;
    left: 0;
    top: auto;
    right: auto;
}
.slidebox-arrows-ttb .slidebox-arrow-prev svg {
    transform: rotate(-90deg);
}
.slidebox-arrows-ttb .slidebox-arrow-next svg {
    transform: rotate(90deg);
}
.numberx .slidebox-pagination {
    counter-reset: pagination-num;
}
.numberx .slidebox-pagination-page::before {
    counter-increment: pagination-num;
    content: counter(pagination-num);
}
.numberx .slidebox-pagination-page {
    width: 1.5rem;
    height: 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--color-white-alpha-05);
    color: var(--color-grey);
    border-radius: 6px;
    font-size: 0.6rem;
    font-weight: 700;
    line-height: 1;
    margin-left: 0.3rem;
    opacity: 1;
}
.numberx .slidebox-pagination-page.is-active {
    background: var(--color-normal);
    transform: none;
    color: var(--color-white);
}
.slidebox-toggle {
    position: absolute;
    width: 5rem;
    height: 5rem;
    left: calc(50% - 2.5rem);
    top: calc(50% - 2.5rem);
    background: var(--color-black-alpha);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    opacity: 0;
    pointer-events: none;
}
.slidebox-toggle svg {
    position: relative;
    height: 30%;
    width: 30%;
    stroke: var(--color-white);
    stroke-width: 2;
    fill: none;
}
.slidebox-toggle-pause,
.slidebox-toggle.is-active .slidebox-toggle-play {
    display: none;
}
.slidebox-toggle.is-active .slidebox-toggle-pause {
    display: block;
}
.slidebox-toggle-pause,
.slidebox-toggle.is-active .slidebox-toggle-play {
    display: none;
}
.slidebox-toggle.is-active .slidebox-toggle-pause {
    display: inline;
}
.slidebox-arrows-rtl .slidebox-arrow-prev {
    left: auto;
    right: 1em;
}
.slidebox-arrows-rtl .slidebox-arrow-prev svg {
    transform: scaleX(1);
}
.slidebox-arrows-rtl .slidebox-arrow-next {
    left: 1em;
    right: auto;
}
.slidebox-arrows-rtl .slidebox-arrow-next svg {
    transform: scaleX(-1);
}
.slidebox-toggle:focus-visible {
    outline: 3px solid var(--color-normal);
    outline-offset: 3px;
}
.slidebox.is-focus-in .slidebox-toggle:focus {
    outline: 3px solid var(--color-normal);
    outline-offset: 3px;
}
.slidebox-track-nav > .slidebox-list > .slidebox-slide {
    border: 3px solid transparent;
    cursor: pointer;
}
.slidebox-track-nav > .slidebox-list > .slidebox-slide.is-active {
    border: 3px solid var(--color-normal);
}
.slidebox-progress {
    position: relative;
    width: 100%;
    height: 1px;
    margin: 2rem auto;
    background: var(--color-normal);
}
.slidebox-progress-bar {
    position: relative;
    width: 0;
    height: 2px;
    background: var(--color-normal);
    overflow: hidden;
}
.thumbs {
    position: relative;
    width: 28rem;
    height: auto;
    display: block;
    margin: 1rem auto;
    z-index: 5;
}
.thumbs.align-middle .slidebox-list {
    justify-content: center;
}
.thumb-item {
    position: relative;
    width: 4rem;
    height: 2rem;
    display: block;
    margin: 0;
    padding: 0 0.2rem;
    overflow: hidden;
    border-radius: 0.2rem;
    cursor: pointer;
}
.thumb-item img {
    position: relative;
    width: 100%;
    height: 100%;
    display: block;
    pointer-events: none;
    object-fit: cover;
    object-position: center center;
    border-radius: 0.3rem;
}
.thumb-item.is-active {
    pointer-events: none;
    opacity: 0.3;
}
.thumbs .slidebox-arrows {
    position: absolute;
    width: 100%;
    top: 0.3rem;
    left: 0;
    height: 0;
    margin: 0;
    z-index: 5;
}
.thumbs .slidebox-arrow {
    width: 1.5rem;
    height: 1.5rem;
    position: absolute;
    top: 0;
    margin: 0;
    border-radius: 50%;
    color: var(--color-white);
    border: 1px solid;
    border-color: var(--color-white-alpha);
}
.thumbs .slidebox-arrow .after,
.thumbs .slidebox-arrow .before {
    display: none;
}
.thumbs .slidebox-arrow-prev {
    left: -2.5rem;
    opacity: 1;
}
.thumbs .slidebox-arrow-next {
    right: -2.5rem;
}
.slidebox-item-row {
    position: relative;
}
.slidebox-item-col {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}
.single-slide .slidebox-list,
.single-slide .slidebox-track {
    width: 100%;
    justify-content: center;
}
.single-slide .slidebox-arrows {
    display: none !important;
}
.single-slide .slidebox-pagination {
    display: none !important;
}
.single-slide .slidebox-progress {
    display: none !important;
}
.single-slide .slidebox-track {
    overflow: visible;
    padding-right: 0 !important;
}
.opt-slide .slidebox-list,
.opt-slide .slidebox-track {
    width: 100%;
    justify-content: center;
}
.opt-slide .slidebox-arrows {
    display: none !important;
}
.arrowcircle .slidebox-arrows {
    position: absolute;
    width: 100%;
    height: 0;
    left: 0;
    top: calc(50% - 2.5rem);
    margin: 0;
    justify-content: space-between;
    color: var(--color-white);
}
.arrowcircle .slidebox-arrow {
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    margin: 0 1.5rem;
    background-color: transparent;
    opacity: 1;
    border: none;
}
.album-center .slidebox-track {
    width: 100%;
}
.album-center .slidebox-list {
    width: 100%;
}
.album-center.arrowcircle .slidebox-arrow {
    margin: 0 0.5rem;
}
.album-load:not(.vertical) .thumbs {
    position: absolute;
    bottom: 1rem;
    line-height: 1;
    margin: auto;
    opacity: 0;
}
.album-load:not(.vertical).show .thumbs {
    animation-name: fadeInUp;
    animation-duration: 1s;
    animation-delay: 0.6s;
    animation-fill-mode: forwards;
}
.album-load.vertical {
    background: var(--color-white);
}
.album-load.vertical .album-center {
    width: calc(100vw - 10rem);
}
.album-load.vertical .thumbs {
    position: absolute;
    width: 10rem;
    height: 100vh;
    left: 0;
    top: 0;
    margin: 0;
    opacity: 0;
    background: var(--color-white);
}
.album-load.vertical.show .thumbs {
    animation-name: fadeIn;
    animation-duration: 1s;
    animation-delay: 0.6s;
    animation-fill-mode: forwards;
}
.album-load.vertical .thumb-item {
    position: relative;
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 16/9;
    margin: 0;
    padding: 0.1rem;
    overflow: hidden;
    border-radius: 0.2rem;
    cursor: pointer;
}
.album-load.vertical .close-album {
    border: 1px solid var(--color-grey);
}
.album-load.vertical .close-album .c-x {
    fill: var(--color-grey);
}
.album-load.vertical .full-screen {
    color: var(--color-grey);
}
.album-load.vertical .full-screen::after {
    border: 1px solid var(--color-grey);
}
.album-load.vertical .arrowcircle .slidebox-arrows {
    width: calc(100vw - 10rem);
    left: 5rem;
    color: var(--color-grey);
}
.album-load.vertical .thumbs.align-middle {
    display: flex;
    align-items: center;
}
.album-load.vertical .thumbs.align-middle .slidebox-track-ttb {
    height: auto !important;
}
html.zoom-active .album-load .slidebox-arrows,
html.zoom-active .album-load .slidebox-pagination,
html.zoom-active .album-load .thumb-item,
html.zoom-active .album-load .thumbs,
html.zoom-active .slidebox-item:not(.is-active) {
    z-index: -999 !important;
    opacity: 0;
    pointer-events: none;
}
html.zoom-active .album-load .slidebox-item:not(.thumb-item).is-active,
html.zoom-active .album-load .slidebox-slide:not(.thumbs),
html.zoom-active .zoom-active {
    z-index: 9999;
}
html.zoom-active .album-load.vertical .album-center {
    width: 100%;
}
@media screen and (max-width: 1100px) {
    .thumb-item {
        border-radius: 5px;
    }
    .thumb-item::after {
        border-radius: 5px;
    }
    .thumbs .slidebox-arrows {
        display: none;
    }
    .album-center .slidebox-arrow {
        display: none;
    }
    .album-center .slidebox-pagination {
        display: none;
    }
    .pagination-custom {
        margin: 1rem 0;
        font-size: 0.8rem;
    }
    .pagination-custom .number-right::before {
        width: 20px;
    }
    .slidebox-arrow {
        width: 3rem;
        height: 3rem;
    }
    .slidebox-arrows .line {
        left: calc(50% + 5rem);
    }
    .slidebox-arrow-prev {
        opacity: 1;
    }
    .arrowcircle .slidebox-arrow {
        width: 3rem;
        height: 3rem;
        margin: 0 1rem;
    }
    .single-slide .logo-item {
        margin: auto !important;
    }
    .number-but .slidebox-pagination-page {
        color: var(--color-black);
    }
    .number-but .slidebox-pagination-page span {
        font-size: 0.6rem;
    }
    .number-but .slidebox-pagination-page::after {
        background: var(--color-black-alpha);
    }
    .number-but .slidebox-pagination-page::before {
        background: var(--color-highlight);
    }
    .number-but .slidebox-pagination-page.is-active {
        background: var(--color-highlight-light);
        color: var(--color-white);
    }
    .number-but .slidebox-pagination-page:hover {
        background: var(--color-highlight-light);
        color: var(--color-white);
    }
}
@media screen and (max-width: 580px) {
    .thumbs {
        width: 90%;
    }
    .pagination-custom {
        margin: 0.3rem 0;
        font-size: 0.8rem;
    }
    .slidebox-arrow {
        width: 40px;
        height: 40px;
    }
    .arrowcircle .slidebox-arrow {
        width: 40px;
        height: 40px;
    }
}
@media only screen and (max-width: 1100px) and (orientation: portrait) {
    .album-load:not(.vertical) .thumbs {
        bottom: 15vh;
    }
}
@media screen and (min-width: 1100px) and (hover: hover) and (pointer: fine) {
    .slidebox-arrow,
    .slidebox-arrow svg,
    .slidebox-pagi-item,
    .slidebox-pagi-item::after,
    .slidebox-pagi-num,
    .slidebox-pagi-numsvg,
    .slidebox-toggle,
    .slidebox-toggle svg,
    .thumb-item {
        transition: all 0.3s ease-in-out;
    }
    .slidebox-pagination-page:hover {
        transform: scale(1.4);
        background: var(--color-normal);
    }
    .slidebox-pagi-num:hover {
        background: var(--color-normal);
        color: var(--color-white);
    }
    .thumb-item:hover {
        opacity: 0.3;
    }
    .slidebox-toggle:hover {
        background-color: var(--color-normal);
    }
    .slidebox-toggle:hover svg {
        stroke-opacity: 0;
        fill: var(--color-white);
    }
    .slidebox-arrow:hover {
        box-shadow: 0 1rem 1rem 0 var(--color-black-alpha-01);
        border-color: transparent;
        opacity: 1;
    }
    .slidebox-arrow-next:hover {
        background-color: var(--color-highlight);
    }
    .slidebox-arrow-prev:hover {
        background-color: var(--color-normal);
    }
    .slidebox-arrow:hover {
        background-color: var(--color-highlight);
        box-shadow: 0 1rem 1rem 0 var(--color-black-alpha-01);
        color: var(--color-white);
    }
    .slidebox-arrow:hover .after {
        animation-name: Show100;
        animation-duration: 2s;
        animation-fill-mode: forwards;
        stroke: var(--color-white);
    }
    .slidebox-arrow:hover .before {
        stroke-width: 0;
    }
    .arrowcircle .slidebox-arrow:hover::before {
        transform: scale(1);
        background-color: var(--color-white);
        box-shadow: 0 1rem 1rem 0 var(--color-black-alpha-01);
    }
    .arrowcircle .slidebox-arrow:hover {
        background-color: transparent;
        box-shadow: none;
        color: var(--color-highlight);
    }
    .album-load.vertical .arrowcircle .slidebox-arrow:hover::before {
        transform: scale(1);
        background-color: var(--color-highlight);
        box-shadow: 0 1rem 1rem 0 var(--color-black-alpha-01);
    }
    .album-load.vertical .arrowcircle .slidebox-arrow:hover {
        background-color: transparent;
        box-shadow: none;
        color: var(--color-white);
    }
    .album-load.vertical .slidebox-arrow:hover .after {
        animation-name: Show100;
        animation-duration: 2s;
        animation-fill-mode: forwards;
        stroke: var(--color-highlight);
    }
}
@keyframes Loading {
    0% {
        transform: rotate(0);
    }
    to {
        transform: rotate(1turn);
    }
}

@keyframes aniWidth {
    0% {
        transform: scale3d(0, 1, 1);
    }
    100% {
        transform: scale3d(1, 1, 1);
    }
}
