@import url(helper.css);

@font-face {
    font-family: "Hacen-Tunisia";
    src: url(../fonts/Hacen-Tunisia-Lt.ttf);
}

@font-face {
    font-family: "Hacen-Tunisia-bold";
    src: url(../fonts/Hacen-Tunisia.ttf);
}

*,
* button:focus {
    outline: 0;
}

:root {
    --main-color: #503192;
    --sub-color: #25B0A8;
    --sub-color1: #1B0F2E;
    /* --subColor2: #77643d; */
}

.main-color {
    color: var(--main-color) !important;
}

.main-bg {
    background-color: var(--main-color) !important;
    border-color: var(--main-color) !important;
}

.sub-color {
    color: var(--sub-color) !important;
}

.sub-bg {
    background-color: var(--sub-color) !important;
    border-color: var(--sub-color) !important;
}

.sub-color1 {
    color: var(--sub-color1) !important;
}

.sub-bg1 {
    background-color: var(--sub-color1) !important;
    border-color: var(--sub-color1) !important;
}

.filter-gray {
    filter: invert(60%) sepia(2%) saturate(2819%) hue-rotate(167deg) brightness(94%) contrast(94%);
}

.filter-green {
    filter: invert(100%) sepia(22%) saturate(6778%) hue-rotate(17deg) brightness(101%) contrast(54%);
}

.filter-purple {
    filter: invert(24%) sepia(27%) saturate(3060%) hue-rotate(234deg) brightness(91%) contrast(100%);
}

@media (min-width: 1400px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 1400px;
    }
}

*::-webkit-scrollbar {
    height: 10px;
    width: 10px;
    background: #f1f1f1;
    border-radius: 10px;
}

*::-webkit-scrollbar-thumb {
    background: #999;
    border-radius: 10px;
}

*::-webkit-scrollbar-corner {
    background: #999;
    border-radius: 10px;
}

body {
    font-family: "Hacen-Tunisia";
    text-decoration: none;
    font-size: 0.9em;
    overflow-x: hidden;
    position: relative;
    color: #8492A6;
    direction: rtl;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Hacen-Tunisia-bold";
    margin: 0;
    line-height: 1.4;
    color: #111;
}

body a:hover {
    text-decoration: none;
}

body a:focus {
    outline: 0;
}

body ul {
    list-style-type: none;
    margin: 0;
}

[type=email], [type=number], [type=tel], [type=url] {
    direction: inherit;
}

.btn-default:active,
.btn-default:active:focus,
.btn-default:active:hover,
.btn-default:focus,
.btn-default:hover,
.btn-primary:not(:disabled):not(.disabled):active:focus,
.btn:not(:disabled):not(.disabled).active,
.btn:not(:disabled):not(.disabled):active {
    -webkit-appearance: none;
}

.btn:active,
.btn:active:focus,
.btn:active:hover,
.btn:focus,
.btn:hover,
.btn:not(:disabled):not(.disabled).active,
.btn:not(:disabled):not(.disabled):active {
    transition: all 0.6s ease;
    outline: 0;
}

/* ==================== global style ============================== */
a,
span,
img {
    display: inline-block;
    transition: all 0.3s ease;
    color: inherit;
    text-decoration: none;
}

a:hover {
    color: inherit;
}

ul {
    padding: 0;
}

img {
    max-width: 100%;
    max-height: 100%;
}

.img_cover {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.img_contain {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}

p {
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}

.text,
.text * {
    font-size: 14px;
    line-height: 1.5;
}

small.text {
    font-size: 13px;
}

.section_padding {
    padding: 80px 0;
}

.dropdown .dropdown-menu {
    border-radius: 10px;
    padding: 10px;
    border: 0;
    box-shadow: 15px 15px 30px rgba(0, 0, 0, 0.0666666667);
}

.dropdown .dropdown-menu .dropdown-item {
    font-size: 14px;
    padding: 0.5rem 1rem;
    border-radius: 10px;
}

/* --------------- to_top button --------------- */
.progress-wrap {
    position: fixed;
    left: 20px;
    bottom: 20px;
    height: 50px;
    width: 50px;
    cursor: pointer;
    display: block;
    border-radius: 50px;
    box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.0666666667);
    opacity: 0;
    overflow: hidden;
    visibility: hidden;
    transform: translateX(-100px);
    z-index: 99;
    transition: all 200ms linear;
}

.progress-wrap::after {
    background: url(../images/top-arrow.png);
    background-size: contain;
    background-repeat: no-repeat;
    content: "";
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    position: absolute;
    color: #000;
    left: 13px;
    top: 13px;
    height: 25px;
    width: 25px;
    display: block;
}

.progress-wrap svg path {
    fill: #f8f8f8;
}

.progress-wrap svg.progress-circle path {
    stroke: #000;
    stroke-width: 5;
    box-sizing: border-box;
}

.progress-wrap.active-progress {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* --------------- buttons --------------- */
.butn {
    position: relative;
    padding: 12px 50px;
    border-radius: 50px;
    text-align: center;
    font-size: 16px;
    border: 1px solid var(--main-color);
    background-color: var(--main-color);
    color: #fff;
    transition: all 0.3s ease;
    cursor: pointer;
}

.butn:hover {
    background-color: var(--sub-color);
    border-color: var(--sub-color);
    color: #fff;
}

.butn.btn-border-light {
    border: 1px solid #fff;
    background-color: transparent;
    color: #fff;
}

.butn.btn-border-light:hover {
    border-color: var(--main-color);
    background-color: var(--main-color);
}

.butn.sub-butn {
    border: 1px solid var(--sub-color);
    background-color: var(--sub-color);
    color: #fff;
}

.butn.sub-butn:hover {
    background-color: var(--main-color);
    border-color: var(--main-color);
}

.butn.butn-gray {
    border: 0;
    border: 1px solid #F8F9FA;
    background-color: #F8F9FA;
    color: #555;
}

.butn.butn-gray:hover {
    background-color: var(--main-color);
    border-color: var(--main-color);
    color: #fff;
}

.cls i {
    pointer-events: none;
}

/* --------------- navbars --------------- */
.navbars {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99;
}

.navbars.inner-navbars {
    position: relative;
}

.navbars.inner-navbars .navbar {
    background-image: none;
    background-color: #fff;
    color: #000;
}

.navbars.inner-navbars .navbar .navbar-nav .nav-item .nav-link {
    color: #000;
}

.navbars.inner-navbars .navbar .search-group {
    border: 1px solid rgba(153, 153, 153, 0.2666666667);
}

.navbars.inner-navbars .navbar .search-group .form-control {
    color: var(--sub-color1);
}

.navbars.inner-navbars .navbar .search-group .form-control::-moz-placeholder {
    color: #999;
}

.navbars.inner-navbars .navbar .search-group .form-control::placeholder {
    color: #999;
    font-size: 8px !important;
}

.navbars.inner-navbars .btn-border-light {
    border-color: rgba(153, 153, 153, 0.2);
    color: #000;
}

.navbars.inner-navbars .btn-border-light:hover {
    color: #fff;
}

.top-navbar {
    position: relative;
    background-color: var(--main-color);
    color: #fff;
    padding: 15px 0;
    font-size: 16px;
}

.top-navbar .social-icons {
    position: relative;
    border-inline-end: 1px solid rgba(255, 255, 255, 0.3333333333);
}

.top-navbar .social-icons a {
    position: relative;
    font-size: 16px;
    margin-inline-end: 20px;
}

.top-navbar .nav-side .item {
    position: relative;
    padding-inline-end: 20px;
    margin-inline-end: 20px;
    border-inline-end: 1px solid rgba(255, 255, 255, 0.3333333333);
    font-size: 13px;
}

.top-navbar .nav-side .item:last-child {
    padding-inline-end: 0;
    margin-inline-end: 0;
    border-inline-end: 0;
}

.navbar {
    position: relative;
    z-index: 99;
    color: #fff;
    background-image: linear-gradient(to bottom, rgba(80, 49, 146, 0.8470588235), transparent);
}

.navbar .navbar-brand {
    height: 70px;
}

.navbar .navbar-nav .nav-item .nav-link {
    font-size: 16px;
    color: #fff;
    font-weight: 200;
    margin: 0 15px;
}

.navbar .navbar-nav .nav-item .nav-link:hover {
    color: var(--sub-color);
}

.navbar .search-group {
    position: relative;
    display: flex;
    align-items: center;
    padding: 3px 15px 3px 3px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.3333333333);
}

.navbar .search-group .form-control {
    border: 0;
    font-size: 9px;
    padding: 10px 10px;
    min-height: -moz-max-content;
    min-height: max-content;
    min-width: 180px;
    background: transparent;
    color: #fff;
}

.navbar .search-group .form-control::-moz-placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.navbar .search-group .form-control::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.navbar .search-group .btn {
    position: relative;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--main-color);
    color: #fff;
}

.navbars .butn {
    padding: 11px 40px;
    font-size: 13px;
}

/* --------------- header --------------- */
header {
    position: relative;
}

header .slider-card {
    position: relative;
    z-index: 20;
    color: #fff;
    height: 800px;
}

header .slider-card::after {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(80, 49, 146, 0.2), rgba(80, 49, 146, 0.2)), linear-gradient(180deg, rgba(31, 33, 43, 0.2) 0%, rgba(31, 33, 43, 0) 100%), url(slider-img.jpg), #1F212B;
    opacity: 0.6;
    z-index: 1;
}

header .slider-card .bg {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    z-index: 0;
}

header .slider-card .info {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    padding: 250px 0 100px;
    z-index: 30;
}

header .slider-card .info .title {
    font-size: 60px;
    margin-bottom: 15px;
    line-height: 1.2;
    max-height: 140px;
    overflow: hidden;
}

header .search-sec {
    position: absolute;
    right: 0;
    bottom: 150px;
    width: 100%;
    z-index: 30;
}

header .search-sec .search-box {
    position: relative;
    margin-top: 60px;
    background-color: #fff;
    color: var(--sub-color1);
    border-radius: 10px;
    overflow: hidden;
    padding: 5px;
    display: flex;
}

header .search-sec .search-box .item {
    position: relative;
    display: inline-flex;
    padding: 13px 15px;
    align-items: center;
    border-inline-end: 1px solid rgba(153, 153, 153, 0.2666666667);
    flex-grow: 1;
}

header .search-sec .search-box .item:last-of-type {
    border: 0;
}

header .search-sec .search-box .item.date-from-to {
    width: 30%;
    flex-grow: 0;
}

header .search-sec .search-box .item.date-from-to .form-group {
    width: 50%;
}

header .search-sec .search-box .item.date-from-to .form-group:first-of-type {
    text-align: end;
}

header .search-sec .search-box .item.date-from-to .form-group:first-of-type .form-control {
    text-align: end;
}

header .search-sec .search-box .item.item-lg {
    width: 30%;
    flex-grow: 0;
}

header .search-sec .search-box .item .form-group {
    width: 100%;
}

header .search-sec .search-box .item .form-group .form-select,
header .search-sec .search-box .item .form-group .form-control {
    border: 0;
    padding: 0;
    line-height: 1.3;
    font-size: 18px;
    box-shadow: none;
    color: var(--sub-color1);
    width: 100%;
}

header .search-sec .search-box .search-btn {
    position: relative;
    flex-shrink: 0;
    padding: 10px 40px;
    border-radius: 8px;
    background-color: var(--main-color);
    color: #fff;
    text-align: center;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 0;
}

header .search-sec .search-box .search-btn:hover {
    background-color: var(--sub-color);
}

header .header-slider {
    position: relative;
    overflow: hidden;
}

header .header-slider .arrows {
    position: absolute;
    height: 40px;
    width: 110px;
    left: calc((100vw - 1320px) / 2);
    bottom: 320px;
}

header .header-slider .arrows .swiper-button-next,
header .header-slider .arrows .swiper-button-prev {
    background-color: rgba(0, 0, 0, 0.3333333333);
    border: 0;
}

header .header-slider .arrows .swiper-button-next::after,
header .header-slider .arrows .swiper-button-prev::after {
    color: #fff;
    font-size: 15px;
}

header .header-slider .arrows .swiper-button-next:hover,
header .header-slider .arrows .swiper-button-prev:hover {
    background-color: var(--main-color);
}

header .header-slider .swiper-pagination {
    position: absolute;
    width: -moz-max-content;
    width: max-content;
    left: calc((100vw - 1100px) / 2);
    bottom: 333px;
    z-index: 30;
}

header .header-slider .swiper-pagination .swiper-pagination-bullet {
    background-color: #fff;
}

.swiper-pagination .swiper-pagination-bullet {
    width: 80px;
    height: 3px;
    border-radius: 3px;
    background-color: var(--main-color);
}

/* --------------- why-us --------------- */
.why-us {
    position: relative;
}

.why-us .shap {
    position: absolute;
    top: 120px;
    right: 0;
    width: 18%;
    z-index: -1;
    pointer-events: none;
}

.why-us .cards .item {
    position: relative;
    margin-top: 100px;
    height: 100%;
}

.why-us .cards .item h5 {
    font-size: 26px !important;
    height: 73px;
    overflow: hidden !important;
}

.why-us .cards .item .text {
    height: 81px;
    overflow: hidden;
}

.why-us .cards .item .prog {
    position: relative;
    width: 90px;
    height: 5px;
    border-radius: 5px;
    background-color: rgba(80, 49, 146, 0.1333333333);
    margin: 20px 0;
}

.why-us .cards .item .prog .prog-bar {
    position: absolute;
    right: 0;
    top: 0;
    width: 40%;
    height: 100%;
    background-color: var(--main-color);
    border-radius: 5px;
    z-index: 20;
}

/* --------------- video --------------- */
.video {
    position: relative;
}

.video .video-card {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    z-index: 20;
}

.video .video-card::after {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to right, var(--main-color), transparent);
    z-index: 0;
}

.video .video-card .bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    z-index: -1;
}

.video .video-card .vid-pat {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

.video .video-card .info {
    position: relative;
    padding: 120px 0;
    text-align: center;
    color: #fff;
    z-index: 20;
}

.video .video-card .info * {
    color: #fff;
}

/* --------------- cities --------------- */
.cities {
    position: relative;
}

.cities .cities-slider {
    position: relative;
    overflow: hidden;
}

.cities .city-card {
    position: relative;
    display: flex;
    align-items: center;
}

.cities .city-card .more-lnk {
    font-size: 12px !important;
    font-weight: bold;
}

.cities .city-card .img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    overflow: hidden;
    margin-inline-end: 20px;
    flex-shrink: 0;
}

.cities .fsz-22 {
    font-size: 18px !important;
}

/* --------------- join --------------- */
.join {
    position: relative;
    z-index: 20;
}

.join .img {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.join .shap {
    position: absolute;
    left: 0;
    top: 0;
    left: 0;
    width: 20%;
    z-index: -1;
    pointer-events: none;
}

/* --------------- partners --------------- */
.partners {
    position: relative;
}

.partners .partners-slider {
    position: relative;
    overflow: hidden;
    padding-top: 30px;
}

.partners .brand {
    position: relative;
    background: #FFFFFF;
    box-shadow: 0px 2px 30px rgba(60, 57, 53, 0.08);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 130px;
}

.partners .brand img {
    max-width: 60%;
    height: 80px;
    -o-object-fit: contain;
    object-fit: contain;
}

.arrows-st1 {
    position: relative;
    height: 40px;
    width: 110px;
}

/* --------------- swiper arrows --------------- */
.swiper-button-prev,
.swiper-button-next {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(153, 153, 153, 0.2);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.swiper-button-prev::after,
.swiper-button-next::after {
    font-size: 16px;
    color: #000;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    background-color: rgba(132, 146, 166, 0.1333333333);
}

header .swiper-button-next, header .swiper-rtl .swiper-button-prev {
    right: 10px;
    left: auto;
}

header .swiper-button-prev, header .swiper-rtl .swiper-button-next {
    left: 10px;
    right: auto;
}

.arrows-st1 .swiper-button-next, .arrows-st1 .swiper-rtl .swiper-button-prev {
    left: 10px;
    right: auto;
}

.arrows-st1 .swiper-button-prev, .arrows-st1 .swiper-rtl .swiper-button-next {
    right: 10px;
    left: auto;
}

.arrows-st1 .swiper-button-prev::after,
.arrows-st1 .swiper-button-next::after {
    transform: rotate(180deg);
}

/* --------------- numbers --------------- */
.numbers {
    position: relative;
    padding: 30px 0;
    background-color: #F6F6F8;
}

.numbers .item {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 30px;
}

.numbers .item .icon {
    width: 25px;
    height: 25px;
    -o-object-fit: contain;
    object-fit: contain;
    margin-bottom: 5px;
    margin-inline-end: 10px;
    flex-shrink: 0;
}

/* --------------- footer --------------- */
.footer {
    position: relative;
}

.footer .links {
    position: relative;
}

.footer .links a {
    position: relative;
    font-size: 16px;
    margin: 7px 0;
}

.footer .links a:hover {
    color: var(--main-color);
}

.footer .links a i {
    position: relative;
    bottom: 3px;

}

.footer .prog {
    position: relative;
    width: 90px;
    height: 5px;
    border-radius: 5px;
    background-color: rgba(80, 49, 146, 0.1333333333);
    margin: 20px 0;
}

.footer .prog .prog-bar {
    position: absolute;
    right: 0;
    top: 0;
    width: 40%;
    height: 100%;
    background-color: var(--main-color);
    border-radius: 5px;
    z-index: 20;
}

.footer .subscribe-form {
    position: relative;
    margin-top: 30px;
    display: flex;
}

.footer .subscribe-form .form-group {
    position: relative;
    display: flex;
    align-items: center;
}

.footer .subscribe-form .form-group .icon {
    position: absolute;
    right: 15px;
    top: 15px;
}

.footer .subscribe-form .form-group .form-control {
    min-height: 50px;
    border-radius: 8px;
    padding-inline-start: 40px;
}

.footer .subscribe-form .form-group .butn {
    width: 100px;
    font-size: 12px;
}

.footer .social-links {
    position: relative;
}

.footer .social-links a {
    font-size: 20px;
    color: #111;
    margin-inline-start: 20px;
}

.footer .social-links a:hover {
    color: var(--main-color);
}

.footer .contact-footer .item h6 {
    font-size: 20px !important;
}

.footer .contact-footer .item .cont small {
    font-size: 10px;
}

/* --------------- jquery ui --------------- */
.ui-datepicker {
    width: 20em;
    padding: 0.2em 0.2em 0;
    display: none;
    border-radius: 10px !important;
    border: 0 !important;
    box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.0666666667);
}

.ui-datepicker .ui-datepicker-header {
    border-radius: 8px;
    background-color: var(--main-color);
    color: #fff;
}

.ui-state-default, .ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default, .ui-button,
html .ui-button.ui-state-disabled:hover,
html .ui-button.ui-state-disabled:active {
    border: 1px solid rgba(153, 153, 153, 0.2);
    background: #f6f6f6;
    font-weight: normal;
    color: #454545;
    border-radius: 6px;
    width: 35px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.ui-state-active,
.ui-widget-content .ui-state-active,
.ui-widget-header .ui-state-active,
a.ui-button:active, .ui-button:active,
.ui-button.ui-state-active:hover {
    background-color: var(--main-color);
    color: #fff;
}

.ui-state-highlight,
.ui-widget-content .ui-state-highlight,
.ui-widget-header .ui-state-highlight {
    border: 1px solid rgba(37, 176, 168, 0.1333333333);
    background: rgba(37, 176, 168, 0.1333333333);
    color: #25B0A8;
}

.ui-datepicker .ui-datepicker-prev {
    cursor: pointer;
    border-radius: 5px;
    border: 0;
}

.ui-datepicker .ui-datepicker-prev::before {
    position: absolute;
    content: "\f104";
    font-family: "Font Awesome 6 Pro";
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
}

.ui-datepicker .ui-datepicker-prev:hover {
    background-color: var(--sub-color1);
    left: 3px;
    top: 3px;
}

.ui-datepicker .ui-datepicker-next {
    cursor: pointer;
    border-radius: 5px;
    border: 0;
}

.ui-datepicker .ui-datepicker-next::before {
    position: absolute;
    content: "\f105";
    font-family: "Font Awesome 6 Pro";
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
}

.ui-datepicker .ui-datepicker-next:hover {
    background-color: var(--sub-color1);
    left: 3px;
    top: 3px;
}

/* --------------- pages style --------------- */
.inner-search {
    position: relative;
    padding-top: 20px;
}

.inner-search .search-sec {
    position: relative;
    z-index: 30;
}

.inner-search .search-sec .search-box {
    position: relative;
    background-color: #fff;
    color: var(--sub-color1);
    border-radius: 10px;
    overflow: hidden;
    padding: 5px;
    display: flex;
    border: 1px solid rgba(153, 153, 153, 0.2);
}

.inner-search .search-sec .search-box .item {
    position: relative;
    display: inline-flex;
    padding: 13px 15px;
    align-items: center;
    border-inline-end: 1px solid rgba(153, 153, 153, 0.2666666667);
    flex-grow: 1;
}

.inner-search .search-sec .search-box .item:last-of-type {
    border: 0;
}

.inner-search .search-sec .search-box .item.date-from-to {
    width: 30%;
    flex-grow: 0;
}

.inner-search .search-sec .search-box .item.date-from-to .form-group {
    width: 50%;
}

.inner-search .search-sec .search-box .item.date-from-to .form-group:first-of-type {
    text-align: end;
}

.inner-search .search-sec .search-box .item.date-from-to .form-group:first-of-type .form-control {
    text-align: end;
}

.inner-search .search-sec .search-box .item.item-lg {
    width: 30%;
    flex-grow: 0;
}

.inner-search .search-sec .search-box .item .form-group {
    width: 100%;
}

.inner-search .search-sec .search-box .item .form-group .form-select,
.inner-search .search-sec .search-box .item .form-group .form-control {
    border: 0;
    padding: 0;
    line-height: 1.3;
    font-size: 18px;
    box-shadow: none;
    color: var(--sub-color1);
    width: 100%;
}

.inner-search .search-sec .search-box .search-btn {
    position: relative;
    flex-shrink: 0;
    padding: 10px 30px;
    border-radius: 8px;
    background-color: #f5f5f5;
    text-align: center;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 0;
    font-size: 20px;
}

.inner-search .search-sec .search-box .search-btn:hover {
    background-color: var(--sub-color);
}

.filter-sec {
    position: relative;
}

.filter-sec .form-group {
    display: flex;
    align-items: center;
    padding-inline-start: 15px;
    border-radius: 30px;
    background-color: rgba(132, 146, 166, 0.1333333333);
    margin-inline-start: 15px;
}

.filter-sec .form-group .label {
    white-space: nowrap;
}

.filter-sec .form-group .form-select {
    background-color: transparent;
    border: 0;
    border-radius: 30px;
    box-shadow: none;
}

.hall-card {
    position: relative;
    margin-top: 20px;
    border-radius: 10px;
    border: 1px solid rgba(153, 153, 153, 0.2);
    padding: 5px;
}

.hall-card .imgs-slider {
    position: relative;
    border-radius: 10px 10px 0 0;
    overflow: hidden;
}

.hall-card .imgs-slider .img {
    display: block;
    height: 210px;
    overflow: hidden;
}

.hall-card .imgs-slider .img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.hall-card .imgs-slider .swiper-pagination {
    bottom: 15px;
}

.hall-card .imgs-slider .swiper-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: #fff;
    border-radius: 50%;
}

.hall-card .imgs-slider .swiper-button-prev,
.hall-card .imgs-slider .swiper-button-next {
    background-color: rgba(0, 0, 0, 0.5333333333);
    opacity: 0;
    width: 35px;
    height: 35px;
    transition: all 0.3s ease;
}

.hall-card .imgs-slider .swiper-button-prev::after,
.hall-card .imgs-slider .swiper-button-next::after {
    color: #fff;
    font-size: 14px;
}

.hall-card .imgs-slider .swiper-button-prev:hover,
.hall-card .imgs-slider .swiper-button-next:hover {
    background-color: var(--main-color);
}

.hall-card .imgs-slider:hover .swiper-button-prev,
.hall-card .imgs-slider:hover .swiper-button-next {
    opacity: 1;
}

.hall-card .info {
    position: relative;
    padding: 15px 10px;
}

.hall-card .info .title {
    font-size: 21px;
    text-align: center;
    margin-bottom: 10px;
}

.hall-card .info .hall-type {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: rgba(132, 146, 166, 0.0666666667);
    padding: 8px 15px;
    border-radius: 50px;
    margin-top: 15px;
}

.hall-card .info .hall-type .item {
    display: inline-flex;
    align-items: center;
    font-weight: 600;
}

.hall-card .info .hall-type .item {
    width: calc(100% - 85px);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.hall-card .info .hall-type .item .icon {
    width: 18px;
    height: 18px;
    margin-inline-end: 7px;
    margin-top: -6px;
}

.hall-card .info .hall-type .item .txt {
    font-size: 14px;
}

.hall-card .float-icons {
    position: absolute;
    left: 15px;
    top: 15px;
    z-index: 10;
}

.hall-card .float-icons a {
    position: relative;
    margin-inline-end: 5px;
    width: 35px;
    height: 35px;
    background-color: #fff;
    color: var(--main-color);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.hall-card .float-icons a.trash {
    background-color: #9b0d0d;
    color: #fff;
}

.hall-card .float-icons a.edit {
    background-color: var(--sub-color);
    color: #fff;
}

.swiper-notification {
    display: none;
}

/* --------------- pagination --------------- */
.pagination {
    position: relative;
    margin-top: 50px;
    justify-content: center;
    flex-wrap: wrap;
}

.pagination .page-item:first-of-type .page-link, .pagination .page-item:last-of-type .page-link {
    width: -moz-max-content;
    width: max-content;
    border-radius: 0;
    background-color: transparent;
    border: 1px solid transparent;
}

.pagination .disabled.page-item span {
    position: relative;
    top: 7px;
}

.pagination .page-link {
    border: 0;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    font-size: 14px;
    color: #777;
    margin: 0 3px;
    border: 1px solid transparent;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pagination .page-link .txt {
    font-size: 13px;
}

.pagination .page-link:hover, .pagination .page-link.active {
    border: 1px solid rgba(0, 0, 0, 0.1333333333);
    background-color: #F3F1F8;
}

/* --------------- breadcrumb --------------- */
.breadcrumb {
    position: relative;
    padding-top: 15px;
}

.breadcrumb .links a {
    position: relative;
    color: var(--main-color);
    font-weight: 500;
    margin-inline-end: 15px;
    padding-inline-end: 15px;
}

.breadcrumb .links a::after {
    position: absolute;
    content: "\f053";
    font-family: "Font Awesome 6 Pro";
    inset-inline-end: -3px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 11px;
}

.breadcrumb .links a:last-of-type {
    filter: grayscale(1);
    pointer-events: none;
}

.breadcrumb .links a:last-of-type::after {
    display: none;
}

/* --------------- hall-det --------------- */
.hall-det {
    position: relative;
}

.hall-det .title-wrapper {
    position: relative;
}

.hall-det .title-wrapper .head-info {
    position: relative;
    display: flex;
    align-items: center;
}

.hall-det .title-wrapper .head-info .main-info {
    display: inline-flex;
    padding: 8px 10px;
    border-radius: 30px;
    background-color: #f5f5f5;
    flex-wrap: wrap;
}

.hall-det .title-wrapper .head-info .main-info .item {
    display: inline-flex;
    margin: 0 10px;
    align-items: flex-start;
    font-size: 13px;
}

.hall-det .title-wrapper .head-info .main-info .item * {
    font-size: 13px;
}

.hall-det .title-wrapper .head-info .main-info .item .icon {
    width: 15px;
    height: 15px;
    margin-inline-end: 8px;
    flex-shrink: 0;
    margin-top: -3px;
}

.hall-det .title-wrapper .head-info .item {
    display: inline-flex;
    align-items: center;
    margin: 0 10px;
}

.hall-det .title-wrapper .head-info .item * {
    font-size: 13px;
}

.hall-det .title-wrapper .head-info .item .icon {
    width: 15px;
    height: 15px;
    margin-inline-end: 8px;
    flex-shrink: 0;
}

.hall-det .title-wrapper .head-info .link-item {
    display: flex;
    align-items: center;
    color: var(--main-color);
    font-size: 13px;
    font-weight: 600;
    margin-inline-start: 20px;
}

.hall-det .title-wrapper .head-info .link-item .icon {
    position: relative;
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-inline-end: 10px;
    flex-shrink: 0;
    background-color: #F3F1F8;
    border-radius: 50%;
}

.hall-det .text a {
    margin-inline-start: 5px;
}

.hall-det .imgs-grid {
    position: relative;
}

.hall-det .imgs-grid .img {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 10px;
}

.hall-det .imgs-grid .img.lg-img {
    height: 450px;
}

.hall-det .info-tabs {
    position: relative;
}

.hall-det .info-tabs .nav-pills {
    position: relative;
    width: -moz-max-content;
    width: max-content;
    margin: 20px auto;
    background-color: #F3F1F8;
    border-radius: 8px;
    overflow: hidden;
    padding: 5px;
    z-index: 10;
}

.hall-det .info-tabs .nav-pills .nav-item .nav-link {
    position: relative;
    background-color: transparent;
    color: var(--main-color);
    padding: 13px 30px;
    min-width: 150px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
}

.hall-det .info-tabs .nav-pills .nav-item .nav-link .icon {
    margin-inline-end: 10px;
    flex-shrink: 0;
}

options-tab
.hall-det .info-tabs .nav-pills .nav-item .nav-link.active {
    background-color: #fff;
}

.hall-det .info-tabs .tab-content {
    position: relative;
    padding-top: 20px;
}

.hall-det .info-tabs .options-tab .cards .img-card img {
    object-fit: cover;
}

.hall-det .info-tabs .feat-tab .item {
    display: flex;
    align-items: center;
    font-size: 13px;
    font-weight: 600;
    margin-inline-end: 40px;
    margin-top: 20px;
}

.hall-det .info-tabs .feat-tab .item:hover {
    color: var(--main-color);
}

.hall-det .info-tabs .feat-tab .item .icon {
    position: relative;
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-inline-end: 10px;
    flex-shrink: 0;
    background-color: #F3F1F8;
    border-radius: 50%;
    padding: 7px;
}

.hall-det .info-tabs .img-card {
    padding: 10px;
    border-radius: 10px;
    background-color: #f5f5f5;
    transition: all 0.3s linear;
    margin-bottom: 15px;
    height: calc(100% - 15px);
}

.hall-det .info-tabs .img-card:hover {
    background-color: var(--main-color);
}

.hall-det .info-tabs .img-card:hover * {
    color: #fff !important;
}

.hall-det .form-control {
    position: relative;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: #fff;
    border-radius: 50px;
    border: 1px solid rgba(80, 49, 146, 0.0117647059);
    font-size: 12px;
    box-shadow: none;
}

.hall-det .swiper-button-prev, .hall-det .swiper-button-next {
    background-color: #fff;
    margin-top: -40px;
}

.widgets {
    position: relative;
}

.widgets .widget-booking {
    position: relative;
    padding: 30px 20px;
    background-color: rgba(80, 49, 146, 0.0352941176);
    border-radius: 20px;
}

.widgets .widget-payment {
    position: relative;
    padding: 10px;
    border-radius: 20px;
    border: 1px solid rgba(153, 153, 153, 0.2666666667);
}

.widgets .widget-payment .nav-pills-st2 .nav-item {
    width: 50%;
}

.widgets .widget-payment .nav-pills-st2 .nav-item .nav-link {
    font-size: 13px;
    padding: 10px 15px;
}

.widgets .gray-item {
    position: relative;
    padding: 30px 20px;
    background-color: rgba(80, 49, 146, 0.0352941176);
    border-radius: 20px;
}

.widgets .days-booking {
    position: relative;
}

.widgets .days-booking .calender-slider {
    position: relative;
    overflow: hidden;
    min-height: 50px;
}

.widgets .days-booking .calender-slider .swiper-button-prev,
.widgets .days-booking .calender-slider .swiper-button-next {
    width: 35px;
    height: 35px;
    border-color: rgba(153, 153, 153, 0.6);
    top: 0;
    margin: 0;
}

.widgets .days-booking .calender-slider .swiper-button-prev::after,
.widgets .days-booking .calender-slider .swiper-button-next::after {
    font-size: 12px;
}

.widgets .days-booking .month-item {
    position: relative;
    padding-top: 7px;
}

.widgets .days-booking .month-item .dayes-slider .swiper-pagination .swiper-pagination-bullet {
    width: 10px;
}

.widgets .days-booking .month-item .dayes-slider {
    position: relative;
    margin-top: 20px;
    overflow: hidden;
}

.widgets .days-booking .month-item .dayes-slider .day {
    position: relative;
    margin: 0;
    padding: 0;
}

.widgets .days-booking .month-item .dayes-slider .day .form-check-input {
    display: none;
}

.widgets .days-booking .month-item .dayes-slider .day .form-check-label {
    margin: 0;
    padding: 0;
    cursor: pointer;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    background-color: #fff;
    border-radius: 10px;
    border: 1px solid rgba(80, 49, 146, 0.0117647059);
    padding: 5px;
    font-size: 11px;
}

.widgets .days-booking .month-item .dayes-slider .day .form-check-input:checked ~ .form-check-label {
    border-color: var(--main-color);
    color: var(--main-color);
}

.widgets .booking-time {
    position: relative;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.widgets .booking-time .sm-title {
    display: flex;
    align-items: center;
    font-size: 13px;
    text-wrap: nowrap;
    margin-inline-end: 10px;
    flex-shrink: 0;
}

.widgets .booking-time .sm-title .icon {
    position: relative;
    font-size: 16px;
    color: var(--main-color);
    margin-inline-start: 10px;
    cursor: pointer;
}

.widgets .booking-time .inf-popup {
    position: relative;
}

.widgets .booking-time .inf-popup .popup {
    position: absolute;
    padding: 15px;
    background-color: var(--main-color);
    color: #f0f0f0;
    z-index: 10;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    left: 50%;
    transform: translate(-50%, -140%);
    opacity: 0;
    visibility: hidden;
    top: 20%;
    transition: all 0.3s ease;
    width: 300px;
    text-align: center;
    text-wrap: auto;
}

.widgets .booking-time .inf-popup .popup .cls {
    display: none;
}

.widgets .booking-time .inf-popup .popup::after {
    position: absolute;
    content: "";
    left: calc(50% - 14px);
    bottom: -20px;
    width: 20px;
    height: 20px;
    border-top: 10px solid var(--main-color);
    border-right: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 10px solid transparent;
}

.widgets .booking-time .inf-popup .popup .text {
    white-space: nowrap;
}

.widgets .booking-time .inf-popup:hover .popup {
    opacity: 1;
    visibility: visible;
    top: 50%;
}

.widgets .price-list {
    position: relative;
}

.widgets .price-list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #111;
}

.widgets .price-list li.total {
    padding-top: 10px;
    margin-top: 10px;
    border-top: 1px solid rgba(153, 153, 153, 0.2);
}

.widgets .check-list li {
    display: flex;
    align-items: center;
    margin: 10px 0;
}

.widgets .widget-map .map {
    position: relative;
    height: 150px;
    border-radius: 20px;
    overflow: hidden;
}

.widgets .widget-map .map img {
    -o-object-position: left;
    object-position: left;
}

.widgets .widget-map .map .butn {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}

.widgets .form-control[type=time] {
    font-size: 13px;
    padding: 8px 2px 8px 8px;
}

.check-st1 {
    position: relative;
    margin: 0;
    padding: 0;
}

.check-st1 .form-check-input {
    border-radius: 50%;
    box-shadow: none;
    position: absolute;
    right: 30px;
    top: 9px;
}

.check-st1 .form-check-input:checked {
    background-color: var(--main-color);
}

.check-st1 .form-check-label {
    margin: 0;
    padding: 0;
    cursor: pointer;
    padding: 8px 30px 8px 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: #fff;
    border-radius: 50px;
    border: 1px solid rgba(80, 49, 146, 0.0117647059);
    font-size: 14px;
}

.check-st1 .form-check-input:checked ~ .form-check-label {
    border-color: var(--main-color);
    color: var(--main-color);
}

/* --------------- booking --------------- */
.booking {
    position: relative;
}

.booking .cancel_butn:hover {
    color: #f00;
}

.booking .booking-steps {
    position: relative;
    display: flex;
    align-items: center;
    padding-bottom: 30px;
}

.booking .booking-steps .step {
    position: relative;
    display: flex;
    align-items: center;
    font-size: 17px;
    flex-shrink: 0;
}

.booking .booking-steps .step .numb {
    position: relative;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #8492A6;
    font-size: 18px;
    color: #8492A6;
    margin-inline-end: 10px;
    flex-shrink: 0;
}

.booking .booking-steps .step .numb .check {
    display: none;
}

.booking .booking-steps .step.done .numb {
    border-color: #12B76A;
    background-color: #12B76A;
    color: #fff;
}

.booking .booking-steps .step.done .numb .num {
    display: none;
}

.booking .booking-steps .step.done .numb .check {
    display: inline-block;
}

.booking .booking-steps .step.active {
    color: var(--main-color);
}

.booking .booking-steps .step.active .numb {
    border-color: var(--main-color);
}

.booking .booking-steps .line {
    position: relative;
    width: 100%;
    height: 2px;
    background-color: #8492A6;
    margin: 0 30px;
}

.booking .booking-form {
    position: relative;
}

.booking .booking-form .form-item {
    position: relative;
    margin-bottom: 20px;
}

.booking .booking-form .form-item .form-group {
    width: 100%;
    background-color: #f5f5f5;
    border-radius: 10px;
    padding: 15px;
    display: flex;
    align-items: center;
}

.booking .booking-form .form-item .form-group .icon {
    width: 25px;
    height: 25px;
    margin-inline-end: 15px;
    flex-shrink: 0;
}

.booking .booking-form .form-item .form-group small {
    display: block;
    margin: 5px 0;
}

.booking .booking-form .form-item .form-group .form-select,
.booking .booking-form .form-item .form-group .form-control {
    border: 0;
    padding: 0;
    line-height: 1.3;
    font-size: 18px;
    box-shadow: none;
    color: var(--sub-color1);
    width: 100%;
    background-color: transparent;
}

.booking .booking-dayes .day-card {
    position: relative;
    margin-top: 30px;
}

.booking .booking-dayes .day-card .day-head {
    position: relative;
    display: flex;
    align-items: center;
}

.booking .booking-dayes .day-card .day-head .icon {
    width: 30px;
    height: 30px;
    margin-inline-end: 20px;
    flex-shrink: 0;
}

.booking .booking-dayes .day-card .day-cards .add-card {
    position: relative;
    padding: 19px 20px;
    width: 100%;
    border: 1px solid rgba(80, 49, 146, 0.08);
    box-shadow: 0px 0px 32px rgba(132, 146, 166, 0.08);
    border-radius: 12px;
    font-size: 16px;
    font-weight: 500;
    color: var(--main-color);
    text-align: center;
    margin-top: 15px;
}

.booking .booking-dayes .day-card .day-cards .add-card:hover {
    background-color: var(--main-color);
    color: #fff;
}

.booking .booking-dayes .day-card .day-cards .package-card {
    position: relative;
    display: block;
    background-color: rgba(80, 49, 146, 0.0352941176);
    border-radius: 12px;
    font-size: 16px;
    padding: 10px 20px;
    margin-top: 15px;
}

.booking .booking-dayes .day-card .day-cards .package-card .icon {
    width: 40px;
    height: 40px;
    background-color: rgba(153, 153, 153, 0.0666666667);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-inline-end: 10px;
    flex-shrink: 0;
}

.booking .payment-box {
    position: relative;
}

.booking .payment-box .pay-presenter {
    position: relative;
    display: flex;
    width: -moz-max-content;
    width: max-content;
    margin: 20px auto;
    background-color: #F3F1F8;
    border-radius: 8px;
    overflow: hidden;
    padding: 5px;
    z-index: 10;
}

.booking .payment-box .pay-presenter .form-check {
    padding: 0;
    margin: 0;
}

.booking .payment-box .pay-presenter .form-check .form-check-input {
    display: none;
}

.booking .payment-box .pay-presenter .form-check .form-check-label {
    position: relative;
    background-color: transparent;
    color: var(--main-color);
    padding: 15px 30px;
    min-width: 250px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    text-align: center;
    cursor: pointer;
}

.booking .payment-box .pay-presenter .form-check .form-check-input:checked ~ .form-check-label {
    background-color: #fff;
}

.booking .payment-box .pay-way {
    position: relative;
    margin-top: 20px;
}

.booking .payment-box .pay-way .form-check {
    position: relative;
    padding: 0;
    margin: 0;
    margin-top: 15px;
}

.booking .payment-box .pay-way .form-check .form-check-label {
    padding: 20px 50px 20px 10px;
    box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.0196078431);
    border-radius: 10px;
    background-color: #fff;
    border: 1px solid rgba(153, 153, 153, 0.0666666667);
    width: 100%;
    margin: 0;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

.booking .payment-box .pay-way .form-check .form-check-input {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    margin: 0;
}

.booking .payment-box .pay-way .form-check .form-check-input:checked ~ .form-check-label {
    border-color: var(--main-color);
    background-color: #F3F1F8;
}

.booking .widgets .widget-payment .form-check {
    margin: 10px 5px;
}

.booking .widgets .widget-payment .butn {
    width: 100%;
    margin-top: 15px;
}

.form-check-input:checked {
    background-color: var(--main-color);
    border-color: var(--main-color);
}

.package-modal .packages .check-card {
    position: relative;
    margin-bottom: 30px;
    height: calc(100% - 30px);
}

.package-modal .packages .check-card .quantity {
    position: absolute;
    left: 25px;
    bottom: 65px;
    width: calc(100% - 50px);
    background-color: #fff;
}

.package-modal .packages .check-card .quantity input {
    border: 0;
    width: 100%;
}

.package-modal .packages .form-check {
    height: 100%;
}

.package-modal .packages .form-check .form-check-input {
    display: none;
}

.package-modal .packages .form-check .form-check-label {
    width: 100%;
    height: 100%;
    position: relative;
}

.package-modal .packages .form-check .form-check-label .item {
    position: relative;
    background-color: #fff;
    border-radius: 10px;
    padding: 5px;
    cursor: pointer;
    height: 100%;
    padding-bottom: 120px;
}

.package-modal .packages .form-check .form-check-label .item .img {
    height: 120px;
    border-radius: 10px;
    overflow: hidden;
}

.package-modal .packages .form-check .form-check-label .item .info {
    padding: 15px 20px;
}

.package-modal .packages .form-check .form-check-label .item .select-btn {
    border: 1px solid rgba(153, 153, 153, 0.2666666667);
    width: calc(100% - 50px);
    border-radius: 10px;
    padding: 11px 15px;
    text-align: center;
    cursor: pointer;
    margin-top: 70px;
    position: absolute;
    bottom: 20px;
}

.package-modal .packages .form-check .form-check-label .item .select-btn .unselect-txt {
    display: none;
}

.package-modal .packages .form-check .form-check-label .item .select-btn .select-txt {
    display: block;
}

.package-modal .packages .form-check .form-check-input:checked ~ .form-check-label .item {
    background-color: var(--main-color);
}

.package-modal .packages .form-check .form-check-input:checked ~ .form-check-label .item * {
    color: #fff;
}

.package-modal .packages .form-check .form-check-input:checked ~ .form-check-label .item .select-btn {
    background-color: #7C65AD;
    color: #fff;
    position: absolute;
    bottom: 20px;
    /*width: 100%;*/
}

.package-modal .packages .form-check .form-check-input:checked ~ .form-check-label .item .select-btn .unselect-txt {
    display: block;
}

.package-modal .packages .form-check .form-check-input:checked ~ .form-check-label .item .select-btn .select-txt {
    display: none;
}

.modal .modal-content {
    background-color: #f7f7f7;
    border-radius: 20px;
    border: 0;
}

.quantity {
    position: relative;
    border: 1px solid rgba(153, 153, 153, 0.2666666667);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 5px;
    margin-bottom: 15px;
}

.quantity .qt-plus,
.quantity .qt-minus {
    width: 25px;
    height: 25px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    color: #999;
    font-size: 15px;
    vertical-align: middle;
}

.quantity .qt-plus .fa,
.quantity .qt-minus .fa {
    font-weight: 300;
}

.quantity .qt {
    font-size: 18px;
    font-weight: bold;
    color: var(--main-color);
    vertical-align: middle;
    margin-right: 5px;
    margin-left: 5px;
    min-width: 30px;
    text-align: center;
}

/* --------------- about page --------------- */
.about-pg {
    position: relative;
    padding-bottom: 80px;
    background-image: linear-gradient(to top, #F6F6F8, transparent);
}

/* --------------- inner-header --------------- */
.inner-header {
    position: relative;
}

.inner-header .inner-box {
    position: relative;
    padding: 30px 5vw;
    background-image: linear-gradient(to right, rgba(80, 49, 146, 0.2), transparent);
    box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.0666666667);
    border-radius: 15px;
    overflow: hidden;
}

.inner-header .inner-box .links {
    position: relative;
    margin-top: 15px;
}

.inner-header .inner-box .links .lnk {
    position: relative;
    margin-inline-end: 15px;
    padding-inline-end: 20px;
}

.inner-header .inner-box .links .lnk::after {
    position: absolute;
    content: "/";
    left: 0;
    top: 0;
}

.inner-header .inner-box .links .lnk:last-of-type {
    color: var(--main-color);
    margin-inline-end: 0;
    padding-inline-end: 0;
}

.inner-header .inner-box .links .lnk:last-of-type::after {
    display: none;
}

.inner-header .inner-box .inner-pat {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 100%;
    z-index: 1;
    filter: invert(56%) sepia(61%) saturate(484%) hue-rotate(128deg) brightness(91%) contrast(94%);
    opacity: 0.5;
}

/* --------------- contact-pg --------------- */
.contact-pg {
    position: relative;
    padding: 50px 0;
    border-top: 1px solid rgba(153, 153, 153, 0.2);
}

.contact-pg .container {
    position: relative;
}

.contact-pg .contact-info {
    position: relative;
    padding: 3vw;
    background-color: #F6F6F8;
    border-radius: 15px;
    z-index: 20;
    margin-top: 30px;
    height: calc(100% - 30px);
}

.contact-pg .contact-info a:hover {
    color: var(--main-color);
}

.contact-pg .contact-info .item {
    position: relative;
    display: flex;
    margin-top: 30px;
}

.contact-pg .contact-info .item .icon {
    width: 25px;
    height: 25px;
    margin-inline-end: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-pg .contact-info .item .icon img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}

.contact-pg .contact-info .item .icon i {
    font-size: 25px;
    color: var(--sub-color);
}

.contact-pg .contact-info .item h5 {
    font-size: 18px;
}

.contact-pg .contact-info .social-links a {
    position: relative;
    font-size: 18px;
    margin-inline-end: 15px;
}

.contact-pg .contact-info .social-links a:hover {
    color: var(--main-color);
}

.contact-pg .map {
    position: relative;
    margin-top: 30px;
    height: 620px;
    border-radius: 15px;
    overflow: hidden;
    filter: grayscale(0.7);
}

.contact-pg .map iframe {
    margin-bottom: -6px;
}

.contact-pg .form-wrapper {
    position: relative;
    border-radius: 15px;
    padding: 3vw;
    margin-top: 30px;
    border: 1px solid rgba(153, 153, 153, 0.2);
}

.contact-pg .form-wrapper .form-group {
    position: relative;
    margin-top: 20px;
}

.contact-pg .form-wrapper .form-group .form-control {
    min-height: 50px;
    margin-top: 10px;
}

.input-group .form-select {
    max-width: -moz-max-content;
    max-width: max-content;
}

/* --------------- login-pg --------------- */
.login-pg {
    position: relative;
}

.login-pg .login-body {
    position: relative;
}

.login-pg .login-body .form-box {
    position: relative;
    padding: 50px;
    border: 0;
    border-radius: 20px;
    overflow: hidden;
    background-image: linear-gradient(to left, rgba(80, 49, 146, 0.1333333333), transparent);
}

.login-pg .login-body .img {
    position: relative;
    height: 100%;
    border-radius: 20px 0 0 20px;
    overflow: hidden;
}

.login-pg .login-body .img::after {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to left, #fff, transparent);
    z-index: 5;
    pointer-events: none;
}

.login-pg .login-body .img .float-img {
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    width: 50%;
    opacity: 0.7;
}

.login-pg .login-body .form-group {
    position: relative;
}

.login-pg .login-body .form-group .edit-link {
    position: absolute;
    left: 18px;
    bottom: 15px;
    font-size: 12px;
    color: var(--main-color);
    text-decoration: underline;
}

.login-pg .login-body .form-group .edit-link.right-link {
    left: auto;
    right: 18px;
}

.login-pg .form-control {
    min-height: 60px;
}

.avatar-content .img-upload {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.avatar-content .img-upload .img-edit {
    position: static;
    width: 45%;
    text-align: center;
}

.avatar-content .img-upload .img-edit .image-upload {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    opacity: 0;
}

.avatar-content .img-upload .img-edit label {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.avatar-content .img-upload .img-edit label .cont {
    padding: 5px 10px;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.8588235294);
}

.avatar-content .img-upload .img-preview {
    position: relative;
    width: 50%;
    height: 100px;
    padding: 10px;
    border-radius: 15px;
    border: 2px solid #fff;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.0196078431);
    overflow: hidden;
}

.avatar-content .img-upload .img-preview .image-preview {
    width: 100%;
    height: 100%;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.avatar-content .img-upload .img-preview .image-preview {
    background-size: contain;
}

.show_hide_password {
    position: relative;
}

.show_hide_password .show_pass {
    opacity: 0.5;
    font-size: 14px;
    position: absolute;
    left: 15px;
    bottom: 22px;
    cursor: pointer;
    z-index: 10;
}

.phone-group {
    position: relative;
    direction: ltr;
}

.phone-group .input-group-text {
    border-top-left-radius: 8px !important;
    border-bottom-left-radius: 8px !important;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    margin-inline-end: -1px;
}

.phone-group .input-group-text .flag {
    width: 15px;
    margin-inline-end: 5px;
}

.phone-group .form-control {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-top-right-radius: 8px !important;
    border-bottom-right-radius: 8px !important;
}

.phone-group .float-check {
    position: absolute;
    right: 20px;
    top: 15px;
    z-index: 5;
    font-size: 16px;
}

.code-group {
    position: relative;
    display: flex;
    justify-content: center;
    gap: 10px;
    direction: ltr;
}

.code-group .item {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 0;
    background-color: #f5f5f5;
    text-align: center;
    font-size: 20px;
}

.code-group .item.focused {
    background-color: #fff;
    box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.1333333333);
}

.form-control {
    min-height: 60px;
    box-shadow: none !important;
}

.md-input .form-control {
    min-height: 50px;
}

.md-input .show_pass {
    bottom: 18px;
}

/* --------------- profile page --------------- */
.profile-pg {
    position: relative;
    background-image: linear-gradient(to left, #e4dff1, #edebf1);
    padding-inline-start: calc((100vw - 1400px) / 2);
}

.profile-pg .sidemenu {
    position: relative;
    padding: 30px;
    padding-inline-end: 0;
    z-index: 20;
    padding-bottom: 100px;
}

.profile-pg .sidemenu * {
    color: #000;
}

.profile-pg .sidemenu .avatar-wrapper {
    position: relative;
    margin-bottom: 30px;
}

.profile-pg .sidemenu .avatar {
    width: 120px;
    height: 120px;
    border-radius: 15px;
    outline: 1px solid rgba(255, 255, 255, 0.3333333333);
    outline-offset: 5px;
    margin: 5px 20px 5px 5px;
}

.profile-pg .sidemenu .avatar img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 15px;
}

.profile-pg .sidemenu .nav-pills {
    position: relative;
    display: block;
}

.profile-pg .sidemenu .nav-pills .nav-item .nav-link {
    position: relative;
    font-size: 18px;
    font-weight: 500;
    width: 100%;
    padding: 15px;
    border-radius: 0 30px 30px 0;
    text-align: start;
    transition: all 0 inherit;
}

.profile-pg .sidemenu .nav-pills .nav-item .nav-link::after {
    position: absolute;
    content: "";
    left: 0;
    bottom: -30px;
    width: 30px;
    height: 30px;
    background-color: transparent;
    box-shadow: -5px -5px 0 5px #fff;
    border-top-left-radius: 50%;
    opacity: 0;
    transition: all 0 inherit;
}

.profile-pg .sidemenu .nav-pills .nav-item .nav-link::before {
    position: absolute;
    content: "";
    left: 0;
    top: -30px;
    width: 30px;
    height: 30px;
    background-color: transparent;
    box-shadow: -5px 5px 0 5px #fff;
    border-bottom-left-radius: 50%;
    opacity: 0;
    transition: all 0 inherit;
}

.profile-pg .sidemenu .nav-pills .nav-item .nav-link i {
    transition: all 0.3s ease;
}

.profile-pg .sidemenu .nav-pills .nav-item .nav-link.active {
    background-color: #fff;
    color: var(--main-color);
    transition: all 0 inherit;
}

.profile-pg .sidemenu .nav-pills .nav-item .nav-link.active::after, .profile-pg .sidemenu .nav-pills .nav-item .nav-link.active::before {
    opacity: 1;
    transition: all 0 inherit;
}

.profile-pg .sidemenu .nav-pills .nav-item .nav-link.active * {
    color: var(--main-color);
}

.profile-pg .sidemenu .nav-pills .nav-item .nav-link.active i {
    margin-inline-start: 10px;
}

.profile-pg .profile-content {
    position: relative;
    padding: 4vw;
    background-color: #fff;
    border-radius: 30px;
    margin: 30px 0 30px 30px;
    height: calc(100% - 60px);
}

.profile-pg .map {
    position: relative;
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
}

.profile-pg .map iframe {
    margin-bottom: -6px;
}

.profile-pg .add-service {
    position: relative;
}

.profile-pg .add-service .add-btn {
    position: relative;
    width: 100%;
    height: 100px;
    background-color: var(--sub-color);
    color: #fff;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 21px;
    margin-bottom: 30px;
    position: sticky;
    top: 30px;
}

.profile-pg .add-service .add-btn:hover {
    background-color: var(--main-color);
}

.profile-pg .add-service .add-services-content .service-card {
    position: relative;
    padding: 30px 30px 15px;
    background-color: #f8f5fc;
    border-radius: 15px;
    margin-bottom: 30px;
}

.profile-pg .add-service .add-services-content .service-card .cls {
    position: absolute;
    left: -5px;
    top: -5px;
    font-size: 16px;
    z-index: 10;
    cursor: pointer;
    width: 25px;
    height: 25px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #E5E0F1;
    color: #000;
    border-radius: 7px;
}

.profile-pg .pay-presenter {
    position: relative;
    display: flex;
    width: -moz-max-content;
    width: max-content;
    margin: 0 auto 30px;
    background-color: #F3F1F8;
    border-radius: 8px;
    overflow: hidden;
    padding: 5px;
    z-index: 10;
}

.profile-pg .pay-presenter .form-check {
    padding: 0;
    margin: 0;
}

.profile-pg .pay-presenter .form-check .form-check-input {
    display: none;
}

.profile-pg .pay-presenter .form-check .form-check-label {
    position: relative;
    background-color: transparent;
    color: var(--main-color);
    padding: 15px 30px;
    min-width: 250px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    text-align: center;
    cursor: pointer;
}

.profile-pg .pay-presenter .form-check .form-check-input:checked ~ .form-check-label {
    background-color: #fff;
}

.profile-pg .notify-tab {
    position: relative;
}

.profile-pg .notify-tab .item {
    position: relative;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 15px;
    background-color: #f9f9f9;
    display: flex;
}

.profile-pg .notify-tab .item .icon {
    position: relative;
    font-size: 16px;
    margin-inline-end: 15px;
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background-color: #fff;
    border: 1px solid rgba(153, 153, 153, 0.2);
    top: 2px;
}

.profile-pg .notify-tab .item .icon.success {
    background-color: #def1de;
    color: #0eb50e;
    border-color: #0eb50e;
}

.profile-pg .notify-tab .item .icon.success i {
    color: #0eb50e;
}

.profile-pg .notify-tab .item .icon.reject {
    background-color: #f6dcdc;
    color: #9b0d0d !important;
    border-color: #9b0d0d;
}

.profile-pg .notify-tab .item .icon.reject i {
    color: #9b0d0d !important;
}

.profile-pg .notify-tab .item .dateTime {
    position: absolute;
    left: 10px;
    top: 10px;
    display: flex;
    gap: 15px;
}

.profile-pg .notify-tab .item .dateTime * {
    font-size: 9px;
}

.profile-pg .notify-tab .item i {
    color: var(--sub-color);
}

.profile-pg .img-content {
    position: relative;
    background-color: #fff;
    border-radius: 15px;
    height: calc(100% - 24px);
}

.profile-pg .booking-tab .nav-pills-st2 {
    width: 100%;
}

.profile-pg .booking-tab .nav-pills-st2 .nav-item {
    flex-grow: 1;
}

.profile-pg .booking-tab .nav-pills-st2 .nav-item .nav-link {
    font-size: 14px;
}

.profile-pg .booking-tab .booking-card {
    position: relative;
    margin-top: 15px;
    border-radius: 10px;
    border: 1px solid rgba(153, 153, 153, 0.2);
    padding: 5px;
}

.profile-pg .booking-tab .booking-card .imgs-slider {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 100%;
}

.profile-pg .booking-tab .booking-card .imgs-slider .img {
    height: 100%;
    overflow: hidden;
}

.profile-pg .booking-tab .booking-card .imgs-slider .img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.profile-pg .booking-tab .booking-card .info {
    position: relative;
    padding: 15px 10px;
}

.profile-pg .booking-tab .booking-card .info .title {
    font-size: 18px;
}

.profile-pg .booking-tab .booking-card .info .hall-type {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: rgba(132, 146, 166, 0.0666666667);
    padding: 8px 15px;
    border-radius: 50px;
    margin-top: 15px;
}

.profile-pg .booking-tab .booking-card .info .hall-type .item {
    display: inline-flex;
    align-items: center;
    font-weight: 600;
}

.profile-pg .booking-tab .booking-card .info .hall-type .item .icon {
    width: 15px;
    height: 15px;
    margin-inline-end: 7px;
    margin-top: -6px;
}

.profile-pg .booking-tab .booking-card .info .hall-type .item .txt {
    font-size: 12px;
}

.profile-pg .booking-tab .booking-card .info .avatar-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 15px;
}

.profile-pg .booking-tab .booking-card .info .avatar-wrapper .avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid rgba(153, 153, 153, 0.2);
    margin-inline-end: 10px;
    flex-shrink: 0;
    overflow: hidden;
}

.profile-pg .booking-tab .booking-card .info .avatar-wrapper .name {
    font-weight: bold;
    font-size: 15px;
}

.profile-pg .booking-tab .booking-card .float-tag {
    position: absolute;
    right: 15px;
    top: 15px;
    z-index: 10;
    background-color: #fff;
    color: var(--main-color);
    border-radius: 6px;
    padding: 3px 15px;
    font-size: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.profile-pg .booking-tab .booking-card.canceled {
    border-color: rgba(155, 13, 13, 0.2666666667);
}

.profile-pg .booking-tab .booking-card.canceled .float-tag {
    background-color: #9b0d0d;
    color: #fff;
}

.profile-pg .booking-tab .booking-card.confirmed {
    border-color: rgba(13, 160, 13, 0.2666666667);
}

.profile-pg .booking-tab .booking-card.confirmed .float-tag {
    background-color: #0da00d;
    color: #fff;
}

.profile-pg .booking-tab .booking-card.unconfirmed {
    border-color: rgba(9, 9, 120, 0.2666666667);
}

.profile-pg .booking-tab .booking-card.unconfirmed .float-tag {
    background-color: #090978;
    color: #fff;
}

.profile-pg .booking-tab .booking-card.waiting {
    border-color: rgba(239, 175, 58, 0.2666666667);
}

.profile-pg .booking-tab .booking-card.waiting .float-tag {
    background-color: #efaf3a;
    color: #fff;
}

.profile-pg .booking-tab .booking-card.done {
    border-color: rgba(153, 153, 153, 0.2);
}

.profile-pg .booking-tab .booking-card.done .float-tag {
    background-color: #fff;
    color: var(--main-color);
}

.profile-pg .booking-tab .booking-card.daily {
    border-color: var(--sub-color);
}

.profile-pg .booking-tab .booking-card.daily .float-tag {
    background-color: var(--sub-color);
    color: #fff;
}

.profile-pg .search-filter {
    position: relative;
    z-index: 20;
}

.img-content {
    position: relative;
    height: 150px;
}

.img-content .img-upload {
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
}

.img-content .img-upload .img-edit {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: var(--mainColor);
    font-weight: 500;
    cursor: pointer;
}

.img-content .img-upload .img-edit .image-upload {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    opacity: 0;
}

.img-content .img-upload .img-edit label {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.img-content .img-upload .img-edit label .cont {
    padding: 5px 10px;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.8588235294);
}

.img-content .img-upload .img-preview {
    width: 100%;
    height: 100%;
    position: relative;
    border-radius: 15px;
    border: 2px solid #fff;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.0196078431);
    overflow: hidden;
}

.img-content .img-upload .img-preview > div {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.up_group {
    position: relative;
}

.up_group .input-group-append {
    position: absolute;
    right: 6px;
    bottom: 5px;
    width: 150px;
    font-size: 12px;
    min-height: calc(100% - 10px);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--main-color);
    color: #fff;
    pointer-events: none;
    padding: 10px;
    border-radius: 6px !important;
    z-index: 10;
}

.up_group .file {
    position: absolute;
    opacity: 0;
    right: 2px;
    bottom: 2px;
    width: 150px;
    min-height: 50px;
    z-index: 20;
    cursor: pointer;
    border-radius: 30px;
}

.up_group .input_ques {
    border-radius: 6px !important;
    background-color: #fff;
    padding-right: 170px !important;
}

.up_group .input_ques::-moz-placeholder {
    color: rgba(153, 153, 153, 0.6);
}

.up_group .input_ques::placeholder {
    color: rgba(153, 153, 153, 0.6);
}

/* --------------- nav-pills-st1 --------------- */
.nav-pills-st1 {
    position: relative;
    width: -moz-max-content;
    width: max-content;
    margin: 0 auto;
    background-color: #f0f0f0;
    border-radius: 50px;
}

.nav-pills-st1 .nav-item .nav-link {
    font-size: 16px;
    color: #000;
    border-radius: 30px;
    padding: 15px 30px;
}

.nav-pills-st1 .nav-item .nav-link.active {
    background-color: var(--main-color);
    color: #fff;
}

/* --------------- nav-pills-st2 --------------- */
/* --------------- nav-pills-st2 --------------- */
.nav-pills-st2 {
    position: relative;
    display: flex;
    width: -moz-max-content;
    width: max-content;
    margin: 20px auto;
    background-color: rgba(80, 49, 146, 0.0666666667);
    border-radius: 8px;
    overflow: hidden;
    padding: 5px;
    z-index: 10;
    gap: 5px
}

.nav-pills-st2 .nav-item {
    position: relative;
    flex-grow: 1;
}

.nav-pills-st2 .nav-item .nav-link {
    position: relative;
    background-color: transparent;
    color: var(--main-color);
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    text-align: center;
    cursor: pointer;
    width: 100%;
}

.nav-pills-st2 .nav-item .nav-link:hover,
.nav-pills-st2 .nav-item .nav-link.active {
    background-color: var(--main-color);
    color: #fff;
}

.nav-pills-st2 .nav-item .nav-link:hover .icon,
.nav-pills-st2 .nav-item .nav-link.active .icon {
    filter: brightness(1000%);
}

.upload-content-item .butn {
    position: relative;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 140px;
    border-radius: 15px;
    margin-top: 8px;
    width: 100%;
}

.upload-content-item .butn input {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 20;
    opacity: 0;
    cursor: pointer;
}

.upload-content-item .uploaded-imgs .img-thumbnail {
    width: 100px;
    height: 120px;
    -o-object-fit: cover;
    object-fit: cover;
    flex-grow: 1;
    /* border: 0; */
    border-radius: 10px;
    padding: 0;
}

.upload-content-item .uploaded-imgs .hidden-count {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 120px;
    color: #fff;
    font-size: 1.2em;
    border-radius: 10px;
    text-align: center;
    position: relative;
    background-color: rgb(0, 0, 0);
}

.upload-content-item .uploaded-imgs {
    position: relative;
    min-height: 140px;
    border: 1px solid rgba(153, 153, 153, 0.2);
    border-radius: 15px;
    margin-top: 10px;
}

/* --------------- bill table --------------- */
.bill_table {
    border: 3px solid #F3F1F8 !important;
    border-radius: 20px;
    overflow: hidden;
    background-color: #F3F1F8;
}

/*.bill_table .day-row th,*/
/*.bill_table .day-row td {*/
/*  padding-top: 50px;*/
/*}*/
.bill_table thead th {
    background-color: var(--main-color);
    color: #fff;
}

.bill_table td, .bill_table th {
    text-align: center;
    vertical-align: middle;
    border-color: rgba(204, 204, 204, 0.5882352941) !important;
    padding: 15px;
}

.bill_table th {
    background-color: #F3F1F8;
    color: var(--main-color);
    font-size: 13px;
}

.bill_table th span {
    display: block;
}

/* --------------- print-content --------------- */
#print-content {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    /*background-image: url("../images/bill-back.png");*/
    display: none;
}

@media print {
    .navbars, main, footer, .progress-wrap {
        display: none;
    }

    #print-content {
        display: block !important;
    }
}


/***************************** Start Edit reservation_det Page *****************************/
.reservation_det {
    padding: 70px 0;
    background-color: #f9f9f9;
}


.reservation_det .hall-img {
    width: 100%;
    height: 350px;
    border-radius: 15px 15px 0 0;
    -o-object-fit: cover;
    object-fit: cover;

}

.reservation_det .swiper-slide .hall-img {
    opacity: 0;
}

.reservation_det .swiper-slide-active .hall-img {
    opacity: 1;
}

.reservation_det .reservation_item {
    padding: 35px 25px;
    border-radius: 0 0 15px 15px;
}

.reservation_det .reservation_item .content .data {
    margin-bottom: 10px;
}

.reservation_det .reservation_item .content .data i {
    margin-inline-end: 7px;
}


.reservation_det .reservation_item .prof-info {
    background-color: #25B0A810;
    padding: 20px 15px;
    border: transparent;
    border-radius: 15px;
    min-height: 170px;
    display: block;
    margin-top: 15px;
    min-height: 195px;
    width: 100%;
}

.reservation_det .reservation_item .prof-info .text-danger {
    font-weight: bolder;
}

.reservation_det .reservation_item .prof-info .prof_img {
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
}

.reservation_det .reservation_item .prof-info .user_icon {
    -o-object-fit: contain;
    object-fit: contain;
    border-radius: 0;
    padding: 5px;
}

.reservation_det .reservation_item .prof-info .text {
    margin: 0 15px;
    /*text-align: start;*/
}

.reservation_det .reservation_item .prof-info .text .title {
    font-size: 12px;
}

.reservation_det .reservation_item .prof-info .text .name {
    margin: 0;
    line-height: unset;
    font-weight: bold;
}

.reservation_det .left-data {
    display: -ms-grid;
    display: grid;
    padding: 10px 0;
}

.reservation_det .left-data .badge {
    margin-right: auto;
    margin-left: unset;
}

/*.reservation_det .left-data .price {*/
/*  display: block;*/
/*  text-align: start;*/
/*  padding: 0 15px;*/
/*}*/

.reservation_det .left-data .price {
    display: block;
    text-align: center;
    padding: 0 15px;
    position: absolute;
    top: -45px;
    left: 50%;
    transform: translateX(-50%);
    padding: 25px 30px;
    margin: 0 !important;
    z-index: 10;
    border-radius: 50px;
    min-width: 35%;
    background: #f3f3f3;
}

.reservation_det .added_tax {
    text-align: end;
    font-size: 9px;
    font-weight: bold;
    color: #666;
}

.reservation_det .headline .icon {
    width: 25px;
    height: 25px;
    -o-object-fit: contain;
    object-fit: contain;
    margin: 0 5px;
}

.reservation_det .headline b {
    color: #312482;
}

.reservation_det .map-box iframe {
    border-radius: 25px;
}

.reservation_det .hall_contacts .labeled {
    margin-bottom: 10px;
    font-size: 11px;
    font-weight: bold;
    margin-top: 0 !important;
}

.reservation_det .hall_contacts .labeled .icon {
    width: 20px;
    height: 20px;
    -o-object-fit: contain;
    object-fit: contain;
    margin: 0 5px;
}

.reservation_det .hall_contacts .data {
    padding: 0 35px;
    color: #312482;
    padding-inline-start: 10px;
    padding-inline-end: 0;
    font-size: 12px;
}

.reservation_det .reserv_features {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
}

.reservation_det .reserv_features .item {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 5px;
}

.reservation_det .reserv_features .item .icon {
    background-color: #F5F6FA;
    border-radius: 5px;
    padding: 15px 20px;
}

.reservation_det .reserv_features .item .icon img {
    width: 25px;
    height: 25px;
    -o-object-fit: contain;
    object-fit: contain;
}

.reservation_det .reserv_features .item span {
    display: block;
    text-align: center;
    font-size: 14px;
}

.reservation_det .remaining_invitations {
    padding: 0 15px;
    color: #888;
    font-weight: bold;
}

.reservation_det .remaining_invitations b {
    color: #25B0A8;
}

.reservation_det .form-group {
    position: relative;
}

.reservation_det .form-group .form-control {
    height: 60px;
    border-radius: 10px;
}

.reservation_det .form-group .submit-btn {
    position: absolute;
    top: 5px;
    left: 5px;
    width: 100px;
    height: 50px;
    background-color: #312482;
    border: 1px solid #312482;
    color: #fff;
    border-radius: 10px;
}

.reservation_det .inviting-nav {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}

.reservation_det .inviting-nav .nav-link {
    color: #ccc;
    font-weight: 500;
    border: transparent;
    border-bottom: 1px solid #ddd;
    margin-bottom: 10px;
}

.reservation_det .inviting-nav .nav-link.active {
    color: #312482;
    border-bottom: 1px solid #312482;
}

.reservation_det .mails-box {
    padding: 1.25rem;
}

.reservation_det .mails-box .title_t {
    font-weight: bold;
    color: #666;
}

.reservation_det .mails-box .content {
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 10px;
}

.reservation_det .mails-box .content .item {
    padding: 15px 10px;
    background-color: #f5f5f5;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    width: 100%;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 10px;
    border-radius: 10px;
}

.reservation_det .mails-box .content .item:last-of-type {
    margin-bottom: 0;
}

.reservation_det .mails-box .content .item:nth-last-of-type() {
    margin-bottom: 0;
}

.reservation_det .mails-box .content .item button {
    background-color: transparent;
    border: transparent;
    padding: 0;
}

.reservation_det .mails-box .content .item button .icon {
    width: 20px;
    height: 20px;
    -o-object-fit: contain;
    object-fit: contain;
    margin: 0 5px;
}

.reservation_det .note {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
}

.reservation_det .note .saudi_logo {
    width: 250px;
    /*height: 65px;*/
    border-radius: 5px;
    margin: 0 10px;
    -o-object-fit: contain;
    object-fit: contain;
}

.reservation_det .note .text {
    line-height: 65px;
}

.reservation_det .select-services .select_card {
    position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.reservation_det .select-services .select_card .card-input {
    position: absolute;
    opacity: 0;
    visibility: hidden;
}

.reservation_det .select-services .select_card .label {
    background-color: #eee;
    padding: .8rem 2rem;
    border-radius: 25px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    color: #312482;
}

.reservation_det .select-services .select_card .card-input:checked ~ .label {
    background-color: #312482;
    color: #fff;
}


.reservation_det .hall_contacts .data {
    margin: 0 !important;
}

.reservation_det .hall_contacts .labeled .icon {
    width: 20px;
    height: 20px;
    -o-object-fit: contain;
    object-fit: contain;
    margin: 0 5px;
    padding: 3px;
    background-color: #fff;
    border-radius: 50%;
}

.reservation_det .reservation_item .col-md-6 {
    position: static;
}

.reservation_det .inviting-nav .nav-tabs {
    border: 0;
}

.reservation_det .inviting-nav .nav-link {
    border: 0;
    border-radius: 12px;
    padding: 15px 30px;
    border: 1px solid #9995;
    margin-inline-end: 15px;
    font-size: 13px;
    color: #000;
}

.reservation_det .inviting-nav .nav-link.active {
    color: #fff;
    border-bottom: 0;
    background: #312482;
}

.reservation_det .reservation_item {
    background-color: #fff;
    border: 0;
}

.invit-radios .inFlex {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.invit-radios .inFlex .invit-img {
    width: 120px;
    height: 180px;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 5px;
}

.invit-radios .custom-control-input:checked ~ .custom-control-label::before {
    border-color: #19958e;
    background-color: #19958e;
}


/*------------- new style -------------*/

.invitations_radios .custom-radio .custom-control-label::before,
.invitations_radios .custom-radio .custom-control-label::after {
    display: none;
}

.invitations_radios .custom-control-input {
    position: absolute;
    opacity: 0;
}

.invitations_radios .custom-control-label {
    border: 5px solid transparent;
    border-radius: 10px;
    padding: 5px;
}

.invitations_radios .custom-control-label img {
    border-radius: 10px;
}

.invitations_radios .custom-control-input:checked ~ .custom-control-label {
    border: 5px solid #25B0A8;
    /*box-shadow: 0 0 20px #0002;*/
}


.invit-radios.invitations_radios .custom-radio {
    padding-right: 0;
}


.hall_contacts {
    background-color: #25B0A810;
    padding: 20px;
    border-radius: 15px;
    margin-top: 15px;
}

.hall_contacts .item {
    background: #fff;
    padding: 15px 5px;
    border-radius: 10px;
    height: 100%;
}


.halls {
    overflow: hidden;
}

/* --------------- swiper arrows --------------- */
/* --------------- swiper arrows --------------- */
/* ======== */
@media (min-width: 991px) and (max-width: 1200px) {

    .check-st1 .form-check-label {
        padding: 5px;
        font-size: 11px !important;
    }

    /*.check-st1 .form-check-input {*/
    /*    opacity: 0;*/
    /*}*/
    .check-st1 .widgets .form-control[type=time] {
        padding: 5px;
        font-size: 8px;
        background: transparent;
    }

    .widgets .form-control[type=time] {
        font-size: 8px;
        padding: 8px 2px 8px 8px;
        background: transparent;
    }

    .hall-det {
        overflow: hidden;
    }

    .login-pg .butn.sub-butn {
        font-size: 17px !important;
        padding: 12px 10px;
        min-width: 150px;
    }


}

@media (max-width: 1300px) {

    .login-pg .butn.sub-butn {
        font-size: 17px !important;
        padding: 12px 10px;
    }

    .profile-pg {
        overflow: hidden;
    }

}

@media screen and (max-width: 991px) {
    .navbars {
        position: relative;
        background-color: var(--main-color);
    }

    .navbars .top-navbar {
        padding: 15px 0 0;
    }

    .navbars .top-navbar .nav-side {
        justify-content: center;
        margin-bottom: 15px;
    }

    .navbars .top-navbar .nav-side .item {
        font-size: 11px;
        white-space: nowrap;
    }

    .navbars .top-navbar .nav-side .fsz-16 {
        font-size: 11px !important;
    }

    .navbars .top-navbar .nav-side .social-icons a {
        font-size: 11px;
    }

    .navbars .navbar {
        border-top: 1px solid rgba(255, 255, 255, 0.2);
    }

    .navbars .navbar .navbar-brand {
        height: 60px;
    }

    header .slider-card {
        height: 345px;
    }

    header .slider-card .info {
        padding: 80px 0;
    }

    header .slider-card .info .title {
        font-size: 30px;
        margin-bottom: 20px !important;
    }

    header .search-sec {
        position: relative;
        bottom: 0;
    }

    header .search-sec .search-box {
        margin-top: 0;
        flex-wrap: wrap;
        justify-content: space-between;
        padding: 0;
        gap: 10px;
    }

    header .search-sec .search-box .item {
        width: calc(50% - 10px) !important;
        background-color: #f7f7f7;
        border-radius: 10px;
        border: 0;
    }

    header .search-sec .search-box .item .form-control {
        background-color: transparent;
    }

    header .search-sec .search-box .item.date-from-to, header .search-sec .search-box .item.item-lg {
        width: 100% !important;
    }

    header .search-sec .search-box .search-btn {
        width: 100%;
        flex-direction: row;
        gap: 10px;
        margin-top: 20px;
    }

    .fsz-20 {
        font-size: 16px !important;
    }

    .why-us {
        overflow: hidden;
    }

    .why-us .cards .item {
        margin-top: 50px;
    }

    .fsz-60 {
        font-size: 35px !important;
    }

    .fsz-40 {
        font-size: 28px !important;
    }

    .join {
        overflow: hidden;
    }

    .join .img {
        margin-bottom: 30px;
    }

    .footer {
        overflow: hidden;
    }

    .footer .foot-logo {
        margin-bottom: 30px;
    }

    .footer .subscribe {
        margin-top: 30px;
    }

    .booking .booking-steps {
        flex-wrap: wrap;
    }

    .booking .booking-steps .line {
        display: none;
    }

    .booking .booking-steps .step {
        width: 50%;
        margin: 15px 0;
    }

    .butn {
        padding: 12px 20px;
    }

    .widgets {
        margin-top: 30px;
    }

    .booking .payment-box .pay-presenter .form-check .form-check-label {
        min-width: inherit;
    }

    .hall-det .title-wrapper .head-info {
        flex-wrap: wrap;
        gap: 10px;
        margin-top: 10px;
    }

    .hall-det .info-tabs .nav-pills {
        width: 100%;
        flex-wrap: wrap;
    }

    .hall-det .info-tabs .nav-pills .nav-item {
        width: 100%;
    }

    .hall-det .info-tabs .nav-pills .nav-item .nav-link {
        width: 100%;
        min-width: inherit;
    }

    .nav-pills-st2 .nav-item .nav-link {
        min-width: -moz-max-content;
        min-width: max-content;
        max-width: 100%;
    }

    .inner-search .search-sec .search-box {
        flex-wrap: wrap;
    }

    .inner-search .search-sec .search-box .item.item-lg,
    .inner-search .search-sec .search-box .item,
    .inner-search .search-sec .search-box .item.date-from-to {
        width: 100%;
        flex-grow: 1;
    }

    .inner-search .search-sec .search-box .item {
        border-inline-end: 0;
        border-bottom: 1px solid #9993;
    }

    .inner-search .search-sec .search-box .search-btn {
        padding: 15px 30px;
        width: 100%;
    }

    .hall-det {
        overflow: hidden;
    }

    .profile-pg .profile-content {
        margin: 15px !important;
    }

    .profile-pg .sidemenu {
        padding-inline-end: 30px;
        padding-bottom: 30px;
    }

    .profile-pg .sidemenu .nav-pills .nav-item .nav-link {
        border-radius: 30px;
    }

    .profile-pg .sidemenu .nav-pills .nav-item .nav-link::before,
    .profile-pg .sidemenu .nav-pills .nav-item .nav-link::after {
        display: none;
    }

    .nav-pills-st2 .nav-item .nav-link {
        padding: 12px 10px;
        font-size: 11px;
    }

    .profile-pg .notify-tab .item {
        padding-top: 40px;
    }

    .login-pg .login-body {
        margin-top: 15px;
    }

    .swiper-pagination .swiper-pagination-bullet {
        width: 20px;
    }

    .widgets .days-booking .month-item .dayes-slider .swiper-pagination .swiper-pagination-bullet {
        width: 4px;
    }

    .contact-pg .map {
        height: 300px;
    }

    .numbers .item .cont .fsz-30 {
        font-size: 20px !important;
    }

    .numbers .item .icon {
        width: 20px;
        height: 20px;
    }


    .pagination .page-link .txt {
        display: none;
    }

    .pagination .page-link {
        width: 23px;
        height: 23px;
    }

    .pagination .disabled.page-item span {
        position: relative;
        top: 2px;
    }

    .login-pg .login-body .form-box {
        padding: 30px 20px;
    }

}

/* ======= */
html[dir=ltr] {
    @import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");
}

html[dir=ltr] body {
    direction: ltr;
    font-family: "Poppins", sans-serif;
}

/*# sourceMappingURL=style.css.map */


/*------------- 16 / 3 / 2025 -------------*/
.en-block {
    display: none;
}

.scroll-top-btn {
    display: none;
}


/*------------- 28 / 5 / 2025 -------------*/
#print-content {
    /*height: 100%;*/
    /*background-color: #f0f0f0;*/
}

#print-content .payment-pill .float-logo {
    position: absolute;
    content: "";
    left: 15%;
    top: 45%;
    width: 70%;
    /*height: 70%;*/
    opacity: 0.1;
    /*display: none;*/
}

#print-content .payment-pill .bill_table {
    background-color: transparent;
}

#print-content .payment-pill .bill_table th,
#print-content .payment-pill .bill_table td {
    background-color: transparent;
    color: #000;
}

#print-content .payment-pill .bill_table thead th {
    background-color: var(--main-color);
    color: #fff;
}


/*------------- 29 / 5 / 2025 -------------*/
.up_group {
    position: relative;
    /*padding: 30px;*/
    /*background-color: #f7f7f7;*/
    /*border-radius: 20px;*/
    /*margin-top: 20px;*/
}

.up_group .input-group-append {
    position: absolute;
    right: 6px;
    bottom: 5px;
    width: 150px;
    font-size: 12px;
    min-height: calc(100% - 10px);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--main-color);
    color: #fff;
    pointer-events: none;
    padding: 10px;
    border-radius: 30px !important;
}

.up_group .file {
    position: absolute;
    opacity: 0;
    right: 2px;
    bottom: 2px;
    width: 150px;
    min-height: 50px;
    z-index: 20;
    cursor: pointer;
    border-radius: 30px;
}

.up_group .input_ques {
    min-height: 50px;
    width: 100% !important;
    display: block !important;
    border-radius: 30px !important;
    border: 1px solid rgba(153, 153, 153, 0.1333333333);
    padding: 8px 20px;
    font-size: 13px;
    background-color: #fff;
    padding-right: 170px !important;
}

.up_group .input_ques::-moz-placeholder {
    color: rgba(153, 153, 153, 0.6);
}

.up_group .input_ques::placeholder {
    color: rgba(153, 153, 153, 0.6);
}

/*.up_group input {*/
/*    position: relative;*/
/*    min-height: 50px;*/
/*    border: 1px solid #9993;*/
/*    width: 100%;*/
/*}*/


.modal-dialog.login-pg .modal-header {
    border-bottom: 0px;
}

.modal-dialog.login-pg {
    max-width: 1200px;
}

.modal-dialog.login-pg .btn-close {
    width: 30px;
    height: 30px;
    border-radius: 100%;
    background-color: #d5d4d4;
    color: #FFF;
}

@media screen and (max-width: 640px) {
    .modal-dialog.login-pg {
        max-width: 400px;
    }
}

footer .vat-cert-image {
    height: 40px;
    width: 40px;
    object-fit: contain;
}

/*Google Maps Street View Pegman Container*/
.gm-svpc div img {
    position: relative !important;
}


.mail_meet .cont {
    position: relative;
    padding: 20px;
    border-radius: 15px;
    border: 1px solid #9995;
}

.mail_meet .cont .logo {
    height: 70px;
}


.mail_meet .cont .top_inf {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 20px;
    border-radius: 15px;
    background-color: #fff;
    margin: 30px 0;
}

.mail_meet .cont ul {
    display: flex;
    flex-wrap: wrap;
}

.mail_meet .cont ul li {
    position: relative;
    width: 31%;
    margin: 15px 0;
    padding: 15px;
    border-radius: 10px;
    margin: 1%;
    background-color: #fff;
}

.mail_meet .cont ul li .img {
    height: 80px;
}

.mail_meet .cont ul li .icon {
    height: 50px;
}



