:root {
    --primary-font: "WalkieValkyrie", serif;
    --secondary-font: "Poppins", sans-serif;
    --max-container: 1260px;
    --black-color: #222;
    --highlight-color: #EDC330;
    /* APAGAR NO FIM DO DEV */
    --secondary-color: #058468;
    /* APAGAR NO FIM DO DEV */
    --third-color: #FFFCF6;
    /* APAGAR NO FIM DO DEV */
    --fourth-color: #F7F7F7;
    /* APAGAR NO FIM DO DEV */
}

* {
    -webkit-tap-highlight-color: transparent;
}

.wpml-ls-statics-footer,
.otgs-development-site-front-end {
    display: none !important;
}

.no-scroll {
    overflow: hidden !important;
}

.wpb_content_element a {
    color: var(--secondary-color);
    text-decoration: underline;
    text-decoration-color: transparent;
    transition: all 0.2s ease-in-out;
}

.wpb_content_element a:hover {
    color: var(--black-color);
    text-decoration-color: var(--black-color);
}

.wpb_content_element ul li:not(:first-child),
.wpb_content_element ol li:not(:first-child) {
    margin-top: 6px;
}

/* --- LOADER --- */

#loading-screen {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 99;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--highlight-color);
}

#loading-screen .spinner {
    animation: loader-rotate-spinner 1.4s linear infinite;
}

#loading-screen .spinner circle {
    stroke-dasharray: 187;
    stroke-dashoffset: 0;
    transform-origin: center;
    animation: loader-spinner-dash 1.4s ease-in-out infinite,
        loader-spinner-colors 1.8s ease-in-out infinite;
}

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

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

@keyframes loader-spinner-dash {
    0% {
        stroke-dashoffset: 187;
    }

    50% {
        stroke-dashoffset: 46.75;
        -webkit-transform: rotate(135deg);
        transform: rotate(135deg);
    }

    100% {
        stroke-dashoffset: 187;
        -webkit-transform: rotate(450deg);
        transform: rotate(450deg);
    }
}

@keyframes loader-spinner-colors {
    0% {
        stroke: var(--primary-color);
    }

    50% {
        stroke: var(--primary-color);
    }

    100% {
        stroke: var(--primary-color);
    }
}

/* --- TYPOGRAPHY --- */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--primary-font);
}

.wpb_content_element h1,
.wpb_content_element h2,
.wpb_content_element h3,
.wpb_content_element h4,
.wpb_content_element h5 {
    margin-bottom: 0.5em !important;
}

.wpb_content_element h6 {
    margin-bottom: 1em !important;
}

.footer-widget-title,
#mainFooter .widget_nav_menu h2 {
    font-size: 24px !important;
    line-height: 32px !important;
    color: var(--third-color);
    margin-bottom: 20px !important;
}

.text-date {
    font-size: 16px;
    line-height: 24px;
}

.small-paragraph {
    font-size: 16px;
    line-height: 24px;
}

.big-paragraph {
    font-size: 20px;
    line-height: 28px;
}

.ultra-paragraph {
    font-size: 26px;
    line-height: 34px;
}

/* --- CONTAINER --- */

@media only screen and (min-width: 1000px) {

    .container,
    body[data-header-format="left-header"] .container,
    .woocommerce-tabs .full-width-content .tab-container,
    .nectar-recent-posts-slider .flickity-page-dots,
    .post-area.standard-minimal.full-width-content .post .inner-wrap,
    .material #search-outer #search {
        padding: 0;
    }
}

@media only screen and (min-width: 320px) {

    .container,
    body[data-header-format="left-header"] .container,
    .woocommerce-tabs .full-width-content .tab-container,
    .nectar-recent-posts-slider .flickity-page-dots,
    .post-area.standard-minimal.full-width-content .post .inner-wrap,
    .material #search-outer #search {
        max-width: var(--max-container) !important;
    }

    .stretch-content {
        max-width: var(--max-container) !important;
        margin-left: auto !important;
        margin-right: auto !important;
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media only screen and (max-width: 1300px) {

    .container,
    body[data-header-format="left-header"] .container,
    .woocommerce-tabs .full-width-content .tab-container,
    .nectar-recent-posts-slider .flickity-page-dots,
    .post-area.standard-minimal.full-width-content .post .inner-wrap,
    .material #search-outer #search {
        padding-left: 20px;
        padding-right: 20px;
    }
}

/* --- HEADER --- */

#header-outer #top #logo {
    font-family: var(--primary-font);
    font-size: 32px;
    color: var(--third-color);
    white-space: nowrap;
}

#header-outer #top #logo span {
    font-family: var(--secondary-font);
    font-size: 17px;
    font-weight: 400;
    color: var(--highlight-color);
}

#header-outer.transparent[data-lhe="default"] #top nav>ul>li>a:hover,
#header-outer.transparent[data-lhe="default"] #top nav .sf-menu>.sfHover:not(#social-in-menu)>a {
    color: var(--highlight-color) !important;
}

body.material #search-outer #search #close {
    right: 15px !important;
}

#slide-out-widget-area .menuwrapper li small,
#slide-out-widget-area .off-canvas-social-links li a,
#slide-out-widget-area.fullscreen .inner li a,
#slide-out-widget-area.slide-out-from-right .inner .off-canvas-menu-container li a,
#slide-out-widget-area.slide-out-from-right-hover .inner .off-canvas-menu-container li a {
    opacity: 1 !important;
}

#slide-out-widget-area .menuwrapper .back>a {
    background: transparent !important;
    font-weight: 400 !important;
    color: var(--highlight-color) !important;
}

@media only screen and (max-width: 999px) {
    body #header-outer {
        padding: 16px 0;
    }
}

@media only screen and (max-width: 690px) {
    #header-outer #top #logo {
        font-size: 28px;
    }

    #header-outer #top #logo span {
        font-size: 14px;
    }
}

/* --- SEARCH HEADER --- */

body.material #search-outer #search #search-box input[type="text"] {
    font-family: var(--primary-font);
    border-bottom-width: 1px;
}

body[data-header-color="custom"] #search-outer #search .span_12 span {
    font-size: 16px;
    line-height: 24px;
    opacity: 1;
    color: var(--third-color);
}

@media only screen and (max-width: 690px) {
    body.material #search-outer #search #search-box input[type="text"] {
        font-size: 22px;
        line-height: 34px;
    }
}

/* --- BREADCRUMBS --- */

.custom-breadcrumbs .wrapper {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0 6px;
}

.custom-breadcrumbs a,
.custom-breadcrumbs .current {
    font-size: 16px;
    line-height: 22px;
}

.custom-breadcrumbs .current {
    max-width: 250px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    overflow: hidden;
    text-overflow: ellipsis;
}

.custom-breadcrumbs a:hover {
    color: var(--secondary-color);
}

.custom-breadcrumbs .current {
    font-weight: 500;
    color: var(--secondary-color);
}

.custom-breadcrumbs .paged {
    font-size: 14px;
    line-height: 18px;
}

@media only screen and (max-width: 768px) {

    .custom-breadcrumbs a,
    .custom-breadcrumbs .current {
        font-size: 14px;
        line-height: 20px;
    }
}

/* --- BREADCRUMB TEMPLATE PAGE --- */

.template-page-breadcrumb h1 {
    margin-top: 15px;
    margin-bottom: 0;
}

/* --- TAGS COMPONENT --- */

.tag-component {
    padding: 2px 8px;
    border: 1px solid var(--black-color);
    border-radius: 4px;
    font-size: 16px;
    line-height: 22px;
}

/* --- DROP AREA --- */

.drop-area-input {
    width: 100%;
    max-width: 100%;
    padding: 100px 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    outline: dashed 1px var(--black-color);
    border-radius: 8px;
    background-color: var(--fourth-color);
    transition: background-color 0.2s ease-in-out;
    max-height: 50dvh;
}

.drop-area-input:not(.has-image):hover {
    cursor: pointer;
}

.drop-area-input.hover {
    background-color: #eee;
}

.drop-area-input.has-image {
    width: max-content;
    padding: 0px;
    position: relative;
}

.drop-area-input img {
    width: auto;
    max-width: max-content;
    height: max-content;
    max-height: 50dvh;
}

.drop-area-input button.remove {
    appearance: none;
    border: none;
    padding: 8px 12px;
    background-color: #ea1919;
    color: #fff;
    position: absolute;
    top: 8px;
    right: 8px;
    font-weight: 600;
    transition: all 0.2s ease-in-out;
}

.drop-area-input button.remove:hover {
    cursor: pointer;
    opacity: .8;
}

.drop-area-input .wrapper {
    text-align: center;
}

.drop-area-input p {
    text-align: center;
    padding-bottom: 0;
}

.drop-area-input p span {
    font-weight: 600;
    color: var(--secondary-color);
    transition: color 0.2s ease-in-out;
}

.drop-area-input p span:hover {
    color: var(--black-color);
    cursor: pointer;
}

@media only screen and (max-width: 690px) {
    .drop-area-input {
        padding: 45px 25px;
    }

    .drop-area-input img {
        max-height: 40dvh;
    }
}

/* --- CHECKBOX INPUT --- */

.form-control-checkbox {
    line-height: 0;
}

.form-control-checkbox label {
    display: inline-flex !important;
    gap: .75em;
}

.form-control-checkbox input {
    appearance: none;
    background-color: #fff;
    border: 1px solid var(--black-color);
    border-radius: 4px;
    font-size: 1em;
    line-height: 1.5em;
    min-height: 1.5em;
    min-width: 1.5em;
    overflow: hidden;
    position: static;
    vertical-align: middle;
    text-align: center;
    width: 1.5em;
    height: 1.5em;
    color: var(--secondary-color);
    margin-right: 0 !important;
    display: inline-block !important;
    margin: 0 !important;
}

.form-control-checkbox input:focus {
    border-color: var(--secondary-color);
}

.form-control-checkbox input:hover,
.form-control-checkbox label:hover {
    cursor: pointer;
}

.form-control-checkbox label span {
    font-size: 16px;
    line-height: 26px;
    color: var(--black-color);
}

.form-control-checkbox label a {
    color: var(--secondary-color);
    font-weight: 600;
    text-decoration: underline;
    text-decoration-color: transparent;
    transition: all 0.2s ease-in-out;
}

.form-control-checkbox label a:hover {
    text-decoration-color: var(--secondary-color);
}

.form-control-checkbox input:checked::before {
    content: url("data:image/svg+xml,%3Csvg width='17' height='17' aria-hidden='true' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 20'%3E%3Cpath d='M9 16.2L4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4L9 16.2z' fill='%23058468'/%3E%3C/svg%3E");
}

.form-control-checkbox input.error:not(:checked) {
    border-color: #f3695f;
    outline: none !important;
}

.form-control-checkbox:has(input.error:not(:checked)) span {
    color: #f3695f;
}

/* --- BUTTONS --- */

.primary-bt {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-bottom: 2px solid;
    width: max-content;
    font-size: 18px;
    font-weight: 500;
    line-height: 22px;
    padding: 4px 0px;
    transition: all 0.2s ease-in-out;
}

.primary-bt:hover {
    gap: 15px;
    border-bottom-color: transparent;
}

.primary-bt.reverse {
    flex-direction: row-reverse;
}

.primary-bt.reverse svg {
    transform: rotateZ(180deg);
}

.light-bt {
    color: var(--third-color);
    border-bottom-color: var(--third-color);
}

.light-bt:hover {
    color: var(--highlight-color);
}

.dark-bt {
    color: var(--black-color);
    border-bottom-color: var(--black-color);
}

.dark-bt:hover {
    color: var(--secondary-color);
}

/* --- FOOTER --- */

#mainFooter .row-bg-wrap .row-bg {
    background-color: var(--primary-color);
}

#mainFooter .footer-menu .menu {
    margin: 0;
    display: inline-flex;
    flex-wrap: wrap;
    gap: 8px 15px;
}

#mainFooter .footer-menu li {
    list-style: none;
    line-height: 1;
    margin: 0;
}

#mainFooter .footer-menu li a {
    font-weight: 500;
    font-size: 14px;
    line-height: 1.2em;
    color: var(--third-color);
}

#mainFooter .footer-menu li a:hover {
    color: var(--highlight-color);
}

#mainFooter .widget_nav_menu .menu {
    margin: 0;
}

#mainFooter .widget_nav_menu .menu li {
    list-style: none;
    font-size: 16px;
    font-weight: 500;
    color: var(--third-color);
    padding: 3px 0;
}

#mainFooter .widget_nav_menu .menu li a:hover {
    color: var(--highlight-color);
}

@media only screen and (min-width: 691px) and (max-width: 1300px) {
    #mainFooter #topFooter .col {
        margin-bottom: 25px;
    }
}

/* --- FOOTER – ABOUT SHORTCODE --- */

.footer-about h3 {
    color: var(--third-color);
    line-height: 26px !important;
    margin-bottom: 0 !important;
}

.footer-about h3>span {
    font-family: var(--secondary-font);
    font-size: 17px;
    font-weight: 400;
    color: var(--highlight-color);
}

.footer-about .desc {
    margin-top: 20px;
}

.footer-about .desc p {
    font-size: 16px;
    max-width: 420px;
    color: var(--third-color);
}

/* --- FOOTER – SOCIAL NETWORKS SHORTCODE --- */

.footer-social-networks .inner {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    align-items: center;
}

.footer-social-networks a {
    color: var(--third-color);
}

.footer-social-networks a:hover {
    color: var(--highlight-color);
}

/* --- FOOTER – CONTACTS SHORTCODE --- */

.footer-contacts .inner>div {
    color: var(--third-color);
    font-size: 16px;
    line-height: 26px;
    font-weight: 500;
}

.footer-contacts .inner>div a {
    display: inline-block;
    color: var(--third-color);
}

.footer-contacts .inner>div a:hover {
    color: var(--highlight-color);
}

.footer-contacts .inner .phone-desc {
    font-weight: 400;
}

/* --- FOOTER – COPYRIGHTS SHORTCODE --- */

.footer-copyrights span {
    font-size: 14px;
    line-height: 1.2em;
    font-weight: 500;
    color: var(--third-color);
}

.footer-copyrights span a {
    color: var(--third-color);
}

.footer-copyrights span a:hover {
    color: var(--highlight-color);
}

/* --- SLIDER HIGHLIGHT SHORTCODE --- */

.slider-highlights {
    margin-bottom: 0 !important;
}

.slider-highlights .swiper {
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
}

.slider-highlights .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 815px;
}

.slider-highlights .swiper-slide::before,
.slider-highlights .swiper-slide::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    pointer-events: none;
    z-index: 0;
}

.slider-highlights .swiper-slide::before {
    top: 0;
    height: 100px;
}

.slider-highlights .swiper-slide::after {
    bottom: 0;
    height: 815px;
}

.slider-highlights .swiper-slide img {
    display: block;
    width: 100% !important;
    height: 100%;
    object-fit: cover;
}

.slider-highlights .container {
    pointer-events: none;
}

.slider-highlights .swiper-pagination {
    text-align: right;
    margin-bottom: 60px;
    z-index: 2;
}

.slider-highlights .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: var(--third-color);
    opacity: 0.8;
    pointer-events: all;
}

.slider-highlights .swiper-pagination-bullet-active {
    background-color: var(--highlight-color);
    opacity: 1;
}

.slider-highlights .text-wrapper {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
    max-width: var(--max-container);
    z-index: 12;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 65px;
}

.slider-highlights .text-wrapper .tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 10px;
}

.slider-highlights .text-wrapper .tags span {
    border: 1px solid var(--third-color);
    border-radius: 4px;
    padding: 2px 8px;
    color: var(--third-color);
}

.slider-highlights .text-wrapper h2 {
    font-size: 54px;
    line-height: 62px;
    color: var(--highlight-color);
    max-width: 680px;
    margin-top: 15px;
}

.slider-highlights .text-wrapper .desc {
    max-width: 620px;
    color: var(--third-color);
    margin-top: 15px;
}

.slider-highlights .text-wrapper .desc p {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    overflow: hidden;
    text-overflow: ellipsis;
}

.slider-highlights .text-wrapper a {
    margin-top: 35px;
}

.slider-highlights .progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 4px;
    background-color: var(--highlight-color);
    transition: width linear;
    z-index: 99;
}

@media only screen and (max-width: 1299px) {

    .slider-highlights .text-wrapper,
    .slider-highlights .swiper-pagination {
        padding-inline: 20px;
    }
}

@media only screen and (max-width: 1200px) {
    .slider-highlights .swiper-slide {
        height: 680px;
    }
}

@media only screen and (max-width: 1000px) {
    .slider-highlights .text-wrapper .desc {
        max-width: 80vw;
    }
}

@media only screen and (max-width: 768px) {
    .slider-highlights .swiper-slide {
        height: calc(90vh - 15px);
        min-height: 580px;
    }

    .slider-highlights .text-wrapper h2 {
        font-size: 45px;
        line-height: 53px;
    }
}

@media only screen and (max-width: 690px) {
    .slider-highlights .swiper-pagination {
        text-align: left;
        margin-bottom: 30px;
    }

    .slider-highlights .text-wrapper {
        padding-bottom: 90px;
    }

    .slider-highlights .text-wrapper .tags span {
        font-size: 14px;
        line-height: 22px;
        padding: 1px 6px;
    }

    .slider-highlights .text-wrapper h2 {
        font-size: 32px;
        line-height: 40px;
    }

    .slider-highlights .text-wrapper .desc {
        margin-top: 8px;
    }

    .slider-highlights .text-wrapper .desc p {
        font-size: 16px;
        line-height: 24px;
    }

    .slider-highlights .text-wrapper a {
        font-size: 16px;
        margin-top: 20px;
    }
}

/* --- ARCHIVE ACTIVITY --- */

.archive-activity .wrapper>.container {
    padding-top: 65px;
    padding-bottom: 65px;
}

.archive-activity .wrapper>.container h1 {
    margin-top: 15px;
}

.archive-activity .feature-activities {
    margin-top: 45px;
}

.archive-activity .feature-activities .swiper {
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 8px;
    position: relative;
}

.archive-activity .feature-activities .navigation {
    position: absolute;
    bottom: 45px;
    right: 45px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    z-index: 99;
}

.archive-activity .feature-activities .navigation .prev,
.archive-activity .feature-activities .navigation .next {
    line-height: 0;
    color: var(--third-color);
    transition: color 0.2s ease-in-out;
}

.archive-activity .feature-activities .navigation .prev:hover,
.archive-activity .feature-activities .navigation .next:hover {
    cursor: pointer;
    color: var(--highlight-color);
}

.archive-activity .activities-filter {
    margin-top: 65px;
}

.archive-activity .activities-filter .filters-wrapper {
    overflow: hidden;
}

.archive-activity .activities-filter .filters-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 15px 30px;
}

.archive-activity .activities-filter .filter-item {
    font-size: 20px;
    line-height: 28px;
    white-space: nowrap;
}

.archive-activity .activities-filter .filter-item.current,
.archive-activity .activities-filter .filter-item:hover {
    color: var(--secondary-color);
}

.archive-activity .activities-grid {
    margin-top: 45px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.archive-activity .activities-grid .card {
    flex: 1 1 calc(33.333% - 13.333px);
    max-width: calc(33.333% - 13.333px);
    box-sizing: border-box;
    height: auto;
}

.archive-activity .activities-grid .archive-navigation {
    width: 100%;
    margin-top: 45px;
}

.archive-activity .activities-grid .navigation .screen-reader-text {
    display: none;
}

@media only screen and (max-width: 1000px) {
    .archive-activity .activities-filter .filters-wrapper {
        margin-inline: -20px;
    }

    .archive-activity .activities-filter .filters-stack {
        flex-wrap: nowrap;
        overflow-x: auto;
        scrollbar-width: none;
        -ms-overflow-style: none;
        gap: 8px 20px;
        padding: 8px 20px;
    }

    .archive-activity .activities-filter .filters-stack::-webkit-scrollbar {
        display: none;
    }

    .archive-activity .activities-grid .card {
        flex: 1 1 calc(50% - 10px);
        max-width: calc(50% - 10px);
    }
}

@media only screen and (max-width: 768px) {
    .archive-activity .wrapper>.container {
        padding-top: 45px;
    }

    .archive-activity .feature-activities,
    .archive-activity .activities-grid,
    .archive-activity .activities-grid .archive-navigation {
        margin-top: 25px;
    }

    .archive-activity .activities-filter {
        margin-top: 45px;
    }
}

@media only screen and (max-width: 690px) {
    .archive-activity .feature-activities .navigation {
        display: none;
    }

    .archive-activity .activities-filter .filter-item {
        font-size: 18px;
        line-height: 20px;
    }

    .archive-activity .activities-grid .card {
        flex: 1 1 100%;
        max-width: 100%;
    }
}

/* --- SINGLE ACTIVITY --- */

.single-activity .wrapper>.container {
    padding-top: 65px;
    padding-bottom: 65px;
}

.single-activity .single-content {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    margin-top: 40px;
}

.single-activity .single-content .column {
    flex: 1 1 calc(50% - 30px);
    max-width: calc(50% - 30px);
}

.single-activity .single-content .tags {
    margin-top: 15px;
}

.single-activity .single-content .tag-component {
    border-color: var(--secondary-color);
    color: var(--secondary-color);
}

.single-activity .single-content .location {
    display: flex;
    gap: 0 5px;
    align-items: center;
    margin-top: 25px;
}

.single-activity .single-content .description {
    margin-top: 25px;
}

.single-activity .single-content .description ul li:not(:first-child),
.single-activity .single-content .description ol li:not(:first-child) {
    margin-top: 6px;
}

.single-activity .single-content .date {
    margin-top: 25px;
    color: var(--secondary-color);
}

.single-activity .single-content .primary-bt {
    margin-top: 35px;
}

.single-activity .single-content .swiper {
    width: 100%;
    overflow: hidden;
    border-radius: 8px;
    position: relative;
}

.single-activity .single-content .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 480px;
}

.single-activity .single-content .swiper-slide img {
    display: block;
    width: 100% !important;
    height: 100%;
    object-fit: cover;
    margin-bottom: 0 !important;
}

.single-activity .single-content .swiper .navigation {
    position: absolute;
    bottom: 20px;
    left: 20px;
    z-index: 9;
    display: flex;
    gap: 10px;
}

.single-activity .single-content .swiper .navigation .next,
.single-activity .single-content .swiper .navigation .prev {
    background-color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 35px;
    transition: background-color 0.3s ease-in-out;
}

.single-activity .single-content .swiper .navigation .next:hover,
.single-activity .single-content .swiper .navigation .prev:hover {
    background-color: var(--highlight-color);
    cursor: pointer;
}

.single-activity #map {
    height: 520px;
    width: 100%;
}

.single-activity .other-activities {
    padding: 85px 0;
    background-color: var(--highlight-color);
}

.single-activity .other-activities>.container {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.single-activity .other-activities h2 {
    flex: 1;
    color: var(--primary-color);
}

.single-activity .other-activities .navigation {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
}

.single-activity .other-activities .navigation .next,
.single-activity .other-activities .navigation .prev {
    transition: opacity 0.2s ease-in-out;
}

.single-activity .other-activities .navigation .next:hover,
.single-activity .other-activities .navigation .prev:hover {
    cursor: pointer;
    opacity: 0.7;
}

.single-activity .other-activities .swiper {
    width: 100%;
    height: 100%;
    margin-top: 45px;
}

.single-activity .other-activities .swiper-slide {
    width: 100% !important;
    max-width: calc(calc(var(--max-container) / 3) - 13.333px);
    display: flex;
    justify-content: flex-start;
    align-items: center;
    position: relative;
    height: auto !important;
}

@media only screen and (max-width: 1000px) {
    .single-activity .single-content .column {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .single-activity .single-content .description {
        max-width: 768px;
    }
}

@media only screen and (max-width: 768px) {
    .single-activity .wrapper>.container {
        padding-top: 45px;
    }

    .single-activity .single-content {
        margin-top: 15px;
    }
}

@media only screen and (max-width: 690px) {
    .single-activity .other-activities {
        padding-top: 45px;
    }

    .single-activity .other-activities .swiper {
        margin-top: 25px;
    }

    .single-activity .other-activities>.container {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media only screen and (max-width: 480px) {
    .single-activity .other-activities .swiper-slide {
        max-width: calc(100vw - 40px);
    }
}

/* --- CARD --- */

.card {
    display: flex;
    width: 100%;
    height: 100%;
}

.card .wrapper {
    overflow: hidden;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.card .img-holder {
    width: 100%;
    height: 230px;
    position: relative;
}

.card .img-holder img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    object-position: center;
}

.card .img-holder .icon-wrapper {
    position: absolute;
    bottom: 0;
    right: 25px;
    transition: all 0.2s ease-in-out;
}

.card:hover .img-holder .icon-wrapper {
    right: 0;
}

.card .img-holder .icon-wrapper .icon {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    background-color: var(--fourth-color);
    transition: all 0.2s ease-in-out;
    position: relative;
    z-index: 99;
}

.card:hover .img-holder .icon-wrapper .icon {
    border-top-right-radius: 0;
}

.card.white .img-holder .icon-wrapper .icon {
    background-color: #fff;
}

.card.white .img-holder .icon-wrapper .icon {
    background-color: #fff;
}

.card .img-holder .border-bottom {
    position: absolute;
    left: -16px;
    bottom: 0;
    width: 16px;
    height: 16px;
    line-height: 0;
}

.card .img-holder .border-bottom svg,
.card .img-holder .border-top svg {
    fill: var(--fourth-color);
}

.card.white .img-holder .border-bottom svg,
.card.white .img-holder .border-top svg {
    fill: #fff;
}

.card .img-holder .border-top {
    position: absolute;
    right: 0;
    top: 0;
    width: 16px;
    height: 16px;
    line-height: 0;
    transition: all 0.2s ease-in-out;
}

.card:hover .img-holder .border-top {
    top: -16px;
}

.card .text-holder {
    flex: 1;
    padding: 30px 25px;
    background-color: var(--fourth-color);
}

.card.white .text-holder {
    background-color: #fff;
}

.card .tags {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px 8px;
}

.card.new .tags {
    margin-top: 15px;
}

.card .tags .tag-component {
    color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.card .text-holder h5 {
    margin-top: 10px;
    margin-bottom: 0;
    color: var(--primary-color);
}

.card .date {
    margin-top: 6px;
    color: var(--secondary-color);
}

.card .location {
    display: flex;
    align-items: flex-start;
    gap: 6px;
    margin-top: 15px;
}

.card .location svg {
    margin-top: 2px;
}

.card .text-holder .desc {
    margin-top: 15px;
}

.card .text-holder .desc p {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    overflow: hidden;
    text-overflow: ellipsis;
    padding-bottom: 0;
}

/* --- CARD FEATURE --- */

.card-feature {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
    height: 520px;
    overflow: hidden;
    border-radius: 8px;
}

.card-feature img {
    width: 100% !important;
    height: 100%;
    object-fit: cover;
    object-position: center;
    margin-bottom: 0 !important;
    z-index: 0;
}

.card-feature::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    pointer-events: none;
    z-index: 1;
}

.card-feature .text-wrapper {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    max-width: 680px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 45px;
}

.card-feature .text-wrapper .tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 10px;
}

.card-feature .text-wrapper .tags span {
    color: var(--third-color);
    border-color: var(--third-color);
}

.card-feature .text-wrapper h2 {
    color: var(--highlight-color);
    margin-top: 15px;
    margin-bottom: 0;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
}

.card-feature .text-wrapper .desc {
    max-width: 620px;
    color: var(--third-color);
    margin-top: 15px;
}

.card-feature .text-wrapper .desc span.big-paragraph {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
}

.card-feature .text-wrapper .date {
    margin-top: 15px;
    color: var(--third-color);
}

@media only screen and (max-width: 1000px) {
    .card-feature .text-wrapper .desc {
        max-width: 80vw;
    }
}

@media only screen and (max-width: 768px) {
    .card-feature .text-wrapper .desc {
        max-width: 60vw;
    }
}

@media only screen and (max-width: 690px) {
    .card-feature {
        height: 60vh;
        min-height: 320px;
    }

    .card-feature .text-wrapper {
        padding: 25px;
    }

    .card-feature .text-wrapper .tags span {
        font-size: 14px;
        line-height: 22px;
        padding: 1px 6px;
    }

    .card-feature .text-wrapper h2 {
        font-size: 32px;
        line-height: 40px;
    }

    .card-feature .text-wrapper .desc {
        margin-top: 8px;
        max-width: 100%;
    }

    .card-feature .text-wrapper .desc span.big-paragraph {
        font-size: 16px;
        line-height: 24px;
    }

    .card-feature .text-wrapper .date {
        margin-top: 8px;
    }

    .card-feature .text-wrapper .text-date {
        font-size: 14px;
        line-height: 22px;
    }
}

/* --- CARD SMALL --- */

.card-small {
    width: 100%;
    margin: 0;
    padding: 30px 30px 45px 30px;
    background-color: var(--fourth-color);
    display: block;
    border-radius: 8px;
    position: relative;
}

.card-small.white {
    background-color: #fff;
}

.card-small.feature {
    background-color: var(--secondary-color);
}

.card-small .tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 8px;
    margin-bottom: 6px;
}

.card-small .tags span {
    color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.card-small.feature .tags span {
    color: var(--highlight-color);
    border-color: var(--highlight-color);
}

.card-small h5 {
    margin: 0;
}

.card-small .date {
    margin-top: 6px;
    color: var(--secondary-color);
}

.card-small .desc {
    margin-top: 6px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
}

.card-small.feature .date {
    color: var(--highlight-color);
}

.card-small .location {
    display: flex;
    align-items: flex-start;
    gap: 6px;
    margin-top: 10px;
}

.card-small .location svg {
    margin-top: 2px;
}

.card-small .icon-wrapper {
    position: absolute;
    bottom: 0;
    right: 30px;
    transition: all 0.2s ease-in-out;
}

.card-small:hover .icon-wrapper {
    right: 0;
}

.card-small .icon-wrapper .icon {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    background-color: #fff;
    transition: all 0.2s ease-in-out;
    position: relative;
    z-index: 99;
}

.card-small.white .icon-wrapper .icon,
.card-small.white .icon-wrapper .icon {
    background-color: var(--highlight-color);
}

.card-small:hover .icon-wrapper .icon {
    border-top-right-radius: 0;
}

.card-small .icon-wrapper .icon svg {
    fill: var(--black-color);
}

.card-small .icon-wrapper .border-bottom {
    position: absolute;
    left: -16px;
    bottom: -1px;
    width: 16px;
    height: 16px;
    line-height: 0;
}

.card-small .icon-wrapper .border-top svg,
.card-small .icon-wrapper .border-bottom svg {
    fill: #fff;
}

.card-small.white .icon-wrapper .border-top svg,
.card-small.white .icon-wrapper .border-bottom svg {
    fill: var(--highlight-color);
}

.card-small.white.feature .icon-wrapper .border-top svg,
.card-small.white.feature .icon-wrapper .border-bottom svg {
    fill: var(--highlight-color);
}

.card-small .icon-wrapper .border-top {
    position: absolute;
    top: 0;
    right: 0;
    width: 16px;
    height: 16px;
    line-height: 0;
    transition: all 0.2s ease-in-out;
}

.card-small:hover .icon-wrapper .border-top {
    top: -16px;
}

.card-small.feature h5,
.card-small.feature .location {
    color: #fff;
}

/* --- CARD ACTIVITY PROGRAM --- */

.card-activity-program {
    padding: 40px 40px 0 40px;
}

.card-activity-program:last-child {
    padding: 40px;
}

.card-activity-program .time {
    display: block;
    margin-bottom: 5px;
}

.card-activity-program a {
    display: inline-block;
}

.card-activity-program h3 {
    margin-bottom: 0 !important;
    text-decoration: underline;
    text-decoration-color: transparent;
    text-decoration-thickness: 2px;
    text-underline-offset: 0.1em;
    transition: all 0.1s ease-in-out;
}

.card-activity-program a:hover h3 {
    text-decoration-color: var(--black-color);
}

.card-activity-program .location {
    display: flex;
    align-items: flex-start;
    gap: 4px;
    margin-top: 15px;
}

.card-activity-program .location svg {
    margin-top: 2px;
}

.card-activity-program .desc {
    margin-top: 15px;
}

.card-activity-program .desc a {
    color: var(--secondary-color);
    text-decoration: underline;
    text-decoration-color: transparent;
    transition: all 0.2s ease-in-out;
}

.card-activity-program .desc a:hover {
    color: var(--black-color);
    text-decoration-color: var(--black-color);
}

.card-activity-program .desc h1 {
    font-size: 34px;
    line-height: 1.2em;
}

.card-activity-program .desc h2 {
    font-size: 30px;
    line-height: 1.2em;
}

.card-activity-program .desc h3 {
    font-size: 26px;
    line-height: 1.2em;
}

.card-activity-program .desc h4 {
    font-size: 22px;
    line-height: 1.2em;
}

.card-activity-program .desc h5 {
    font-size: 20px;
    line-height: 1.2em;
}

.card-activity-program .desc h6 {
    font-size: 18px;
    line-height: 1.2em;
}

.card-activity-program .desc pre {
    font-family: var(--secondary-font);
}

.card-activity-program .tags {
    margin-top: 15px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px 10px;
}

.card-activity-program .feature-img {
    margin-top: 25px;
    overflow: hidden;
    border-radius: 8px;
    width: 100%;
    height: 440px;
}

.card-activity-program .feature-img img {
    width: 100% !important;
    height: 100%;
    object-fit: cover;
    object-position: center;
    margin-bottom: 0 !important;
}

.card-activity-program:not(:last-child) .line {
    width: 100%;
    height: 2px;
    background-color: var(--black-color);
    margin-top: 35px;
}

@media only screen and (max-width: 690px) {
    .card-activity-program {
        padding: 25px 25px 0 25px;
    }

    .card-activity-program:last-child {
        padding: 25px;
    }

    .card-activity-program .feature-img {
        height: 320px;
    }

    .card-activity-program:not(:last-child) .line {
        margin-top: 25px;
    }
}

@media only screen and (max-width: 480px) {
    .card-activity-program .feature-img {
        height: 220px;
    }
}

/* --- CARD TIMETABLE --- */

.card-timetable {
    margin-bottom: 0 !important;
    position: relative;
    height: auto;
}

.card-timetable .inner {
    padding: 35px 35px 70px 35px;
    background-color: var(--fourth-color);
    border-radius: 8px;
    height: 100%;
}

.card-timetable .text-wrapper {
    border-top: 1px solid var(--black-color);
    margin-top: 15px;
}

.card-timetable .text-wrapper h4 {
    margin-bottom: 0;
}

.card-timetable .text-wrapper p {
    margin-top: 15px;
    padding-bottom: 0;
    color: var(--secondary-color);
}

.card-timetable .text-wrapper ul {
    margin-top: 20px;
    margin-left: 22px;
    margin-bottom: 0;
}

.card-timetable .text-wrapper ul li:not(:first-child) {
    margin-top: 6px;
}

.card-timetable .icon {
    line-height: 0;
    position: absolute;
    right: 20px;
    bottom: 20px;
}

.card-timetable .icon svg {
    fill: var(--secondary-color);
}

/* --- CARD PARTNER --- */

.card-partner {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 140px;
    padding: 20px 30px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0px 0px 10px rgba(34, 34, 34, 0.2);
}

.card-partner img {
    max-height: 100px !important;
    margin-bottom: 0 !important;
}

/* --- CARD ARCHIVE --- */

.card-archive {
    height: auto;
    width: 100%;
    background-color: var(--fourth-color);
}

.card-archive .img-holder {
    line-height: 0;
}

.card-archive .img-holder img {
    margin-bottom: 0;
    line-height: 0;
}

.card-archive ul.list {
    margin: 0;
    padding: 15px;
}

.card-archive ul.list li {
    list-style: none;
}

.card-archive ul.list li:not(:first-child) {
    margin-top: 2px;
}

.card-archive ul.list li a {
    display: inline-flex;
    align-items: flex-start;
    gap: 6px;
}

.card-archive ul.list li a svg {
    width: 20px;
}

.card-archive ul.list li a span {
    flex: 1;
}

/* --- ARCHIVE NAVIGATION --- */

.archive-navigation,
.archive-navigation .nav-links {
    display: flex;
    align-items: center;
    gap: 5px;
    margin: 0;
    padding: 0;
}

.archive-navigation .page-numbers {
    list-style: none;
    font-size: 18px;
    line-height: 24px;
    font-weight: 500;
    padding: 5px;
    transition: all 0.3s ease-in-out;
}

.archive-navigation .page-numbers:hover {
    cursor: pointer;
}

.archive-navigation .page-numbers:hover,
.archive-navigation .page-numbers.current {
    color: var(--secondary-color);
}

.archive-navigation .prev,
.archive-navigation .next {
    display: inline-flex;
    align-items: center;
    line-height: 0;
    height: 24px;
}

/* --- PROGRAM STICKY --- */

.program-sticky .filters .filters-wrapper {
    overflow: hidden;
}

.program-sticky .filters .filters-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 15px 30px;
}

.program-sticky .filters .filter-item {
    font-size: 24px;
    font-weight: 500;
    line-height: 28px;
    white-space: nowrap;
}

.program-sticky .filters .filter-item:hover {
    color: var(--secondary-color);
}

.program-sticky .day-wrapper {
    display: flex;
    height: auto;
    background-color: var(--fourth-color);
    margin-top: 35px;
}

.program-sticky .day-wrapper .day-col {
    width: 33.333%;
    position: relative;
}

.program-sticky .day-col .day {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 30px;
    color: var(--primary-color);
    position: -webkit-sticky;
    position: sticky;
    top: 120px;
}

.program-sticky .day-col .day .num {
    font-family: var(--primary-font);
    font-size: 115px;
    font-weight: 600;
    line-height: 100px;
}

.program-sticky .day-col .day .name {
    flex: 1;
}

.program-sticky .day-col .day .name span {
    font-family: var(--primary-font);
    font-size: 28px;
    font-weight: 600;
    line-height: 28px;
}

.program-sticky .day-col .day .name .line {
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
    margin-top: 6px;
    margin-bottom: 6px;
}

.program-sticky .day-wrapper .program-col {
    width: 66.666%;
}

.program-sticky .info {
    margin-top: 25px;
}

@media only screen and (max-width: 1000px) {
    .program-sticky .filters .filters-wrapper {
        margin-inline: -20px;
    }

    .program-sticky .filters .filters-stack {
        flex-wrap: nowrap;
        overflow-x: auto;
        scrollbar-width: none;
        -ms-overflow-style: none;
        gap: 8px 20px;
        padding: 8px 20px;
    }

    .program-sticky .filters .filters-stack::-webkit-scrollbar {
        display: none;
    }

    .program-sticky .day-wrapper {
        flex-direction: column;
        margin-top: 25px;
    }

    .program-sticky .day-wrapper .day-col,
    .program-sticky .day-wrapper .program-col {
        width: 100%;
    }

    .program-sticky .day-wrapper.fixed {
        padding-top: 160px;
    }

    .program-sticky .day-wrapper.fixed .day-col {
        width: calc(100vw - 40px);
        top: 79px;
        position: fixed;
    }

    .program-sticky .day-col .day {
        padding: 20px;
    }

    .program-sticky .day-col .day .num {
        font-size: 75px;
        line-height: 75px;
    }

    .program-sticky .day-col .day .name span {
        font-size: 20px;
        line-height: 20px;
    }

    .program-sticky .day-col .day .name .line {
        height: 1px;
        margin-top: 3px;
        margin-bottom: 3px;
    }
}

@media only screen and (max-width: 690px) {
    .program-sticky .filters .filter-item {
        font-size: 18px;
        line-height: 20px;
    }

    .program-sticky .day-wrapper.fixed {
        padding-top: 150px;
    }
}

/* --- QUICK LINK --- */

.quick-link {
    margin-bottom: 0 !important;
    display: flex;
    width: 100%;
    height: 420px;
    position: relative;
    overflow: hidden;
    border-radius: 16px;
}

.quick-link.has-img::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
}

.quick-link img {
    width: 100% !important;
    height: 100%;
    margin-bottom: 0 !important;
    object-fit: cover;
    object-position: center;
    position: relative;
    z-index: 0;
}

.quick-link h2 {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 35px;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 2;
}

.quick-link h2 span {
    flex: 1;
}

.quick-link .arrow {
    overflow: hidden;
    width: 32px;
    height: 32px;
}

.quick-link .arrow .wrapper {
    width: 64px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateX(-32px);
    transition: all 0.3s ease-in-out;
}

.quick-link:hover .arrow .wrapper {
    transform: translateX(0);
}

@media only screen and (max-width: 690px) {
    .quick-link {
        height: 380px;
    }
}

/* --- ACTIVITIES AND NEXT ACTIVITIES --- */

.activities-next {
    margin-bottom: 0 !important;
    background-color: var(--highlight-color);
}

.activities-next h2,
.activities-next h4,
.activities-next p {
    color: var(--primary-color);
}

.activities-next h4 {
    margin-bottom: 0 !important;
}

.activities-next>.wrapper {
    padding: 120px 0;
    max-width: var(--max-container);
    margin-inline: auto;
    display: flex;
    gap: 65px;
}

.activities-next .activities {
    flex: 1 1 calc(66.666% - 20px);
    max-width: calc(66.666% - 20px);
}

.activities-next .next-activities {
    flex: 1 1 calc(33.333% - 20px);
    max-width: calc(33.333% - 20px);
}

.activities-next .activities .inner {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 45px;
}

.activities-next .activities .card {
    flex: 1 1 calc(50% - 10px);
    max-width: calc(50% - 10px);
    height: auto;
}

.activities-next .next-activities .inner {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 45px;
}

.activities-next.no-posts>.wrapper {
    gap: 20px;
}

.activities-next.no-posts .activities {
    flex: 1 1 100%;
    max-width: 100%;
}

.activities-next.no-posts .activities .card {
    flex: 1 1 calc(33.333% - 20px);
    max-width: calc(33.333% - 20px);
}

.activities-next .archive-link {
    margin-top: 45px;
}

@media only screen and (max-width: 1300px) {
    .activities-next>.wrapper {
        flex-wrap: wrap;
        padding: 120px 20px;
        gap: 40px;
    }
}

@media only screen and (max-width: 1000px) {
    .activities-next>.wrapper {
        padding: 100px 20px;
    }

    .activities-next .activities,
    .activities-next .next-activities {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .activities-next .card-small {
        flex: 1 1 calc(50% - 10px);
        max-width: calc(50% - 10px);
    }

    .activities-next.no-posts .activities .card {
        flex: 1 1 calc(50% - 10px);
        max-width: calc(50% - 10px);
    }
}

@media only screen and (max-width: 768px) {
    .activities-next .card-small {
        flex: 1 1 100%;
        max-width: 100%;
    }
}

@media only screen and (max-width: 690px) {
    .activities-next>.wrapper {
        padding: 65px 20px;
    }

    .activities-next .activities .inner,
    .activities-next .next-activities .inner {
        margin-top: 25px;
    }

    .activities-next .activities .card {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .activities-next .archive-link {
        margin-top: 25px;
    }

    .activities-next.no-posts .activities .card {
        flex: 1 1 100%;
        max-width: 100%;
    }
}

/* --- SLIDER NEWS --- */

.slider-news {
    margin-bottom: 0 !important;
}

.slider-news>.wrapper {
    padding: 120px 0;
    background-color: var(--fourth-color);
}

.slider-news .container {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.slider-news .container:last-of-type {
    align-items: flex-start;
    justify-content: flex-start;
    margin-top: 45px;
}

.slider-news .container h2 {
    flex: 1;
    color: var(--primary-color);
    margin-bottom: 0;
}

.slider-news .container .navigation {
    display: flex;
    align-items: flex-end;
    gap: 15px;
}

.slider-news .navigation .prev,
.slider-news .navigation .next {
    color: var(--primary-color);
    transition: all 0.3s ease-in-out;
}

.slider-news .navigation .prev:hover,
.slider-news .navigation .next:hover {
    cursor: pointer;
    color: var(--secondary-color);
}

.slider-news .swiper {
    width: 100%;
    height: 100%;
    margin-top: 45px;
}

.slider-news .swiper .swiper-slide {
    width: 100% !important;
    max-width: calc(calc(var(--max-container) / 3) - 13.333px);
    display: flex;
    justify-content: flex-start;
    align-items: center;
    position: relative;
    height: auto !important;
}

.slider-news .empty {
    width: var(--max-container);
    margin-inline: auto;
}

@media only screen and (max-width: 1300px) {
    .slider-news .empty {
        padding-inline: 20px;
    }
}

@media only screen and (max-width: 1000px) {
    .slider-news>.wrapper {
        padding: 100px 0;
    }
}

@media only screen and (max-width: 768px) {
    .slider-news .swiper {
        margin-top: 25px;
    }
}

@media only screen and (max-width: 690px) {
    .slider-news>.wrapper {
        padding: 65px 0;
    }

    .slider-news .container {
        flex-direction: column;
        align-items: flex-start;
    }

    .slider-news .container h2 {
        margin-bottom: 7px;
    }
}

@media only screen and (max-width: 480px) {
    .slider-news .swiper .swiper-slide {
        max-width: calc(100vw - 40px);
    }
}

/* --- ARCHIVE NEWS --- */

.archive-post .wrapper>.container {
    padding-top: 65px;
    padding-bottom: 65px;
}

.archive-post .wrapper>.container h1 {
    margin-top: 15px;
}

.archive-post .filters {
    margin-top: 45px;
}

.archive-post .filters .filters-wrapper {
    overflow: hidden;
}

.archive-post .filters .filters-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 15px 30px;
}

.archive-post .filters .filter-item {
    font-size: 20px;
    line-height: 28px;
    white-space: nowrap;
}

.archive-post .filters .filter-item.current,
.archive-post .filters .filter-item:hover {
    color: var(--secondary-color);
}

.archive-post .posts-grid {
    margin-top: 45px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.archive-post .posts-grid .card {
    flex: 1 1 calc(33.333% - 13.333px);
    max-width: calc(33.333% - 13.333px);
    height: auto;
}

.archive-post .posts-grid .archive-navigation {
    width: 100%;
    margin-top: 45px;
}

@media only screen and (max-width: 1000px) {
    .archive-post .filters .filters-wrapper {
        margin-inline: -20px;
    }

    .archive-post .filters .filters-stack {
        flex-wrap: nowrap;
        overflow-x: auto;
        scrollbar-width: none;
        -ms-overflow-style: none;
        gap: 8px 20px;
        padding: 8px 20px;
    }

    .archive-post .filters .filters-stack::-webkit-scrollbar {
        display: none;
    }

    .archive-post .posts-grid .card {
        flex: 1 1 calc(50% - 10px);
        max-width: calc(50% - 10px);
    }
}

@media only screen and (max-width: 768px) {
    .archive-post .wrapper>.container {
        padding-top: 45px;
    }

    .archive-post .filters,
    .archive-post .posts-grid {
        margin-top: 25px;
    }
}

@media only screen and (max-width: 690px) {
    .archive-post .filters .filter-item {
        font-size: 18px;
        line-height: 20px;
    }

    .archive-post .posts-grid .card {
        flex: 1 1 100%;
        max-width: 100%;
    }
}

/* --- SINGLE NEWS --- */

.single-post>.container {
    padding-top: 65px;
    padding-bottom: 65px;
}

.single-post .single-content {
    margin-top: 15px;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 60px;
}

.single-post .single-content article {
    flex: 1 1 calc(66.666% - 30px);
    max-width: calc(66.666% - 30px);
}

.single-post .single-content aside.sidebar {
    flex: 1 1 calc(33.333% - 30px);
    max-width: calc(33.333% - 30px);
}

.single-post .single-content article .date {
    margin-top: 10px;
    color: var(--secondary-color);
    padding-bottom: 0;
}

.single-post .single-content article .feature-image {
    width: 100%;
    height: auto;
    overflow: hidden;
    border-radius: 8px;
    margin-top: 30px;
    line-height: 0;
}

.single-post .single-content article .feature-image img {
    width: 100%;
    margin-bottom: 0 !important;
}

.single-post .single-content article .wpb_content_element {
    margin-top: 30px;
}

.single-post .single-content article .categories-wrapper {
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px 8px;
}

.single-post .single-content article .categories-wrapper a {
    color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.single-post .single-content article .categories-wrapper a:hover {
    color: var(--black-color);
    border-color: var(--black-color);
}

.single-post .single-content article .share {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
    margin-top: 45px;
}

.single-post .single-content article .share a {
    line-height: 0;
    color: var(--black-color);
}

.single-post .single-content article .share a:hover {
    color: var(--secondary-color);
}

.single-post .single-content article .navigation {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px 45px;
    margin-top: 45px;
}

.single-post .sidebar {
    padding-top: 15px;
    display: flex;
    flex-direction: column;
    gap: 45px;
}

.single-post .sidebar .lastest-news>.wrapper,
.single-post .sidebar .related-news>.wrapper {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

@media only screen and (max-width: 1000px) {

    .single-post .single-content article,
    .single-post .single-content aside.sidebar {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .single-post .sidebar .lastest-news>.wrapper,
    .single-post .sidebar .related-news>.wrapper {
        flex-wrap: wrap;
        flex-direction: row;
    }

    .single-post .sidebar .lastest-news .card-small,
    .single-post .sidebar .related-news .card-small {
        flex: 1 1 calc(50% - 10px);
        max-width: calc(50% - 10px);
    }
}

@media only screen and (max-width: 768px) {
    .single-post>.container {
        padding-top: 45px;
        padding-bottom: 45px;
    }
}


@media only screen and (max-width: 690px) {

    .single-post .sidebar .lastest-news .card-small,
    .single-post .sidebar .related-news .card-small {
        flex: 1 1 100%;
        max-width: 100%;
    }
}

@media only screen and (max-width: 480px) {
    .single-post .single-content article .share span {
        display: block;
        width: 100%;
    }
}

/* --- TIMETABLES --- */

.timetables {
    margin-bottom: 0 !important;
}

.timetables .wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.timetables .wrapper .card-timetable {
    flex: 1 1 calc(50% - 10px);
    max-width: calc(50% - 10px);
}

@media only screen and (max-width: 1000px) {
    .timetables .wrapper .card-timetable {
        flex: 1 1 100%;
        max-width: 100%;
    }
}

/* --- SLIDER IMAGES --- */

.slider-images {
    margin-bottom: 0 !important;
}

.slider-images .swiper {
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 8px;
}

.slider-images .swiper-slide {
    width: 100% !important;
    height: 380px;
}

.slider-images .swiper-slide img {
    width: 100% !important;
    height: 100%;
    margin-bottom: 0;
    object-fit: cover;
    object-position: center;
}

.slider-images .navigation {
    position: absolute;
    bottom: 20px;
    left: 20px;
    z-index: 9;
    display: flex;
    gap: 10px;
}

.slider-images .navigation .prev,
.slider-images .navigation .next {
    background-color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 35px;
    transition: background-color 0.3s ease-in-out;
}

.slider-images .navigation .prev:hover,
.slider-images .navigation .next:hover {
    background-color: var(--highlight-color);
    cursor: pointer;
}

/* --- PARKINGS MAP --- */

.parkings-map {
    margin-bottom: 0 !important;
    overflow: hidden;
    border-radius: 8px;
}

.parkings-map .wrapper {
    width: 100%;
    height: 680px;
}

@media only screen and (max-width: 690px) {
    .parkings-map .wrapper {
        height: 480px;
    }
}

/* --- INFOWINDOW MAP --- */

.leaflet-popup-content-wrapper {
    background: #fff;
    color: var(--black-color);
    box-shadow: 0 3px 14px rgba(34, 34, 34, 0.3);
    overflow: hidden;
    border-radius: 4px !important;
}

.leaflet-popup-content {
    min-width: 250px;
    max-width: 300px;
    margin: 0 !important;
}

.leaflet-container a.leaflet-popup-close-button {
    padding: 0;
    width: 35px !important;
    height: 35px !important;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.leaflet-container a.leaflet-popup-close-button:hover {
    color: #f70d28 !important;
}

.infowindow-map {
    width: 300px;
    padding: 15px 50px 15px 15px;
    background-color: #fff;
}

.infowindow-map h6 {
    color: var(--primary-color);
    margin-bottom: 0;
}

.leaflet-container .infowindow-map a {
    width: max-content;
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 6px;
    margin-top: 6px;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    color: var(--secondary-color);
    transition: all 0.3s ease-in-out;
}

.leaflet-container .infowindow-map a:hover {
    gap: 12px;
}

.leaflet-container .infowindow-map a svg {
    width: 18px;
    height: 18px;
}

/* --- PARTNERS GRID --- */

.partners-grid {
    margin-bottom: 0 !important;
}

.partners-grid .wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.partners-grid .wrapper .card-partner {
    flex: 1 1 calc(25% - 20px);
    max-width: calc(25% - 20px);
}

.partners-grid .no-found {
    width: 100%;
}

@media only screen and (max-width: 1000px) {
    .partners-grid .wrapper .card-partner {
        flex: 1 1 calc(33.333% - 13.333px);
        max-width: calc(33.333% - 13.333px);
    }
}

@media only screen and (max-width: 768px) {
    .partners-grid .wrapper .card-partner {
        flex: 1 1 calc(50% - 10px);
        max-width: calc(50% - 10px);
    }
}

@media only screen and (max-width: 480px) {
    .partners-grid .wrapper .card-partner {
        flex: 1 1 100%;
        max-width: 100%;
    }
}

/* --- SEARCH PAGE --- */

.search-page>.container {
    padding-top: 65px;
    padding-bottom: 65px;
}

.search-page .result-num {
    padding-bottom: 0;
}

.search-page .results-wrapper {
    margin-top: 45px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.search-page .results-wrapper .card-small {
    flex: 1 1 calc(33.333% - 13.333px);
    max-width: calc(33.333% - 13.333px);
}

.search-page .archive-navigation {
    flex: 1 1 100%;
    max-width: 100%;
    margin-top: 25px;
}

.search-page .no-found {
    width: 100%;
}

.search-page .no-found form {
    position: relative;
}

.search-page .no-found form input {
    padding-right: 40px;
}

.search-page .no-found form input:focus {
    border-color: var(--secondary-color);
}

.search-page .no-found form button {
    position: absolute;
    top: 0;
    right: 0;
}

@media only screen and (max-width: 1000px) {
    .search-page .results-wrapper .card-small {
        flex: 1 1 calc(50% - 10px);
        max-width: calc(50% - 10px);
    }
}

@media only screen and (max-width: 768px) {
    .search-page>.container {
        padding-top: 45px;
        padding-bottom: 45px;
    }

    .search-page .results-wrapper .card-small {
        flex: 1 1 100%;
        max-width: 100%;
    }
}

/* --- OTHER SPACE ACCORDION --- */

.other-spaces-accordion {
    margin-bottom: 0 !important;
}

.other-spaces-accordion .wrapper {
    display: flex;
    flex-direction: column;
}

.other-spaces-accordion button.toogle {
    appearance: none;
    border: none;
    padding: 25px 90px 25px 35px;
    background-color: var(--black-color);
    color: var(--third-color);
    position: relative;
    outline: none;
    width: 100%;
    border-radius: 0 !important;
    text-align: left;
}

.other-spaces-accordion button.toogle:hover {
    cursor: pointer;
}

.other-spaces-accordion button.toogle .icon {
    width: 36px;
    height: 36px;
    position: absolute;
    right: 35px;
    top: 30px;
    display: grid;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease-in-out;
}

.other-spaces-accordion button.toogle .icon::before,
.other-spaces-accordion button.toogle .icon::after {
    content: "";
    width: 36px;
    height: 1px;
    grid-row: 1;
    grid-column: 1;
    background-color: var(--third-color);
    transition: all 0.4s ease-in-out;
}

.other-spaces-accordion button.toogle .icon::after {
    transform-origin: center;
    transform: rotateZ(90deg);
}

.other-spaces-accordion button.toogle.opened .icon::after {
    transform-origin: center;
    transform: rotateZ(0deg);
}

.other-spaces-accordion button.toogle h3 {
    color: var(--third-color);
    margin: 0;
}

.other-spaces-accordion .panel {
    background-color: var(--fourth-color);
    overflow: hidden;
    transition: all 0.3s ease-in-out;
}

.other-spaces-accordion .panel .inner {
    padding: 35px;
}

.other-spaces-accordion .no-found h4 {
    margin: 0;
}

.other-spaces-accordion .no-found p {
    padding-bottom: 0;
}

@media only screen and (max-width: 768px) {
    .other-spaces-accordion button.toogle {
        padding: 15px 65px 15px 25px;
    }

    .other-spaces-accordion button.toogle .icon {
        width: 26px;
        height: 26px;
        right: 25px;
        top: 20px;
    }

    .other-spaces-accordion button.toogle .icon::before,
    .other-spaces-accordion button.toogle .icon::after {
        width: 26px;
    }

    .other-spaces-accordion .panel .inner {
        padding: 25px;
    }
}

@media only screen and (max-width: 690px) {
    .other-spaces-accordion button.toogle h3 {
        font-size: 24px;
        line-height: 32px;
    }

    .other-spaces-accordion button.toogle {
        padding: 15px 45px 15px 18px;
    }

    .other-spaces-accordion button.toogle .icon {
        width: 18px;
        height: 18px;
        right: 18px;
    }
}


/* --- ARCHIVES GRID --- */

.archive-grid {
    margin-bottom: 0 !important;
}

.archive-grid>.wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 45px 30px;
}

.archive-grid .wrapper .card-archive {
    flex: 1 1 calc(25% - 22.5px);
    max-width: calc(25% - 22.5px);
}

@media only screen and (max-width: 1200px) {
    .archive-grid .wrapper .card-archive {
        flex: 1 1 calc(33.333% - 20px);
        max-width: calc(33.333% - 20px);
    }
}

@media only screen and (max-width: 768px) {
    .archive-grid .wrapper .card-archive {
        flex: 1 1 calc(50% - 15px);
        max-width: calc(50% - 15px);
    }
}

@media only screen and (max-width: 480px) {
    .archive-grid .wrapper .card-archive {
        flex: 1 1 100%;
        max-width: 100%;
    }
}

/* --- INTERACTIVE MAP --- */

.interactive-map {
    width: 100%;
    position: fixed;
    top: 87px;
    right: 0;
    bottom: 0;
    left: 0;
    margin-bottom: 0 !important;
}

.customize-support .interactive-map {
    top: 119px;
}

.interactive-map .map {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.interactive-map .ol-zoom {
    right: 50px;
    bottom: 50px;
    top: inherit;
    left: inherit;
    background-color: transparent;
    border: none;
    margin: 0;
    padding: 0;
}

.interactive-map .ol-control button {
    width: 42px;
    height: 42px;
    margin: 10px 0 0 0;
    background-color: var(--black-color);
    color: #fff;
    transition: all 0.2s ease-in-out;
}

.interactive-map .ol-control button:hover {
    cursor: pointer;
    background-color: var(--highlight-color);
    color: var(--primary-color);
}

.interactive-map .ol-zoom .ol-zoom-out,
.interactive-map .ol-zoom .ol-zoom-in {
    font-size: 26px;
    line-height: 1;
    border-radius: 50px !important;
}

.interactive-map .sidebar-map {
    top: 16px;
    bottom: 16px;
    left: 0;
    z-index: 997;
}

.interactive-map .sidebar-map.collapsed {
    left: -520px;
}

.interactive-map #loading-screen {
    top: -87px;
}

.customize-support .interactive-map #loading-screen {
    top: -119px;
}

@media only screen and (max-width: 999px) {
    .interactive-map {
        top: 79px;
    }

    .customize-support .interactive-map {
        top: 111px;
    }

    .interactive-map #loading-screen {
        top: -79px;
    }

    .customize-support .interactive-map #loading-screen {
        top: -111px;
    }
}

@media only screen and (max-width: 782px) {
    .customize-support .interactive-map {
        top: 125px;
    }

    .customize-support .interactive-map #loading-screen {
        top: -125px;
    }

    .interactive-map .ol-zoom {
        right: 25px;
        bottom: 25px;
    }
}

@media only screen and (max-width: 520px) {
    .interactive-map .sidebar-map {
        width: 100%;
        top: 35px;
        left: 0;
        bottom: 0;
        border-radius: 8px 8px 0px 0px;
        transition: all 0.3s ease-in-out;
    }

    .customize-support .interactive-map .sidebar-map {
        top: 66px;
    }

    .interactive-map .sidebar-map.collapsed {
        left: 0;
        top: 100vh;
    }
}

/* --- INFOWINDOW MAP --- */

.map-popup {
    position: absolute;
    background-color: #fff;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
    bottom: 16px;
    left: -140px;
    border-radius: 8px;
}

.map-popup::before {
    content: "";
    position: absolute;
    top: calc(100% - 1px);
    height: 0;
    width: 0;
    pointer-events: none;
    border: 12px solid transparent;
    border-top-color: #fff;
    left: 140px;
    margin-left: -12px;
}

.map-popup button.ol-popup-closer {
    appearance: none;
    border: none;
    outline: none;
    border-radius: 20px;
    margin: 0;
    padding: 0;
    position: absolute;
    top: 15px;
    right: 15px;
    display: block;
    background-color: #fff;
    transition: all 0.3s ease-in-out;
}

.map-popup button.ol-popup-closer:hover {
    cursor: pointer;
    opacity: 0.7;
}

.map-popup button.ol-popup-closer::after {
    content: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 28 28' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M14 0C6.28048 0 0 6.28048 0 14C0 21.7195 6.28048 28 14 28C21.7195 28 28 21.7195 28 14C28 6.28048 21.7195 0 14 0ZM19.8309 18.3077L18.3077 19.8309L14 15.5232L9.69231 19.8309L8.16913 18.3077L12.4768 14L8.16913 9.69231L9.69231 8.16913L14 12.4768L18.3077 8.16913L19.8309 9.69231L15.5232 14L19.8309 18.3077Z' /%3E%3C/svg%3E");
    display: block;
    width: 18px;
    height: 18px;
    opacity: 1;
    line-height: 0;
}

.map-popup .ol-popup-content {
    width: 300px;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    overflow: hidden;
}

.map-popup .data {
    flex: 1;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 15px 50px 15px 15px;
}

.map-popup .data h6 {
    font-size: 22px;
    line-height: 26px;
    margin-bottom: 0;
}

.map-popup .data a {
    width: max-content;
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 6px;
    margin-top: 6px;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    color: var(--secondary-color);
    transition: all 0.3s ease-in-out;
}

.map-popup .data a:hover {
    gap: 12px;
}

.map-popup .data a svg {
    width: 18px;
    height: 18px;
}

/* --- SIDEBAR MAP --- */

.sidebar-map {
    position: absolute;
    width: 520px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
    border-radius: 0px 8px 8px 0px;
    box-shadow: rgba(34, 34, 34, 0.2) 3px 0px 6px 0px;
    transition: left 0.4s ease-in-out;
}

.sidebar-map button.close {
    appearance: none;
    background-color: transparent;
    outline: 0;
    border: none;
    border-radius: 0;
    padding: 0;
    margin: 0;
    line-height: 0;
    position: absolute;
    top: 30px;
    right: 30px;
    z-index: 999;
    fill: var(--highlight-color);
    transition: all 0.3s ease-in-out;
}

.sidebar-map button.close:hover {
    cursor: pointer;
    fill: #ea1919;
}

.sidebar-map .wrapper {
    overflow: hidden;
    height: 100%;
}

.sidebar-map .loader-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.sidebar-map .loader-content #loading-screen {
    background-color: var(--third-color);
}

.sidebar-map .header {
    position: relative;
}

.sidebar-map .header img {
    width: 100% !important;
    height: 320px;
    object-fit: cover;
    object-position: center;
    margin-bottom: 0 !important;
}

.sidebar-map .header::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
}

.sidebar-map .header .title {
    position: absolute;
    bottom: 0;
    z-index: 2;
    padding: 30px;
}

.sidebar-map .header .number {
    width: 45px;
    height: 45px;
    border-radius: 35px;
    color: var(--primary-color);
    background-color: var(--highlight-color);
    font-size: 22px;
    font-weight: 600;
    line-height: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sidebar-map .header .title>span {
    display: block;
    color: var(--third-color);
    margin-top: 8px;
}

.sidebar-map .header .title h4 {
    color: var(--third-color);
}

.sidebar-map .header .title a {
    display: inline-flex;
    align-items: center;
    color: var(--third-color);
    font-size: 14px;
    line-height: 22px;
    font-weight: 500;
    gap: 8px;
    transition: all 0.2s ease-in-out;
}

.sidebar-map .header .title a:hover {
    gap: 16px;
}

.sidebar-map .itens-container {
    height: 100%;
    overflow-y: auto;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

@media only screen and (max-width: 520px) {
    .sidebar-map .wrapper {
        overflow-y: auto;
    }

    .sidebar-map .loader-content {
        height: auto;
    }

    .sidebar-map .header {
        height: 100%;
        min-height: 200px;
        display: flex;
        align-items: flex-end;
    }

    .sidebar-map .header img {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        height: 100%;
    }

    .sidebar-map .header .title {
        position: relative;
    }
}

@media only screen and (max-width: 480px) {
    .sidebar-map .header .title {
        padding: 25px;
    }

    .sidebar-map .itens-container {
        padding: 25px;
    }
}

/* --- SHORTCODE: MY POSTER AI --- */

body .my-poster-ai button,
body .modal-my-ai form button[type="submit"],
.modal-my-ai a.download-poster {
    appearance: none;
    border: none;
    font-size: 18px;
    line-height: 20px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px;
    color: var(--black-color);
    background-color: var(--highlight-color);
    border-radius: 8px !important;
    -webkit-border-radius: 8px !important;
    transition: all .3s ease-in-out;
}

.my-poster-ai button:hover,
body .modal-my-ai form button[type="submit"]:hover,
.modal-my-ai a.download-poster:hover {
    cursor: pointer;
    color: var(--highlight-color);
    background-color: var(--black-color);
    opacity: 1;
}

.modal-my-ai {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 9999;
}

.modal-my-ai {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.7);
    padding-inline: 20px;
}

.modal-my-ai .dialog {
    margin-top: 5dvh;
    margin-inline: auto;
    width: 100%;
    max-width: 830px;
    max-height: 90dvh;
    padding: 35px 40px;
    border-radius: 12px;
    background-color: #fff;
    position: relative;
    display: flex;
    flex-direction: column;
    row-gap: 25px;
    overflow-y: auto;
}

.modal-my-ai .dialog button.close {
    appearance: none;
    border: none;
    background-color: transparent;
    color: var(--black-color);
    position: absolute;
    top: 10px;
    right: 10px;
    margin: 0;
    padding: 0;
    width: 34px;
    height: 34px;
}

.modal-my-ai .dialog button.close:hover {
    cursor: pointer;
    color: var(--secondary-color);
}

.modal-my-ai .dialog h3 {
    text-align: center;
}

.modal-my-ai header .error-container {
    color: #f3695f;
    font-weight: 500;
    text-align: center;
}

.modal-my-ai form {
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 25px;
}

.modal-my-ai form button:not(.remove) {
    min-width: 250px;
}

body .modal-my-ai form button[type="submit"]:disabled {
    pointer-events: none;
    opacity: .6;
}

.modal-my-ai .loader {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 35px;
}

.modal-my-ai .loader .overlay {
    width: auto;
    height: max-content;
    aspect-ratio: 0.67/1;
    position: relative;
    overflow: visible;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-my-ai .loader .overlay img {
    filter: blur(15px);
}

.modal-my-ai .loader .lds-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 99;
    color: var(--highlight-color);
}

.modal-my-ai .loader p {
    max-width: 515px;
    margin-top: 45px;
    text-align: center;
    padding-bottom: 0;
}

.modal-my-ai .poster {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    row-gap: 25px;
}

.modal-my-ai .loader .overlay img,
.modal-my-ai .poster img {
    width: auto;
    max-width: max-content;
    height: max-content;
    aspect-ratio: 0.67/1;
    max-height: 50dvh;
    border-radius: 18px;
}

.modal-my-ai .poster .share,
.modal-my-ai .poster .share > div {
    display: flex;
    align-items: center;
    gap: 15px;
}

.modal-my-ai .poster .share a {
    line-height: 0;
}

.modal-my-ai .poster .share a:hover {
    color: var(--secondary-color);
}

@media only screen and (max-width: 690px) {
    .modal-my-ai .dialog {
        padding-inline: 20px;
    }

    .modal-my-ai .loader {
        padding: 0;
    }

    .modal-my-ai .loader .overlay img,
    .modal-my-ai .poster img {
        max-height: 40dvh;
    }
}

/* --- LOADER --- */

.lds-ring,
.lds-ring div {
    box-sizing: border-box;
}

.lds-ring {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
}

.lds-ring div {
    box-sizing: border-box;
    display: block;
    position: absolute;
    width: 64px;
    height: 64px;
    margin: 8px;
    border: 8px solid currentColor;
    border-radius: 50%;
    animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    border-color: currentColor transparent transparent transparent;
}

.lds-ring div:nth-child(1) {
    animation-delay: -0.45s;
}

.lds-ring div:nth-child(2) {
    animation-delay: -0.3s;
}

.lds-ring div:nth-child(3) {
    animation-delay: -0.15s;
}

@keyframes lds-ring {
    0% {
        transform: rotate(0deg);
    }

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

/* --- SHORTCODE: POSTER GALLERY --- */

.my-poster-gallery header {
    padding-block: 65px 45px;
}

.my-poster-gallery header h2 {
    margin: 0;
    padding: 0;
}

.my-poster-gallery .wrapper {
    --gap: 1.25rem;
    display: flex;
    flex-wrap: wrap;
    gap: var(--gap);
    align-items: stretch;
    margin-bottom: 65px;
}

.my-poster-gallery article {
    flex: 0 0 calc(25% - (3 * var(--gap) / 4));
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.my-poster-gallery article img {
    margin-bottom: 0 !important;
    transform-origin: center;
    transform: scale(1);
    transition: transform 0.3s ease-in-out;
}

.my-poster-gallery ul.archive-navigation {
    flex: 1 1 100%;
    margin-top: 15px;
}

.my-poster-gallery ul.archive-navigation li.current,
.my-poster-gallery ul.archive-navigation li.no-click {
    pointer-events: none;
}

.lightbox-posters .gslide img {
    max-width: 80dvw;
    max-height: 80dvh;
    width: auto;
    height: auto;
}

@media only screen and (min-width: 1001px) {
    .my-poster-gallery article img:hover {
        transform: scale(1.1);
        cursor: pointer;
    }
}

@media only screen and (max-width: 768px) {
    .my-poster-gallery article {
        flex: 0 0 calc(50% - var(--gap) / 2);
    }

    .my-poster-gallery ul.archive-navigation {
        justify-content: center;
    }
}

@media only screen and (max-width: 480px) {
    .my-poster-gallery article {
        flex: 1 1 100%;
    }
}