.clamp-text {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    /* Limit to 3 lines */
    -webkit-line-clamp: 5;
    line-clamp: 5;
    text-overflow: ellipsis;
    max-height: 120px;
}

.clamp-title {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    /* Limit to 2 lines */
    -webkit-line-clamp: 2;
    line-clamp: 2;
    text-overflow: ellipsis;
    max-height: 80px;
}

.update-text {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    /* Limit to 3 lines */
    -webkit-line-clamp: 2;
    line-clamp: 2;
    text-overflow: ellipsis;
    max-height: 50px;
}

.tooltip {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.tooltip .tooltiptext {
    visibility: hidden;
    width: 120px;
    background-color: #555;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    margin-left: -60px;
    opacity: 0;
    transition: opacity 0.3s;
}

.tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
}

.my-form-container {
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    display: flex;
}

.my-form-block {
    width: 100%;
}

.my-form {
    grid-column-gap: 16px;
    grid-row-gap: 30px;
    grid-template-rows: auto auto auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    justify-content: start;
    justify-items: start;
    width: 100%;
    display: grid;
}

.my-form-field {
    flex-flow: column;
    width: 100%;
    display: flex;
}

.labeltext-wrapper {
    display: inline-block;
}

.my-form-text {
    color: var(--text-grey);
    font-family: Gilroy, sans-serif;
    font-size: 15px;
    font-weight: 400;
    position: relative;
    display: inline-block;
}

.my-form-hint {
    color: var(--grey);
    font-family: Gilroy, sans-serif;
    font-size: 15px;
    font-weight: 400;
    font-style: italic;
    position: relative;
    display: inline-block;
}

.my-text-field {
    border: 1px solid var(--grey-light);
    color: var(--text-dark);
    border-radius: 5000px;
    margin-bottom: 0;
    font-family: Gilroy, sans-serif;
    font-size: 15px;
}

.my-form-done {
    padding: 20px;
    text-align: center;
    background-color: #dddddd;
}

.my-form-fail {
    /* display: none; */
    margin-top: 10px;
    padding: 10px;
    background-color: #ffdede;
}

.my-radio-consent {
    justify-content: flex-start;
    align-items: center;
    display: flex;
}

.my-w-radio {
    display: block;
    margin-bottom: 5px;
    padding-left: 20px;
}

.radio-margin {
    margin: 4px 0 0;
    line-height: normal;
    float: left;
    margin-left: -20px;
}

.radio-margin {
    margin-top: 3px;
}

.my-w-form-label {
    display: inline-block;
    cursor: pointer;
    font-weight: normal;
    margin-bottom: 0px;
}

input[type="checkbox"] {
    accent-color: var(--gentari-purple);
}

input[type="date"] {
    /* Change the background color to red */
    background-color: white;
    /* Adjust other styling properties as needed */
    color: var(--gentari-purple);
    /* Text color */
    border-color: var(--gentari-purple);
    /* Remove default border */
    padding: 8px 12px;
    /* Adjust padding */
    border-radius: 4px;
    /* Add border radius */
}

/* Style buttons */
.clear-btn {
    background-color: var(--gentari-purple);
    /* Blue background */
    border: none;
    /* Remove borders */
    border-radius: 5px;
    color: white;
    /* White text */
    font-family: Gilroy, sans-serif;
    font-size: 14px;
    /* Set a font size */
    cursor: pointer;
    /* Mouse pointer on hover */
    width: 100%;
}

.clear-btn:hover {
    background-color: purple;
}

.nav-disabled {
    pointer-events: none;
}

input.disabled {
    pointer-events: none;
    color: #AAA;
    background: #F5F5F5;
}

.my-anchor-style {
    width: 100%;
}

.my-card-title-text {
    font-size: 36px;
    line-height: 40px;
    font-family: Gilroy, sans-serif;
    color: rgb(52, 53, 79)
}

.my-card-title-text.dark {
    font-size: 28px;
}

.my-card-title-text:hover {
    color: var(--gentari-blue)
}

.my-card-horizontal-wrapper {
    flex-flow: row;
    width: 100%;
    height: auto;
    display: block;
    position: relative;
}

.my-card-horizontal-wrapper:hover .my-card-image {
    transform: scale(1.2);
    /* Zoom effect */
    transition: transform 0.3s ease;
    /* Smooth transition */
}

.my-card-horizontal-wrapper:hover .go-arrow-icon svg {
    stroke: #fdfdfd;
    /* Change stroke color to a highlighted color */
    transform: scale(1.5);
    /* Zoom effect */
    transition: transform 0.3s ease;
    /* Smooth transition for stroke color */
}

.my-card-horizontal-wrapper:hover .card-title-text {
    -webkit-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    transform: translateY(-5px);
    transition: transform 0.3s ease;
}

.my-slider {
    background-color: rgba(0, 0, 0, 0);
    width: 100%;
    height: auto;
    margin-bottom: 0;
    overflow: visible;
}

.slider-dot {
    position: relative;
    display: inline-block;
    width: 1em;
    height: 1em;
    background-color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    margin: 0 3px 0.5em;
    transition: background-color 100ms, color 100ms;
}

.slider-dot.active {
    background-color: #fff;
}

.slider-dot:focus {
    outline: none;
    box-shadow: 0px 0px 0px 2px #fff;
}

.slider-dot:focus.active {
    box-shadow: none;
}

.slider-dot {
    background-color: #C3CBD8;
    width: 30px;
    height: 6px;
    border-radius: 15px
}

.slider-dot.active {
    background-color: #60269E;
    width: 60px;
    height: 6px;
    border-radius: 15px
}

.my-slide {
    margin-right: 12vw;
    overflow: visible;
}

.cta-card-vertical-small .cta-card-button {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cta-card-vertical-small:hover .cta-card-button {
    display: flex;
    opacity: 1;
}

/* Make the overlay darker on hover */
.cta-card-vertical-small:hover .card-vertical-small-overlay {
    background-image: linear-gradient(rgba(0, 0, 0, .65), rgba(0, 0, 0, 0.4) 25%, rgba(0, 0, 0, .9) 95%);
    transition: background 0.3s ease-in-out;
}

.my-card-image-box {
    width: 50%;
    height: 100%;
    overflow: hidden;
}

.my-card-image {
    object-fit: cover;
    width: 100%;
    min-width: 100%;
    min-height: 100%;
}

.my-news-card-image {
    object-fit: cover;
    width: 100%;
    min-width: 100%;
    min-height: 100%;
    aspect-ratio: 7 / 10;
}

.my-title-text {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -webkit-line-clamp: 2;
    /* Limits the text to 2 lines */
    text-overflow: ellipsis;
    /* Adds ellipsis (...) if the text overflows */
    white-space: normal;
    /* Ensures the text wraps normally within the box */
    height: 70px;
}

.my-news-card {
    width: 100%;
    /* height: 450px; */
    aspect-ratio: 7 / 10;
}

.my-card-list-image-container {
    border-radius: 10px;
    width: 400px;
    height: 360px;
    position: relative;
    overflow: hidden;
}

.checkbox-wrapper {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.checkbox-container {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
}

.checkbox-left {
    display: flex;
    align-items: center;
}

.checkbox-container input[type="checkbox"] {
    display: inline-block;
    margin-right: 5px;
}

.checkbox-container label {
    display: inline-block;
    margin: 0;
    white-space: nowrap;
}

.checkbox-right {
    display: flex;
    align-items: center;
}

.others-input {
    display: inline-block;
    margin-left: 10px;
    border: none;
    border-bottom: 1px solid #9BA9BE;
    outline: none;
    color: var(--text-dark);
    font-family: Gilroy, sans-serif;
    font-size: 15px;
}

[x-cloak] {
    display: none;
}

.site-popup {
    display: none;
    align-items: center;
    justify-content: space-between;
    position: static;
    top: 0;
    left: 0;
    height: 40px;
    width: 100vw;
    background-color: #EFE9F5;
    z-index: 1000;
}

.site-popup.desktop {
    padding-left: 12vw;
    padding-right: 12vw;
}

.site-popup.mobile {
    margin-left: auto;
    margin-right: auto;
    max-width: 1300px;
    display: flex;
}

.site-text {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 70%;
    color: #464765;
    font-family: Gilroy, sans-serif;
    flex: 1;
}

.site-dropdown-btn {
    display: flex;
    align-items: center;
    background-color: transparent;
    color: #464765;
    border: 1px solid var(--grey-light);
    border-radius: 20px;
    padding: 3px 10px;
    cursor: pointer;
}

.site-dropdown-btn .label {
    margin-left: 8px;
    margin-right: 8px;
    font-family: Gilroy, sans-serif;
}

.site-dropdown-icon {
    display: inline-flex;
    transition: transform 0.3s ease;
}

.site-dropdown-btn.desktop:hover .site-dropdown-icon {
    transform: rotate(180deg);
    display: inline-flex;
}

.site-dropdown-content {
    display: none;
    background-color: #fff;
    position: absolute;
}

.site-dropdown-content a {
    pointer-events: all;
}

.site-button:hover .site-dropdown-content {
    display: block;
}

.site-dropdown-wrapper {
    grid-column-gap: 30px;
    grid-row-gap: 10px;
    background-color: #fff;
    border-radius: 0;
    flex-flow: row;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    height: 100%;
    padding: 20px 10vw;
    display: flex;
    position: static;
    overflow: hidden;
    box-shadow: 0 20px 30px -10px #20355a26;
}

.site-dropdown-wrapper.dropdown-short {
    flex-flow: column;
    padding-left: 20px;
    padding-right: 20px;
    position: relative;
}

.site-close-btn {
    display: flex;
    align-items: center;
    background-color: transparent;
    color: #464765;
    cursor: pointer;
}

.my-navigation-dropdown {
    min-width: 140px;
}

.my-navigation-dropdown:hover,
.my-navigation-dropdown.w--open {
    background-color: #0000;
    border-top: 1px solid #9ba9be99;
    width: 100vw;
    min-width: 100vw;
    max-height: 100vh;
    position: fixed;
}

.my-navigation-dropdown.with-site-popup:hover,
.my-navigation-dropdown.with-site-popup.w--open {
    inset: calc(12.8vh + 40px) 0% auto;
}

.my-navigation-dropdown.without-site-popup:hover,
.my-navigation-dropdown.without-site-popup.w--open {
    inset: 12.8vh 0% auto;
}

.search-dialog-mob {
    display: inline-block;
    justify-content: center;
    align-items: center;
}

.search-btn {
    background-color: transparent;
    color: #34354f;
    cursor: pointer;
    height: 40px;
    min-height: 30px;
    max-height: 40px;
    padding: 10px 20px;
    border-radius: 10px;
    margin-left: 10px;
}

.search-btn:hover {
    background-color: #EFE9F5;
}


/* Overlay for shadowed background */
.search-dialog-overlay {
    display: none;
    position: relative;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    justify-content: flex-start;
    align-items: flex-start;
    z-index: 900;
}

.search-dialog-overlay.with-site-popup {
    inset: 17.9% 0% auto;
}

.search-dialog-overlay.without-site-popup {
    inset: 12.9% 0% auto;
}

/* Popup dialog */
.search-dialog {
    position: relative;
    background: #fff;
    width: 100%;
    padding: 20px 0px;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--grey-light);
}

.search-dialog-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 12vw;
    padding-right: 12vw;
}

.search-field {
    position: relative;
    display: inline-block;
    width: 100%;
}

.search-icon {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    opacity: 0.5;
    cursor: not-allowed;
    background-color: #0000;
}

.enabled {
    pointer-events: auto;
    opacity: 1;
    cursor: pointer;
}

.search-dialog-input {
    border: 1px solid var(--grey-light);
    border-radius: 20px;
    padding: 10px;
    display: flex;
    justify-content: flex-start;
    flex: 1;
    font-family: Gilroy, sans-serif;
    width: 100%;
}

.search-dialog-input:focus {
    border: 1px solid #60269E;
    outline: none;
}

.search-dialog-input::-webkit-input-placeholder {
    color: var(--grey-light);
}

.search-dialog-input:-moz-placeholder {
    color: var(--grey-light);
}

.search-dialog-input::-moz-placeholder {
    color: var(--grey-light);
}

.search-dialog-input:-ms-input-placeholder {
    color: var(--grey-light);
}

.search-close-btn {
    display: flex;
    justify-content: flex-end;
    background-color: transparent;
    color: #464765;
    cursor: pointer;
    margin: 10px;
}

.result-wrapper {
    padding-left: 12vw;
    padding-right: 12vw;
    width: 100%;
}

.result-wrapper-2 {
    margin-top: 5vh;
    padding-left: 12vw;
    padding-right: 12vw;
    align-items: center;
    justify-content: space-between;
    display: flex;
}

.results-total {
    font-family: Gilroy, sans-serif;
    font-size: 12px;
    color: #464765;
}

.results-fontweight {
    font-weight: 600;
}

.results-typ-dropdown {
    font-family: Gilroy, sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #464765;
    border: none;
    cursor: pointer;
}

.results-typ-dropdown:hover {
    border-color: var(--gentari-purple);
    color: var(--gentari-purple);
}

.results-dropdown-btn {
    display: inline-flex;
    align-items: center;
    background-color: transparent;
    color: #464765;
    border-radius: 20px;
    padding: 3px 10px;
    cursor: pointer;
}

/* .results-dropdown-content {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
} */

/* .results-dropdown-btn:hover .results-dropdown-content {
    display: block;
    opacity: 1;
} */

.results-tab {
    padding-left: 12vw;
    padding-right: 12vw;
    width: 100%;
    position: relative;
    margin-top: 20px;
    grid-row-gap: 30px;
}

.results-tab-menu {
    grid-column-gap: 20px;
    justify-content: space-between;
    align-items: flex-end;
    width: 100%;
    display: flex;
    padding-right: 80px;
    position: relative;
}

.results-tab-dropdown {
    display: none;
}

.results-tab-link-button {
    border-bottom: 3px solid var(--grey-light);
    color: var(--grey);
    background-color: #0000;
    width: 100%;
    padding: 10px 10px 15px;
    font-family: Gilroy, sans-serif;
    font-size: 20px;
    cursor: pointer;
    display: inline-block;
}

.results-tab-link-button:hover {
    border-bottom-color: var(--gentari-purple);
    color: var(--gentari-purple);
}

.results-tab-link-button.tab--current {
    border-bottom: 3px solid var(--gentari-purple);
    color: var(--gentari-purple);
    background-color: #0000;
    font-weight: 600;
}

.calendar-embed {
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    display: flex;
    flex-shrink: 0;
    flex-grow: 0;
}

.results-wrapper {
    grid-row-gap: 40px;
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    padding-left: 12vw;
    padding-right: 12vw;
    display: none;
    margin-bottom: 30px;
    margin-top: 30px;
}

.results-list {
    grid-column-gap: 20px;
    grid-row-gap: 0px;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    min-width: 52px;
    height: auto;
    min-height: 70px;
    max-height: 700px;
    display: flex;
}

.results-card-text-box {
    grid-row-gap: 10px;
    width: 100%;
    overflow: visible;
}

.result-card-title-text {
    color: var(--text-dark);
    text-align: left;
    width: 100%;
    font-family: Gilroy, sans-serif;
    font-size: 28px;
    font-weight: 500;
    line-height: 34px;
    cursor: pointer;
}

.result-card-title-text:hover {
    color: var(--gentari-blue)
}

.result-label-wrapper {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    grid-column-gap: 20px;
}

.result-label-text {
    border: 1px solid var(--gentari-purple);
    color: var(--gentari-purple);
    border-radius: 10000px;
    flex: none;
    padding: 5px 15px;
    font-family: Gilroy, sans-serif;
    font-size: 14px;
    font-weight: 500;
    overflow: hidden;
}

.result-label-link {
    color: var(--text-grey);
    background-color: var(--grey-light);
    border-radius: 10000px;
    padding: 5px 15px;
    grid-column-gap: 10px;
    display: flex;
    align-items: center;
    width: 100%;
    overflow: hidden;
    cursor: pointer;
}

.result-label-link:hover {
    color: var(--white);
}

.result-link-icon {
    width: 18px;
    height: 19px;
}

.result-link-txt {
    font-family: Gilroy, sans-serif;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex-grow: 1;
    width: 600px;
}

.height-noresult {
    height: auto;
    min-height: 200px;
    max-height: 200px;
}

.button-container {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
}

.calendar-clear-btn,
.calendar-filter-btn {
    background-color: var(--gentari-purple);
    border: none;
    border-radius: 5px;
    color: white;
    font-family: Gilroy, sans-serif;
    font-size: 14px;
    cursor: pointer;
    width: 100%;
    margin: 1px;
}

.calendar-clear-btn:hover,
.calendar-filter-btn:hover {
    background-color: purple;
}

#loader {
    border: 2px solid #9ba9be99;
    border-top: 2px solid #60269E;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    animation: spin 1s linear infinite;
    position: absolute;
    left: 50%;
    top: 50%;
    display: none;
    z-index: 1;
}

@media screen and (min-width: 1920px) {
    .clamp-text {
        display: -webkit-box;
        -webkit-box-orient: vertical;
        overflow: hidden;
        -webkit-line-clamp: 5;
        line-clamp: 5;
        text-overflow: ellipsis;
        max-height: 140px;
    }

    .my-title-text {
        display: -webkit-box;
        -webkit-box-orient: vertical;
        overflow: hidden;
        -webkit-line-clamp: 2;
        /* Limits the text to 2 lines */
        text-overflow: ellipsis;
        /* Adds ellipsis (...) if the text overflows */
        white-space: normal;
        /* Ensures the text wraps normally within the box */
        height: 80px;
    }

    .my-slide {
        margin-right: 14vw;
    }

    .site-popup.desktop {
        padding-left: 14vw;
        padding-right: 14vw;
    }

    .search-btn {
        min-width: 120px;
        max-width: 180px;
        height: 50px;
        max-height: 50px;
    }

    .search-dialog-overlay-mob {
        display: none;
    }
}

@media screen and (max-width: 991px) {
    .my-card-image-box {
        width: 100%;
        height: 450px;
    }

    .my-title-text {
        display: -webkit-box;
        -webkit-box-orient: vertical;
        overflow: hidden;
        -webkit-line-clamp: 2;
        /* Limits the text to 2 lines */
        text-overflow: ellipsis;
        /* Adds ellipsis (...) if the text overflows */
        white-space: normal;
        /* Ensures the text wraps normally within the box */
        height: 70px;
    }

    .my-news-card {
        width: 100%;
        /* height: 450px; */
        aspect-ratio: 7 / 10;
    }

    .my-card-list-image-container {
        justify-content: flex-start;
        align-items: center;
        width: 400px;
        height: 360px;
        display: flex;
    }

    .my-slide {
        margin-right: 80px;
    }

    .my-card-horizontal-wrapper {
        height: 100%;
    }

    .site-popup {
        flex-direction: column;
        align-items: flex-start;
        height: 90px;
    }

    .site-popup.mobile {
        padding: 10px 80px;
        justify-content: space-between;
        position: relative;
    }

    .site-text {
        order: 1;
        width: 80%;
        margin-bottom: 8px;
    }

    .site-button {
        order: 2;
    }

    .site-close-btn {
        order: 3;
        align-self: center;
        position: absolute;
        top: 30px;
        right: 40px;
    }

    .site-dropdown-content {
        display: none;
        position: absolute;
        background-color: #fff;
        min-width: 160px;
        width: 100%;
        box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
        top: 100%;
        left: 0;
    }

    .site-dropdown-wrapper.dropdown-short {
        position: relative;
        width: 100;
    }

    .search-btn {
        min-height: 58px;
        min-width: 58px;
        padding: 18px;
        font-size: 22px;
    }

    .search-dialog-overlay-mob {
        display: none;
    }
}

@media screen and (max-width: 767px) {
    .my-card-image-box {
        width: 100%;
        height: 400px;
    }

    .my-title-text {
        display: -webkit-box;
        -webkit-box-orient: vertical;
        overflow: hidden;
        -webkit-line-clamp: 2;
        /* Limits the text to 2 lines */
        text-overflow: ellipsis;
        /* Adds ellipsis (...) if the text overflows */
        white-space: normal;
        /* Ensures the text wraps normally within the box */
        height: 65px;
    }

    .my-news-card {
        width: 100%;
        /* height: 400px; */
        aspect-ratio: 7 / 10;
    }

    .my-card-list-image-container {
        justify-content: flex-start;
        align-items: center;
        width: 100%;
        height: 180px;
    }

    .my-slide {
        margin-right: 40px;
    }

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

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

    .checkbox-left {
        flex-direction: row;
        align-items: center;
    }

    .checkbox-right {
        width: 100%;
        margin-top: 8px;
    }

    .others-input {
        display: block;
        margin-left: 0;
        width: 100%;
    }

    .site-popup {
        flex-direction: column;
        align-items: flex-start;
        height: 90px;
    }

    .site-popup.mobile {
        padding: 10px 40px;
    }

    .site-text {
        order: 1;
        width: 80%;
        margin-bottom: 8px;
    }

    .site-button {
        order: 2;
    }

    .site-close-btn {
        order: 3;
        align-self: center;
        position: absolute;
        top: 30px;
        right: 40px;
    }

    .site-dropdown-content {
        display: none;
        position: absolute;
        background-color: #fff;
        min-width: 160px;
        width: 100%;
        box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
        top: 100%;
        left: 0;
    }

    .site-dropdown-wrapper.dropdown-short {
        position: relative;
        width: 100;
    }

    .search-dialog-overlay-mob {
        display: none;
    }
}

@media screen and (max-width: 479px) {
    .my-card-image-box {
        width: 100%;
        height: 203px;
    }

    .my-title-text {
        display: -webkit-box;
        -webkit-box-orient: vertical;
        overflow: hidden;
        -webkit-line-clamp: 2;
        /* Limits the text to 2 lines */
        text-overflow: ellipsis;
        /* Adds ellipsis (...) if the text overflows */
        white-space: normal;
        /* Ensures the text wraps normally within the box */
        height: 55px;
    }

    .my-news-card {
        width: 100%;
        /* height: 200px; */
        aspect-ratio: 7 / 10;
    }

    .my-card-list-image-container {
        width: 100%;
        height: 200px;
        overflow: hidden;
    }

    .my-slide {
        height: 100%;
        min-height: 100%;
        max-height: 100%;
        margin-right: 30px;
        position: relative;
    }

    .my-card-horizontal-wrapper {
        height: auto;
        min-height: auto;
        max-height: 100%;
        position: relative;
    }

    .my-card-image {
        border-radius: 0;
    }

    .my-news-card-image {
        border-radius: 0;
        width: 100%;
        aspect-ratio: 7 / 10;
    }

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

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

    .checkbox-left {
        flex-direction: row;
        align-items: center;
    }

    .checkbox-right {
        width: 100%;
        margin-top: 8px;
    }

    .others-input {
        display: block;
        margin-left: 0;
        width: 100%;
    }

    .site-popup {
        flex-direction: column;
        align-items: flex-start;
        height: 90px;
    }

    .site-popup.mobile {
        padding: 10px 30px;
    }

    .site-text {
        order: 1;
        width: 80%;
        margin-bottom: 8px;
    }

    .site-button {
        order: 2;
    }

    .site-close-btn {
        order: 3;
        align-self: center;
        position: absolute;
        top: 30px;
        right: 40px;
    }

    .site-dropdown-content {
        display: none;
        position: absolute;
        background-color: #fff;
        min-width: 160px;
        width: 100%;
        box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
        top: 100%;
        left: 0;
    }

    .site-dropdown-wrapper.dropdown-short {
        position: relative;
        width: 100;
    }

    .search-dialog-overlay-mob {
        display: none;
        position: absolute;
        min-width: 160px;
        width: 100%;
        height: 100%;
        background: #fff;
    }

    .search-dialog {
        position: relative;
        background: #fff;
        width: 100%;
        padding: 20px 0px;
        border: 1px solid var(--grey-light);
    }

    .search-dialog-wrapper {
        padding-left: 8vw;
        padding-right: 8vw;
    }

    .search-dialog-input {
        font-size: 16px;
    }

    .results-tab-menu {
        display: none;
    }

    .results-tab-dropdown {
        display: flex;
        grid-column-gap: 30px;
        justify-content: space-between;
        margin-bottom: 30px;
        padding-left: 12vw;
        padding-right: 12vw;
    }

    .result-text-block {
        position: relative;
        margin-top: 10px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        white-space: normal;
    }

    .result-label-wrapper {
        flex-direction: column;
        grid-row-gap: 20px;
        width: 100%;
    }

    .result-label-link {
        order: 0;
    }
}

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

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

@font-face {
    font-family: 'Gilroy';
    src: url('/fonts/Gilroy-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gilroy';
    src: url('/fonts/Gilroy-SemiBoldItalic.ttf') format('truetype');
    font-weight: 600;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Gilroy';
    src: url('/fonts/Gilroy-RegularItalic.ttf') format('truetype');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Gilroy';
    src: url('/fonts/Gilroy-UltraLightItalic.ttf') format('truetype');
    font-weight: 200;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Gilroy';
    src: url('/fonts/Gilroy-ExtraBoldItalic.ttf') format('truetype'), url('/fonts/Gilroy-BoldItalic.ttf') format('truetype');
    font-weight: 700;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Gilroy';
    src: url('/fonts/Gilroy-MediumItalic.ttf') format('truetype');
    font-weight: 500;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Gilroy';
    src: url('/fonts/Gilroy-Thin.ttf') format('truetype');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gilroy';
    src: url('/fonts/Gilroy-Heavy.ttf') format('truetype'), url('/fonts/Gilroy-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gilroy';
    src: url('/fonts/Gilroy-HeavyItalic.ttf') format('truetype'), url('/fonts/Gilroy-BlackItalic.ttf') format('truetype');
    font-weight: 900;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Gilroy';
    src: url('/fonts/Gilroy-ThinItalic.ttf') format('truetype');
    font-weight: 100;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Gilroy';
    src: url('/fonts/Gilroy-ExtraBold.ttf') format('truetype'), url('/fonts/Gilroy-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gilroy';
    src: url('/fonts/Gilroy-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gilroy';
    src: url('/fonts/Gilroy-UltraLight.ttf') format('truetype');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gilroy';
    src: url('/fonts/Gilroy-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gilroy';
    src: url('/fonts/Gilroy-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gilroy';
    src: url('/fonts/Gilroy-LightItalic.ttf') format('truetype');
    font-weight: 300;
    font-style: italic;
    font-display: swap;
}