:root {
    --primary-a-color: #4ecdc4;
    --hover-color: #45b7aa;
    --text-color-dark: #2c3e50;
    --text-color-light: #34495e;
    --border-radius: 16px;
    --transition-speed: 0.25s;
    --padding-mobile: 12px;
    --padding-desktop: 15px;
}

.accordion-menu-item {
    border-radius: var(--border-radius);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}

.accordion-menu {
    width: 100%;
    padding: var(--padding-mobile);
    background-color: white;
    color: var(--text-color-dark);
    border: 1px solid var(--primary-a-color);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
    font-size: 14px;
    -webkit-tap-highlight-color: transparent;
}

.accordion-menu::after {
    content: "\f107";
    font-family: "FontAwesome";
    font-size: 16px;
    transition: transform var(--transition-speed) ease;
    min-width: 20px;
    text-align: center;
}

.accordion-menu:hover,
.accordion-menu:active {
    background-color: var(--primary-a-color);
    color: white;
}

.accordion-menu.is-open::after {
    transform: rotate(180deg);
}

.accordion-menu-content {
    background-color: var(--background-color);
    border-radius: 0 0 var(--border-radius) var(--border-radius);
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-speed) ease-in-out;
    width: 100%;
    -webkit-overflow-scrolling: touch;
}

.accordion-menu-content::-webkit-scrollbar {
    width: 4px;
}

.accordion-menu-content::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 2px;
}

.accordion-menu-content::-webkit-scrollbar-thumb {
    background: var(--primary-a-color);
    border-radius: 2px;
}

.accordion-menu.is-open+.accordion-menu-content {
    max-height: 250px;
    overflow-y: auto;
}

.accordion-menu-content p {
    padding: var(--padding-mobile);
    color: var(--text-color-light);
    line-height: 1.5;
    font-size: 14px;
    margin: 0;
}

@media (min-width: 601px) {
    .accordion-menu {
        padding: var(--padding-desktop);
        font-size: 16px;
    }

    .accordion-menu::after {
        font-size: 18px;
    }

    .accordion-menu-content p {
        padding: var(--padding-desktop);
        font-size: 16px;
    }

    .accordion-menu.is-open+.accordion-menu-content {
        max-height: 300px;
    }
}

.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-out;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    z-index: -1;
    pointer-events: none;
}

.popup-content-contact {
    background: white;
    padding: 20px;
    max-width: 750px;
    width: 100%;
    position: relative;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.2s ease-in-out;
    border-radius: 16px;
    max-height: 90vh;
    overflow-y: auto;
}

.popup-close {
    position: absolute;
    right: 15px;
    top: 15px;
    cursor: pointer;
    font-size: 24px;
    color: #333;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.popup-overlay.active {
    opacity: 1;
    visibility: visible;
    z-index: 1000;
    pointer-events: auto;
}

.popup-overlay.active .popup-content-contact {
    opacity: 1;
    transform: scale(1);
}

.popup-overlay.removing {
    opacity: 0;
    visibility: hidden;
    z-index: -1;
    pointer-events: none;
}

.popup-overlay.removing .popup-content-contact {
    transform: scale(0.8);
    opacity: 0;
}

.popup-title {
    font-size: 20px;
    margin-bottom: 15px;
    color: #333;
    padding-right: 40px;
}

.popup-body {
    color: #666;
    line-height: 1.5;
}

@media screen and (max-width: 768px) {
    .popup-overlay {
        padding: 15px;
    }

    .popup-content-contact {
        padding: 15px;
        margin: 0;
        max-height: 85vh;
        max-width: 80%;
    }

    .popup-title {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .popup-body {
        font-size: 14px;
    }

    .popup-close {
        right: 10px;
        top: 10px;
    }
}

@media screen and (max-width: 480px) {
    .popup-overlay {
        padding: 10px;
    }

    .popup-content-contact {
        padding: 12px;
        border-radius: 6px;
    }

    .popup-title {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .popup-content-contact {
        -webkit-overflow-scrolling: touch;
    }

    .popup-close {
        padding: 10px;
        margin: -10px;
    }
}

@supports (-webkit-touch-callout: none) {
    .popup-content-contact {
        max-height: -webkit-fill-available;
    }
}

@media screen and (max-height: 480px) {
    .popup-content-contact {
        max-height: 80vh;
        margin: 10px 0;
    }
}

.content_blog ul {
    list-style: initial;
}

.content_blog li {
    list-style-type: disc;
    margin-bottom: 5px;
}

.floating-buttons {
    position: fixed;
    bottom: 20px;
    left: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1000;
}

/* Các kích thước button */
.floating-buttons.small a {
    width: 45px;
    height: 45px;
}

.floating-buttons.medium a {
    width: 60px;
    height: 60px;
}

.floating-buttons.large a {
    width: 75px;
    height: 75px;
}

.floating-buttons a {
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 50%;
    position: relative;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    overflow: hidden;
    animation: zoom 1.3s infinite;
}

.floating-buttons a:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.floating-buttons img {
    width: 60%;
    height: 60%;
    transition: transform 0.3s ease;
}

.floating-buttons a:hover img {
    transform: scale(1.1);
}

.floating-buttons a::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.floating-buttons a:hover::after {
    opacity: 1;
}

.btn-whatsapp {
    background: linear-gradient(145deg, #25d366, #128C7E) !important;
}

.btn-zalo {
    background: linear-gradient(145deg, #0068FF, #0040FF) !important;
}

.btn-facebook {
    background: linear-gradient(145deg, #1877f2, #0d5ab9) !important;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

.floating-buttons a {
    animation: float 3s ease-in-out infinite;
}

.floating-buttons a:nth-child(1) {
    animation-delay: 0s;
}

.floating-buttons a:nth-child(2) {
    animation-delay: 0.2s;
}

.floating-buttons a:nth-child(3) {
    animation-delay: 0.4s;
}

@media (max-width: 768px) {
    .floating-buttons {
        bottom: 15px;
        left: 15px;
        gap: 8px;
    }

    .floating-buttons a {
        width: 50px;
        height: 50px;
    }
}

/* Base */
.alt-chat-widget {
    --primary-color: #2979ff;
    --primary-dark: #1565c0;
    --gray-light: #f1f1f1;
    --gray-medium: #ddd;
    --text-primary: #333;
    --text-secondary: #666;
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.2);

    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    font-family: Arial, sans-serif;
}

.alt-chat-button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(145deg, var(--primary-color), var(--primary-dark));
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    position: relative;
}

.alt-chat-button:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.alt-chat-button__icon {
    width: 30px;
    height: 30px;
    transition: transform 0.3s ease;
}

.alt-chat-button__badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ff4444;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Chat Window */
.alt-chat-window {
    position: absolute;
    bottom: 0px;
    right: 80px;
    /* Đặt cửa sổ chat bên trái nút chat */
    width: 360px;
    height: 520px;
    background: white;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    display: none;
    flex-direction: column;
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.alt-chat-window--active {
    display: flex;
    opacity: 1;
    transform: translateY(0);
}

/* Chat Header */
.alt-chat-header {
    padding: 15px;
    background: linear-gradient(145deg, var(--primary-color), var(--primary-dark));
    color: white;
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
}

.alt-chat-header__avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    padding: 5px;
}

.alt-chat-header__info {
    flex: 1;
}

.alt-chat-header__title {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

.alt-chat-header__status {
    font-size: 12px;
    color: #4caf50;
}

.alt-chat-header__close {
    width: 30px;
    height: 30px;
    border: none;
    background: transparent;
    cursor: pointer;
    padding: 5px;
    transition: transform 0.3s ease;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
}

.alt-chat-header__close img {
    width: 100%;
    height: 100%;
    filter: brightness(0) invert(1);
}

.alt-chat-header__close:hover {
    transform: translateY(-50%) scale(1.1);
}

/* Chat Messages */
.alt-chat-messages {
    flex: 1;
    padding: 15px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.alt-chat-message {
    max-width: 80%;
    padding: 10px 15px;
    border-radius: 15px;
    position: relative;
}

.alt-chat-message--support {
    background: var(--gray-light);
    align-self: flex-start;
    border-bottom-left-radius: 5px;
}

.alt-chat-message--user {
    background: #e3f2fd;
    align-self: flex-end;
    border-bottom-right-radius: 5px;
}

.alt-chat-message__text {
    margin: 0;
    font-size: 14px;
    color: var(--text-primary);
}

.alt-chat-message__time {
    font-size: 10px;
    color: var(--text-secondary);
    margin-top: 5px;
    display: block;
}

/* Chat Input */
.alt-chat-input {
    padding: 15px;
    display: flex;
    gap: 10px;
    border-top: 1px solid var(--gray-medium);
}

.alt-chat-input__field {
    flex: 1;
    padding: 10px 15px;
    border: 1px solid var(--gray-medium);
    border-radius: 20px;
    outline: none;
    font-size: 14px;
}

.alt-chat-input__field:focus {
    border-color: var(--primary-color);
}

.alt-chat-input__button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: var(--primary-color);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.alt-chat-input__button:hover {
    background: var(--primary-dark);
    transform: scale(1.05);
}

.alt-chat-input__button img {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
}

/* Animations */
@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

/* Responsive */
@media (max-width: 480px) {
    .alt-chat-window {
        width: 280px;
        height: 350px;
        right: 70px;
    }

    .alt-chat-widget {
        bottom: 15px;
        right: 15px;
    }
}

.atl-clp-tours-slider-items__item-image {
    overflow: hidden;
    border-radius: 3px;
    display: inline-block;
    position: relative;
    color: #fff;
    width: 100%;
    height: 168px
}

.atl-clp-tours-slider-items__badge-wrapper {
    position: absolute;
    width: 48px;
    height: 48px;
    top: 0;
    right: 0;
    color: #fff;
    background: linear-gradient(45deg, transparent, transparent 50%, #e74c3c 51%, #e74c3c)
}

.atl-clp-tours-slider-items__badge-wrapper.atl-clp-tours-slider-items__badge-wrapper--pax .atl-clp-tours-slider-items__badge {
    font-size: 10px;
    top: 10px
}

.atl-clp-tours-slider-items__badge-wrapper.atl-clp-tours-slider-items__badge-wrapper--pax .atl-clp-tours-slider-items__badge-info {
    font-size: 9px;
    font-weight: 400
}

.atl-clp-tours-slider-items__badge {
    position: relative;
    top: 7px;
    left: 9px;
    width: 45px;
    text-align: center;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    font-weight: 700
}

.atl-clp-tours-slider-items__item-anchor {
    display: block;
    color: #323637
}

.atl-clp-tours-slider-items__item {
    margin-bottom: 28px
}

.atl-clp-tours-slider-items__item.atl-clp-tours-slider-items__item--no-margin-bottom {
    margin-bottom: 0
}

.atl-clp-tours-slider-items__item:first-child {
    transition: margin-left .3s ease-in-out
}

.atl-clp-tours-slider-items__item-title {
    padding-top: 16px
}

.atl-clp-tours-slider-items__item-subtext {
    width: 100%;
    padding-top: 4px
}

.atl-clp-tours-slider-items__item-price {
    position: relative;
    font-weight: 700
}

.atl-clp-tours-slider-items__item-price--strikethrough {
    font-weight: 400;
    display: inline;
    background: linear-gradient(180deg, transparent 45%, #ec7063 46%, #ec7063 52%, #ec7063 54%, transparent 55%)
}

.atl-clp-tours-slider-items__item-price--from-price-padding {
    padding-left: 4px
}

.atl-clp-tours-slider-items__reviews-block {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    padding-top: 8px
}

.atl-clp-tours-slider-items__stars-count {
    color: #d98a28;
    padding-left: 8px
}

.atl-clp-tours-slider-items__reviews-count {
    color: #818d99;
    padding-left: 8px
}

.atl-clp-tours-slider-items__stars-block {
    display: -webkit-inline-flex;
    display: inline-flex;
    -webkit-align-items: center;
    align-items: center
}

.atl-clp-tours-slider-items__star {
    background-size: contain;
    background-position: 50%;
    height: 16px;
    width: 16px
}

.atl-clp-tours-slider-items__tour-highlights {
    list-style-type: disc;
    padding: 16px 0 0 16px
}

.atl-clp-tours-slider-items__tour-highlights-element {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.atl-clp-tours-slider-items__truncated-text {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.atl-clp-tours-slider {
    padding-top: 56px;
    padding-bottom: 32px
}

.atl-clp-tours-slider--padding-bottom {
    padding-bottom: 48px
}

.atl-clp-tours-slider .atl-clp-carousel-slider__column-wrapper {
    border-radius: 4px;
    height: 100%
}

.atl-clp-tours-slider__title {
    margin-bottom: 24px
}

.atl-clp-tours-slider__title--with-description {
    margin-bottom: 12px
}

.atl-clp-tours-slider__description {
    padding: 0 8px 20px;
    font-size: 16px
}

.atl-clp-tours-slider__description a {
    font-size: 16px
}

.ao-common-tours-slider-card__anchor .atl-clp-tours-slider__anchor {
    color: #323637
}

.atl-clp-tours-slider .atl-clp-carousel-slider__navigation {
    position: static
}

.atl-clp-tours-slider .atl-clp-carousel-slider__arrow {
    position: absolute;
    top: 25%
}

.atl-clp-carousel-slider {
    position: relative;
    margin: 0 auto
}

.atl-clp-carousel-slider__column-wrapper {
    position: relative
}

.atl-clp-carousel-slider__slider {
    display: -webkit-flex;
    display: flex;
    overflow: hidden
}

.atl-clp-carousel-slider__arrow.aa-common-rounded-icon-button {
    display: block;
    width: 40px;
    height: 40px;
    margin: 0 8px
}

.atl-clp-carousel-slider__arrow--left {
    margin: 0 8px 0 16px;
    left: -12px
}

.atl-clp-carousel-slider__arrow--right {
    margin: 0 16px 0 8px;
    right: -12px
}

.atl-clp-carousel-slider__container .atl-clp-carousel-slider__slider {
    display: block;
    white-space: nowrap;
    overflow: auto;
    padding-left: 16px;
    padding-right: 16px;
    margin-left: -16px;
    margin-right: -16px
}

.atl-clp-carousel-slider__container .atl-clp-carousel-slider__slider::-webkit-scrollbar {
    visibility: hidden
}

.atl-clp-carousel-slider__container .atl-clp-carousel-slider__column {
    display: inline-block;
    vertical-align: top;
    white-space: normal
}

.atl-clp-carousel-slider__navigation {
    position: relative;
    margin-top: 16px
}

.atl-clp-carousel-slider__navigation-see-all-tours {
    display: -webkit-inline-flex;
    display: inline-flex;
    line-height: 24px;
    -webkit-align-items: center;
    align-items: center;
    padding: 8px 16px;
    background-color: #ecf5fa;
    border-radius: 21px;
    font-weight: 700;
    color: #177fa4
}

.atl-clp-carousel-slider__dots {
    position: absolute;
    display: -webkit-flex;
    display: flex;
    width: 100px;
    height: 40px;
    left: 8px;
    bottom: 0;
    -webkit-align-items: center;
    align-items: center
}

.atl-clp-carousel-slider__dots-dot {
    width: 8px;
    height: 8px;
    background-color: #e3e5e6;
    border-radius: 7px;
    margin: 4px
}

.atl-clp-carousel-slider__dots-dot--active {
    background-color: #959a9c
}

.atl-clp-carousel-slider__column {
    transition: margin-left .2s ease-in-out
}

.ao-common-tours-slider-card__anchor {
    display: block;
    color: #323637;
    height: 100%
}

.ao-common-tours-slider-card__anchor.atl-clp-tours-slider__anchor {
    color: #323637
}

.ao-common-tours-slider-card__image {
    position: relative;
    overflow: hidden;
    border-radius: 13px;
    width: 100%;
    padding-top: 71%;
    height: auto;
    margin-bottom: 16px;
    background-color: #ebeef2
}

.ao-common-tours-slider-card__image-content {
    position: absolute;
    top: 0;
    left: 0
}

.ao-common-tours-slider-card__badge-wrapper {
    position: absolute;
    top: 12px;
    left: 12px;
    height: 32px;
    min-width: 32px;
    border-radius: 16px;
    padding: 8px 12px;
    color: #fff;
    background-color: #e74c3c;
    text-transform: uppercase
}

.ao-common-tours-slider-card__badge-wrapper.ao-common-tours-slider-card__badge-wrapper--selection {
    text-transform: none;
    background: #1c6ff2
}

.ao-common-tours-slider-card__badge-wrapper.ao-common-tours-slider-card__badge-wrapper--exclusive {
    text-transform: none;
    background: #8973f9
}

.ao-common-tours-slider-card__badge-wrapper.ao-common-tours-slider-card__badge-wrapper--price {
    text-transform: none;
    background: #319380
}

.ao-common-tours-slider-card__badge-wrapper.ao-common-tours-slider-card__badge-wrapper--custom {
    text-transform: none;
    color: #415466;
    background: #fff;
    font-weight: 400
}

.ao-common-tours-slider-card__badge-wrapper--second {
    top: 48px
}

.ao-common-tours-slider-card__price-wrapper {
    font-size: 16px;
    line-height: 1.25
}

.ao-common-tours-slider-card__price--strikethrough {
    text-decoration: line-through
}

.ao-common-tours-slider-card__price--highlight {
    color: #e74c3c;
    margin-left: 1px
}

.ao-common-tours-slider-card__title {
    margin-bottom: 8px
}

.ao-common-tours-slider-card__subtext {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-align-items: center;
    align-items: center;
    margin-bottom: 8px
}

.ao-common-tours-slider-card__subtext-duration {
    display: -webkit-inline-flex;
    display: inline-flex;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    margin: 0
}

.ao-common-tours-slider-card__subtext-value {
    margin: 0
}

.ao-common-tours-slider-card__review {
    display: -webkit-inline-flex;
    display: inline-flex;
    background-position: 0;
    -webkit-align-items: center;
    align-items: center;
    padding: 12px 0
}

.ao-common-tours-slider-card__review-rating {
    display: -webkit-flex;
    display: flex
}

.ao-common-tours-slider-card__review-rating:after {
    content: "";
    display: inline-block;
    vertical-align: text-top;
    width: 14px;
    height: 14px;
    margin: 0 4px;
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='14' height='14' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13.88 5.051a.897.897 0 00-.837-.584H9.417a.298.298 0 01-.28-.199L7.834.578a.894.894 0 00-1.674 0l-.003.01-1.298 3.68a.298.298 0 01-.28.2H.951A.893.893 0 00.38 6.046l3.087 2.562a.298.298 0 01.093.323l-1.297 3.891a.894.894 0 001.375 1.004l3.185-2.336a.298.298 0 01.352 0l3.183 2.335a.893.893 0 001.377-1.003L10.436 8.93a.299.299 0 01.093-.324l3.093-2.565a.894.894 0 00.258-.99z' fill='%23d98a28'/%3E%3C/svg%3E")
}

.ao-common-tours-slider-card__review-count {
    color: #818d99
}

.ao-common-tours-slider-card__tour-review {
    margin: 16px 0;
    line-height: 21px;
    font-size: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    overflow: hidden;
    max-height: none
}

.ao-common-tours-slider-card__tour-highlights {
    margin: 16px 0;
    padding: 0 8px 0 16px
}

.ao-common-tours-slider-card__tour-highlights-item {
    list-style: disc
}

.ao-common-tours-slider-card.ao-common-tours-slider-card__anchor.ao-common-tours-slider-card__anchor:hover {
    color: #323637
}

.ao-common-tours-slider-card__image {
    background-position: 50%;
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='210' height='164' fill='none'%3E%3Cmask id='a' maskUnits='userSpaceOnUse' x='0' y='0' width='210' height='164'%3E%3Crect width='210' height='164' rx='3' fill='%23fff'/%3E%3C/mask%3E%3Cg mask='url(%23a)'%3E%3Cpath opacity='.5' d='M119 72a20 20 0 00-8 38l21-33c-4-3-8-5-13-5z' fill='%23D98A28'/%3E%3Crect y='-18' width='210' height='213' rx='3' fill='url(%23paint0_linear)'/%3E%3Cpath d='M43 87l-48 57v27h218v-52l-61-74-56 89-53-47z' fill='url(%23paint1_linear)'/%3E%3C/g%3E%3Cdefs%3E%3ClinearGradient id='paint0_linear' x1='105' y1='-18' x2='105' y2='195' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%237FB5D2'/%3E%3Cstop offset='1' stop-color='%23D4DEE4' stop-opacity='.2'/%3E%3C/linearGradient%3E%3ClinearGradient id='paint1_linear' x1='92.3' y1='71.5' x2='117.7' y2='206.9' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23fff'/%3E%3Cstop offset='1' stop-color='%23C5E0EE'/%3E%3C/linearGradient%3E%3C/defs%3E%3C/svg%3E")
}

.ao-common-tours-slider-card__wishlist {
    position: absolute;
    z-index: 1;
    top: 12px;
    right: 20px;
    width: 40px;
    height: 40px;
    background-size: 20px;
    background-position: 50%;
    background-repeat: no-repeat;
    box-shadow: 0 1px 2px rgba(3, 54, 63, .4), 0 -1px 2px rgba(3, 54, 63, .04);
    background-color: #fff;
    border-radius: 50%;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24'%3E%3Cpath fill='%23818d99' d='M12 23.19c-.2 0-.4-.08-.54-.23l-9.59-10A6.41 6.41 0 019.3 2.68c.62.31 1.18.71 1.67 1.2L12 4.92l1.04-1.04A6.38 6.38 0 0117.58 2a6.38 6.38 0 015.74 3.55 6.4 6.4 0 01-1.2 7.41l-9.58 9.99a.73.73 0 01-.54.24zM6.43 3.5a4.94 4.94 0 00-4.41 2.72 4.92 4.92 0 00.93 5.69L12 21.35l9.05-9.44a4.92 4.92 0 10-6.95-6.97l-1.57 1.57a.75.75 0 01-1.06 0L9.91 4.94A4.87 4.87 0 006.43 3.5z'/%3E%3C/svg%3E")
}

.ao-common-tours-slider-card__wishlist:hover {
    cursor: pointer;
    box-shadow: 0 8px 16px rgba(3, 54, 63, .12), 0 4px 8px rgba(3, 54, 63, .12), 0 2px 4px rgba(3, 54, 63, .04), 0 1px 2px rgba(3, 54, 63, .08), 0 -1px 2px rgba(3, 54, 63, .04)
}

.ao-common-tours-slider-card__wishlist--active {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24'%3E%3Cpath fill='%23f44272' d='M23.3 5.08a6.58 6.58 0 00-10.45-1.71l-.85.78-.83-.76a6.52 6.52 0 00-5.69-1.8 6.47 6.47 0 00-3.57 10.95l9.37 9.66a1 1 0 001.44 0l9.36-9.64a6.41 6.41 0 001.22-7.48z'/%3E%3C/svg%3E")
}

.ao-common-tours-slider-card__review-count.ao-common-tours-slider-card__review-count:hover {
    color: #818d99
}

.aa-text-h6 {
    font-size: 16px;
    line-height: 1.25;
    font-weight: 700
}

.aa-text-h7 {
    font-size: 14px;
    line-height: 1.25;
    font-weight: 700
}

.aa-text-h8 {
    font-size: 12px;
    line-height: 1.25;
    font-weight: 700
}


@media (min-width: 568px) {

    .atl-clp-carousel-slider__arrow--left {
        margin: 0 8px 0 16px;
        left: -8px
    }

    .atl-clp-carousel-slider__arrow--right {
        margin: 0 16px 0 8px;
        right: -8px
    }

    .atl-clp-tours-slider__wrapper .atl-clp-tours-slider__item {
        width: 232px;
        height: auto
    }

    .atl-clp-tours-slider__title.ah-grid-col {
        padding-right: 280px
    }

    .atl-clp-tours-slider .atl-clp-carousel-slider__navigation {
        position: absolute
    }

    .atl-clp-tours-slider .atl-clp-carousel-slider__arrow {
        position: static;
        top: auto
    }

    .atl-clp-carousel-slider__container .atl-clp-carousel-slider__slider {
        padding-left: 28px;
        padding-right: 28px;
        margin-left: -28px;
        margin-right: -28px
    }

    .atl-clp-carousel-slider__navigation {
        margin-top: 0;
        position: absolute;
        display: -webkit-flex;
        display: flex;
        right: 4px;
        top: -64px
    }

    .atl-clp-carousel-slider__navigation-see-all-tours {
        margin-left: 8px
    }

}

@media (min-width: 768px) {

    .atl-clp-carousel-slider__arrow--left {
        margin: 0 4px 0 8px;
        left: -8px
    }

    .atl-clp-carousel-slider__arrow--right {
        margin: 0 8px 0 4px;
        right: -8px
    }

    .atl-clp-tours-slider-items__badge-wrapper {
        border-top-right-radius: 3px
    }

    .atl-clp-tours-slider-items__item--three {
        -webkit-flex: 0 0 33.33%;
        flex: 0 0 33.33%;
        max-width: 33.33%
    }

    .atl-clp-tours-slider--padding-bottom {
        padding-bottom: 64px
    }

    .atl-clp-tours-slider__description {
        padding: 0 8px 32px
    }

    .atl-clp-carousel-slider__container .atl-clp-carousel-slider__slider {
        padding-left: 32px;
        padding-right: 32px;
        margin-left: -32px;
        margin-right: -32px
    }

    .atl-clp-carousel-slider__column {
        transition: margin-left .4s ease-in-out
    }

    .ao-common-tours-slider-card__wishlist {
        right: 24px
    }
}

@media (min-width: 1024px) {
    .atl-clp-tours-slider__wrapper .atl-clp-tours-slider__item {
        width: 272px
    }
}

@media (min-width: 1280px) {
    .atl-clp-tours-slider__description {
        padding: 0 12px 32px
    }

    .atl-clp-tours-slider__wrapper .atl-clp-tours-slider__item {
        width: 290px
    }

    .atl-clp-carousel-slider__arrow--left {
        left: -8px
    }

    .atl-clp-carousel-slider__arrow--right {
        right: -8px
    }

    .atl-clp-carousel-slider__container .atl-clp-carousel-slider__slider {
        padding-left: 64px;
        padding-right: 64px;
        margin-left: -64px;
        margin-right: -64px
    }

    .atl-clp-carousel-slider__column {
        transition: margin-left .6s ease-in-out
    }
}

@media (min-width: 1440px) {

    .atl-clp-tours-slider__wrapper .atl-clp-tours-slider__item {
        -webkit-flex: 0 0 19.8%;
        flex: 0 0 19.8%;
        max-width: 19.8%
    }

    .atl-clp-carousel-slider__container .atl-clp-carousel-slider__slider {
        padding-left: 0;
        padding-right: 0;
        margin-left: 0;
        margin-right: 0
    }
}

.aa-clp-id-anchor {
    position: relative;
    top: -100px;
    left: -100%
}

.ah-grid-container {
    width: 100%;
    max-width: 1440px;
    margin-right: auto;
    margin-left: auto
}

.ah-grid-container--full-width.ah-grid-container--full-width {
    padding-left: 0;
    padding-right: 0;
    max-width: none
}

.ah-grid-container {
    padding-right: 16px;
    padding-left: 16px
}

.atl-clp-tours-slider__title {
    margin-bottom: 24px
}

.atl-clp-tours-slider__title--with-description {
    margin-bottom: 12px
}

@media (min-width: 568px) {

    .ah-grid-container {
        padding-right: 28px;
        padding-left: 28px
    }

    .atl-clp-tours-slider__title.ah-grid-col {
        padding-right: 280px
    }

    .ah-grid-col--s2-6 {
        -webkit-flex: 0 0 75%;
        flex: 0 0 75%;
        max-width: 75%
    }

    .ah-grid-col--s2-4 {
        -webkit-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%
    }

    .ah-grid-col {
        padding-right: 8px;
        padding-left: 8px
    }

    .ah-grid-col--s2-8 {
        -webkit-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%
    }
}

@media (min-width: 768px) {

    .ah-grid-container {
        padding-right: 32px;
        padding-left: 32px
    }

    .ah-grid-col--m1-2 {
        -webkit-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%
    }

    .ah-grid-col--m1-3 {
        -webkit-flex: 0 0 37.5%;
        flex: 0 0 37.5%;
        max-width: 37.5%
    }

    .ah-grid-col--m1-5 {
        -webkit-flex: 0 0 62.5%;
        flex: 0 0 62.5%;
        max-width: 62.5%
    }

    .ah-grid-col--m1-4 {
        -webkit-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%
    }

    .ah-grid-col--m1-8 {
        -webkit-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%
    }

    .ah-grid-col--m1-6 {
        -webkit-flex: 0 0 75%;
        flex: 0 0 75%;
        max-width: 75%
    }

    .ah-grid-col {
        padding-right: 8px;
        padding-left: 8px
    }

    .aa-heading-h3 {
        font-size: 25px;
        line-height: 35px;
        letter-spacing: -.54px
    }
}

@media (min-width: 1024px) {

    .ah-grid-container,
    .ao-common-carousel .ao-common-carousel__items-container {
        padding-right: 32px;
        padding-left: 32px
    }

    .ah-grid-col--m2-12 {
        -webkit-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%
    }

    .ah-grid-col--m2-9 {
        -webkit-flex: 0 0 75%;
        flex: 0 0 75%;
        max-width: 75%
    }

    .ah-grid-col--m2-6 {
        -webkit-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%
    }

    .ah-grid-col--m2-10 {
        -webkit-flex: 0 0 83.33333333%;
        flex: 0 0 83.33333333%;
        max-width: 83.33333333%
    }

    .ah-grid-col--m2-8 {
        -webkit-flex: 0 0 66.66666667%;
        flex: 0 0 66.66666667%;
        max-width: 66.66666667%
    }

    .ah-grid-col--m2-4 {
        -webkit-flex: 0 0 33.33333333%;
        flex: 0 0 33.33333333%;
        max-width: 33.33333333%
    }

    .ah-grid-col--m2-3 {
        -webkit-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%
    }

    .ah-grid-col {
        padding-right: 8px;
        padding-left: 8px
    }

    .ah-grid-col--m2-5 {
        -webkit-flex: 0 0 41.66666667%;
        flex: 0 0 41.66666667%;
        max-width: 41.66666667%
    }

    .ah-grid-col--m2-7 {
        -webkit-flex: 0 0 58.33333333%;
        flex: 0 0 58.33333333%;
        max-width: 58.33333333%
    }


}

@media (min-width: 1280px) {

    .ah-grid-container {
        padding-right: 64px;
        padding-left: 64px
    }

    .ah-grid-col--l1-5 {
        -webkit-flex: 0 0 41.66666667%;
        flex: 0 0 41.66666667%;
        max-width: 41.66666667%
    }

    .ah-grid-col--l1-4 {
        -webkit-flex: 0 0 33.33333333%;
        flex: 0 0 33.33333333%;
        max-width: 33.33333333%
    }

    .ah-grid-col--l1-6 {
        -webkit-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%
    }

    .ah-grid-col--l1-7 {
        -webkit-flex: 0 0 58.33333333%;
        flex: 0 0 58.33333333%;
        max-width: 58.33333333%
    }

    .ah-grid-col--l1-8 {
        -webkit-flex: 0 0 66.66666667%;
        flex: 0 0 66.66666667%;
        max-width: 66.66666667%
    }

    .ah-grid-col--l1-2 {
        -webkit-flex: 0 0 16.66666667%;
        flex: 0 0 16.66666667%;
        max-width: 16.66666667%
    }

    .ah-grid-col--l1-3 {
        -webkit-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%
    }

    .ah-grid-col {
        padding-right: 12px;
        padding-left: 12px
    }

}

@media (min-width: 1440px) {

    .ah-grid-container,
    .ao-common-carousel__items-container {
        padding-right: 48px;
        padding-left: 48px
    }

    .ah-grid-col--l2-6 {
        -webkit-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%
    }

    .ah-grid-col--l2-9 {
        -webkit-flex: 0 0 75%;
        flex: 0 0 75%;
        max-width: 75%
    }

    .ah-grid-col--l2-3 {
        -webkit-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%
    }

    .ah-grid-col {
        padding-right: 12px;
        padding-left: 12px
    }

}

.ah-grid-col--s1-2 {
    -webkit-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%
}

.ah-grid-col {
    position: relative;
    width: 100%;
    min-height: 1px
}

.ah-grid-col {
    padding-right: 8px;
    padding-left: 8px
}

.ah-grid-col--s1-4 {
    -webkit-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%
}

.aa-heading-h3 {
    font-size: 23px;
    line-height: 32px;
    letter-spacing: .37px
}

.atl-clp-carousel-slider__slider {
    display: flex;
    gap: 1.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
    transition: transform 0.3s ease;
}

.js-bg-all {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50%
}

.js-bg-all img {
    display: block;
    -o-object-fit: cover;
    object-fit: cover;
    height: 100%;
    width: 100%
}

.js-bg-all--contain {
    background-size: contain
}

.js-bg-all--contain img {
    -o-object-fit: contain;
    object-fit: contain
}

.cruise-card-o {
    display: flex;
    align-items: center;
    border-radius: 8px;
    transition: transform 0.3s ease-in-out;
}

.cruise-card-o:hover .cruiseCard_o__title {
    transform: scale(1.02);
    color: #E8952F;
    transition: 0.1s
}

.cruiseCard_o__image img {
    width: 120px;
    height: 70px;
    object-fit: cover;
    border-radius: 8px;
}

.cruiseCard_o__content {
    flex-grow: 1;
}

.main-body-wrapper .read_more {
    height: 268px;
    position: absolute;
    width: 100%;
    bottom: 0;
    display: none;
}

.main-body-wrapper .read_more button {
    outline: 0;
    border: 0;
    background: unset;
    margin: 0 auto;
    display: block;
    position: relative;
    color: #13af32;
    top: 145px;
    display: flex;
    justify-content: center;
    height: 20px;
    height: 68px;
    margin-top: 69px;
    z-index: 1;
}

.main-body-wrapper .read_more::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 200px;
    background-image: linear-gradient(180deg, hsla(0, 0%, 100%, 0), #fff);
}

.main-body-wrapper .read_more::after {
    content: "";
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 68px;
    background-color: #ffffff;
}

.main-body-wrapper .read_more button .arrow {
    top: 34px;
    display: block;
    right: 0;
    left: 0;
    margin: auto;
    position: absolute;
}

.main-body-wrapper .read_more button .arrow::before {
    content: "";
    background: url(../images/arrow-down-svgrepo-com.svg);
    background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACIAAAAMCAYAAAAH4W+EAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyVpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDYuMC1jMDAyIDc5LjE2NDQ4OCwgMjAyMC8wNy8xMC0yMjowNjo1MyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6MDc3NEIyN0EyRDY0MTFFQjkzMDRBMjIxNzc0RTBDODQiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6MDc3NEIyNzkyRDY0MTFFQjkzMDRBMjIxNzc0RTBDODQiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIDIyLjAgKE1hY2ludG9zaCkiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDozNjdCMUQ3OTJDQUIxMUVCOENCRERGNDFFOTA1OTlERCIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDozNjdCMUQ3QTJDQUIxMUVCOENCRERGNDFFOTA1OTlERCIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/Ph5ikagAAAGHSURBVHjaYmAAAg8Pj14vLy87Bjzg////JGFPT09GHx8fNnxmguwE2Q1iMwI1eAI1bgPZxcjIOJ+Dg6Ns/fr1b3E5hhjg7e3NuG3bNpyKAwMDhX/8+NEFNC8J7AhGRi8mHh6evUBGHRD/AkkAFVwHujQWmwFANWCMx4eMYWFheB0BMhtkB8guoFk/QXaD3QBTAAxG1b9//84AKnCCWrqPmZk5Y8uWLbfxRRdSKDADHfAXl1pC5jNiczFQcS8Qi4JcDBRqBbq4c/Xq1b+wWRAaGgoygxEo/w+HPNuXL1/KgcxqoJnsQDNfA3Ex0NGLUUIbh2YhoOZuoMZEqJobTExM6UDNhxhIAKDE+O/fv5lApgYsDQI9VQp09DuMaKeWQZR6hBmfgbdv335oaGg4+zcQAB1hDTTYFMhMUlNTewGUu4QrMf769WszUK0NKAMAcRMvL2/Mxo0b7+Gzi5HYYCaU2MhJ7GQ5BF9ihkrhTYxUdwhagZSIZAbRaYhqDsGSmBnIyVXIACDAAM34JXWPolNhAAAAAElFTkSuQmCC);
    display: block;
    width: 25px;
    right: 0;
    left: 0;
    top: -5px;
    margin: auto;
    position: absolute;
    opacity: 1;
    height: 15px;
    background-size: contain;
    background-repeat: no-repeat;
    animation: animate-arrow-3 1s ease-in-out infinite .2s;
}

.main-body-wrapper .read_more button .arrow::after {
    content: "";
    background: url(../images/arrow-down-svgrepo-com.svg);
    background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACIAAAAMCAYAAAAH4W+EAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyVpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDYuMC1jMDAyIDc5LjE2NDQ4OCwgMjAyMC8wNy8xMC0yMjowNjo1MyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6MDc3NEIyN0EyRDY0MTFFQjkzMDRBMjIxNzc0RTBDODQiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6MDc3NEIyNzkyRDY0MTFFQjkzMDRBMjIxNzc0RTBDODQiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIDIyLjAgKE1hY2ludG9zaCkiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDozNjdCMUQ3OTJDQUIxMUVCOENCRERGNDFFOTA1OTlERCIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDozNjdCMUQ3QTJDQUIxMUVCOENCRERGNDFFOTA1OTlERCIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/Ph5ikagAAAGHSURBVHjaYmAAAg8Pj14vLy87Bjzg////JGFPT09GHx8fNnxmguwE2Q1iMwI1eAI1bgPZxcjIOJ+Dg6Ns/fr1b3E5hhjg7e3NuG3bNpyKAwMDhX/8+NEFNC8J7AhGRi8mHh6evUBGHRD/AkkAFVwHujQWmwFANWCMx4eMYWFheB0BMhtkB8guoFk/QXaD3QBTAAxG1b9//84AKnCCWrqPmZk5Y8uWLbfxRRdSKDADHfAXl1pC5jNiczFQcS8Qi4JcDBRqBbq4c/Xq1b+wWRAaGgoygxEo/w+HPNuXL1/KgcxqoJnsQDNfA3Ex0NGLUUIbh2YhoOZuoMZEqJobTExM6UDNhxhIAKDE+O/fv5lApgYsDQI9VQp09DuMaKeWQZR6hBmfgbdv335oaGg4+zcQAB1hDTTYFMhMUlNTewGUu4QrMf769WszUK0NKAMAcRMvL2/Mxo0b7+Gzi5HYYCaU2MhJ7GQ5BF9ihkrhTYxUdwhagZSIZAbRaYhqDsGSmBnIyVXIACDAAM34JXWPolNhAAAAAElFTkSuQmCC);
    display: block;
    width: 25px;
    top: 2px;
    right: 0;
    left: 0;
    margin: auto;
    position: absolute;
    opacity: .5;
    height: 15px;
    background-size: contain;
    background-repeat: no-repeat;
    animation: animate-arrow-2 1s ease-in-out infinite .1s;
}

.main-body-wrapper .read_more button .arrow>span {
    animation: animate-arrow-1 1s ease-in-out infinite;
    background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACIAAAAMCAYAAAAH4W+EAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyVpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDYuMC1jMDAyIDc5LjE2NDQ4OCwgMjAyMC8wNy8xMC0yMjowNjo1MyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6MDc3NEIyN0EyRDY0MTFFQjkzMDRBMjIxNzc0RTBDODQiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6MDc3NEIyNzkyRDY0MTFFQjkzMDRBMjIxNzc0RTBDODQiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIDIyLjAgKE1hY2ludG9zaCkiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDozNjdCMUQ3OTJDQUIxMUVCOENCRERGNDFFOTA1OTlERCIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDozNjdCMUQ3QTJDQUIxMUVCOENCRERGNDFFOTA1OTlERCIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/Ph5ikagAAAGHSURBVHjaYmAAAg8Pj14vLy87Bjzg////JGFPT09GHx8fNnxmguwE2Q1iMwI1eAI1bgPZxcjIOJ+Dg6Ns/fr1b3E5hhjg7e3NuG3bNpyKAwMDhX/8+NEFNC8J7AhGRi8mHh6evUBGHRD/AkkAFVwHujQWmwFANWCMx4eMYWFheB0BMhtkB8guoFk/QXaD3QBTAAxG1b9//84AKnCCWrqPmZk5Y8uWLbfxRRdSKDADHfAXl1pC5jNiczFQcS8Qi4JcDBRqBbq4c/Xq1b+wWRAaGgoygxEo/w+HPNuXL1/KgcxqoJnsQDNfA3Ex0NGLUUIbh2YhoOZuoMZEqJobTExM6UDNhxhIAKDE+O/fv5lApgYsDQI9VQp09DuMaKeWQZR6hBmfgbdv335oaGg4+zcQAB1hDTTYFMhMUlNTewGUu4QrMf769WszUK0NKAMAcRMvL2/Mxo0b7+Gzi5HYYCaU2MhJ7GQ5BF9ihkrhTYxUdwhagZSIZAbRaYhqDsGSmBnIyVXIACDAAM34JXWPolNhAAAAAElFTkSuQmCC);
    width: 25px;
    top: 9px;
    height: 15px;
    opacity: .3;
    background-size: contain;
    background-repeat: no-repeat;
    display: block;
    right: 0;
    left: 0;
    margin: auto;
    position: absolute;
}

@keyframes animate-arrow-1 {
    0% {
        transform: translateY(-40px);
        opacity: 0
    }

    70%,
    to {
        transform: translateY(0);
        opacity: .3
    }
}

@keyframes animate-arrow-2 {
    0% {
        transform: translateY(-20px);
        opacity: 0
    }

    70%,
    to {
        transform: translateY(0);
        opacity: .5
    }
}

@keyframes animate-arrow-3 {
    0% {
        transform: translateY(-10px);
        opacity: 0
    }

    70%,
    to {
        transform: translateY(0);
        opacity: 1
    }
}

.main-body-wrapper .read_more button::before {
    /* content: ""; */
    position: absolute;
    width: 20px;
    height: 20px;
    bottom: -23px;
    background: url(../images/arrow-down-svgrepo-com.svg) no-repeat;
    background-size: contain;
}

.main-body-wrapper .content-wrapper.read-more .read_more {
    display: block;
}

@media (min-width: 1024px) {
    .main-body-wrapper .content-wrapper.read-more {
        margin-left: -30px;
        padding-left: 30px;
    }
}

.main-body-wrapper .content-wrapper.read-more {
    height: 500vh;
    overflow: hidden;
}

.main-body-wrapper .content-wrapper.read-more .read_more {
    display: block;
}

.sidebar-tit p {
    font-weight: 600;
    font-size: 20px;
    line-height: 24px;
    padding-bottom: 14px;
    width: 350px;
    border-bottom: 1px solid #CED4DA;
    position: relative;
}

.sidebar-tit p::before {
    content: "";
    position: absolute;
    width: 105px;
    border-bottom: 3px solid #E8952F;
    bottom: -1.5px;
    left: 0;
}


.daterangepicker {
    position: absolute;
    color: inherit;
    background-color: #fff;
    border-radius: 4px;
    border: 1px solid #ddd;
    width: 278px;
    max-width: none;
    padding: 0;
    margin-top: 7px;
    top: 100px;
    left: 20px;
    z-index: 3001;
    display: none;
    font-family: arial;
    font-size: 15px;
    line-height: 1em;
    margin-top: 32px;
}

.daterangepicker:before,
.daterangepicker:after {
    position: absolute;
    display: inline-block;
    border-bottom-color: rgba(0, 0, 0, 0.2);
    content: '';
}

.daterangepicker:before {
    top: -7px;
    border-right: 7px solid transparent;
    border-left: 7px solid transparent;
    border-bottom: 7px solid #ccc;
}

.daterangepicker:after {
    top: -6px;
    border-right: 6px solid transparent;
    border-bottom: 6px solid #fff;
    border-left: 6px solid transparent;
}

.daterangepicker.opensleft:before {
    right: 9px;
}

.daterangepicker.opensleft:after {
    right: 10px;
}

.daterangepicker.openscenter:before {
    left: 0;
    right: 0;
    width: 0;
    margin-left: auto;
    margin-right: auto;
}

.daterangepicker.openscenter:after {
    left: 0;
    right: 0;
    width: 0;
    margin-left: auto;
    margin-right: auto;
}

.daterangepicker.opensright:before {
    left: 9px;
}

.daterangepicker.opensright:after {
    left: 10px;
}

.daterangepicker.drop-up {
    margin-top: -7px;
}

.daterangepicker.drop-up:before {
    top: initial;
    bottom: -7px;
    border-bottom: initial;
    border-top: 7px solid #ccc;
}

.daterangepicker.drop-up:after {
    top: initial;
    bottom: -6px;
    border-bottom: initial;
    border-top: 6px solid #fff;
}

.daterangepicker.single .daterangepicker .ranges,
.daterangepicker.single .drp-calendar {
    float: none;
}

.daterangepicker.single .drp-selected {
    display: none;
}

.daterangepicker.show-calendar .drp-calendar {
    display: block;
}

.daterangepicker.show-calendar .drp-buttons {
    display: block;
}

.daterangepicker.auto-apply .drp-buttons {
    display: none;
}

.daterangepicker .drp-calendar {
    display: none;
    max-width: 270px;
}

.daterangepicker .drp-calendar.left {
    padding: 8px 0 8px 8px;
}

.daterangepicker .drp-calendar.right {
    padding: 8px;
}

.daterangepicker .drp-calendar.single .calendar-table {
    border: none;
}

.daterangepicker .calendar-table .next span,
.daterangepicker .calendar-table .prev span {
    color: #fff;
    border: solid black;
    border-width: 0 2px 2px 0;
    border-radius: 0;
    display: inline-block;
    padding: 3px;
}

.daterangepicker .calendar-table .next span {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
}

.daterangepicker .calendar-table .prev span {
    transform: rotate(135deg);
    -webkit-transform: rotate(135deg);
}

.daterangepicker .calendar-table th,
.daterangepicker .calendar-table td {
    white-space: nowrap;
    text-align: center;
    vertical-align: middle;
    min-width: 32px;
    width: 32px;
    height: 24px;
    line-height: 24px;
    font-size: 12px;
    border-radius: 4px;
    border: 1px solid transparent;
    white-space: nowrap;
    cursor: pointer;
}

.daterangepicker .calendar-table {
    border: 1px solid #fff;
    border-radius: 4px;
    background-color: #fff;
}

.daterangepicker .calendar-table table {
    width: 100%;
    margin: 0;
    border-spacing: 0;
    border-collapse: collapse;
}

.daterangepicker td.available:hover,
.daterangepicker th.available:hover {
    background-color: #eee;
    border-color: transparent;
    color: inherit;
}

.daterangepicker td.week,
.daterangepicker th.week {
    font-size: 80%;
    color: #ccc;
}

.daterangepicker td.off,
.daterangepicker td.off.in-range,
.daterangepicker td.off.start-date,
.daterangepicker td.off.end-date {
    background-color: #fff;
    border-color: transparent;
    color: #999;
}

.daterangepicker td.in-range {
    background-color: #ebf4f8;
    border-color: transparent;
    color: #000;
    border-radius: 0;
}

.daterangepicker td.start-date {
    border-radius: 4px 0 0 4px;
}

.daterangepicker td.end-date {
    border-radius: 0 4px 4px 0;
}

.daterangepicker td.start-date.end-date {
    border-radius: 4px;
}

.daterangepicker td.active,
.daterangepicker td.active:hover {
    background-color: #357ebd;
    border-color: transparent;
    color: #fff;
}

.daterangepicker th.month {
    width: auto;
}

.daterangepicker td.disabled,
.daterangepicker option.disabled {
    color: #999;
    cursor: not-allowed;
    text-decoration: line-through;
}

.daterangepicker select.monthselect,
.daterangepicker select.yearselect {
    font-size: 12px;
    padding: 1px;
    height: auto;
    margin: 0;
    cursor: default;
}

.daterangepicker select.monthselect {
    margin-right: 2%;
    width: 56%;
}

.daterangepicker select.yearselect {
    width: 40%;
}

.daterangepicker select.hourselect,
.daterangepicker select.minuteselect,
.daterangepicker select.secondselect,
.daterangepicker select.ampmselect {
    width: 50px;
    margin: 0 auto;
    background: #eee;
    border: 1px solid #eee;
    padding: 2px;
    outline: 0;
    font-size: 12px;
}

.daterangepicker .calendar-time {
    text-align: center;
    margin: 4px auto 0 auto;
    line-height: 30px;
    position: relative;
}

.daterangepicker .calendar-time select.disabled {
    color: #ccc;
    cursor: not-allowed;
}

.daterangepicker .drp-buttons {
    clear: both;
    text-align: right;
    padding: 8px;
    border-top: 1px solid #ddd;
    display: none;
    line-height: 12px;
    vertical-align: middle;
}

.daterangepicker .drp-selected {
    display: inline-block;
    font-size: 12px;
    padding-right: 8px;
    display: none;
}

.daterangepicker .drp-buttons .btn {
    margin-left: 8px;
    font-size: 12px;
    font-weight: bold;
    padding: 4px 8px;
}

.daterangepicker.show-ranges.single.rtl .drp-calendar.left {
    border-right: 1px solid #ddd;
}

.daterangepicker.show-ranges.single.ltr .drp-calendar.left {
    border-left: 1px solid #ddd;
}

.daterangepicker.show-ranges.rtl .drp-calendar.right {
    border-right: 1px solid #ddd;
}

.daterangepicker.show-ranges.ltr .drp-calendar.left {
    border-left: 1px solid #ddd;
}

.daterangepicker .ranges {
    float: none;
    text-align: left;
    margin: 0;
}

.daterangepicker.show-calendar .ranges {
    margin-top: 8px;
}

.daterangepicker .ranges ul {
    list-style: none;
    margin: 0 auto;
    padding: 0;
    width: 100%;
}

.daterangepicker .ranges li {
    font-size: 12px;
    padding: 8px 12px;
    cursor: pointer;
}

.daterangepicker .ranges li:hover {
    background-color: #eee;
}

.daterangepicker .ranges li.active {
    background-color: #08c;
    color: #fff;
}

/*  Larger Screen Styling */
@media (min-width: 564px) {
    .daterangepicker {
        width: auto;
    }

    .daterangepicker .ranges ul {
        width: 140px;
    }

    .daterangepicker.single .ranges ul {
        width: 100%;
    }

    .daterangepicker.single .drp-calendar.left {
        clear: none;
    }

    .daterangepicker.single .ranges,
    .daterangepicker.single .drp-calendar {
        float: left;
    }

    .daterangepicker {
        direction: ltr;
        text-align: left;
    }

    .daterangepicker .drp-calendar.left {
        clear: left;
        margin-right: 0;
    }

    .daterangepicker .drp-calendar.left .calendar-table {
        border-right: none;
        border-top-right-radius: 0;
        border-bottom-right-radius: 0;
    }

    .daterangepicker .drp-calendar.right {
        margin-left: 0;
    }

    .daterangepicker .drp-calendar.right .calendar-table {
        border-left: none;
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
    }

    .daterangepicker .drp-calendar.left .calendar-table {
        padding-right: 8px;
    }

    .daterangepicker .ranges,
    .daterangepicker .drp-calendar {
        float: left;
    }
}

@media (min-width: 730px) {
    .daterangepicker .ranges {
        width: auto;
    }

    .daterangepicker .ranges {
        float: left;
    }

    .daterangepicker.rtl .ranges {
        float: right;
    }

    .daterangepicker .drp-calendar.left {
        clear: none !important;
    }
}

@media(max-width: 730px) {
    .daterangepicker {
        margin-top: 0px;
    }
}

.spinner_mini__20 {
    margin-left: 5px;
    width: 20px;
    height: 20px;
    border: 2px solid #f3f3f3;
    border-top: 2px solid #3498db;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.border_input {
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 0 15px;
    padding-top: 25px;
    min-height: 70px;
    transition: all 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}