/*
========== HEADING ==========
*/
.section-heading {
    margin-bottom: 40px;
}

.section-heading.section-heading_center {
    max-width: 768px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.section-heading .section-heading_sub {
    font-size: calc(var(--size-theme-ratio) * 1.5);
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.section-heading .section-heading_title {
    font-size: calc(var(--size-theme-ratio) * 2.5);
    font-weight: 600;
    color: var(--gray-900);
    line-height: 1.1;
}

.section-heading .section-heading_desc {
    margin-top: 20px;
    font-size: var(--size-theme-6);
    color: var(--gray-600);
    line-height: 1.5;
}

.section-heading .section-heading_text {
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.section-heading .section-heading_text .section-heading_text-icon {
    font-size: 2.4em;
    color: var(--primary-color);
}

.section-heading .section-heading_text .section-heading_text-content p {
    margin-bottom: 0;
    font-size: 1.3em;
    font-weight: 700;
    color: var(--gray-700);
}

.section-heading .section-heading_text .section-heading_text-content span {
    font-size: 1.1em;
    color: var(--gray-600);
    line-height: 1.5;
}

.section-heading .section-heading_button {
    margin-top: 20px;
}

@media (max-width: 1199px) {
    .section-heading .section-heading_title {
        font-size: calc(var(--size-theme-ratio) * 2.25);
    }

    .section-heading .section-heading_sub {
        font-size: calc(var(--size-theme-ratio) * 1.25);
    }

    .section-heading {
        margin-bottom: 30px;
    }
}

@media (max-width: 991px) {
    .section-heading .section-heading_title {
        font-size: calc(var(--size-theme-ratio) * 2);
    }

    .section-heading .section-heading_sub {
        font-size: calc(var(--size-theme-ratio) * 1.125);
    }

}

@media (max-width: 767px) {
    .section-heading .section-heading_title {
        font-size: calc(var(--size-theme-ratio) * 1.75);
    }

    .section-heading {
        margin-bottom: 20px;
    }
}

@media (max-width: 479px) {
    .section-heading .section-heading_title {
        font-size: calc(var(--size-theme-ratio) * 1.5);
    }

    .section-heading .section-heading_sub {
        font-size: calc(var(--size-theme-ratio) * 1);
    }
}

/* ========== BUTTON THEME ========== */
.button-theme {
    border: 0;
    outline: none;
    box-shadow: none;
    font-size: calc(var(--size-theme-ratio) * 1);
    border-radius: 200px;
    font-weight: 600;
    color: var(--white);
    background-color: var(--primary-color);
    position: relative;
    overflow: hidden;
    padding: 12px 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    vertical-align: middle;
    line-height: 1.1;
}

.button-theme[disabled] {
    opacity: 0.5;
    pointer-events: none;
}

.button-theme.button-theme_small {
    padding: 10px 18px;
    font-size: 1em;
}

.button-theme.button-theme_square {
    border-radius: 0.25rem;
}

.button-theme i {
    margin-left: 5px;
}

.button-theme:before {
    position: absolute;
    top: 0;
    left: -75%;
    z-index: 2;
    display: block;
    content: '';
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
    transform: skewX(-25deg);
}

.button-theme.button-theme--secondary {
    background-color: var(--accent-color);
}

.button-theme.button-theme--secondary :before {
    background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
}

.button-theme:hover {
    color: #fff;
    background-color: var(--primary-hover);
}

.button-theme.button-theme--secondary:hover {
    color: #fff;
    background-color: var(--accent-hover);
}

.button-theme:hover:before {
    -webkit-animation: shine 1s;
    animation: shine 1s;
}

@-webkit-keyframes shine {
    100% {
        left: 125%;
    }
}

@keyframes shine {
    100% {
        left: 125%;
    }
}

@media (max-width: 1199px) {
    .button-theme.button-theme_small,
    .button-theme {
        font-size: calc(var(--size-theme-ratio) * 0.875);
    }

    .button-theme {
        padding: 10px 20px;
    }
}


/*===========================================*/

.swiper-actions .swiper-pagination {
    position: relative;
    bottom: unset;
    left: unset;
    margin-top: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.swiper-actions .swiper-pagination .swiper-pagination-bullet {
    background-color: var(--gray-400);
    opacity: 1;
    height: 8px;
    width: 8px;
    transition: var(--transition-default);
}

.swiper-actions .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: 25px;
    border-radius: 8px;
    background-color: var(--primary-color);
}

/*
========== SECTION HEADER ==========
*/
.header {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	z-index: 10;
	background-color: rgba(0, 0, 0, 0.6);
}

.header .header-navigation > ul {
    display: flex;
    align-items: center;
    justify-self: flex-end;
}

.header .header-navigation > ul > li {
    position: relative;
}

.header .header-navigation > ul > li + li {
    margin-left: 20px;
}

.header .header-navigation > ul > li > a {
    color: var(--white);
    font-size: 0.95em;
    text-shadow: 1px 1px 0 #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px 5px;
    position: relative;
    opacity: 0.8;
    transition: var(--transition-default);
}

.header .header-navigation > ul > li > a.active,
.header .header-navigation > ul > li > a:hover {
    color: var(--white);
    opacity: 1;
}

.header .header-navigation > ul > li > a > i {
    font-size: 0.9em;
    margin-left: 5px;
}

.header .header-navigation > ul > li > ul {
    position: absolute;
    left: -10px;
    top: 100%;
    min-width: calc(100% + 10px);
    width: 240px;
    background: rgba(0, 0, 0, 0.7);
    transition: var(--transition-default);
    z-index: 2;
    transform: scaleY(0);
    transform-origin: top;
    pointer-events: none;
    visibility: hidden;
    opacity: 0;
}

.header .header-navigation > ul > li:hover > ul {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: scaleY(1);
}

.header .header-navigation > ul > li > ul > li > a {
    display: flex;
    align-items: center;
    font-size: 0.95em;
    color: var(--white);
    opacity: 0.75;
    transition: var(--transition-default);
    padding: 11px 10px;
}

.header .header-navigation > ul > li > ul > li > a:hover {
    color: var(--white);
    opacity: 1;
    background: rgba(255, 255, 255, 0.05);
}

.header .header-navigation > ul > li > ul > li + li {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.header .header-toggle {
    display: none;
}

.header .header-toggle,
.header .header-cart,
.header .header-auth {
    margin-left: 20px;
}

.header .btn-login {
    padding: 0.25rem 1rem;
    border: 1px solid #ffffff;
    color: #ffffff;
    font-size: var(--size-theme-7);
    transition: var(--transition-default);
}

.header .btn-login:hover {
    color: #ffffff;
    background-color: var(--primary-hover);
    border-color: var(--primary-hover);
}


.header .header-cart {
    position: relative;
}

.header .header-cart .header-cart__btn {
	display: flex;
	align-items: center;
	height: 32px;
	padding: 4px;
	outline: none;
	border: none;
	background-color: transparent;
	position: relative;
}

.header .header-cart .header-cart__btn img {
	-webkit-transition: var(--transition-default);
	-o-transition: var(--transition-default);
	transition: var(--transition-default);
}

.header .header-cart .header-cart__btn img.header-cart_is--sticky {
	position: absolute;
	left: 50%;
	top: 50%;
	-webkit-transform: translateY(-50%) translateX(-50%);
	-ms-transform: translateY(-50%) translateX(-50%);
	transform: translateY(-50%) translateX(-50%);
	opacity: 0;
	visibility: hidden;
	-webkit-transition: var(--transition-default);
	-o-transition: var(--transition-default);
	transition: var(--transition-default);
}

.header .header-cart .header-cart__btn > span {
    position: absolute;
    display: inline-block;
    top: -7px;
    right: -7px;
    width: 17px;
    height: 17px;
    line-height: 17px;
    border-radius: 50%;
    background-color: #fff;
    font-size: 10px;
    color: var(--gray-900);
}

.header .header-cart .header-cart__list {
    position: absolute;
    top: calc(100% + 20px);
    right: 0;
    min-width: 320px;
    max-height: calc(100vh - 165px);
    display: flex;
    flex-flow: column nowrap;
    background-color: #fff;
    box-shadow: 0 2px 4px rgb(97 97 97 / 18%),
    0 4px 8px rgb(97 97 97 / 18%);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    user-select: none;
    transform: translate3d(0, 15px, 0);
    transition: var(--transition-default);
}

.header .header-cart .header-cart__list::before {
    content: '';
    display: block;
    background-color: transparent !important;
    height: 20px;
    width: 100%;
    position: absolute;
    top: -20px;
    left: 0;
}

.header .header-cart.show .header-cart__list {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    user-select: auto;
    transform: translate3d(0, 0, 0);
}

.header .header-cart .header-cart__list .list-products {
    overflow-y: auto;
    scroll-snap-type: y mandatory;
    scroll-snap-stop: always;
    touch-action: manipulation;
    scroll-padding: 1rem;
}

.header .header-cart .header-cart__list .list-products > .item {
    scroll-snap-align: center;
}

.header .header-cart .header-cart__list .list-products::-webkit-scrollbar {
    width: 5px;
}

.header .header-cart .header-cart__list .list-products::-webkit-scrollbar-track {
    background: #fff;
}

.header .header-cart .header-cart__list .list-products::-webkit-scrollbar-thumb {
    background: var(--gray-400);
}

.header .header-cart .header-cart__list .list-products::-webkit-scrollbar-thumb:hover {
    background: var(--gray-500);
}

.header .header-profile {
    margin-left: 20px;
}

.header .header-profile__toggle {
    display: inline-block;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    overflow: hidden;
    transition: var(--transition-default);
}

.header .header-profile__toggle:hover {
    box-shadow: rgba(0, 0, 0, 0.24) 0 3px 8px;
}

.header .header-profile .dropdown-menu {
    top: 19px !important;
    border: 1px solid var(--gray-300);
    border-radius: 0.25rem;
    padding: 0;
}

.header .header-profile .profile-wrapper {
    padding: 15px;
}

.header .header-profile .profile-actions .separation {
    margin: 15px 0;
    border-top: 1px solid #e3e7ed;
}

.header .header-profile .profile-actions > a {
    cursor: pointer;
}

.header .header-profile .profile-actions > a + a {
    margin-top: 8px;
}

.header .header-profile .profile-info {
    margin-bottom: 15px;
}

.header .header-wrapper .header-logo > a {
	position: relative;
}

.header .header-wrapper .header-logo > a > img {
	-webkit-transition: var(--transition-default);
	-o-transition: var(--transition-default);
	transition: var(--transition-default);
}

.header .header-wrapper .header-logo > a > .header-logo_is--sticky {
	position: absolute;
	left: 0;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	opacity: 0;
	visibility: hidden;
	-webkit-transition: var(--transition-default);
	-o-transition: var(--transition-default);
	transition: var(--transition-default);
}

.header .nav-mobile-footer,
.header .nav-mobile-header {
    display: none;
    padding: 15px;
    position: relative;
}

.header .nav-mobile-footer {
    padding: 20px 15px;
}

.header .nav-mobile-header .header-logo img {
    max-width: 160px;
    height: auto;
}

.header .btn-show-nav,
.header .nav-mobile-header .btn-close-nav {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 32px;
    border: 0;
    outline: 0;
    border-radius: 0.25rem;
    background-color: transparent;
    color: var(--gray-200);
    font-size: var(--size-theme-5);
    transform: translate3d(0, 0, 0);
    transition: 0.5s cubic-bezier(.19, 1, .22, 1);
}

.header .nav-mobile-header .btn-close-nav {
    background-color: rgba(35, 38, 41, 0.75);
    transform: translate3d(calc(100% + 30px), 0, 0);
}

.header::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: -1;
    display: block;
    width: 100%;
    pointer-events: none;
    user-select: none;
    opacity: 0;
    transition: 0.5s cubic-bezier(.19, 1, .22, 1);
    background: rgba(0, 0, 0, 0.33);
    mix-blend-mode: multiply;
}

body.nav-is-show {
    overflow: hidden;
}

body.nav-is-show .header::after {
    opacity: 1;
    bottom: 0;
    pointer-events: auto;
    user-select: auto;
    z-index: 9;
}

.header.is-sticky {
	position: fixed;
	background: var(--white);
	-webkit-box-shadow: 0 4px 10px rgb(0 0 0 / 10%);
	box-shadow: 0 4px 10px rgb(0 0 0 / 10%);
	-webkit-animation: header-scroll .5s forwards;
	animation: header-scroll .5s forwards;
}

@-webkit-keyframes header-scroll {
	0% {
		top: -20px;
	}
	100% {
		top: 0;
	}

}


@keyframes header-scroll {
	0% {
		top: -20px;
	}
	100% {
		top: 0;
	}

}

.header.is-sticky .header-wrapper .header-logo > a > .header-logo_is--noSticky,
.header.is-sticky .header-cart .header-cart__btn img.header-cart_is--noSticky {
	opacity: 0;
	visibility: hidden;
}

.header.is-sticky .header-wrapper .header-logo > a > .header-logo_is--sticky,
.header.is-sticky .header-cart .header-cart__btn img.header-cart_is--sticky {
	opacity: 1;
	visibility: visible;
}

.header.is-sticky .header-navigation > ul > li > a {
	color: var(--gray-900);
	text-shadow: none;
	opacity: 1;
}

.header.is-sticky .header-cart .header-cart__btn > span {
	background: var(--primary-color);
	color: var(--white);
}

.header.is-sticky .btn-login {
	background: var(--primary-color);
}

.header.is-sticky .btn-login:hover {
	background: var(--primary-hover);
}

.header.is-sticky .header-navigation > ul > li > ul {
	background: var(--white);
	-webkit-box-shadow: 0 4px 10px rgb(0 0 0 / 10%);
	box-shadow: 0 4px 10px rgb(0 0 0 / 10%);
}

.header.is-sticky .header-navigation > ul > li > ul > li + li {
	border-top: 1px solid var(--gray-100);
}

.header.is-sticky .header-navigation > ul > li > ul > li > a {
	color: var(--gray-900);
}

.header.is-sticky .header-navigation > ul > li > ul > li > a:hover {
	background: #f5f5f5;
}

.header.is-sticky .btn-show-nav, .header.is-sticky .nav-mobile-header .btn-close-nav {
	color: var(--gray-900);
}

@media (max-width: 1199px) {
    .header .header-toggle {
        display: block;
    }

    .header .header-wrapper {
        width: 100%;
    }

    .header .header-wrapper > .header-logo > a {
        padding: 10px 0;
    }

    .header .header-wrapper > .header-logo img {
        max-width: 140px;
        height: auto;
    }

    .header .nav-mobile-header .header-logo img {
        max-width: 120px;
    }

    .header .nav-mobile-footer,
    .header .nav-mobile-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

	.header .nav-mobile-header {
		border-bottom: 1px solid rgba(0, 0, 0, 0.05);
		padding: 12px 15px;
	}

	.header .nav-mobile-footer {
		flex-flow: column nowrap;
		align-items: flex-start;
		border-top: 1px solid rgba(0, 0, 0, 0.05);
		background: #f5f5f5;
	}

	.header .nav-mobile-footer > a {
		display: inline-block;
	}

	.header .nav-mobile-footer > a:first-child {
		font-size: var(--size-theme-3);
		font-weight: 700;
		color: #000000;
		line-height: 1.1;
		margin-bottom: 4px;
	}

    .header .nav-mobile-footer > a:first-child > span:last-child {
        color: var(--primary-hover);
    }

	.header .nav-mobile-footer > a:last-child {
		color: #343434;
		font-size: var(--size-theme-8);
	}

	.header .header-navigation {
		display: flex;
		flex-flow: column nowrap;
		position: fixed;
		top: 0;
		left: 0;
		z-index: 11;
		height: 100%;
		max-height: 100vh;
		max-width: 300px;
		width: 100%;
		background-color: var(--white);
		opacity: 0;
		visibility: hidden;
		user-select: none;
		pointer-events: none;
		transform: translate3d(-100%, 0, 0);
		transition: 0.5s cubic-bezier(.19, 1, .22, 1);
	}

    .header .header-navigation > .nav-mobile-footer,
    .header .header-navigation > .nav-mobile-header {
        flex-shrink: 0;
    }

    body.nav-is-show .header .header-navigation {
        opacity: 1;
        visibility: visible;
        user-select: auto;
        pointer-events: auto;
        transform: translate3d(0, 0, 0);
    }

    .header .header-navigation > ul {
        flex-grow: 1;
        flex-flow: column nowrap;
        overflow-y: auto;
        overflow-x: hidden;
        scroll-snap-type: y mandatory;
        scroll-snap-stop: always;
        touch-action: manipulation;
    }

    .header .header-navigation > ul::-webkit-scrollbar {
        width: 4px;
        height: 4px;
    }

    .header .header-navigation > ul::-webkit-scrollbar-track {
        background: transparent;
    }

    .header .header-navigation > ul::-webkit-scrollbar-thumb {
        background: rgba(255, 255, 255, 0.1);
    }

    .header .header-navigation > ul::-webkit-scrollbar-thumb:hover {
        background: rgba(255, 255, 255, 0.3);
    }

    .header .header-navigation > ul > li {
        scroll-snap-align: center;
    }

	.header .header-navigation > ul > li + li {
		border-top: 1px solid rgba(0, 0, 0, .05);
	}

	.header .header-navigation > ul > li {
		width: 100%;
	}

	.header .header-navigation > ul > li > a {
		padding: 15px 15px;
		justify-content: flex-start;
		color: var(--gray-900) !important;
		text-shadow: none !important;
		opacity: 1 !important;
	}

    .header .header-navigation > ul > li + li {
        margin-left: 0;
    }

	.header .header-navigation > ul > li > ul {
		position: static;
		min-width: 100%;
		pointer-events: auto;
		visibility: visible;
		opacity: 1;
		transform: scaleY(1);
		box-shadow: none !important;
		background: #f5f5f5 !important;
	}

	.header .header-navigation > ul > li > ul > li > a {
		padding-left: 15px;
		padding-right: 15px;
		color: var(--gray-900) !important;
	}


    .header .header-navigation > ul > li > a[aria-expanded] {
        justify-content: space-between;
    }

    .header .header-navigation > ul > li > a[aria-expanded] > i {
        transform-origin: 50% 50%;
        transition: inherit;
    }

	.header .header-navigation > ul > li > a[aria-expanded=true] > i {
		transform: rotate(180deg);
	}

    .header .header-toggle,
    .header .header-cart,
    .header .header-auth {
        margin-left: 15px;
    }

    .header .header-cart .header-cart__list {
        position: absolute;
        top: calc(100% + 16px);
    }

	.header .header-profile .dropdown-menu {
		top: 15px !important;
	}


	.header .nav-mobile-header .btn-close-nav {
		background: #f5f5f5;
		color: #333;
	}
}

@media (max-width: 991px) {
	.header .header-profile .dropdown-menu {
		top: 10px !important;
	}

	.header .nav-mobile-header {
		border-bottom: 1px solid rgba(0, 0, 0, 0.05);
		padding: 13px 15px;
		background: var(--white);
	}
}

@media (max-width: 767px) {
    .header .nav-mobile-header .btn-close-nav {
        transform: translate3d(0, 0, 0);
    }
}

@media (max-width: 479px) {
    .header .btn-login {
        padding: 0.25rem 0.75rem;
    }

    .header .nav-mobile-header {
        padding: 10px 15px;
    }

    .header .nav-mobile-header .header-logo img,
    .header .header-wrapper > .header-logo img {
        max-width: 100px;
    }

    .header .header-profile .dropdown-menu {
        top: 7px !important;
    }

    .header .header-wrapper {
        position: relative;
    }

    .header .header-cart {
        position: static;
    }

    .header .header-cart .header-cart__list {
        top: 100%;
    }
}

/*
========== SECTION BANNER ==========
*/

.section-banner .swiper-slide {
    padding-top: 600px;
}

@media (max-width: 479px) {
    #slider-banner .b-form .b-form__state {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(2, 1fr);
        grid-gap: 4px 8px;
        margin-bottom: 15px;
    }

    #slider-banner .b-form .b-form__state > .state + .state {
        margin-left: 0;
    }

    #slider-banner .b-form .b-form__state > .state:nth-child(1) {
        grid-column: 1 / 2;
        grid-row: 1 / 2;
    }

    #slider-banner .b-form .b-form__state > .state:nth-child(2) {
        grid-column: 1 / 2;
        grid-row: 2 / -1;
    }

    #slider-banner .b-form .b-form__state > .state:nth-child(3) {
        grid-column: 2 / -1;
        grid-row: 1 / 2;
    }

    #slider-banner .b-form .b-form__state > .state:nth-child(4) {
        grid-column: 2 / -1;
        grid-row: 2 / -1;
    }

    #slider-banner .b-form .b-form__footer {
        margin-top: 15px;
    }
}

/*
========== SECTION SERVICE ==========
*/

.section-golf {
    background-color: #e5f2ef;
}

.section-golf .button-prev,
.section-golf .button-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 2em;
    z-index: 2;
}

.section-golf .button-prev {
    padding-right: 3px;
}

.section-golf .button-next {
    padding-left: 3px;
}

.section-golf .button-prev i,
.section-golf .button-next i {
    margin: 0;
}

.section-golf .button-prev {
    left: -20px;
}

.section-golf .button-next {
    right: -20px;
}

.golf-card {
    border-radius: 12px;
    /*box-shadow: 0 0 40px 5px rgba(0, 0, 0, 0.05);*/
    padding: 8px;
    height: 100%;
}

.golf-card .card-header {
    border-radius: 6px;
    transition: var(--transition-default);
}

.golf-card .card-header img {
    border-radius: 6px;
    transition: var(--transition-default);
}

.golf-card .card-header:hover img {
    opacity: 0.9;
    transform: scale(1.025);
}

.golf-card .card-body {
    padding-left: 10px;
    padding-right: 10px;
}

.golf-card .card-body .card-title a {
    font-size: var(--size-theme-4);
    color: var(--gray-900);
    font-weight: 700;
    transition: var(--transition-default);
}

.golf-card .card-body .card-title a:hover {
    color: var(--primary-color);
}

.golf-card .card-body .card-icons {
    gap: 15px;
    font-size: var(--size-theme-6);
    color: var(--gray-600);
}

.golf-card .card-body .card-text {
    margin-top: 10px;
    font-size: 1.05em;
    color: var(--gray-600);
}

.golf-card .card-body .card-button {
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
}

.golf-card .card-body .card-button .card-price {
    font-size: var(--size-theme-6);
    display: flex;
    align-items: center;
}

.golf-card .card-body .card-button .card-price span {
    text-decoration: none;
    font-weight: 500;
    color: var(--accent-color);
    font-size: var(--size-theme-5);
    align-self: center;
    margin-left: 4px;
    position: relative;
    top: -1px;
}

.golf-card .card-body .card-button .button-theme.button-theme_small {
    font-size: 0.95em;
    padding: 8px 15px;
}


.golf-card:hover {
    /*box-shadow: 0 0 40px 5px rgba(0, 0, 0, 0.15);*/
}

@media (max-width: 1199px) {
    .golf-card .card-body {
        padding: 10px;
    }

    .golf-card .card-body .card-title a {
        font-size: var(--size-theme-5);
    }

    .golf-card .card-body .card-icons {
        font-size: var(--size-theme-7);
        gap: 10px;
    }
}

@media (max-width: 991px) {
    .section-golf .button-prev,
    .section-golf .button-next {
        display: none;
    }

    .golf-card .card-body .card-button {
        flex-wrap: wrap;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
    }

    .golf-card .card-body .card-button .button-theme.button-theme_small {
        margin-top: 5px;
    }
}

@media (max-width: 575px) {
    .golf-card .card-body .card-icons {
        flex-flow: row nowrap;
        justify-content: flex-start !important;
        align-items: center !important;
        grid-gap: 10px;
    }

    .golf-card .card-body .card-title a {
        font-size: var(--size-theme-6);
    }
}

/*
========== SECTION PRODUCT ==========
*/

/*
.section-products {
	background-image: url('../images/body-bg.png');
	background-size: cover;
	background-position: center;
}
*/

.product-card .card-header {
    position: relative;
}

.product-card .card-header img {
    transition: var(--transition-default);
}

.product-card .card-header .card-action {
    position: absolute;
    top: 70%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: var(--transition-default);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 2;
    white-space: nowrap;
}

.product-card .card-header .card-action .button-theme.button-theme_small {
    font-size: .95em;
}

.product-card .card-body {
    padding-left: 10px;
    padding-right: 10px;
}

.product-card .card-title {
    text-align: center;
}

.product-card .card-title a {
    font-size: var(--size-theme-6);
    color: var(--gray-900);
    font-weight: 700;
    transition: var(--transition-default);
    line-height: 1.2;
}

.product-card .card-stars {
    text-align: center;
    margin-top: 2px;
    color: #f69323;
    margin-bottom: 8px;
    font-size: 0.8em;
}

.product-card .card-stars .checked ~ * {
    color: var(--gray-400);
}

.product-card .card-price {
    text-align: center;
}

.product-card .card-price ins {
    text-decoration: none;
    font-weight: 500;
    color: var(--accent-color);
    font-size: var(--size-theme-6);
}

.product-card .card-price del {
    margin-left: 8px;
    color: var(--gray-500);
    font-size: var(--size-theme-7);
}

.product-card:hover .card-header img {
    opacity: 0.7;
}

.product-card:hover .card-header .card-action {
    top: 50%;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.product-card .card-title a:hover {
    color: var(--primary-color);
}

@media (max-width: 1023px) {
    .product-card .card-header .card-action {
        display: none;
    }
}

@media (max-width: 767px) {
    .product-card .card-title a {
        font-size: var(--size-theme-6);
    }
}

@media (max-width: 575px) {
    .product-card .card-title a {
        font-size: var(--size-theme-7);
    }

    .product-card .card-price ins {
        font-size: var(--size-theme-6);
    }

    .product-card .card-body {
        padding: 10px;
    }

    .product-card .card-price del {
        margin-left: 0;
    }
}

/*
========== SECTION PARTNER ==========
*/
.section-partner {
    background-color: #e5f2ef;
}

.partner-item {
    border-radius: 8px;
    background-color: var(--white);
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 100%;
    transition: var(--transition-default);
}

.partner-item .partner-item_image {
    transition: 1.1s cubic-bezier(.15, .75, .5, 1);
}

.partner-item:hover {
    border-color: transparent;
    box-shadow: 0 0 25px rgb(0 0 0 / 10%);
}

.partner-item:hover .partner-item_image {
    transform: scale3d(1.1, 1.1, 1.1);
}

/* ============ SECTION NEWS CARD ============ */

.news-card .card-header .card-image img {
    transform: scale(1);
    transition: transform 0.5s ease;
    will-change: transform;
}

.news-card .card-header:hover .card-image img {
    transform: scale(1.05);
    opacity: 0.9;
}

.news-card .card-body {
    padding-right: 10px;
    padding-left: 10px;
}

.news-card .card-subtitle {
    font-size: var(--size-theme-8);
    font-weight: 500;
    letter-spacing: 1px;
    color: var(--primary-color);
}

.news-card .card-desc {
    color: var(--gray-600);
}

.news-card .card-title a {
    font-size: var(--size-theme-5);
    font-weight: 600;
    line-height: 1.2;
    color: var(--gray-900);
    transition: var(--transition-default);
}

.news-card .card-title a:hover {
    color: var(--primary-color);
}

.news-card .card-footer .link-view {
    display: inline-flex;
    align-items: center;
    font-size: var(--size-theme-body);
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--gray-900);
}

.news-card .card-footer .link-view .text {
    display: inline-block;
    vertical-align: middle;
    text-transform: uppercase;
    transition: color 0.6s cubic-bezier(0.24, 0, 0.16, 1.01);
}

.news-card .card-footer .link-view:hover,
.news-card .card-footer .link-view:hover .text {
    color: var(--primary-color);
}

.news-card .card-footer .link-view svg {
    margin-right: 10px;
}

.news-card .card-footer .link-view svg line {
    stroke-miterlimit: 10;
    stroke-dasharray: 20;
    stroke-dashoffset: 40;
    transition: stroke-dashoffset 0.6s 0.2s cubic-bezier(0.24, 0, 0.16, 1.01);
}

.news-card .card-footer .link-view svg line:not(:first-child) {
    stroke-dashoffset: 7;
    stroke-dasharray: 7;
    transition-duration: 0.3s;
}

.news-card .card-footer .link-view:hover svg line {
    stroke-dashoffset: 0;
}

.news-card .card-footer .link-view:hover svg line:not(:first-child) {
    stroke-dashoffset: 14;
    transition-delay: 0.5s;
}

.news-card .card-footer .link-view:hover svg line:nth-child(2) {
    transition-delay: 0.6s;
}

@media (max-width: 575px) {
    .news-card .card-title a {
        font-size: var(--size-theme-6);
    }
}


/* ========== BREADCRUMB AND PAGINATION ========= */
.nav-breadcrumb {
    background-color: var(--gray-100);
    border-bottom: 1px solid var(--gray-200);
    border-top: 1px solid var(--gray-200);
}

.nav-breadcrumb .breadcrumb .breadcrumb-item > a {
    display: inline-flex;
    align-items: center;
    padding: 10px 0;
    font-weight: 500;
    color: var(--gray-700);
}

.nav-breadcrumb .breadcrumb .breadcrumb-item > a > i {
    margin-right: 5px;
}

.nav-breadcrumb .breadcrumb .breadcrumb-item.active > a {
    color: var(--gray-500) !important;
}

.nav-breadcrumb .breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    float: none;
}

.nav-breadcrumb .breadcrumb .breadcrumb-item > a:hover {
    color: var(--primary-color);
}

@media (max-width: 991px) {
    .nav-breadcrumb .breadcrumb .breadcrumb-item > a {
        padding: 8px 0;
        color: var(--gray-700);
    }

    .nav-breadcrumb .breadcrumb .breadcrumb-item:nth-child(3),
    .nav-breadcrumb .breadcrumb .breadcrumb-item:nth-child(4),
    .nav-breadcrumb .breadcrumb .breadcrumb-item:nth-child(5),
    .nav-breadcrumb .breadcrumb .breadcrumb-item:nth-child(6) {
        display: none;
    }
}

/*========== PAGINATION============================*/

.nav-pagination .pagination {
    justify-content: center;
    margin-top: 25px;
}

.nav-pagination .pagination .page-item {
    margin: 0 5px;
}

.nav-pagination .pagination .page-item:not(.active):hover > .page-link {
    background-color: var(--primary-color);
    color: #ffffff;
}

.nav-pagination .pagination .page-item.active > .page-link {
    background-color: var(--primary-hover);
    border-color: var(--primary-hover);
    color: #ffffff;
}

.nav-pagination .pagination .page-link {
    outline: none;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 34px;
    height: 34px;
    color: var(--primary-color);
    transition: var(--transition-default);
}

.nav-pagination .pagination .page-link:focus,
.nav-pagination .pagination .page-link:active {
    outline: none;
    box-shadow: none;
}

/* ========== PAGE  ========= */

.page-gap {
    padding: 20px 0;
}

.page-gap--md {
    padding: 40px 0;
}

.page-gap--xl {
    padding: 60px 0;
}

.page-light {
    background-color: #eee;
}

.page-light-2 {
    background-color: #f5f6fa;
}

.page-title {
    font-size: calc(var(--size-theme-ratio) * 2);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.page .page-subtitle {
    color: var(--gray-600);
    font-size: var(--size-theme-body);
}

.page .page-header {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--gray-separation);
}

.page .page-meta .meta + .meta {
    margin-left: 21px;
}

.page .page-meta .meta + .meta::after {
    position: absolute;
    content: '';
    display: block;
    height: 10px;
    width: 1px;
    background-color: var(--gray-separation);
    left: -10px;
    top: 50%;
    transform: translateY(-50%);
}

.page .page-content img {
    max-width: 100%;
    width: 100%;
    height: auto;
    object-fit: cover;
    vertical-align: middle;
    margin: 10px 0;
}

.page-product-detail .section-title,
.page-search .section-title,
.page .section-subtitle,
.page .page-sidebar .sidebar .sidebar-title {
    font-size: var(--size-theme-5);
    font-weight: 600;
    text-transform: uppercase;
    color: var(--gray-900);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #ebebeb;
}

.page .page-sidebar .sidebar .sidebar-list {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 15px 0;
}

.page .page-sidebar .sidebar .sidebar-list.list-products {
    grid-gap: 0;
}

.page .page-sidebar .sidebar .sidebar-list .sidebar-item {
    display: grid;
    grid-template-columns: 100px 1fr;
    grid-gap: 15px;
}

.page .page-sidebar .sidebar .sidebar-list .sidebar-item .sidebar-item__media {
    border-radius: 0.25rem;
    overflow: hidden;
}

.page .page-sidebar .sidebar .sidebar-list .sidebar-item .sidebar-item__title {
    display: block;
    font-size: 1em;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 5px;
    transition: var(--transition-default);
}

.page .page-sidebar .sidebar .sidebar-list .sidebar-item .sidebar-item__title:hover {
    color: var(--primary-color);
}

.page .page-sidebar .sidebar .sidebar-list .sidebar-item .sidebar-item__date {
    font-size: 13px;
    color: var(--gray-600);
}

.page .page-sidebar .sidebar + .sidebar {
    margin-top: 24px;
}

.page-news-detail .page-sidebar .sidebar {
    position: sticky;
    top: 75px;
    z-index: 1;
}

.page .page-filter .dropdown .page-filter__btn {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    border: 1px solid #00000020;
    background-color: transparent;
    font-weight: 500;
}

.page .page-filter .dropdown .dropdown-item {
    padding: 0.5rem 1rem;
    font-size: var(--size-theme-7);
    transition: var(--transition-default);
}

.page .page-filter .dropdown-menu {
    overflow: hidden;
}

.page .page-filter .dropdown .page-filter__btn,
.page .page-filter .dropdown-menu {
    min-width: 165px;
}

.page .page-filter .dropdown-menu .dropdown-item:hover {
    background-color: var(--primary-hover);
    color: #ffffff;
}

@media (max-width: 1199px) {
    .page-title {
        font-size: calc(var(--size-theme-ratio) * 1.75);
    }
}

@media (max-width: 991px) {
    .page-title {
        font-size: calc(var(--size-theme-ratio) * 1.5);
    }

    .page-gap--xl {
        padding: 40px 0;
    }
}

@media (max-width: 767px) {
    .page-title {
        font-size: calc(var(--size-theme-ratio) * 1.5);
    }

    .page-gap--xl {
        padding: 30px 0;
    }

    .page-gap--md {
        padding: 20px 0;
    }
}


/* ======== PAGE PRODUCT DETAIL ======== */

.page .section-wrapper {
    padding: 15px;
    box-shadow: rgb(28 39 60 / 5%) 0px 0px 10px;
    border-radius: 0.25rem;
}

.page-product-detail .product-media .product-media__preview .preview-box {
    cursor: zoom-in;
    border: 1px solid var(--gray-separation);
    border-radius: 4px;
}

.page-product-detail .product-media .product-media__thumbs .thumb-box {
    transition: var(--transition-default);
    cursor: pointer;
    border: 1px solid var(--gray-separation);
    border-radius: 4px;
    opacity: 0.5;
}

.page-product-detail .product-media .product-media__thumbs .swiper-slide-thumb-active > .thumb-box {
    opacity: 1;
}

.page-product-detail .product-title {
    font-size: var(--size-theme-3);
    font-weight: 700;
}

.page-product-detail .page-sidebar .theme-sidebar-list > ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.page-product-detail .page-sidebar .theme-sidebar-list > ul > li {
    display: grid;
    grid-template-columns: 0 1fr;
    grid-gap: 20px;
    align-items: center;
    position: relative;
}

.page-product-detail .page-sidebar .theme-sidebar-list > ul > li::before {
    font-family: 'Font Awesome 5 Pro', sans-serif;
    font-weight: 900;
    content: '\f111';
    font-size: 0.35em;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    vertical-align: middle;
    margin-top: 3px;
    color: var(--primary-hover);
    -webkit-font-smoothing: antialiased;
}

.page-product-detail .page-sidebar .theme-sidebar-list > ul > li + li {
    margin-top: 8px;
}

.page-product-detail .page-sidebar .theme-sidebar-list.sidebar-list__policy > ul > li::before {
    content: '\f058';
    font-weight: 900;
    font-size: 1em;
}

.page-product-detail .product-policy__list > li {
    display: block;
    font-size: var(--size-theme-7);
    white-space: nowrap;
    font-weight: 400;
}

.page-product-detail .product-policy__list > li + li {
    margin-top: 4px;
}

.page-product-detail .product-policy__list > li i {
    margin-right: 4px;
}

.page-product-detail .product-policy__list > li i,
.page-product-detail .product-policy__list > li span {
    font-weight: 700;
    color: var(--primary-color);
}

.page-product-detail .product-price {
    padding-bottom: 10px;
    margin-bottom: 20px;
    border-bottom: 1px solid #ebebeb;
}

.page-product-detail .product-price {
    gap: 10px;
    align-items: baseline;
}

.page-product-detail .product-price .price-final {
    color: var(--accent-color);
    font-weight: 600;
    font-size: var(--size-theme-5);
}

.page-product-detail .product-price .price-original {
    color: var(--price-disable);
    font-size: var(--size-theme-6);
}

.page-product-detail .product-price .price-final,
.page-product-detail .product-price .price-original {
    line-height: 1.1;
}

.page-product-detail .product-category .product-category__group + .product-category__group {
    margin-top: 4px;
}

.page-product-detail .product-category .product-category__group .list-item > a {
    display: inline-block;
    font-weight: 500;
    color: var(--accent-color);
    transition: var(--transition-default);
}

.page-product-detail .product-category .product-category__group .list-item > a:hover {
    color: var(--primary-color);
}

.page-product-detail .product-category .product-category__group .list-item > a:not(:last-child)::after {
    content: ',';
    color: var(--gray-900);
}

.page-product-detail .product-quantity__container {
    padding: 15px 0;
    margin: 1rem 0;
    border-top: 1px solid var(--gray-separation);
    border-bottom: 1px solid var(--gray-separation);
}

.page-product-detail .product-quantity {
    position: relative;
    display: inline-flex;
    vertical-align: middle;
    border: 1px solid var(--primary-color);
}

.page-product-detail .product-quantity input {
    position: relative;
    height: 36px;
    padding: 0 12px;
    text-overflow: ellipsis;
    overflow: hidden;
    font-family: inherit;
    outline: 0;
    border: none;
    text-align: center;
    box-shadow: none !important;
    outline: none !important;
    max-width: 80px;
    font-size: var(--size-theme-6);
    color: var(--gray-900);
    font-weight: 400;
}

.page-product-detail .product-quantity .btn {
    background-color: var(--primary-color);
    color: #ffffff;
    width: 36px;
    border-radius: 0;
    font-size: var(--size-theme-7);
    transition-duration: var(--transition-default);
}

.page-product-detail .product-quantity .btn:hover {
    background-color: var(--primary-hover);
}

.page-product-detail .product-actions {
    gap: 8px;
}

.page-product-detail .product-actions .button-theme {
    border-radius: 0.25rem;
    font-size: var(--size-theme-body);
    text-transform: capitalize;
    width: calc(50% - 4px);
    padding-top: 16px;
    padding-bottom: 16px;
}

.page-product-detail .product-colors {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-gap: 30px;
}

.page-product-detail .product-colors .product-colors__list {
    display: grid;
    grid-template-columns: repeat(auto-fit, 100px);
    grid-gap: 8px;
}

.page-product-detail .product-colors .product-colors__list > li > label,
.page-product-detail .product-colors .product-colors__list > li {
    display: block;
    margin-bottom: 0;
}

.page-product-detail .product-colors .product-colors__list > li > label > span {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 0;
    padding: 0 16px;
    height: 30px;
    width: 100%;
    white-space: nowrap;
    font-size: var(--size-theme-7);
    border: 1px solid var(--gray-300);
    color: #212121;
    font-weight: 500;
    border-radius: 4px;
    transition: var(--transition-default);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.page-product-detail .product-colors .product-colors__list > li:hover > label > span {
    border-color: var(--accent-color);
}

.page-product-detail .product-colors .product-colors__list > li > label > span::after {
    content: '';
    display: block;
    position: absolute;
    top: -1px;
    right: -1px;
    width: 0;
    height: 0;
    color: #fff;
    border-width: 0 14px 14px 0;
    border-color: transparent var(--accent-color) transparent transparent;
    border-style: solid;
    z-index: 1;
    opacity: 0;
    visibility: hidden;
    transition: inherit;
}

.page-product-detail .product-colors .product-colors__list > li > label > input:checked + span::after {
    opacity: 1;
    visibility: visible;
}

.page-product-detail .product-colors .product-colors__list > li > label > input:checked + span {
    border-color: var(--accent-color);
}

.page-product-detail .product-description {
    color: var(--gray-600);
}

.product-tabs .nav-tabs {
    border-bottom: none;
    margin-bottom: 1.5rem;
    flex-flow: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-snap-stop: always;
    touch-action: manipulation;
    padding-bottom: 8px;
}

.product-tabs .nav-tabs .nav-item {
    flex-shrink: 0;
    scroll-snap-align: start;
}

.product-tabs .nav-tabs .nav-item .nav-link,
.product-tabs .nav-tabs .nav-item:hover .nav-link,
.product-tabs .nav-tabs .nav-item.show .nav-link,
.product-tabs .nav-tabs .nav-link.active {
    border-width: 0;
}

.product-tabs .nav-tabs .nav-item .nav-link {
    font-weight: 600;
    font-size: var(--size-theme-body);
    text-transform: uppercase;
    color: var(--gray-900);
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    opacity: 0.5;
}

.product-tabs .nav-tabs .nav-item .nav-link > span {
    display: inline-block;
    padding-bottom: 2px;
    border-bottom: 2px solid var(--gray-900);
}

.product-tabs .nav-tabs .nav-link.active {
    opacity: 1;
}

.product-tabs .nav-tabs .nav-item .nav-link:not(.active):hover {
    background-color: var(--gray-100);
}

.page-product-detail .product-related .sidebar-title {
    padding-right: 15px;
    padding-left: 15px;
}

.page .page-sidebar .sidebar .sidebar-list-products {
    grid-gap: 0;
}

.list-products .item {
    display: grid;
    grid-template-columns: 80px 1fr;
    grid-gap: 10px;
    padding: 15px;
    cursor: pointer;
    transition: var(--transition-default);
}

.list-products .item:hover {
    box-shadow: 0 2px 8px 0 rgb(0 0 0 / 20%);
}

.list-products .item .item-title {
    font-size: var(--size-theme-body);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.list-products .item .item-price {
    font-size: var(--size-theme-body);
    font-weight: 700;
    color: var(--red);
}

.list-products .item .item-price .price-original {
    font-size: 0.9em;
    font-weight: 500;
    color: var(--gray-400);
}

.list-products .item + .item {
    border-top: 1px solid #e9e9e9;
}

.render-html img {
    max-width: 100%;
    margin: 10px 0;
}

@media (max-width: 1199px) {
    .page-product-detail .product-detail-sidebar {
        margin-top: 20px;
    }

    .page-product-detail .product-detail-sidebar {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .page-product-detail .product-detail-sidebar > .sidebar + .sidebar {
        margin-top: 0;
    }

    .page-product-detail .product-actions {
        gap: 4px;
    }

    .page-product-detail .product-actions .button-theme {
        padding: 16px;
    }
}

@media (max-width: 991px) {
    .product-tabs .nav-tabs {
        margin-bottom: 1.25rem;
    }
}

@media (max-width: 767px) {
    .page-product-detail .product-detail-sidebar {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: repeat(2, auto);
    }

    .page-product-detail .product-detail-sidebar > .sidebar + .sidebar {
        padding: 15px 0;
    }
}

@media (max-width: 575px) {
    .page-product-detail .product-actions {
        flex-wrap: wrap;
    }

    .page-product-detail .product-actions .button-theme {
        width: 100%;
    }
}

/*=============== FOOTER =================*/

.footer .footer-main {
    background-color: var(--primary-color);
    color: #ffffff;
    padding: 2rem 0;
}

.footer .footer-logo img {
    max-width: 180px;
}

.footer .footer-block .footer-block__title {
    font-weight: 600;
    font-size: var(--size-theme-body);
    margin-bottom: 1.5rem;
    text-transform: capitalize;
}

.footer .footer-block .footer-block__list > li {
    display: block;
}

.footer .footer-block .footer-block__list > li + li {
    margin-top: 8px;
}

.footer .footer-block .footer-block__list > li > a {
    transition: var(--transition-default);
}

.footer .footer-block .footer-block__list > li > a:hover {
    color: #ffffff;
}

.footer .footer-block .footer-block__list.list-links > li > a:hover {
    text-decoration: underline;
}

.footer .footer-block .footer-block__list.list-contact > li > a {
    display: flex;
    align-items: center;
}

.footer .footer-block .footer-block__list.list-contact > li > a > i {
    display: inline-block;
    flex-shrink: 0;
    margin-right: 8px;
}

.footer .footer-block .footer-block__list > li > a,
.footer-block .footer-block__text {
    font-size: var(--size-theme-7);
    color: #eeeeee;
}

.footer .footer-block__social {
    margin-top: 10px;
    display: flex;
}

.footer .footer-block__social a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(2, 2, 2, .15);
    color: #fff;
    font-size: var(--size-theme-6);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    transition: var(--transition-default);
}

.footer .footer-block__social a + a {
    margin-left: 6px;
}

.footer .footer-block__social a:hover {
    background-color: rgba(255, 255, 255, .15);
    color: #fff;
}

.footer .footer-block__fb {
    overflow: hidden;
}

@media (max-width: 767px) {
    .footer .footer-logo + .footer-block__text,
    .footer .footer-logo {
        text-align: center;
    }

    .footer .footer-block__social {
        display: flex;
        justify-content: center;
    }
}

/*=========================================*/

.swiper-button {
    border: 0;
    background: rgba(0, 0, 0, 0.33);
    box-shadow: none;
    width: 35px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
    transition: var(--transition-default);
}

.swiper-button.swiper-button-disable {
    pointer-events: none;
}

.swiper-button:hover {
    background: rgba(0, 0, 0, 0.66);
}

.swiper-button.prev {
    left: 0;
}

.swiper-button.next {
    right: 0;
}

.footer-right {
    background: var(--primary-color);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: var(--size-theme-8);
    padding: 10px 0;
    color: #ffffff;
}

.footer-right a {
    font-weight: 700;
    color: #ffffff;
}

.footer-right a:hover {
    text-decoration: underline;
}

.footer-right .footer-dropdown .btn-dropdown {
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    outline: none;
    box-shadow: none
}

.footer-right .footer-dropdown .btn-dropdown:after {
    display: none;
}

.footer-right .footer-dropdown .dropdown-wrap .dropdown-menu {
    padding: 9px 8px;
    z-index: 995;
    background-color: rgba(255, 255, 255, 1);
    border: 1px solid #d8d8d8;
    -webkit-box-shadow: 0 16px 24px rgb(51 51 51 / 8%);
    box-shadow: 0 16px 24px rgb(51 51 51 / 8%);
    border-radius: 4px;
    margin-top: 8px;
    min-width: 9rem;
    font-size: 15px;
    margin-bottom: 5px;
}

.footer-right .footer-dropdown .dropdown-wrap .dropdown-menu .dropdown-item {
    padding: 6px 5px;
    font-weight: 400;
    line-height: 18px;
    background: transparent;
    border-radius: 4px;
    align-items: center;
    display: inline-flex;
    font-size: 1em;
    text-decoration: none;
    color: #323232;
    position: relative;
    margin-bottom: 0;
    cursor: pointer;
    transition: var(--transition-default);
}

.footer-right .footer-dropdown .dropdown-wrap .dropdown-menu .dropdown-item span {
    position: relative;
    display: block;
    padding-left: 22px;
}

.footer-right .footer-dropdown .dropdown-wrap .dropdown-menu .dropdown-item span:before,
.footer-right .footer-dropdown .dropdown-wrap .dropdown-menu .dropdown-item span:after {
    position: absolute;
    display: block;
    content: "";
    border-radius: 50%;
    top: calc(50% - 0.5px);
    transform: translateY(-50%);
    background: transparent;
    transition: var(--transition-default);
}

.footer-right .footer-dropdown .dropdown-wrap .dropdown-menu .dropdown-item span:before {
    left: 0;
    width: 16px;
    height: 16px;
    border: 1px solid #d4d4d4;
}

.footer-right .footer-dropdown .dropdown-wrap .dropdown-menu .dropdown-item span:after {
    width: 10px;
    height: 10px;
    left: 3px;
}

.footer-right .footer-dropdown .dropdown-wrap .dropdown-menu .dropdown-item input:checked ~ span:before {
    border-color: var(--primary-color);
}

.footer-right .footer-dropdown .dropdown-wrap .dropdown-menu .dropdown-item input:checked ~ span:after {
    background: var(--primary-color);
}

.footer-right .footer-dropdown .dropdown-wrap .dropdown-menu .dropdown-item input {
    display: none;
}

.footer-right .footer-dropdown .dropdown-wrap .dropdown-menu .dropdown-item + .dropdown-item {
    margin-top: 4px;
}

.footer-right .footer-dropdown .dropdown-wrap .dropdown-menu > .dropdown-item:hover {
    background-color: rgba(var(--primary-rgb), .1);
}

/*========== BOOKING GOLF ========*/

.page-booking-golf .section-wrapper {
    padding: 15px;
}

.b-form {
    box-shadow: 0 0 10px rgb(28 39 60 / 5%);
    border-radius: 0.25rem;
}

.b-form .b-form__header {
    padding: 10px 15px !important;
}

.b-form .b-form__header,
.b-form .b-form__body {
    padding: 15px 15px;
}

.b-form .b-form__body {
    position: relative;
}

.b-form .b-form__body iframe {
    max-width: 100%;
    width: 100%;
    height: 180px;
    vertical-align: middle;
}

.b-form .b-form__body .b-form__body--overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    font-weight: 700;
    font-size: 1.1em;
}

.b-form .b-form__body .b-form__body--overlay .button-theme {
    font-size: .8em;
}

.b-form .b-form__header {
    font-weight: 600;
    font-size: var(--size-theme-5);
    margin-bottom: 15px;
    border-bottom: 1px solid var(--gray-200);
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 0.25rem .25rem 0 0;
}

.b-form .b-form_tabs {
    border-bottom: 0;
    gap: 4px;
}

.b-form .b-form_tabs .b-form_tabs__item .nav-link {
    font-weight: 600;
    font-size: var(--size-theme-5);
    border-radius: 0.25rem .25rem 0 0;
    padding: 10px 15px;
    background: rgb(238, 255, 251);
    border: 0;
    margin-bottom: 0;
}

.b-form .b-form_tabs .b-form_tabs__item .nav-link:hover {
    color: var(--white);
    background-color: var(--primary-color);
}

.b-form .b-form_tabs .b-form_tabs__item .nav-link.active {
    color: var(--white);
    background-color: var(--primary-color);
}

.b-form .b-form__state {
    display: flex;
    margin-bottom: 1rem;
}

.b-form .b-form__state .state {
    font-size: var(--size-theme-7);
    color: var(--gray-500);
}

.b-form .b-form__state .state + .state {
    margin-left: 15px;
}

.b-form .b-form__state .state .icon-dot {
    color: #10b759;
    font-size: 6px;
}

.b-form .b-form__services .card:not(:last-child) {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.b-form .b-form__services .card + .card {
    border-top: none;
}

.b-form .b-form__services .card .card-header {
    border-color: var(--gray-200);
    border-bottom: none;
}

.b-form .b-form__services .card .card-header button {
    display: block;
    width: 100%;
    outline: none;
    border: none;
    text-align: start;
    font-size: var(--size-theme-7);
    padding: 12px 15px 12px 35px;
    color: var(--text-green);
    font-weight: 400;
    text-transform: uppercase;
    background-color: #ffffff;
    position: relative;
    transition: var(--transition-default);
}

.b-form .b-form__services .card .card-header button i {
    font-size: 0.875em;
}

.b-form .b-form__services .card .card-header button[aria-expanded=true] {
    background-color: var(--gray-100);
}

.b-form .b-form__services .card .card-header button[aria-expanded=true] i::before {
    content: '\f068';
}

.b-form .b-form__services .card .card-header button:hover {
    background-color: var(--gray-200);
}

.b-form .b-form__services .card .card-header button i {
    display: inline-block;
    color: currentColor;
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
}

.b-form .b-form__services .b-form__collapse {
    padding: 10px;
}

.b-form .btn-group .btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 0.5rem 1rem;
    outline: none;
    background-color: var(--gray-200);
    color: var(--gray-600);
    border: 1px solid var(--gray-300);
    transition: var(--transition-default);
    cursor: pointer;
}

.b-form .btn-group .btn:hover {
    color: var(--gray-900);
}

.b-form .btn-group > .btn + .btn {
    border-left: 1px solid var(--gray-300);
}

.b-form .btn-group .btn:first-child {
    border-radius: 0.25rem 0 0 0.25rem;
}

.b-form .btn-group .btn:last-child {
    border-radius: 0 0.25rem 0.25rem 0;
}

.b-form .btn-group .btn.active {
    color: #ffffff;
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.page-checkout-golf .page-checkout-golf__sidebar .b-btn,
.b-form .b-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 120px;
    background-color: #ffffff;
    border-radius: 0.25rem;
    padding: 0.5rem 1rem;
    border: 1px solid var(--gray-300);
    color: var(--gray-500);
    margin-left: auto;
}

.b-form .b-btn.b-btn--primary,
.b-form .b-btn.active {
    color: #ffffff;
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.b-form .b-btn[disabled] {
    opacity: 0.75;
    pointer-events: none;
}

.page-checkout-golf .page-checkout-golf__sidebar .b-btn:hover,
.b-form .b-btn:not(.active):hover {
    border-color: var(--gray-900);
    color: var(--gray-900);
}

.b-form .b-btn.b-btn--primary:hover {
    background-color: var(--primary-hover);
    border-color: var(--primary-hover);
    color: #ffffff;
}

.b-form .form-group {
    margin-bottom: 20px;
}

.b-form .teetime {
    height: 300px;
    overflow-y: scroll;
    overflow-x: hidden;
    padding-right: 3px;
    scroll-snap-type: y mandatory;
    scroll-snap-stop: always;
    touch-action: manipulation;
}

.b-form .teetime::-webkit-scrollbar {
    width: 2px;
    height: 2px;
}

.b-form .teetime::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.b-form .teetime::-webkit-scrollbar-thumb {
    background: #10b759;
}

.b-form .teetime::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.b-form .teetime .row {
    margin-bottom: 3px;
}

.b-form .teetime .dot-person {
    font-size: 7px;
    color: var(--success-color);
    opacity: 0.7;
}

.b-form .teetime .b-btn {
    padding: 5px 15px;
    font-size: var(--size-theme-8);
}

.b-form .teetime .b-btn:not(.active):hover {
    background-color: var(--gray-300);
    border-color: var(--gray-300);
}

.b-form .b-form__footer {
    margin-top: 20px;
}

.b-map .section-title {
    font-weight: 600;
    font-size: var(--size-theme-5);
    margin-bottom: 20px;
}

.b-map .b-map__wrapper {
    /*padding: 20px 15px 15px 15px;*/
    position: relative;
    /*border: 1px solid var(--gray-200);*/
}

/*.b-map .b-map__wrapper::after {*/
/*    content: attr(data-label);*/
/*    display: block;*/
/*    position: absolute;*/
/*    top: -8px;*/
/*    left: 6px;*/
/*    font-size: var(--size-theme-8);*/
/*    font-weight: 600;*/
/*    letter-spacing: 1px;*/
/*    text-transform: uppercase;*/
/*    color: var(--gray-500);*/
/*    padding: 0 5px;*/
/*    background-color: #fff;*/
/*}*/

.b-form .form-group label {
    font-size: var(--size-theme-body);
}

@media (max-width: 1439px) {
    .page-booking-golf .b-form .b-form__state {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(2, 1fr);
        grid-gap: 4px 8px;
        margin-bottom: 15px;
    }

    .page-booking-golf .b-form .b-form__state > .state + .state {
        margin-left: 0;
    }

    .page-booking-golf .b-form .b-form__state > .state:nth-child(1) {
        grid-column: 1 / 2;
        grid-row: 1 / 2;
    }

    .page-booking-golf .b-form .b-form__state > .state:nth-child(2) {
        grid-column: 1 / 2;
        grid-row: 2 / -1;
    }

    .page-booking-golf .b-form .b-form__state > .state:nth-child(3) {
        grid-column: 2 / -1;
        grid-row: 1 / 2;
    }

    .page-booking-golf .b-form .b-form__state > .state:nth-child(4) {
        grid-column: 2 / -1;
        grid-row: 2 / -1;
    }
}

@media (max-width: 1199px) {
    .page-booking-golf .page-booking-golf__sidebar {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 20px;
    }

    .page-booking-golf .page-booking-golf__sidebar > * {
        margin-bottom: 0;
    }
}

@media (max-width: 991px) {
    .page-booking-golf .page-booking-golf__sidebar {
        display: grid;
        grid-template-columns: 1fr;
        grid-gap: 0;
    }

    .page-booking-golf .b-form .b-form__state {
        display: flex;
    }
}

@media (max-width: 479px) {
    .page-booking-golf .b-form .b-form__state {
        display: grid;
    }
}


/*======== PAGE AUTH ===============*/
.page-auth .main {
    padding-top: 60px;
    padding-bottom: 100px;
}

.page-auth .page-auth__main {
    padding-top: 30px;
}

.page-auth .page-auth__title {
    font-weight: 600;
    font-size: var(--size-theme-2);
    margin-bottom: 4px;
}

.page-auth .page-auth__subtitle {
    font-size: var(--size-theme-body);
    color: var(--gray-600);
    margin-bottom: 40px;
}

.page-auth .button-theme {
    border-radius: 0.25rem;
    padding-top: 0;
    padding-bottom: 0;
    height: 38px;
    font-weight: 400;
}

.page-auth .page-auth__wrapper {
    display: grid;
    grid-template-columns: 1fr 340px;
    grid-gap: 60px;
}

.page-auth.page-auth__register .page-auth__wrapper {
    grid-template-columns: 340px 1fr;
}

.page-auth.page-auth__register .page-auth__banner {
    padding: 20px 80px;
}

.page-auth.page-auth__register .page-auth__subtitle {
    margin-bottom: 30px;
}

@media (max-width: 1199px) {
    .page-auth.page-auth__register .page-auth__wrapper {
        grid-template-columns: 400px 1fr;
        grid-gap: 40px;
    }

    .page-auth.page-auth__register .page-auth__banner {
        padding: 20px 40px;
        grid-template-columns: 1fr 400px;
    }

    .page-auth.page-auth__login .page-auth__wrapper {
        grid-gap: 40px;
    }
}

@media (max-width: 991px) {
    .page-auth.page-auth__register .page-auth__subtitle,
    .page-auth .page-auth__title {
        text-align: center;
    }

    .page-auth .page-auth__main {
        max-width: 480px;
        margin: 0 auto;
    }

    .page-auth.page-auth__register .page-auth__subtitle {
        margin-bottom: 20px;
    }

    .page-auth.page-auth__register .page-auth__wrapper {
        grid-template-columns: 1fr 0;
        grid-gap: 0;
        padding: 0 20px;
    }

    .page-auth.page-auth__register .page-auth__banner {
        display: none;
    }

    .page-auth.page-auth__login .page-auth__wrapper {
        grid-template-columns: 0 1fr;
        grid-gap: 0;
    }

    .page-auth .page-auth__main {
        padding-top: 0;
    }
}

@media (max-width: 767px) {
    .page-auth .main {
        padding-top: 40px;
        padding-bottom: 40px;
    }
}

@media (max-width: 479px) {
    .page-auth.page-auth__register .page-auth__wrapper {
        padding: 0;
    }
}

/*======= THEME FORM =======*/

.theme-form .form-group label {
    display: inline-block;
    width: 100%;
    color: var(--gray-900);
    margin-bottom: 5px;
}

.theme-form .form-group .form-control {
    border-radius: 0.25rem;
    font-size: var(--size-theme-7);
    outline: none;
    box-shadow: none;
    overflow: hidden;
    text-overflow: ellipsis;
}

.theme-form .form-group .form-control:not(textarea) {
    height: 38px;
}

.section-card .section-footer,
.section-card .section-header,
.section-card .section-body {
    padding: 15px;
    box-shadow: 0 0 10px rgb(28 39 60 / 5%);
    border: 1px solid var(--gray-300);
}

.section-card .section-header {
    border-radius: 0.25rem 0.25rem 0 0;
}

.section-card .section-body {
    border-bottom: 0;
}

.section-card.section-card__not-footer .section-body {
    border-bottom: 1px solid var(--gray-300);
    border-radius: 0 0 0.25rem 0.25rem;
}

.section.card .section-footer,
.section-card .section-body {
    border-top: 0;
}

.section-card .section-title {
    font-size: var(--size-theme-5);
    font-weight: 600;
    margin-bottom: 0;
}

.section-card.section-card--error {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
    border-radius: 0.25rem;
}

.section-card.section-card--success {
    color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb;
    border-radius: 0.25rem;
}

.participants-list .participant-group .participant-title {
    margin-bottom: 5px;
    font-weight: 500;
    margin-left: 2px;
}

.checkout-method .custom-radio .custom-control-label {
    margin-bottom: 0.5rem;
}

.checkout-method .custom-radio p {
    color: var(--gray-500);
    font-size: var(--size-theme-8);
}

.page-checkout-golf .checkout-total {
    font-size: var(--size-theme-5);
    font-weight: 500;
}

.page-checkout-golf .checkout-submit {
    border-radius: 0.25rem;
    font-weight: 400;
    padding-top: 12px;
    padding-bottom: 12px;
    font-size: var(--size-theme-6);
}

.checkout-product {
    border-radius: 0.25rem 0.25rem 0 0;
    overflow: hidden;
}

.checkout-product .checkout-product__media img {
    filter: brightness(75%);
}

.checkout-product .checkout-product__overlay {
    top: 0;
    left: 0;
    padding: 60px 20px;
}

.checkout-product .checkout-product__overlay .text-date {
    font-size: var(--size-theme-5);
    margin-bottom: 0.75rem;
}

.checkout-product .checkout-product__overlay .text-time {
    font-size: 70px;
    line-height: 1;
}

.form-search-users .form-group {
    padding: 5px 15px;
    border-radius: 0;
    position: relative;
}

.form-search-users {
    border: 1px solid var(--gray-300);
}

.form-search-users .form-control::placeholder {
    color: var(--gray-500);
}

.form-search-users .form-control {
    border: none !important;
    width: 100%;
    padding-right: 40px;
}

.form-search-users .form-control:focus {
    box-shadow: none !important;
    outline: none;
}

.form-search-users .btn {
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    width: 2rem;
    height: 2rem;
    padding: 0;
}

.result .result-user {
    display: grid;
    grid-template-columns: 38px 1fr 38px;
    grid-gap: 15px;
    padding: 10px 15px;
    background-color: #f5f6fa;
}

.result .result-user__not-found {
    background-color: #e5e9f2;
}

.result .result-user .result-user__add,
.result .result-user .result-user__media {
    display: inline-block;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    overflow: hidden;
}

.result .result-user .result-user__add {
    border: 1px solid var(--gray-400);
    font-size: var(--size-theme-9);
    color: var(--gray-500);
    transition: var(--transition-default);
}

.result .result-user .result-user__add:hover {
    border-color: var(--gray-600);
}

.theme-modal .modal-body {
    padding: 30px;
}

.theme-modal .modal-title {
    font-size: var(--size-theme-4);
    color: var(--gray-900);
    margin-bottom: 3px;
}

.theme-modal .close {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 24px;
    height: 24px;
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
}

@media (max-width: 1199px) {
    .page-checkout-golf .page-checkout-golf__sidebar {
        display: grid;
        grid-template-columns: 6fr 6fr;
        grid-gap: 20px;
        margin-top: 20px;
    }

    .page-checkout-golf .page-checkout-golf__sidebar > * {
        margin-bottom: 0;
    }

    .checkout-product .checkout-product__overlay {
        padding: 30px 20px;
    }
}

@media (max-width: 991px) {
    .page-checkout-golf .page-checkout-golf__sidebar {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(2, auto);
    }

    .section-card .section-title {
        font-size: var(--size-theme-6);
    }
}

/*========== PAGE PAYMENT =========*/
.page.page-single {
    height: 100vh;
    display: grid;
    grid-template-rows: 1fr auto;
    overflow: hidden;
}

/*===== PAGE SEARCH =========*/
.tee-times {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 20px;
}

.tee-times .tee-time {
    padding: 10px 15px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    grid-gap: 20px;
    align-items: center;
    border-radius: 0.25rem;
    border: solid 1px #E3E3E3;
    cursor: pointer;
    box-shadow: var(--shadow-primary);
    border-left: 5px solid var(--primary-color);
    transition: var(--transition-default);
}

.tee-times .tee-time:hover {
    border-color: var(--primary-hover);
}

.tee-times .tee-time.unavailable {
    opacity: 0.65;
    pointer-events: none;
    user-select: none;
}

.tee-times .tee-time .tee-time__detail {
    padding: 0.75rem;
}

.tee-times .tee-time .tee-time__list {
    margin: 0 -0.5rem;
}

.tee-times .tee-time .tee-time__date {
    font-size: var(--size-theme-4);
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.tee-times .tee-time .tee-time__date > span {
    font-size: 0.75em;
    margin-left: -0.35rem;
}

.tee-times .tee-time .tee-time__list .item {
    display: inline-block;
    font-size: var(--size-theme-6);
    padding: 0 0.5rem;
    position: relative;
}

.tee-times .tee-time .tee-time__list .item + .item::before {
    content: '/';
    color: #9b9b9b;
    position: absolute;
    top: 50%;
    left: -0.25rem;
    font-weight: 500;
    transform: translateY(-50%);
}

.tee-times .tee-time .tee-time__state {
    text-align: center;
    font-weight: 700;
    font-size: var(--size-theme-6);
    text-transform: uppercase;
    color: var(--primary-hover);
    transition: inherit;
}

.tee-times .tee-time:hover .tee-time__state {
    color: var(--primary-hover);
}

.tee-time .tee-time__price {
    gap: 10px;
    align-items: baseline;
}

.tee-time .tee-time__price .price-final {
    color: var(--accent-color);
    font-weight: 600;
    font-size: var(--size-theme-5);
}

.tee-time .tee-time__price .price-original {
    color: var(--price-disable);
    font-size: var(--size-theme-6);
}

.tee-time .tee-time__price .price-final,
.page-product-detail .product-price .price-original {
    line-height: 1.1;
}

@media (max-width: 575px) {
    .tee-times .tee-time {
        grid-template-columns: 6fr 6fr;
    }
}

.section-banner .section-banner__form {
    max-width: 991px;
    min-width: 420px;
    width: 100%;
    padding: 10px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(calc(-50% + 25px)) translateX(-50%);
    z-index: 9;
}

.section-banner .section-banner__form .b-form {
    background-color: transparent !important;
}

.section-banner .section-banner__form .b-form .card {
    background-color: transparent !important;
}

.section-banner .section-banner__form .b-form .btn-group .btn {
    height: 40px;
}

.section-banner .section-banner__form .b-form .btn-group .btn:not(.active) {
    background-color: #fff;
    border: 1px solid #c5c5c5;
    margin: 0;
}

.section-banner .section-banner__form .b-form .btn-group .btn:first-child {
    border-left: 0;
}

.section-banner .section-banner__form .b-form .btn-group .btn:last-child {
    border-right: 0;
}

.section-banner .section-banner__form .b-form .btn-group .btn.active {
    border: 1px solid #c5c5c5;
}

.section-banner .section-banner__form .b-form .b-form__header {
    display: inline-block;
    padding-top: 10px;
    padding-bottom: 10px;
    border: 0;
}

.section-banner .section-banner__form .b-form .b-form__body {
    background: rgba(255, 255, 255, 0.35);
    border-radius: 0 4px 4px 4px;
    padding-bottom: 25px;
}

.section-banner .section-banner__form .b-form .b-form__services .card {
    border: 0;
}

.section-banner .section-banner__form .b-form .b-form__services .card .b-form__collapse {
    padding: 0;
}

.section-banner .section-banner__form .b-form .b-form__body .card .card-body {
    display: flex;
    gap: 15px;
}

.section-banner .section-banner__form .b-form .b-form__body .card .card-body > * {
    margin-bottom: 0;
}

.section-banner .section-banner__form .b-form .b-form__body .card .card-body .form-control {
    height: 40px;
    padding-top: 8px;
    border: 1px solid #ebebeb;
}

.section-banner .section-banner__form .b-form .b-form__body .card .card-body .form-group_date {
    width: 40%;
}

.section-banner .section-banner__form .b-form .b-form__body .card .card-body .form-group_quantity {
    width: 30%;
}

.section-banner .section-banner__form .b-form .b-form__body .card .card-body .form-group_holes,
.section-banner .section-banner__form .b-form .b-form__body .card .card-body .form-group_golfers{
    width: 20%;
}

.section-banner .section-banner__form .b-form .b-form__body .card .card-body .form-group_btn {
    width: 20%;
}

.section-banner .section-banner__form .b-form .b-form__body .card .card-body .form-group_btn .button-theme {
    height: 40px;
    width: 100%;
    max-width: 100%;
    background: var(--accent-color);
    border-color: var(--accent-color);
    border-radius: 0.25rem;
}

@media screen and (max-width: 768px) {
    .section-banner .section-banner__form .b-form .b-form__body .card .card-body {
        flex-wrap: wrap;
    }

    .section-banner .section-banner__form .b-form .b-form__body .card .card-body > .form-group {
        width: 100%;
    }
}

.page-notification .feather {
    width: 90px;
    height: 90px;
}

.page-product-detail .section-title,
.page-search .section-title {
    padding: 15px;
    border-radius: 0.25rem 0.25rem 0 0;
}

.page-product-detail .section-title + .section-wrapper,
.page-search .section-title + .section-wrapper {
    border-radius: 0 0 0.25rem 0.25rem;
}

@media (max-width: 1439px) {
    .page-search .page-search__sidebar .b-form .b-form__state {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(2, 1fr);
        grid-gap: 4px 8px;
        margin-bottom: 15px;
    }

    .page-search .page-search__sidebar .b-form .b-form__state > .state + .state {
        margin-left: 0;
    }

    .page-search .page-search__sidebar .b-form .b-form__state > .state:nth-child(1) {
        grid-column: 1 / 2;
        grid-row: 1 / 2;
    }

    .page-search .page-search__sidebar .b-form .b-form__state > .state:nth-child(2) {
        grid-column: 1 / 2;
        grid-row: 2 / -1;
    }

    .page-search .page-search__sidebar .b-form .b-form__state > .state:nth-child(3) {
        grid-column: 2 / -1;
        grid-row: 1 / 2;
    }

    .page-search .page-search__sidebar .b-form .b-form__state > .state:nth-child(4) {
        grid-column: 2 / -1;
        grid-row: 2 / -1;
    }
}

@media (max-width: 1199px) {
    .page-search .page-search__sidebar {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 20px;
    }

    .page-search .page-search__sidebar > * {
        margin-bottom: 0;
    }

    .page-search .page-search__sidebar .b-form .b-form__state {
        display: flex;
    }
}

@media (max-width: 991px) {
    .tee-times {
        grid-gap: 15px;
    }

    .page-search .page-search__sidebar {
        grid-template-columns: 1fr;
    }

    .page-notification .page-main .mb-30 {
        margin-bottom: 15px;
    }
}

@media (max-width: 767px) {
    .tee-times .tee-time {
        grid-template-columns: auto 1fr;
        grid-template-rows: repeat(2, auto);
        grid-gap: 10px;
    }

    .tee-times .tee-time .tee-time__right {
        grid-column: 1 / -1;
        display: flex;
        align-items: center;
        justify-content: flex-end;
    }

    .tee-times .tee-time .tee-time__list .item {
        font-size: var(--size-theme-7);
    }

    .tee-time .tee-time__price {
        margin-bottom: 0;
    }
}

@media (max-width: 575px) {
    .tee-time .tee-time__price .price-final {
        font-size: var(--size-theme-6);
    }

    .tee-time .tee-time__price .price-original {
        font-size: var(--size-theme-7);
    }
}

@media (max-width: 479px) {
    .page-search .page-search__sidebar .b-form .b-form__state {
        display: grid;
    }
    .tee-times .tee-time .tee-time__date {
        margin-bottom: 0;
    }
    .tee-times .tee-time .tee-time__left {
        grid-column: 1 / -1;
    }
    .tee-times .tee-time .tee-time__mid {
        grid-column: 1 / 2;
    }
    .tee-times .tee-time .tee-time__right {
        grid-column: 2 / -1;
    }

    .tee-times .tee-time {
        grid-template-columns: 1fr 1fr;
    }


    .tee-time .tee-time__price {
        flex-flow: column;
        grid-gap: 0.25rem;
    }

    .section-banner .section-banner__form {
        min-width: 320px;
    }
}
/***** Custom Tables *****/
.table-responsive::-webkit-scrollbar {
    width: 5px;
    height: 8px;
    background-color: var(--gray-200);
    border-radius: 20px;
}

.table-responsive::-webkit-scrollbar-thumb {
    background-color: var(--gray-300);
    border-radius: 20px;
}

.table-module td, .table-module th {
    padding: .5rem;
    font-size: 13.5px;
    vertical-align: middle;
}

.table-module tr:nth-child(even) {
    background-color: #fafafa;
}

.table-module thead th {
    white-space: nowrap;
}

.table-module thead td, .table-module thead th {
    border-bottom-width: 1px;
}

.table-module.table-module_primary thead > tr:first-child > * {
    background-color: var(--primary-color);
    color: var(--white);
}

/***** End Custom Tables *****/
/***** Custom Button *****/
.btn {
    white-space: nowrap;
    border-radius: 3px;
    transition: var(--transition-default);
}

.btn:focus,
.btn:active {
    box-shadow: none !important;
    outline: none !important;
}

.btn.btn-sm_table {
    font-size: 11px;
    height: 21px;
    line-height: 20px;
    padding-top: 0;
    padding-bottom: 0;
}

.btn.btn-small {
    height: 33px;
    line-height: 21px;
    font-size: 12px;
}

.btn.btn-default {
    height: 38.5px;
    line-height: 25px;
    font-size: 14px;
    padding-left: 12px;
    padding-right: 12px;
}

.btn.btn-large {
    height: 44px;
    line-height: 32px;
    font-size: 16px;
    padding-left: 14px;
    padding-right: 14px;
}

.btn-light {
    border: 1px solid var(--gray-200);
}

.btn-outline-light {
    border: 1px solid var(--gray-200);
    color: var(--gray-800);
}

.btn-theme_primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-theme_primary:hover {
    background-color: var(--primary-hover);
    color: var(--white);
}

.btn-theme_primaryDark {
    background-color: var(--primary-hover);
    color: var(--white);
}

.btn-theme_primaryDark:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-theme_primaryLight {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-theme_primaryLight:hover {
    opacity: .9;
    color: var(--white);
}

.btn-theme_secondary {
    background-color: #f0ad4e;
    color: var(--white);
}

.btn-theme_secondary:hover {
    background-color: #ec971f;
    color: var(--white);
}

.btn-theme_secondaryDark {
    background-color: #ec971f;
    color: var(--white);
}

.btn-theme_secondaryDark:hover {
    background-color: #f0ad4e;
    color: var(--white);
}

.btn-theme_secondaryLight {
    background-color: #f0ad4e;
    color: var(--white);
}

.btn-theme_secondaryLight:hover {
    opacity: .9;
    color: var(--white);
}

.btn-vertical-top {
    vertical-align: 2px;
}

/***** Custom Button *****/
/***** Custom Form *****/
.form-m1 .input-group {
    margin-bottom: 0;
}

.form-m1 .form-control {
    border-radius: 3px;
    color: var(--gray-900);
}

.form-m1 .form-control:not(textarea) {
    height: 33px;
    line-height: 33px;
    padding-top: 0;
    padding-bottom: 0;
}

.form-m1 .select2-container--default .select2-search--dropdown .select2-search__field {
    display: block;
    width: 100%;
    padding: 0 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    border-radius: 3px;
    color: var(--gray-900);
    height: 33px;
}

.form-m1 .select2-container.select2-container--open .select2-selection--single {
    box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%), 0 0 8px rgb(102 175 233 / 60%) !important;
    -webkit-box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%), 0 0 8px rgb(102 175 233 / 60%) !important;
    outline: none !important;
    border-color: #66afe9 !important;
}

.form-m1 .select2-container .select2-selection--single {
    height: 33px;
    border-radius: 3px;
    border: 1px solid #ced4da;
}

.form-m1 .select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 1.5;
    padding: 0.375rem 0.75rem;
    color: var(--gray-900);
}

.form-m1 .form-button ~ .select2-container--default .select2-selection--single .select2-selection__rendered {
    padding-left: 30px;
}

.form-m1 .select2-container--default .select2-selection--single .select2-selection__rendered .select2-selection__placeholder {
    color: var(--gray-400);
}

.form-m1 .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 33px;
}

.form-m1 .select2-container {
    left: 0 !important;
    bottom: 0px;
    top: unset !important;
}

.form-m1 .select2-container .select2-dropdown {
    min-width: 300px !important;
    border: 1px solid #dee2ee;
}

.form-m1 .select2-container .select2-dropdown .select2-results {
    margin-top: 3px;
    border-top: 1px dotted #dee2ee;
}

.form-m1 .select2-container .select2-dropdown .select2-results > .select2-results__options {
    max-height: 450px;
    overflow-y: auto;
}

.form-m1 .select2-container .select2-dropdown .select2-results > .select2-results__options::-webkit-scrollbar {
    width: 4px;
}

.form-m1 .select2-container .select2-dropdown .select2-results > .select2-results__options::-webkit-scrollbar-track {
    border-left: .5px solid #dedede;
    border-top: .5px solid #dedede;
    border-bottom: .5px solid #dedede
}

.form-m1 .select2-container .select2-dropdown .select2-results > .select2-results__options::-webkit-scrollbar-thumb {
    background: #dedede;
    border-radius: 4px;
}

.form-m1 .select2-container .select2-dropdown .select2-results > .select2-results__options::-webkit-scrollbar-thumb:hover {
    background: #bfbfbf
}

.form-m1 .select2-container .select2-dropdown .select2-results ul li {
    padding: 10px;
}

.form-m1 .select2-container .select2-dropdown .select2-results ul li .select2-results__option[aria-selected=true],
.form-m1 .select2-container .select2-dropdown .select2-results ul li.select2-results__option--highlighted[aria-selected] {
    background-color: #f1f2f6;
}

.form-m1 .select2-container .select2-dropdown .select2-results ul li .sel-icon {
    width: 40px;
    flex-shrink: 0;
}

.form-m1 .select2-container .select2-dropdown .select2-results ul li .sel-content {
    width: calc(100% - 100px);
    flex-shrink: 0;
}

.form-m1 .select2-container .select2-dropdown .select2-results ul li .sel-code {
    width: 60px;
    flex-shrink: 0;
}

.form-m1 .select2-container .select2-dropdown .select2-results ul li .sel-icon,
.form-m1 .select2-container .select2-dropdown .select2-results ul li .sel-subtitle,
.form-m1 .select2-container .select2-dropdown .select2-results ul li .sel-code {
    color: var(--gray-700);
}

.form-m1 .select2-container .select2-dropdown .select2-results ul li .sel-subtitle,
.form-m1 .select2-container .select2-dropdown .select2-results ul li .sel-code {
    font-size: 12px;
}

.form-m1 .select2-container .select2-dropdown .select2-results ul li .sel-title {
    font-weight: 500;
    color: var(--gray-700);
    font-size: 14px;
}

.form-m1 .select2-container .select2-dropdown .select2-results ul li:hover .sel-title {
    color: var(--gray-700);
}

.form-m1 .input-group-text {
    height: 33px;
    padding-top: 0;
    padding-bottom: 0;
    color: var(--gray-900);
}

.form-m1 .form-control::placeholder {
    color: var(--gray-400);
}

.form-m1 .form-icon .form-button {
    border: 0;
    padding: 0;
    height: 24px;
    width: 24px;
    position: absolute;
    background-color: transparent;
    color: var(--gray-500);
    font-size: 16px;
    cursor: pointer;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    transition: var(--transition-default);
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-m1 .form-icon.form-icon_left .form-button {
    left: 2px;
}

.form-m1 .form-icon.form-icon_left .form-control {
    padding-left: 30px;
}

.form-m1 .form-icon.form-icon_right .form-button {
    right: 2px;
}

.form-m1 .form-icon.form-icon_right .form-control {
    padding-right: 30px;
}

.form-m1 .form-icon .form-button:hover,
.form-m1 .form-icon .form-button:active {
    color: var(--gray-700);
}

.form-m1 .row-item + .row-item {
    margin-top: 3px;
}

@media screen and (max-width: 767px) {
    .form-m1 .row-mb_nospacing {
        margin: 0 0 15px;
    }

    .form-m1 .row-mb_nospacing > [class*=col] {
        padding: 0;
    }

    .form-m1 .row-item + .row-item {
        margin-top: 15px;
    }
}

.button-social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: relative;
    text-align: center;
    height: 33px;
    background: #F3F8FE;
    border-radius: 3px;
    border: 1px solid var(--gray-200);
    font-size: 14px;
    font-weight: 700;
    color: var(--gray-700);
    padding-left: 10px;
}

.button-social img,
.button-social i {
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    height: 20px;
    color: var(--primary-color);
    width: 20px;
    font-size: 20px;
}

.button-social i {
    top: calc(50% + 1px);
}

/***** End Custom Form *****/

.floating {
    position: fixed;
    z-index: 9;
    bottom: 35px;
}

.floating img {
    max-width: 100%;
    height: auto;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
}

.floating.floating-contact {
    left: 30px;
}

.floating.floating-contact .floating-contact_inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
}

.floating.floating-contact .floating-contact_inner .floating-contact_icon {
    width: 46px;
    height: 46px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 18px;
    color: #fff;
    background-color: var(--accent-color);
    border-radius: 50%;
    position: relative;
    z-index: 2;
    /*-webkit-box-shadow: 0 2.8px 2.2px rgb(0 0 0 / 3%), 0 6.7px 5.3px rgb(0 0 0 / 5%), 0 12.5px 10px rgb(0 0 0 / 6%), 0 22.3px 17.9px rgb(0 0 0 / 7%), 0 41.8px 33.4px rgb(0 0 0 / 9%), 0 100px 80px rgb(0 0 0 / 12%);*/
    /*box-shadow: 0 2.8px 2.2px rgb(0 0 0 / 3%), 0 6.7px 5.3px rgb(0 0 0 / 5%), 0 12.5px 10px rgb(0 0 0 / 6%), 0 22.3px 17.9px rgb(0 0 0 / 7%), 0 41.8px 33.4px rgb(0 0 0 / 9%), 0 100px 80px rgb(0 0 0 / 12%);*/
}

.floating.floating-contact .floating-contact_inner .floating-contact_icon > i {
    -webkit-animation-name: lac;
    -moz-animation-name: lac;
    -ms-animation-name: lac;
    -o-animation-name: lac;
    animation-name: lac;
    -webkit-animation-duration: 1s;
    -moz-animation-duration: 1s;
    -ms-animation-duration: 1s;
    -o-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-iteration-count: infinite;
    -moz-animation-iteration-count: infinite;
    -ms-animation-iteration-count: infinite;
    -o-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}

.floating.floating-contact .floating-contact_inner .floating-contact_icon::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    border: solid 1px rgba(var(--accent-rgb), .6);
    -webkit-animation-name: zoomin;
    -moz-animation-name: zoomin;
    -ms-animation-name: zoomin;
    -o-animation-name: zoomin;
    animation-name: zoomin;
    -webkit-animation-duration: 1.5s;
    -moz-animation-duration: 1.5s;
    -ms-animation-duration: 1.5s;
    -o-animation-duration: 1.5s;
    animation-duration: 1.5s;
    -webkit-animation-iteration-count: infinite;
    -moz-animation-iteration-count: infinite;
    -ms-animation-iteration-count: infinite;
    -o-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}

.floating.floating-contact .floating-contact_inner .floating-contact_icon:after {
    content: "";
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border-radius: 50%;
    background: rgba(var(--accent-rgb), .3);
    z-index: -1;
    -webkit-animation-name: zoomout;
    -moz-animation-name: zoomout;
    -ms-animation-name: zoomout;
    -o-animation-name: zoomout;
    animation-name: zoomout;
    -webkit-animation-duration: 1s;
    -moz-animation-duration: 1s;
    -ms-animation-duration: 1s;
    -o-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-iteration-count: infinite;
    -moz-animation-iteration-count: infinite;
    -ms-animation-iteration-count: infinite;
    -o-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-direction: alternate;
    -moz-animation-direction: alternate;
    -ms-animation-direction: alternate;
    -o-animation-direction: alternate;
    animation-direction: alternate;
}

@keyframes lac {
    0% {
        transform: rotate(0);
    }
    10% {
        transform: rotate(-25deg);
    }
    20% {
        transform: rotate(25deg);
    }
    30% {
        transform: rotate(-25deg);
    }
    40% {
        transform: rotate(25deg);
    }
    50% {
        transform: rotate(0);
    }
    100% {
        transform: rotate(0);
    }
}

@-webkit-keyframes lac {
    0% {
        -webkit-transform: rotate(0)
    }

    10% {
        -webkit-transform: rotate(-25deg)
    }

    20% {
        -webkit-transform: rotate(25deg)
    }

    30% {
        -webkit-transform: rotate(-25deg)
    }

    40% {
        -webkit-transform: rotate(25deg)
    }

    50% {
        -webkit-transform: rotate(0)
    }

    100% {
        -webkit-transform: rotate(0)
    }
}

@keyframes zoomin {
    0% {
        transform: scale(.8);
        opacity: 1
    }

    100% {
        transform: scale(2.2);
        opacity: .1
    }
}

@-webkit-keyframes zoomin {
    0% {
        -webkit-transform: scale(.8);
        opacity: 1
    }

    100% {
        -webkit-transform: scale(2.2);
        opacity: .1
    }
}

@keyframes zoomout {
    0% {
        transform: scale(.8);
        opacity: 1
    }

    100% {
        transform: scale(1.1);
        opacity: .3
    }
}

@-webkit-keyframes zoomout {
    0% {
        -webkit-transform: scale(.8);
        opacity: 1
    }

    100% {
        -webkit-transform: scale(1.1);
        opacity: .3
    }
}

.floating.floating-contact .floating-contact_inner .floating-contact_phone {
    color: #fff;
    background: rgba(var(--accent-rgb), .9);
    display: inline-block;
    vertical-align: middle;
    padding: 0 18px;
    border-radius: 5px;
    position: absolute;
    left: 106%;
    margin-left: 5px;
    white-space: nowrap;
    font-weight: 500;
    font-size: 18px;
    line-height: 36px;
    top: 50%;
    margin-top: -18px;
    -webkit-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

.floating.floating-contact .floating-contact_inner .floating-contact_phone:before {
    content: '';
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-right: 8px solid rgba(var(--accent-rgb), .9);
    border-bottom: 6px solid transparent;
    position: absolute;
    left: -8px;
    top: 50%;
    margin-top: -6px;
}

@media screen and (max-width: 768px) {
    .floating.floating-contact {
        bottom: 3%;
        left: 7px;
    }
}

.service-card .card-header img {
    transition: var(--transition-default);
}

.service-card .card-header:hover img {
    opacity: 0.9;
    transform: scale(1.025);
}

.service-card .card-body {
    flex: 1 1 0%;
    display: flex;
    flex-direction: column;
}

.service-card .card-body .card-title {
    margin-bottom: 0;
}

.service-card .card-body .card-title > a {
    font-size: var(--size-theme-4);
    color: var(--gray-900);
    font-weight: 700;
    transition: var(--transition-default);
    line-height: 1.2;
}

.service-card .card-body .card-title > a:hover {
    color: var(--primary-color);
}

.service-card .card-body .card-text {
    margin-top: 10px;
    font-size: 1.05em;
    color: var(--gray-600);
}

.section-hotel {
    background-color: #e5f2ef;
}

.card-tour {
    border-radius: 8px;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    background-color: var(--white);
    border: 0;
    position: relative;
    overflow: hidden;
    height: 100%;
    transition: var(--transition-default);
}

.card-tour .card-header {
    padding: 0;
    background-color: var(--white);
    border-radius: 8px 8px 0 0;
    border-bottom: 0;
    margin: 0;
    position: relative;
    overflow: hidden;
}

.card-tour .card-header .card-image {
    position: relative;
    overflow: hidden;
    border-radius: 8px 8px 0 0;
}

.card-tour .card-header .card-image:before {
    display: block;
    content: "";
    padding-top: 66.66667%;
}

.card-tour .card-header .card-image .card-img-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-default);
}

.card-tour .card-header .card-rate {
    position: absolute;
    z-index: 2;
    top: 10px;
    right: 10px;
    background-color: var(--accent-color);
    color: var(--white);
    font-size: 1em;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 24px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    border-bottom-left-radius: 5px;
}

.card-tour .card-header .card-rate:before {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-top: 5px solid var(--accent-color);
    position: absolute;
    top: 100%;
    right: 0;
    z-index: 1;
}

.card-tour .card-header .card-review {
    position: absolute;
    z-index: 2;
    right: 10px;
    top: 44px;
    text-align: center;
    background-color: rgba(0, 0, 0, .2);
    color: var(--gray-200);
    padding: 4px 8px;
    border-radius: 8px;
    font-size: .85em;
    line-height: 1.3;
}

.card-tour .card-header .card-review .value {
    font-weight: 500;
    color: var(--white);
    font-size: 1.1em;
}

.card-tour .card-header .card-favourite {
    position: absolute;
    top: 10px;
    left: 10px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    background-color: var(--white);
    height: 35px;
    width: 35px;
    -webkit-transition: all .25s cubic-bezier(.645, .045, .355, 1);
    transition: all .25s cubic-bezier(.645, .045, .355, 1);
    display: inline-block;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1;
    z-index: 2;
}

.card-tour .card-header .card-favourite > button {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background-color: var(--white);
    border-radius: 50%;
    border: 0;
    outline: 0;
    box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05) !important;
    cursor: pointer;
}

.card-tour .card-header .card-favourite > button > svg {
    width: 18px;
    height: auto;
    stroke: var(--gray-900);
    transition: var(--transition-default);
}

.card-tour .card-header .card-favourite > button.is-selected > svg {
    fill: var(--accent-color);
    stroke: var(--accent-color);
}

.card-tour .card-header .card-time {
    position: absolute;
    top: 57px;
    left: 0;
    border-radius: 0 5px 5px 0;
    color: #EF4444;
    background-color: var(--white);
    display: inline-block;
    padding: 5px 10px;
    z-index: 2;
    font-weight: 500;
    box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    font-size: 0.9em;
}

.card-tour .card-body {
    display: flex;
    flex-direction: column;
    padding: 10px;
}

.card-tour .card-body .card-day {
    color: var(--gray-500);
    font-size: .95em;
    margin-bottom: 5px;
}

.card-tour .card-body .card-title {
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 3;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    margin-bottom: 15px;
    line-height: 1.3;
}

.card-tour .card-body .card-title > a {
    color: var(--gray-800);
    font-weight: 700;
    font-size: var(--size-theme-6);
}

.card-tour .card-body .card-desc {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.card-tour .card-body .card-desc > .text {
    display: flex;
    align-items: center;
    color: var(--gray-600);
    font-size: 0.9em;
}

.card-tour .card-body .card-desc > .text > i {
    width: 18px;
}

.card-tour .card-body .card-desc > .value {
    margin-left: 5px;
    font-weight: 500;
}

.card-tour .card-body .card-desc + .card-desc {
    margin-top: 4px;
}

.card-tour .card-body .card-price {
    margin-top: 15px;
    display: flex;
    justify-content: space-between;
}

.card-tour .card-body .card-price .price {
    display: flex;
    flex-direction: column;
    padding-right: 8px;
}

.card-tour .card-body .card-price .price .old {
    font-size: 1em;
    color: var(--gray-500);
}

.card-tour .card-body .card-price .price .old .value {
    text-decoration: line-through;
}

.card-tour .card-body .card-price .price .current .value {
    color: #EF4444;
    font-weight: 700;
    font-size: 1.3em;
}

.card-tour .card-body .card-price .badge {
    margin-left: auto;
    margin-bottom: 5px;
    color: var(--white);
    font-size: .95em;
    background-color: #EF4444;
    border-radius: 4px;
    padding: 6px 8px;
    font-weight: 700;
    align-self: flex-end;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.card-tour .card-body .card-time {
    margin-top: 15px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--accent-color);
    background: rgba(247, 147, 33, 0.05);
    color: var(--accent-color);
    border-radius: 4px;
    padding: 10px;
    font-weight: 700;
}

.card-tour:hover {
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
}

.card-tour .card-header:hover .card-image .card-img-top {
    transform: scale(1.1);
    opacity: .8;
}

.card-tour .card-body .card-title > a:hover {
    color: var(--primary-color);
}

.card-popular {
    height: 100%;
    border: 0;
    border-radius: 8px;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 10%), 0 2px 4px -2px rgb(0 0 0 / 10%);
}

.card-popular .card-img {
    padding-top: calc(2 / 3 * 100%);
    background-position: 50%;
    background-size: cover;
    transition: all .3s ease-out;
}

.card-popular .card-img .card-rating {
    top: -1px;
    right: -1px;
    z-index: 1;
}

.card-popular .card-img .card-rating .rating-value {
    position: relative;
}

.card-popular .card-img .card-rating .rating-value p {
    position: absolute;
    top: calc(50% - 3px);
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: .90em;
}

.card-popular .card-img .card-rating .rating-value p small {
    margin-right: 3px;
    line-height: 1;
    margin-top: -2px;
}

.card-popular .card-body {
    display: flex;
    flex-direction: column;
    padding: 10px;
}

.card-popular .card-body .card-title {
    color: var(--gray-800);
    font-weight: 700;
    font-size: var(--size-theme-6);
    transition: all .3s ease-out;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 3;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    margin-bottom: 5px;
    line-height: 1.3;
}

.card-popular .card-body .card-star {
    display: flex;
    gap: 4px;
    align-items: center;
    font-size: .9em;
    color: rgb(255, 188, 57);
}

.card-popular .card-body .card-desc {
    margin-top: 9px;
    color: var(--gray-600);
    font-size: 0.9em;
}

.card-popular .card-body .card-desc i {
    width: 18px;
}

.card-popular .card-body .card-price {
    text-align: right;
    transition: all .3s ease-out;
}

.card-popular .card-body .card-price .card-price_old {
    font-size: 1em;
    color: var(--gray-500);
    text-decoration: line-through;
}

.card-popular .card-body .card-price .card-price_current {
    color: #EF4444;
    font-weight: 700;
    font-size: 1.3em;
}

.card-popular:hover .card-img {
    opacity: .8;
}

.card-popular:hover .card-body .card-title,
.card-popular:hover .card-body .card-price {
    color: #232323;
}

.detail-tours .detail-tours_description .tours-description_inner {
    background-color: var(--white);
    border-radius: 5px;
    padding: 30px;
    display: flex;
    justify-content: space-between;
}

.detail-tours .detail-tours_description .tours-description_inner .tours-description_left {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.detail-tours .detail-tours_description .tours-description_inner .tours-description_right {
    padding-left: 10px;
}

.detail-tours .detail-tours_description .tours-description_inner .tours-description_right .button-theme {
    padding: 8px 10px;
    font-size: .95em;
    font-weight: 500;
}

.detail-tours .detail-tours_description .tours-description_box {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.detail-tours .detail-tours_description .tours-description_box .tours-description_box--item {
    width: calc(33.333% - 15px);
    height: 100%;
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
}

.detail-tours .detail-tours_description .tours-description_box .tours-description_box--item > i {
    color: var(--primary-color);
    font-size: 1.4em;
    margin-bottom: 8px;
}

.detail-tours .detail-tours_description .tours-description_box .tours-description_box--item .tours-description_box--title {
    font-size: 1em;
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 4px;
}

.detail-tours .detail-tours_description .tours-description_box .tours-description_box--item .tours-description_box--text {
    color: var(--gray-600);
}

.tours-heading,
.hotel-heading {
    text-align: center;
    font-weight: 700;
    font-size: 1.6em;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.tours-collapse {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.tours-collapse .tours-collapse_item {
    width: calc(50% - 10px);
    border-radius: 5px;
    overflow: hidden;
}

.tours-collapse .tours-collapse_item > a {
    padding: 15px 20px;
    font-size: 1.1em;
    font-weight: 500;
    margin-bottom: 0;
    color: var(--gray-900);
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #eee;
}

.tours-collapse .tours-collapse_item > a > i {
    transition: .3s transform ease-in-out;
}

.tours-collapse .tours-collapse_item > a[aria-expanded=true] {
    background-color: var(--primary-color);
    color: var(--white);
}

.tours-collapse .tours-collapse_item > a[aria-expanded=true] > i {
    transform: rotate(180deg);
}

.tours-collapse .tours-collapse_item .tours-collapse_item--inner {
    padding: 15px 20px;
    font-size: 1em;
    line-height: 1.5;
    background: #eee;
}

.timeline-inner {
    background-color: var(--white);
    border-radius: 12px;
    border: 1px solid var(--gray-200);
    overflow: hidden;
}

.timeline-inner .timeline-left {
    background-color: #eee;
    border-right: 1px solid var(--gray-200);
    padding: 15px;
    height: 100%;
}

.timeline-inner .timeline-left > ul {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 5px;
    border-bottom: 0;
}

.timeline-inner .timeline-left > ul:before {
    position: absolute;
    content: "";
    height: calc(100% + 5px);
    width: 1px;
    border-left: 1px dotted var(--gray-300);
    top: 0;
    left: 64px;
}

.timeline-inner .timeline-left .timeline-left_item > .nav-link {
    position: relative;
    display: flex;
    align-items: center;
    gap: 45px;
    cursor: pointer;
    padding: 10px;
    border: 0;
    border-radius: 5px;
    background: transparent !important;
    margin-bottom: 0;
}

.timeline-inner .timeline-left .timeline-left_item > .nav-link .timeline-left_item--number {
    width: 24px;
    height: 24px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 53px;
    font-size: .95em;
}

.timeline-inner .timeline-left .timeline-left_item > .nav-link .timeline-left_item--text {
    font-size: .975em;
    color: var(--gray-600);
    font-weight: 500;
}

.timeline-inner .timeline-left .timeline-left_item > .nav-link .timeline-left_item--content .timeline-left_item--day {
    font-size: .85em;
    color: var(--gray-600);
    font-weight: 500;
}

.timeline-inner .timeline-left .timeline-left_item > .nav-link .timeline-left_item--content .timeline-left_item--activate {
    font-size: 1em;
    color: var(--gray-900);
    font-weight: 600;
    margin-top: 5px
}


.timeline-inner .timeline-left .timeline-left_item > .nav-link.active {
    background: var(--primary-color) !important;
}

.timeline-inner .timeline-left .timeline-left_item > .nav-link.active .timeline-left_item--text,
.timeline-inner .timeline-left .timeline-left_item > .nav-link.active .timeline-left_item--content .timeline-left_item--day,
.timeline-inner .timeline-left .timeline-left_item > .nav-link.active .timeline-left_item--content .timeline-left_item--activate {
    color: var(--white);
}

.timeline-inner .timeline-left .timeline-left_item > .nav-link.active .timeline-left_item--number {
    background: var(--white);
    color: var(--primary-color);
}

.timeline-inner .timeline-right {
    padding: 30px;
    height: 100%;
}

.timeline-inner .timeline-right > ul {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.timeline-inner .timeline-right .timeline-right_item {
    position: relative;
}

.timeline-inner .timeline-right .timeline-right_item .timeline-right_title {
    font-size: 1.15em;
    color: var(--gray-900);
    font-weight: 700;
    margin-bottom: 10px;
}

.timeline-inner .timeline-right .timeline-right_item .timeline-right_description {
    position: relative;
    padding-left: 30px;
    margin-left: 5px;
    border-left: 1px dotted var(--primary-color);
}

.timeline-inner .timeline-right .timeline-right_item .timeline-right_description:before {
    position: absolute;
    top: 0;
    left: -3px;
    height: 6px;
    width: 6px;
    background-color: var(--primary-color);
    display: block;
    content: "";
    border-radius: 50%;
}

.timeline-inner .timeline-right .timeline-right_item .timeline-right_description:after {
    position: absolute;
    bottom: 0;
    left: -3px;
    height: 6px;
    width: 6px;
    background-color: var(--primary-color);
    display: block;
    content: "";
    border-radius: 50%;
}

.tours-box .tours-box_inner {
    border-radius: 12px;
    background-color: #eee;
    padding: 15px 30px 30px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    line-height: 1.6;
    height: 100%;
}

.tours-box .tours-box_inner .tours-heading {
    margin-bottom: 5px;
    line-height: 1.4;
}

.detail-tours_images .detail-tours_image--left {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.detail-tours_images .detail-tours_image--left .ratio-16x9 {
    --aspect-ratio: calc(9 / 16 * 100% - 2.5px);
}

.detail-tours_images .detail-tours_image--overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .5);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    pointer-events: none;
    color: var(--white);
    font-weight: 700;
    font-size: 1.1em;
}

.detail-tours_info--inner {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.detail-tours_info--inner .detail-tours_info--title {
    font-size: 1.6em;
    color: var(--gray-900);
    font-weight: 700;
    line-height: 1.25;
    width: 60%;
    margin-bottom: 0
}

.detail-tours_info--inner .detail-tours_info--right {
    width: 40%;
    display: flex;
    justify-content: flex-end;
}

.detail-tours_info--inner .detail-tours_info--right .detail-tours_info--price {
    display: flex;
    flex-direction: column;
    text-align: right;
}

.detail-tours_info--inner .detail-tours_info--right .detail-tours_info--price .price-old {
    color: var(--gray-500);
    text-decoration: line-through;
}

.detail-tours_info--inner .detail-tours_info--right .detail-tours_info--price .price-current {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.5em;
}

.detail-tours_info--inner .detail-tours_info--right .detail-tours_info--buttons {
    margin-left: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.detail-tours_info--inner .detail-tours_info--right .detail-tours_info--buttons .button-theme {
    border-radius: 4px;
    width: 160px;
}

.detail-hotel .detail-hotel_info .detail-hotel_info--inner {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.detail-hotel .detail-hotel_info .detail-hotel_info--inner .detail-hotel_info--left {
    width: 60%;
}

.detail-hotel .detail-hotel_info .detail-hotel_info--inner .detail-hotel_info--right {
    width: 40%;
    display: flex;
    flex-direction: column;
    text-align: right;
    align-self: center;
}

.detail-hotel .detail-hotel_info--meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    white-space: nowrap;
}

.detail-hotel .detail-hotel_info--meta .info-meta_badge {
    font-size: .85em;
    font-weight: 400;
    border-radius: 4px;
    padding: 5px 8px 4px;
}

.detail-hotel .detail-hotel_info--meta .info-meta_star {
    color: #FEBB02;
}

.detail-hotel .detail-hotel_info--title {
    font-size: 1.6em;
    color: var(--gray-900);
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 12px;
}

.detail-hotel_info--inner .detail-hotel_info--right .detail-hotel_info--price {
    display: flex;
    flex-direction: column;
    text-align: right;
}

.detail-hotel_info--inner .detail-hotel_info--right .detail-hotel_info--price .price-old {
    color: var(--gray-500);
    text-decoration: line-through;
}

.detail-hotel_info--inner .detail-hotel_info--right .detail-hotel_info--price .price-current {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.5em;
}

.detail-hotel_info--inner .detail-hotel_info--right .detail-hotel_info--buttons {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-top: 10px;
}

.detail-hotel_info--inner .detail-hotel_info--right .detail-hotel_info--buttons .button-theme {
    border-radius: 4px;
    width: 160px;
}

.detail-hotel_images .detail-hotel_image--left {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.detail-hotel_images .detail-hotel_image--left .ratio-16x9 {
    --aspect-ratio: calc(9 / 16 * 100% - 2.5px);
}

.detail-hotel_images .detail-hotel_image--overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .5);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    pointer-events: none;
    color: var(--white);
    font-weight: 700;
    font-size: 1.1em;
}

.detail-hotel_description .hotel-description_title {
    font-size: 1.45em;
    color: var(--gray-900);
    margin-bottom: 10px;
    font-weight: 700;
}

.detail-hotel_description .hotel-description_title > a {
    font-size: 14px;
    font-weight: 400;
    margin-left: 3px;
    display: inline-block;
    vertical-align: middle;
}

.detail-hotel_description .hotel-description_inner--content {
    line-height: 1.5;
    position: relative;
    max-height: 200px;
    overflow: hidden;
    transition: 0.3s ease-in-out;
}

.detail-hotel_description .hotel-description_inner.is-show .hotel-description_inner--content {
    max-height: calc(var(--height) + 40px);
    transition: 0.3s ease-in-out;
    padding-bottom: 30px;
}

.detail-hotel_description .hotel-description_inner.is-show .hotel-description_inner--content:after {
    display: none;
}

.detail-hotel_description .hotel-description_inner--content::after {
    content: "";
    height: 40px;
    width: 100%;
    position: absolute;
    bottom: 0px;
    background: linear-gradient(0deg, rgb(254, 254, 255) 0%, rgba(255, 255, 255, 0.6) 40%, rgba(255, 255, 255, 0) 100%);
}

.detail-hotel_description .hotel-description_inner--expand .button-theme {
    font-size: .9em;
}

.detail-hotel .hotel-description_sidebar {
    background-color: rgba(var(--primary-rgb), .075);
    padding: 15px;
    border-radius: 8px;
}

.detail-hotel .hotel-description_sidebar .description-sidebar_title {
    color: var(--primary-color);
    font-size: 1.1em;
    margin-bottom: 10px;
    font-weight: 700;
}

.detail-hotel .hotel-description_sidebar .description-sidebar_text {
    font-size: .95em;
}

.detail-hotel .hotel-description_sidebar .description-sidebar_text i {
    font-size: 1.1em;
    margin-right: 8px;
    position: relative;
    top: 2px;
}

.detail-hotel .hotel-description_sidebar .description-sidebar_button {
    margin: 15px 0;
}

.detail-hotel_description .hotel-description_icons {
    margin-top: 45px;
}

.detail-hotel_description .hotel-description_icons .hotel-description_icons--title {
    color: var(--primary-color);
    font-size: 1.1em;
    margin-bottom: 15px;
    font-weight: 700;
}

.detail-hotel_description .hotel-description_icons .hotel-description_icons--list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.detail-hotel_description .hotel-description_icons .hotel-description_icons--list .hotel-description_icons--item {
    white-space: nowrap;
    display: flex;
    gap: 8px;
    align-items: center;
}

.detail-hotel_description .hotel-description_icons .hotel-description_icons--list .hotel-description_icons--item > i {
    color: var(--primary-color);
    width: 22px;
    font-size: 1.1em;
}

.detail-hotel_order {
    border-top: 1px solid var(--gray-200);
}

.detail-hotel_order .b-form {
    margin-top: 20px;
}

.detail-hotel_order .b-form .card-body {
    display: flex;
    align-items: center;
    gap: 15px;
}

.detail-hotel_order .b-form .form-group {
    margin-bottom: 0;
    width: 25%;
}

.detail-hotel_order .b-form .form-group label {
    font-weight: 500;
}

.detail-hotel_order .b-form .form-group .form-control {
    height: 40px;
    padding-top: 8px;
    border: 1px solid #ebebeb;
    background-color: #fff;
}

.detail-hotel_order .b-form .form-button {
    align-self: flex-end;
}

.detail-hotel_order .b-form .b-btn {
    margin-left: 0;
    height: 40px;
}

.detail-hotel_order .hotel-order_title {
    font-size: 1.45em;
    color: var(--gray-900);
    margin-bottom: 10px;
    font-weight: 700;
}

.detail-hotel_order .hotel-order_list {
    margin-top: 25px;
    border-left: 1px solid rgba(var(--primary-rgb), .1);
    border-right: 1px solid rgba(var(--primary-rgb), .1);
}

.detail-hotel_order .hotel-order_list .hotel-order_list--header {
    color: var(--white);
    font-weight: 600;
    border-top: 0;
    background-color: var(--primary-color);
    font-size: 1.1em;
}

.detail-hotel_order .hotel-order_list .hotel-order_list--header > * {
    border-left: 1px solid rgba(255, 255, 255, .3) !important;
}

.detail-hotel_order .hotel-order_list > * {
    border-top: 1px solid rgba(var(--primary-rgb), .1);
    display: flex;
    background-color: rgba(var(--primary-rgb), .025);
    transition: var(--transition-default);
}

.detail-hotel_order .hotel-order_list > *:last-child {
    border-bottom: 1px solid rgba(var(--primary-rgb), .1);
}

.detail-hotel_order .hotel-order_list > *:not(.hotel-order_list--header):hover {
    background-color: rgba(var(--primary-rgb), .05);
}

.detail-hotel_order .hotel-order_list .order-column {
    padding: 10px 15px;
    border-left: 1px solid rgba(var(--primary-rgb), .1);
}

.detail-hotel_order .hotel-order_list .order-column_type {
    width: 50%;
    border-left: 0;
}

.detail-hotel_order .hotel-order_list .order-column_suitable {
    width: 30%;
}

.detail-hotel_order .hotel-order_list .order-column_button {
    width: 20%;
    text-align: center;
    position: relative;
}

.detail-hotel_order .hotel-order_list .order-column_button .button-theme {
    font-size: .9em;
    padding: 7px 15px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    white-space: nowrap;
    width: 185px;
}

.detail-hotel_order .hotel-order_list .order-column_title > a {
    font-size: 1em;
    font-weight: 600;
    color: var(--primary-color);
}

.detail-hotel_order .hotel-order_list .order-column_subtext {
    font-size: .95em;
    margin-top: 5px;
}

.form-group_quantity {
    position: relative;
}

.form-group_quantity .form-group_quantity_inner {
    display: block;
    width: 100%;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-clip: padding-box;
    border-radius: 0.25rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    height: 40px;
    padding-top: 8px;
    border: 1px solid #ebebeb;
    background-color: #fff;
    cursor: pointer;
    position: relative;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.form-group_quantity .form-group_quantity_dropdown {
    position: absolute;
    border-radius: 4px;
    -webkit-box-shadow: 0 0 15px rgb(0 0 0 / 15%);
    box-shadow: 0 0 15px rgb(0 0 0 / 15%);
    background-color: var(--white);
    padding: 15px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 15px;
    top: calc(100% + 5px);
    left: 0;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-default);
}

.form-group_quantity.is-show .form-group_quantity_dropdown {
    pointer-events: auto;
    opacity: 1;
    visibility: visible;
    top: 100%;
}

.form-group_quantity .form-group_quantity_dropdown .quantity-dropdown_item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.form-group_quantity .form-group_quantity_dropdown .quantity-dropdown_item .quantity-dropdown_item--left {
    width: 50%;
}

.form-group_quantity .form-group_quantity_dropdown .quantity-dropdown_item .quantity-dropdown_item--left .quantity-dropdown_item--title {
    font-size: 1em;
    color: var(--gray-900);
    font-weight: 500;
    white-space: nowrap;
}

.form-group_quantity .form-group_quantity_dropdown .quantity-dropdown_item .quantity-dropdown_item--left .quantity-dropdown_item--desc {
    font-size: .9em;
    color: var(--gray-600);
    white-space: nowrap;
}

.form-group_quantity .form-group_quantity_dropdown .quantity-dropdown_item .quantity-dropdown_item--right {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
}

.form-group_quantity .form-group_quantity_dropdown .quantity-dropdown_item .quantity-dropdown_item--right button {
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--gray-200);
    height: 26px;
    width: 26px;
    font-size: .8em;
    flex-shrink: 0;
}

.form-group_quantity .form-group_quantity_dropdown .quantity-dropdown_item .quantity-dropdown_item--right button:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.form-group_quantity .form-group_quantity_dropdown .quantity-dropdown_item .button-theme {
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    background-color: var(--white);
    width: 100%;
    border-radius: 4px;
}

.form-group_quantity .form-group_quantity_dropdown .quantity-dropdown_item .button-theme:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.popup-order .popup-detail_info {
    position: relative;
}

.popup-order .popup-detail_button {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
}

.popup-order .popup-detail_button > button {
    font-size: 1em;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 30px;
    width: 30px;
    color: var(--gray-500);
    background: var(--gray-200);
    border-radius: 50%;
    border: 0;
}

.popup-order .popup-detail_button > button:hover {
    color: var(--gray-900);
}

.popup-order .popup-detail_info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.popup-order .popup-detail_info .popup-detail_title {
    padding-right: 50px;
    font-size: 1.5em;
    color: var(--primary-color);
    font-weight: 600;
}

.popup-order .popup-detail_info .popup-detail_icons .popup-detail_icons--list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    width: 100%;
    font-size: 1em;
}

.popup-order .popup-detail_info .popup-detail_icons .popup-detail_icons--list .popup-detail_icons--item {
    white-space: nowrap;
    display: flex;
    gap: 8px;
    align-items: center;
}

.popup-order .popup-detail_info .popup-detail_icons .popup-detail_icons--list .popup-detail_icons--item > i {
    color: var(--primary-color);
    width: 16px;
}

.popup-order .popup-detail_info .popup-detail_text {
    line-height: 1.6;
}

.popup-order .popup-detail_info .popup-detail_text ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    width: 100%;
    margin-top: 10px;
}

.popup-order .popup-detail_info .popup-detail_text ul > li {
    display: flex;
    gap: 8px;
    align-items: center;
    width: calc(50% - 15px);
    line-height: 1.2;
}

.popup-order .popup-detail_info .popup-detail_text ul > li > i {
    color: var(--primary-color);
    width: 16px;
}

.popup-order .popup-detail_images {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.popup-order .popup-detail_images .popup-detail_images--thumb .popup-detail_images--thumb---item > span {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    background: rgba(0, 0, 0, .3);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    font-size: 1.5em;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: var(--transition-default);
    cursor: pointer;
}

.popup-order .popup-detail_images .popup-detail_images--thumb .swiper-slide-active .popup-detail_images--thumb---item > span,
.popup-order .popup-detail_images .popup-detail_images--thumb .popup-detail_images--thumb---item:hover > span {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

@media screen and (max-width: 991px) {
    .detail-tours_info--inner .detail-tours_info--title {
        width: 100%;
        font-size: 1.4em;
    }

    .detail-tours_info--inner .detail-tours_info--right {
        width: 100%;
    }

    .tours-description_box {
        margin-top: 20px;
    }

    .detail-hotel .detail-hotel_info .detail-hotel_info--inner .detail-hotel_info--left {
        width: 100%;
    }

    .detail-hotel .detail-hotel_info--title {
        font-size: 1.4em;
    }

    .detail-hotel .detail-hotel_info .detail-hotel_info--inner .detail-hotel_info--right {
        width: 100%;
    }

    .popup-order .popup-detail_info .popup-detail_button {
        display: none;
    }

    .popup-order .popup-detail_info .popup-detail_title {
        font-size: 1.3em;
        padding-right: 0;
    }
}

@media screen and (max-width: 768px) {
    .detail-tours_info--inner {
        flex-direction: column;
    }

    .detail-tours_info--inner .detail-tours_info--right .detail-tours_info--price {
        text-align: left;
    }

    .detail-tours .detail-tours_description .tours-description_inner {
        flex-direction: column;
    }

    .detail-tours .detail-tours_description .tours-description_inner .tours-description_right {
        padding-left: 0;
        margin-top: 15px;
    }

    .detail-tours .detail-tours_description .tours-description_inner .tours-description_right .button-theme {
        width: 100%;
    }

    .timeline-inner .timeline-left,
    .timeline-inner .timeline-right {
        padding: 15px;
    }

    .timeline-inner .timeline-right > ul {
        gap: 15px;
    }

    .tours-collapse {
        flex-wrap: nowrap;
        flex-direction: column;
    }

    .tours-collapse .tours-collapse_item {
        width: 100%
    }

    .tours-collapse .tours-collapse_item > a {
        font-size: 1.05em;
    }

    .detail-hotel .detail-hotel_info .detail-hotel_info--inner {
        gap: 10px;
        flex-direction: column;
    }

    .detail-hotel .detail-hotel_info--meta {
        flex-wrap: wrap;
    }

    .detail-hotel_order .hotel-order_list .hotel-order_list--header {
        display: none;
    }

    .detail-hotel_order .hotel-order_list > * {
        flex-direction: column;
        padding: 10px 0;
    }

    .detail-hotel_order .hotel-order_list .hotel-order_list--item > * {
        width: 100%;
        padding-top: 3px;
        padding-bottom: 3px;
    }

    .detail-hotel_order .hotel-order_list .order-column_button .button-theme {
        position: static;
        top: unset;
        left: unset;
        transform: translate(0);
        width: 100%;
        padding: 10px 15px;
        margin-top: 5px;
    }
}


@media screen and (max-width: 600px) {
    .detail-hotel_order .b-form .card-body {
        flex-wrap: wrap;
    }

    .detail-hotel_order .b-form .form-group {
        width: calc(50% - 15px);
    }

    .detail-hotel_order .b-form .form-group label {
        font-size: .95em;
    }

    .detail-hotel_order .b-form .form-group .form-control,
    .detail-hotel_order .b-form .form-group_quantity .form-group_quantity_inner {
        font-size: .95em;
        white-space: nowrap;
        text-overflow: ellipsis;
        overflow: hidden;
    }

    .detail-hotel_order .b-form .form-button {
        width: 100%;
    }

    .detail-hotel_order .b-form .form-button .b-btn {
        max-width: 100%;
        width: 100%;
    }

    .detail-tours .detail-tours_description .tours-description_box .tours-description_box--item {
        width: calc(50% - 15px);
    }
}
