main {
    margin-top: 80px;
}

.button-theme {
    border-radius: 30px;
    padding: 8px 30px;
    background-color: var(--primary-color);
    color: var(--bs-white);
    border: 1px solid transparent;
    font-weight: 600;
    text-transform: capitalize;
    font-size: 1.05em;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.button-theme:hover {
    color: var(--bs-white);
    box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.3);
}

.button-theme.theme-white {
    background-color: var(--bs-white);
    color: var(--accent-color);
}

.section-heading {
    margin-bottom: 30px;
}

.section-heading .heading-subtitle {
    font-family: var(--font-heading);
    color: var(--primary-color-dark);
    font-size: 1.3em;
}

.section-heading .heading-title,
.section-heading .heading-title-2,
.section-heading .heading-title-3 {
    font-size: 2em;
    font-weight: 600;
    text-transform: capitalize;
    color: var(--accent-color);
}

.section-heading .heading-title-2 {
    font-size: 1.8em;
}

.section-heading .heading-title-3 {
    font-size: 1.4em;
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
}

.section-heading .heading-title-3 .icon {
    width: 30px;
    height: 30px;
    background-color: rgb(var(--theme-color-rgb), 0.2);
    color: var(--theme-color-dark);
    border-radius: 5px;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-heading .heading-decor.bg-before::before {
    background-color: var(--primary-color);
    width: 10px;
    height: 10px;
    display: block;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
}

.section-heading .heading-description {
    font-size: 1.1em;
    margin-top: 30px;
    font-weight: 500;
    color: var(--bs-gray-600);
}

.header-logo {
    width: 100px;
    height: 80px;
}

.header-bars {
    width: 35px;
    height: 35px;
}

.header-bars svg {
    width: 32px;
    height: 32px;
}

.header-bars:hover svg .one, .header-bars:hover svg .four {
    width: 0;
}

.header-bars:hover svg .two {
    transform: translate3d(-5px, -15px, 0);
    width: 90px;
}

.header-bars:hover svg .three {
    transform: translate3d(-30px, 15px, 0);
    width: 90px;
}

.header-right {
    background-image: url('../../../../public/upload/theme/topbgheader.png');
    background-position: top left;
    background-repeat: no-repeat;
    background-size: contain;
    height: 80px;
}

.header-right.bg-after::after {
    left: 28%;
    background-color: var(--primary-color-dark);
    width: 100vw;
}

.header-right__inner {
    margin-left: 135px;
}

.header-hotline .icon {
    width: 38px;
    height: 38px;
    font-size: 15px;
    background-color: var(--theme-color);
}

.header-hotline .icon i {
    transform: rotate(90deg);
}

.header-hotline .number {
    font-size: 1.2em;
}

.header-hotline .title {
    line-height: 1.2;
    color: #ebebeb;
    font-size: 13px;
}

.header-navigation > ul {
    display: flex;
    align-items: center;
}

.header-navigation ul > li > a {
    color: var(--bs-gray-700);
    padding: 8px 15px;
    transition: var(--transition-default);
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 500;
}

.header-navigation > ul > li > a {
    padding: 8px 15px;
    white-space: nowrap;
    font-weight: 600;
}

.header-navigation > ul > li:hover > a {
    color: var(--primary-color);
}

.header-navigation > ul > li > ul,
.header-navigation > ul > li > ul > li > ul {
    position: absolute;
    top: 100%;
    left: 0;
    width: 220px;
    z-index: 3;
    background-color: var(--bs-white);
    border-radius: 5px;
    border: 1px solid var(--bs-gray-200);
    padding: 5px;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, .08);
    transition: var(--transition-default);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(10px);
}

.header-navigation > ul > li > ul > li > ul {
    top: 0;
    left: 100%;
}

.header-navigation > ul > li:hover > ul,
.header-navigation > ul > li > ul > li:hover > ul {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.header-navigation > ul > li > ul > li + li,
.header-navigation > ul > li > ul > li > ul > li + li {
    border-top: 1px dashed rgb(230 235 240);
}

.header-navigation > ul > li > ul > li:hover a,
.header-navigation > ul > li > ul > li > ul > li:hover a {
    color: var(--primary-color);
}

.header-navigation__top .logo {
    width: 90px;
    height: 60px;
}

.close-navigation {
    width: 32px;
    height: 32px;
    border: 1px solid var(--bs-gray-300);
}

.close-navigation:hover i {
    transform: rotate(180deg);
}

.header-overlay {
    background: rgb(7 12 21 / 96%);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    position: fixed;
    top: 0;
    right: 0;
    width: 0;
    height: 100vh;
    z-index: 5;
    transition: var(--transition-default);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.is-navigation .header-overlay {
    width: 100%;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.section-banner__image img {
    -webkit-transition: all 8s ease-out 0s;
    -moz-transition: all 8s ease-out 0s;
    -ms-transition: all 8s ease-out 0s;
    -o-transition: all 8s ease-out 0s;
    transition: all 8s ease-out 0s;
    transform: scale(1.1);
}

.section-banner__content {
    background: linear-gradient(6deg, #201112 10%, #1d335c36);
}

.section-banner__content .content-subtitle,
.section-banner__content .content-title,
.section-banner__content .content-text,
.section-banner__content .link-effect {
    transform: translateX(70px);
    transition: all 0.8s ease-in-out;
    opacity: 0;
}

.section-banner__content .content-subtitle {
    transition-delay: 0.1s;
}

.section-banner__content .content-title {
    transition-delay: 0.3s;
}

.section-banner__content .content-text {
    transition-delay: 0.5s;
}

.section-banner__content .link-effect {
    transition-delay: 0.7s;
}

.section-banner .decor-left {
    width: 300px;
    left: 20px;
}

.swiper-slide-active img {
    transform: scale(1);
}

.swiper-slide-active .section-banner__content .content-subtitle,
.swiper-slide-active .section-banner__content .content-title,
.swiper-slide-active .section-banner__content .content-text,
.swiper-slide-active .section-banner__content .link-effect {
    opacity: 1;
    transform: translateX(0);
}

footer {
    background-color: var(--accent-color);
    background-attachment: fixed;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    color: #bac5d8;
    font-size: 15px;
}

footer.bg-before::before {
    background: linear-gradient(60deg, var(--accent-color) 60%, #1d335c36);
}

.footer-box {
    background: #1e2b42;
    padding: 30px;
}

.footer-logo {
    width: 140px;
    height: 93px;
}

.footer-title {
    margin-bottom: 30px;
    font-size: 1.15em;
    font-weight: 600;
    color: var(--bs-gray-100);
}

footer a,
.footer-copyright a {
    color: #bac5d8;
}

footer a:hover {
    color: var(--bs-gray-100);
}

.footer-copyright {
    border-top: 2px solid rgb(var(--primary-rgb), 0.3);
    background-color: #122038;
}

.footer-social a {
    width: 32px;
    height: 32px;
    background: var(--primary-color);
}

.footer-social a > i {
    transition: 0.2s ease-in;
}

.footer-social a:hover {
    background: var(--primary-color);
    color: var(--bs-white);
}

.footer-social a i:last-child {
    position: absolute;
    top: 0;
    left: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s ease-in;
    transform: translateY(100%);
    opacity: 0;
}

.footer-social a:hover i:first-child {
    transform: translateY(-100%);
    opacity: 0;
}

.footer-social a:hover i:last-child {
    transform: translateY(0);
    opacity: 1;
}

.footer-title__decor {
    font-size: 150px;
    font-weight: 600;
    letter-spacing: 3px;
    opacity: 0.3;
    line-height: 0.6;
    background: linear-gradient(180deg, #ad9899 8.13%, rgb(243 249 255 / 13%) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-line-end {
    border-right: 1px solid rgba(128, 128, 128, 0.67);
}

.footer-contact .contact-item + .contact-item {
    border-top: 1px dashed gray;
    margin-top: 15px;
    padding-top: 15px;
}

.footer-contact .contact-item .title {
    font-size: 1em;
    margin-bottom: 6px;
    width: max-content;
}

.footer-contact .contact-item a.text {
    font-size: 1.05em;
}

.footer-car {
    width: 190px;
    height: 103px;
    animation: marquee-car 40s linear infinite;
}

@keyframes marquee-car {
    0% {
        transform: translateX(-100px);
    }
    100% {
        transform: translateX(100vw);
    }
}

.footer-car .tyre-1 {
    position: absolute;
    left: 12.9%;
    bottom: 0;
    width: 15%;
}

.footer-car .tyre-2 {
    position: absolute;
    right: 10.8%;
    bottom: 0;
    width: 15%;
}

.spin-tyres {
    animation-name: spin;
    animation-duration: 2400ms;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.introduce-box .decor-right {
    width: 230px;
}

.introduce-box__img .img-avatar {
    padding-bottom: 85px;
    -webkit-animation: 2s animation-img-x infinite;
    animation: 2s animation-img-x infinite;
}

@keyframes animation-img-x {
    50% {
        -webkit-transform: translateX(6px);
        transform: translateX(6px);
    }
    100% {
        -webkit-transform: translateX(0px);
        transform: translateX(0px);
    }
}

.introduce-box__img .img-decor {
    max-width: 60%;
    width: 100%;
    left: -73px;
    -webkit-animation: 2s animation-img infinite;
    animation: 2s animation-img infinite;
}

@keyframes animation-img {
    50% {
        -webkit-transform: translateY(6px);
        transform: translateY(6px);
    }
    100% {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }
}

@media (prefers-reduced-motion: reduce) {
    .introduce-box__img .img-avatar,
    .introduce-box__img .img-decor {
        animation: none !important;
        -webkit-animation: none !important;
    }
}

.introduce-experience {
    padding: 20px 25px;
    width: 60%;
    border: 5px solid var(--bs-white);
    background: linear-gradient(to left, var(--primary-color), var(--primary-color-light));
}

.introduce-experience .icon {
    width: 60px;
    height: 50px;
}

.introduce-item {
    color: var(--bs-gray-700);
}

.introduce-item .text {
    color: var(--bs-gray-600);
}

.introduce-item .icon {
    width: 50px;
    height: 50px;

}

.introduce-item .icon img {
    width: 62%;
    height: 62%;
    filter: brightness(0) invert(1);
    -webkit-filter: brightness(0) invert(1);
}

.tour-hot__wrap {
    background-color: #f7f1dc;
    padding: 80px 0 50px;
}

.tour-hot__wrap .decor-right {
    width: 380px;
    -webkit-animation: 2s animation-img infinite;
    animation: 2s animation-img infinite;
}

.tour-hot .tour-hot__title {
    font-size: 3.5em;
    line-height: 1.5;
    background: linear-gradient(180deg, #16243d 8.13%, rgb(243 249 255 / 13%) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.tour-card {
    border: 1px solid var(--bs-gray-200);
    color: var(--bs-gray-700);
    font-size: 15px;
}

.tour-card .category {
    font-size: 11px;
    background-color: #eab308;
    color: var(--bs-gray-800);
    left: 6px;
    top: 6px;
    padding: 6px 11px;
    border-radius: 30px;
    line-height: normal;
}

.tour-card .card-title {
    font-size: 1.2em;
    height: 43px;
}

.tour-card .list-item span {
    border-radius: 30px;
    padding: 3px 8px;
    display: inline-block;
    font-weight: 500;
    font-size: 12px;
    line-height: normal;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.12);
}

.tour-card .list-item span.day {
    background-color: rgb(211 240 247);
    color: #1496b6;
    border: 1px solid rgb(201 237 247);
}

.tour-card .list-item span.people {
    background-color: rgb(247 241 220);
    color: #d1ba37;
    border: 1px solid rgb(247 225 113);
}

.tour-card .list-item span.service {
    background-color: rgb(230 250 238);
    color: #258236;
    border: 1px solid rgb(206 229 215);
}

.tour-card__price {
    line-height: 1.5;
    border-top: 1px solid var(--bs-gray-200);
}

.tour-card__price .price {
    color: var(--bs-gray-800);
}

.tour-card__price .price-sale > span {
    font-size: 14px;
    color: var(--bs-gray-600);
}

.tour-card__price .price-sale .discount {
    border: 1px solid gray;
    padding: 3px 10px;
    font-size: 12px;
    border-radius: 3px;
}

.tour-card:hover {
    box-shadow: 0px 6px 14px -6px rgb(133 155 207 / 12%), 0px 10px 32px -4px rgb(175 182 70 / 10%);
}

.tour-card:hover .card-title {
    color: var(--accent-color);
}

.tour-wrap .tour-box .link-effect {
    color: var(--bs-gray-700);

}

.detailContent * {
    font-size: 15px;
}

.detailContent img {
    max-width: 100% !important;
    height: auto !important;
}

.detailContent iframe, .detailContent video, .detailContent table {
    max-width: 100% !important;
}

.detailContent strong, .detailContent b {
    font-weight: 700 !important;
}

.detailContent h1, .detailContent h2, .detailContent h3, .detailContent h4, .detailContent h5, .detailContent h6, .detailContent strong {
    font-weight: 600 !important;
    margin-bottom: 1rem;
}

.detailContent h1 {
    font-size: 1.6em;
}

.detailContent h2 {
    font-size: 1.5em;
}

.detailContent h3 {
    font-size: 1.4em;
}

.detailContent h4 {
    font-size: 1.3em;
}

.detailContent h5 {
    font-size: 1.25em;
}

.detailContent h6 {
    font-size: 1.2em;
}

.detail-tour .breadcrumb .breadcrumb-item,
.detail-tour .breadcrumb .breadcrumb-item a {
    color: var(--bs-gray-700);
}

.detail-tour .breadcrumb .breadcrumb-item a:hover {
    color: var(--primary-color);
}

.detail-tour__top {
    background-color: #f2f3f7;
}

.detail-tour__top .box-item {
    line-height: normal;

}

.detail-tour__top .box-item .text {
    color: var(--bs-gray-700);
}

.detail-tour__schedule .accordion-button {
    color: var(--theme-color-dark);
    background-color: rgb(var(--theme-color-rgb), 0.1);
    box-shadow: none;
    border: 1px solid var(--theme-color-dark);
    border-radius: 8px;
    font-size: 16px;
    padding: 12px 15px;
}

.detail-tour__schedule .accordion-button::after {
    position: unset !important;
    content: unset !important;
    background-image: unset !important;
}

.detail-tour__schedule .accordion-item:first-of-type .accordion-button {
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.detail-tour__schedule .accordion-item .accordion-header,
.detail-tour__schedule .accordion-item .accordion-collapse {
    padding-left: 20px;

}

.detail-tour__schedule .accordion-item .accordion-header::before {
    position: absolute;
    content: '';
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: var(--bs-white);
    border: 1px solid var(--theme-color-dark);
    top: 50%;
    left: -10px;
    transform: translateY(-50%);
}

.detail-tour__schedule .accordion-item .accordion-header::after {
    position: absolute;
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--theme-color-dark);
    top: 50%;
    left: -4px;
    transform: translateY(-50%);
}

.detail-tour__schedule .accordion::before {
    content: '';
    position: absolute;
    left: 0;
    top: 18px;
    bottom: 3px;
    border-left: dotted 2px #a8b9bc;
}

.detail-tour__check .section-heading .icon {
    background-color: #e7f7e7;
    color: green;
    font-size: 15px;
}

.detail-tour__nocheck .section-heading .icon {
    background-color: #f7e7e7;
    color: #800000;
    font-size: 15px;
}

.detail-tour__table {
    background-color: var(--bs-white);
    border: 1px solid var(--bs-gray-200);
}

.detail-tour__price {
    font-size: 16px;
}

.detail-tour__price .price {
    font-size: 1.4em;
    color: var(--accent-color);
}

.detail-tour__price .price-sale {
    color: var(--bs-gray-600);
}

.detail-tour__price .price-sale .discount {
    border-radius: 5px;
    background-color: var(--primary-color);
    color: var(--bs-white);
    padding: 5px 10px;
    font-size: 12px;
}

.detail-tour__time,
.detail-tour__collapse {
    display: none;
}

.detail-tour__time .time-item {
    border: 1px solid var(--bs-gray-300);
}

.detail-tour__time.is-check .time-item {
    border: 1px solid var(--theme-color);
    background-color: rgb(var(--theme-color-rgb), 0.1) !important;
    color: var(--theme-color-dark);
}

.detail-tour__time.is-check,
.is-active-time .detail-tour__collapse {
    display: block;
}

.form-check__wrap .form-check {
    border-radius: 6px;
    background-color: transparent;
    padding-left: 10px;
    font-weight: 500;
    border: 1px solid var(--bs-gray-300);
    transition: var(--transition-default);
}

.form-check__wrap .form-check span {
    display: inline-block;
    padding: 10px;
}

.form-check__wrap .form-check.is-active {
    background-color: rgb(var(--theme-color-rgb), 0.1);
    border: 1px solid var(--theme-color);

}

.form-check__wrap .form-check:hover {
    cursor: pointer;
    background-color: var(--bs-gray-100);
    border: 1px solid var(--bs-gray-300);
}

.form-check__wrap .form-check .form-check-input {
    vertical-align: middle;
    margin-left: 0;
    margin-top: 13px;
    float: unset;
    width: 16px;
    height: 16px;
    flex-shrink: 0;

}

.form-quality__wrap {
    color: var(--bs-gray-600);

}

.form-quality__wrap .quality-item {
    border: 1px solid var(--bs-gray-200);
    background-color: var(--bs-light);
    border-radius: 10px;
    padding: 10px;
}

.form-quality__wrap .quality-item .title {
    font-size: 15px;
    color: var(--bs-gray-800);
}

.detail-tour__note {
    background-color: rgb(var(--theme-color-rgb), 0.1);
    border: 1px solid var(--theme-color);
    color: var(--theme-color-dark);
}

.detail-tour__form .form-table {
    background-color: rgb(239 246 255);
    border: 1px solid #c7dbf4;
}

.detail-tour__form .form-table .item .text {
    color: var(--bs-gray-900);
    font-size: 15px;
}

.detail-tour__form .form-table .item + .item {
    border-top: 1px solid var(--bs-gray-200);
    padding-top: 6px;
    margin-top: 6px;
}

.detail-payment__box {
    border: 1px solid var(--bs-gray-200);
}

.detail-payment__tour .tour-wrap .tour-wrap__item {
    font-size: 15px;
    color: var(--bs-gray-700);
}

.detail-payment__tour .tour-wrap .tour-wrap__item + .tour-wrap__item {
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid var(--bs-gray-200);
}

.detail-payment__tour .tour-wrap .tour-wrap__item .text {
    font-weight: 500;
}

.detail-payment__tour .tour-wrap .tour-wrap__item-total {
    border: 1px solid var(--bs-gray-200);
}

.article-card .card-body {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.76) 73%);
}

.article-card__date {
    font-size: 12px;
    padding: 3px 12px;
    background: rgb(219 221 225 / 28%);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    border-radius: 8px;
    width: max-content;
    color: var(--bs-white);
}

.article-card__title,
.article-card-2 .title {
    font-size: 1.25em;
    line-height: normal;
    color: var(--bs-gray-200);
}

.article-card-2 .image {
    width: 150px;
}

.article-card-2 .title {
    color: var(--accent-color);
}

.article-card-2 .date {
    font-size: 12px;
    color: var(--bs-gray-600);
}

.article-card-2 .date.bg-after::after {
    width: 1px;
    background-color: var(--bs-gray-400);
    height: 10px;
    top: 50%;
    transform: translateY(-50%);
}

.article-card-2 .category {
    color: var(--primary-color-dark);
}

.detail-article__heading {
    border-bottom: 1px solid var(--bs-gray-200);
}

.detail-article__date {
    border-right: 1px solid var(--bs-gray-200);
}

.detail-article__date .day {
    font-size: 1.5em;
    border-bottom: 1px solid var(--primary-color);
}

.detail-contact__avatar {
    border-radius: 200px;
}

.detail-article__desc {
    background-color: rgb(var(--theme-color-rgb), 0.1);
}

.detail-contact .contact-item {
    background-color: rgb(var(--primary-rgb), 0.1);
    padding: 30px;
    -webkit-box-shadow: 0px 5px 15px rgb(15 36 84 / 5%);
    box-shadow: 0px 5px 15px rgb(15 36 84 / 5%);
    font-size: 15px;
    min-height: 200px;
}

.detail-contact .contact-item .icon {
    font-size: 1.3em;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid #c31c1f2e;
    color: var(--primary-color-dark);
    background-color: rgb(var(--primary-rgb), 0.1);
}

.detail-contact .contact-item .title {
    font-size: 1.2em;
}

.detail-contact .contact-item a {
    color: var(--bs-gray-800);
    width: fit-content;
}

.detail-contact .contact-item .icon-decor {
    position: absolute;
    right: 5px;
    font-size: 70px;
    z-index: 1;
    bottom: 0;
    transition: var(--transition-default);
    color: rgb(var(--primary-rgb), 0.07);
    transform: rotate(-15deg);
}

.detail-contact .contact-item:hover .icon-decor {
    transform: rotate(-10deg);
}

.detail-contact__map iframe {
    width: 100% !important;
    height: 320px !important;
    vertical-align: bottom;
}

.detail-contact .decor-right {
    width: 230px;
    top: 33px;
    right: 50px;
    height: 121px;
    -webkit-animation: 2s animation-img-x infinite;
    animation: 2s animation-img-x infinite;
}

@media (prefers-reduced-motion: reduce) {
    .detail-contact .decor-right {
        animation: none !important;
    }
}

.box-reason {
    border: 1px solid #e4e5e5;
    webkit-filter: drop-shadow(10px 4px 60px rgba(180, 159, 88, 0.03));
    filter: drop-shadow(10px 4px 60px rgba(180, 159, 88, 0.03));
}

.box-reason .icon {
    background-color: rgb(var(--primary-rgb), 0.1);
    width: 60px;
    height: 60px;
}

.box-reason:hover {
    border: 1px solid rgb(var(--primary-rgb), 0.5);
    webkit-filter: drop-shadow(10px 4px 60px rgba(180, 159, 88, 0.2));
    filter: drop-shadow(10px 4px 60px rgba(180, 159, 88, 0.2));
}

.section-partner .decor {
    width: 800px;
    top: -48px;
    z-index: -2;
    opacity: 0.15;
}

.section-partner .section-heading .heading-title-2.bg-after::after {
    height: 1px;
    background: linear-gradient(90deg, rgba(21, 160, 74, 0) 0, rgba(160, 21, 21, 0.49) 20%, rgba(175, 50, 50, 0.4) 80%, rgba(21, 160, 74, 0) 100%);
    top: 50%;
    transform: translateY(-50%);

}

.partner-item {
    height: 100px;
    border: 1px solid var(--bs-gray-100);
}

.search-box__wrap {
    border: 1px solid var(--bs-gray-100);
    border-radius: 12px;
    -webkit-box-shadow: 10px 4px 30px rgba(197, 197, 197, 0.25);
    box-shadow: 10px 4px 30px rgba(197, 197, 197, 0.25);
}

.search-box .title {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 12px;
    color: var(--bs-gray-800);
    margin-bottom: 4px;
}

.search-box .form-group__item .form-control,
.search-box .form-group__item .item-title {
    font-weight: 500;
    height: 42px;
    font-size: 14px;
    border-radius: 8px;
    border: 1px solid var(--bs-gray-300);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4px;
    padding: 4px 10px;
    cursor: pointer;
    transition: var(--transition-default);
}

.search-box .form-group__item .item-collapse {
    width: 100%;
    box-shadow: 0 16px 24px rgba(0, 0, 0, .06);
    padding: 5px;
    border-radius: 3px;
    background-color: var(--bs-white);
    top: 100%;

    position: absolute;
    left: 0;
    z-index: 4;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;

}

.search-box .form-group__item .item-collapse ul {
    overflow-y: auto;
    max-height: 300px;
}

.search-box__wrap .btn-search {
    width: 38px;
    color: var(--bs-gray-700);
}

.search-box__wrap .form-search .form-control {
    padding: 5px 40px 5px 10px;
}

.search-box .form-group__item.is-show .item-title {
    border: 1px solid var(--primary-color);
}

.search-box .form-group__item.is-show .item-collapse {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.search-box .form-group__item .item-collapse ul > li {
    padding: 4px 5px;
    transition: var(--transition-default);
    border-radius: 5px;
    cursor: pointer;
}

.search-box .form-group__item .item-collapse ul > li:hover {
    color: var(--primary-color);
    background-color: var(--bs-gray-100);
}

.tour-success .icon-check,
.tour-success .icon-error {
    width: 60px;
    height: 60px;
    font-size: 35px;

}

.tour-success .icon-check {
    background: #e6f9ee;
    color: #22c55e;
}

.tour-success .icon-error {
    background: #f9e6e6;
    color: #c52222;
}
