p {
    margin-bottom: 0;
}

.flex-1 {
    flex: 1;
}

.color-primary {
    color: var(--primary-color);
}

.color-secondary {
    color: var(--secondary-color);
}

.two_line{
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.hover-color-primary:hover{
    color: var(--primary-color);
}

.hover-color-secondary:hover{
    color: var(--secondary-color);
}

.topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/**slide**/
.owl-nav button {
    height: 39px;
    width: 39px;
    display: flex;
    align-items: center;
    justify-content: center;
    outline: none;
    box-shadow: 0 3px 15px 0 #0A0A0A1F;
    z-index: 100;
    transition-property: background-color;
    transition-duration: 0.35s;
    cursor: pointer;
    -webkit-transition: .3s;
    transition: .3s;
    top: 50% !important;
    transform: translateY(-50%) !important;
    border-radius: 50% !important;
    color: var(--dark-color) !important;
    margin: 0;
    background: #fff !important;
    position: absolute !important;
}

.owl-nav button.owl-next {
    right: -19.5px !important;
}

.owl-nav button.owl-prev {
    left: -19.5px !important;
}

.owl-nav button:not(.disabled) {
    background: var(--primary-color) !important;
    color: var(--bg3) !important;
}

.owl-dots {
    display: none;
}

/*end slider*/

.hotline,.inner-menu li a{
    color: #ffff;
    display: inline-flex;
    font-size: 14px;
}

span.vnd img{
    height: 22px;
    margin-right: 5px;
    border-radius: 2px;
}

.inner-menu li {
    padding-right: 10px;
    position: relative;
}

.inner-menu li:after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 1px;
    height: 16px;
    background: var(--bg3);
    transform: translate(0%, -50%);
}

.inner-menu li:first-child::after {
    /*background: unset !important;*/
}

.topbar_menu ul, .main-menu ul, .search-tag ul {
    display: flex;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
}

a.logo img {
    width: 100px;
}

.topbar {
    background: var(--primary-gradient);
    padding: 5px 0
}

.hotline , .count-order-notification{
    padding: 3px;
    background: linear-gradient(to right, #F5340C 10%, #D00000 50%);
    border-radius: 30px;
    border: 1px solid #E7D9AD;
    font-size:16px;
}

.hotline .img_hotline{
    background: var(--bg3);
    border-radius: 50%;
    padding: 4px;
    height: 24px;
    width: 24px;
    display: flex;
    justify-content: center;
    animation: oscillate-rotation 1s ease-in-out infinite;
    transition: all 0.5s;
}

.hotline > strong {
    padding: 0 5px;
}

.hotline:hover {
    color: var(--bg3);
}

@keyframes oscillate-rotation {
    0% {
        transform: rotate(0deg) scale(1) skew(0deg);
    }
    10% {
        transform: rotate(-25deg) scale(1) skew(0deg);
    }
    20% {
        transform: rotate(25deg) scale(1) skew(0deg);
    }
    30% {
        transform: rotate(-25deg) scale(1) skew(0deg);
    }
    40% {
        transform: rotate(25deg) scale(1) skew(0deg);
    }
    50% {
        transform: rotate(0deg) scale(1) skew(0deg);
    }
    100% {
        transform: rotate(0deg) scale(1) skew(0deg);
    }
}

.topbar .row .topbar_flex{
    display: flex;
    align-items: center;
    height: 100%;
}

.header-content{
    background: #fff;
    position: relative;
    z-index: 999;
    border-bottom: 1px solid #EAEEF3;
    box-shadow: 0px 4px 25px 0px #0000000D;
}

.header-content.is-fixed{
    position: fixed;
    top: 0;
    left: 0;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    animation: slideDown 0.35s ease;
    width: 100%;
}

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

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

.header-content .content .topbar-items:after{
    content: "";
    position: absolute;
    top: 50%;
    left: 10px;
    width: 1px;
    height: 65%;
    background: #EBE8D7;
    transform: translate(0%, -50%);
}

.header-content .content .header .topbar-items {
    position: relative;
}

.header-menu ul.main-menu  {
    display: inline-flex;
    padding: 8px;
    gap: 10px;
    margin: 0;
}

.header-content .content .header .header-menu ul li a,
.header-content .content .user_profile .img {
    height: 40px;
    padding: 0 15px;
    border: 1px solid var(--primary-color);
    background: #E7D9AD;
    border-radius: 20px;
    color: var(--secondary-color);
    font-weight: 400;
    text-decoration: none;
    font-size: 16px;
    text-transform: unset;
    display: flex;
    justify-items: center;
    align-items: center;
}

.header-content .content .user_profile .img{
    padding: 0 10px !important;
}

.header-content .content .header .header-menu ul li a svg, .menu-mobile ul li a svg{
    margin-right: 5px;
}

.header-content .content .header .header-menu ul li a svg [fill], .menu-mobile ul li a svg [fill] {
    fill: var(--secondary-color);
}

.header-content .content .header .header-menu ul li a svg [stroke], .menu-mobile ul li a svg [stroke] {
    stroke: var(--secondary-color);
}

.header-content .content .header .header-menu ul li a:hover svg [fill] {
    fill: var(--bg3);
}

.header-content .content .header .header-menu ul li a:hover svg [stroke] {
    stroke: var(--bg3);
}

.header-content .content .header .header-menu ul li a:hover {
    background: var(--primary-color);
    border-radius: 99px;
    color: #fff;
    /*border: 1px solid #fff;*/
}

.topbar-items > li > a{
    color: var(--primary-color);
    font-size: 15px;
    display: flex !important;
    align-items: center;
    gap: 5px;
}

.topbar-items > li > a:hover{
    color: var(--secondary-color);
}

.banner-carousel .item img{
    display: block;
    width: 100%;
    height: auto;
}

.vne-more-menu{
    display: none;
}


/*box search*/

.box-search{
    z-index: 10;
    box-shadow: 0 0 15px 0 #00000026;
    background: #fff;
    border-radius: 25px;
    padding: 0 25px 30px;
    margin-top: -10%;
    position: relative;
}

.box-search .title{
    font-size: 20px !important;
    padding: 35px 0;
    transition: 0.3s;
}

.box-search .search-form-top:after{
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 1px;
    width: 100%;
    background: #EFEFEF;
}

.search-form-title:after{
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    width: 100%;
    background: #D9BD38;
}

.title-sale{
    font-size: 28px !important;
    height: unset !important;
}

.title-flash-sale > p {
    font-size: 32px !important;
    height: unset !important;
}

.title-flash-sale {
    display: flex;
    align-items: center;
}

.title {
    color: var(--secondary-color);
    font-size: 30px;
    font-weight: bold;
    display: flex;
    align-items: center;
    height: 40px;
    line-height: 40px;
}

.title img{
    height: 100%;
}


.tag {
    background: #EBE8D7;
    border-radius: 20px;
    color: var(--secondary-color);
    padding: 10px 12px;
    border: 1px solid #E7D9AD;
    cursor: pointer;
    font-weight: 400;
}

.tag:hover, .tag.active{
    background: var(--primary-color);
    color: var(--bg3);
}

.head-body{
    background: var(--bg3);
}

.bg-gradient-custom {
    background: linear-gradient(to bottom, #F1EEDB 10%, var(--bg3) 50%);
}

.search-form .select2-container .select2-selection, #dateDeparture{
    height: 54px !important;
    border-radius: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #EFEFEF;
}

#dateDeparture{
    position: relative;
    overflow: hidden;
}

.search-form .select2-container .select2-selection{
    width: calc(100% -20px);
}

#dateDeparture i{
    position: absolute;
    right: 20px;
}


#dateDeparture input{
    border: unset;

}

#dateDeparture input:focus{
    box-shadow: unset !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow{
    height: 50px !important;
    right: 20px !important;
}

.btn-search{
    padding: 0 30px;
    border-radius: 40px;
    color: var(--bg3);
    background: linear-gradient(to right, #DFD87D 40%, var(--primary-color) 60%);
    font-size: 20px;
    border: unset;
    height: 54px;
    margin-bottom: 10px;
}

/*head body*/

.sale-item a{
    width: 100%;
    height: 100%;
}

.sale-item img{
    width: 100%;
    display: block;
    border-radius: 25px;
}

/*news body*/
.news-body{
    padding-top: 120px;
}


.list-service {
    margin-bottom: -100px;
}

.list-service ul, .why-cards {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.list-service ul li,.why-card {
    width: 100%;
}

.service-item,.why-card {
    text-align: center;
    display: flex;
    flex-flow: column;
    gap: 12px;
    border-radius: 16px;
    align-items: center;
    transition: 0.3s ease-in-out;
    box-shadow: 0 0 15px 0 #00000026;
    background: #fff;
    padding: 20px;
}

.service-item span.service-icon {
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-item span.service-icon img, .service-item span.service-icon svg {
    width: 120px;
    height: 120px;
    object-fit: contain;
}

.service-item h4 {
    color: var(--secondary-color);
    margin: 0;
    font-weight: bold;
    font-size: 16px;
}

.service-item:hover, .why-card:hover {
    transition: 0.3s ease-in-out;
    transform: translateY(-5px);
}

.flash-sale-title{
    font-size: 32px;
}

.count-order-notification{
    color: var(--bg3);
    font-size: 14px;
    padding-left: 10px;
    padding-right: 10px;
}

/*flash item*/

select[name="start_date"],.label_day_start{
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 25px;
    font-size:13px;
    border-radius:15px;
    padding: 0 5px;
}

select[name="start_date"]:focus{
    box-shadow: unset !important;
}

.list-flash-item .flash-item{
    background: var(--bg3);
    box-shadow: 0 0 5px 0 #00000026;
    border-radius: 25px;
    overflow: hidden;
    position: relative;
}

.list-flash-item .flash-item > img{
    object-fit: cover;
    width: 100%;
    height: 191px;
}

.list-flash-item .flash-item p, .tour-list .tour-item p.tour-title{
    font-size: 18px;
    font-weight: 600;
}

.tour-item ul li > i, .tour-item ul li > span > i, .flash-item-tag span i, .info p i{
    color: var(--secondary-color);
    width: 16px;
    text-align: center;
}

.list-flash-item .flash-item .flash-item-tag span{
    border: 1px solid #E7D9AD;
    border-radius: 15px;
    padding: 3px 8px;
    font-size: 14px;
    font-weight: 200;
    background: #FFF9F1;
    height: 26px;
    display: flex;
    align-items: center;
}

.list-flash-item .flash-item .flash-item-tag span svg{
    margin-right: 4px;
}

.list-flash-item .timer {
    top: 10px;
    right: 10px;
    background: var(--red);
    padding: 3px 10px;
    border-radius: 25px;
    color: #ffff;
    font-weight: bold;
    align-items: center;
    border: 1px solid #F9B50B;
    font-size: 14px;
}

.list-flash-item .timer img{
    width: 15px;
}

.btn-booking{
    border-radius: 10px;
    /*background: var(--primary-color);*/
    color: var(--secondary-color);
    border: 1px solid var(--secondary-color);
    padding: 10px 20px;
    position: relative;
    overflow: hidden;
}

.btn-booking:hover{
    background: var(--primary-color);
    color: var(--bg3);
    border: 1px solid var(--primary-color);
}

.tour-item .btn-booking:hover {
    background: var(--primary-color) !important;
    color: var(--bg3) !important;
}
/*style booing button*/

.btn-booking::before,
.btn-booking::after {
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transform: translateX(-100px) skewX(-15deg);
    content: "";
}

.btn-booking::before {
    width: 60px;
    background: rgba(255, 255, 255, 0.5);
    filter: blur(5px);
    opacity: 0.5;
}

.btn-booking::after {
    width: 30px;
    left: 30px;
    background: rgba(255, 255, 255, 0.2);
    filter: blur(5px);
}



.btn-booking:hover::before {
    opacity: 1;
}

.btn-booking:hover::before,
.btn-booking:hover::after {
    transform: translateX(300px) skewX(-15deg);
    transition: all 1s ease;
}
/*location-favorite*/

.location-favorite .location-favorite-item{
    position: relative;
    height: 221px;
    overflow: hidden;
    border-radius: 15px;
}

.location-favorite .location-favorite-item img{
    object-fit: cover;
}

.location-favorite .owl-item.active:first-child{
    padding-right: 10px;
}

.location-favorite .owl-item.active:last-child{
    padding-left: 10px;
}

.location-favorite .favorite-item-title .location{
    position: absolute;
    left: 4%;
    bottom: 10%;
    z-index: 10;
    color: #ffff;
}

.location-favorite .favorite-item-title{
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 10;
    color: #ffff;
    background: linear-gradient(to bottom, #f1eedb00 10%,  #0000009e 70%);
    width: 100%;
    height: 100%;
}

.location-favorite .favorite-item-title .location-name{
    font-size: 20px;
    font-weight: bold;
}

.location-favorite .location p:not(.location-name){
    font-size: 14px;
}

/*tour list*/

.tour-list .tour-item .btn-booking{
    border-radius: 10px;
    background: var(--secondary-color);
    border: none;
    color: var(--bg3);
    padding: 10px 20px;
    position: relative;
    overflow: hidden;
}

.tour-list .tour-item .btn-booking i{
    font-size: 12px;
    margin-left: 5px;
}

.tour-item{
    box-shadow: 0 0 4px 0 #00000026;
    border-radius: 25px;
}

.tour-body ul li {
    padding: 3px 0;
}

.tour-img {
    height: 191px;
    overflow: hidden;
}

.about{
    background-size: cover !important;
    background-position: center !important;
    box-shadow: inset 0 0 0 2000px #00000085;
}

.about .about-title{
    font-size: 36px;
}

.about-text{
    padding: 5%;
}

/*review*/

.tag-review{
    background: #E7D9AD;
    border-radius: 20px;
    top: 10px;
    left: 10px;
    cursor: pointer;
    padding: 10px 12px;
    font-size: 14px;
}

.card-reviews{
    padding: 0 30px;
}

.card-reviews .name-user {
    font-weight: bold;
    font-size: 20px;
}

.card-reviews .card-review{
    color: var(--secondary-color);
}

.card-reviews .card-review img{
    border-radius: 25px;
    height: 354px;
    object-fit: cover;
}

.card-reviews .owl-item.active.center {
    transform: scale(1);
    z-index: 2;
    opacity: 1;
}

.card-reviews .owl-item.active{
    transform: scale(0.9);
    opacity: 0.7;
}

/*news*/

.new-item{
    box-shadow: 0 0 5px 0 #00000026;
    border-radius: 25px;
}

.new-item img {
    height: 190px;
}

.btn-detail{
    border-radius: 10px;
    background: var(--secondary-color);
    border: none;
    padding: 10px 20px;
    color: var(--bg3);
    cursor: pointer;
    font-size: 14px;
}

.btn-detail i{
    font-size: 12px;
}

.btn-detail:hover{
    background: var(--primary-color);
    color: var(--bg3);
    border: unset;
}

.news{
    background: linear-gradient(to bottom, #F6F4E9 10%, var(--bg3) 50%);
}

/*footer*/
.company-name{
    font-size: 16px;
}

.footer-bottom{
    background: linear-gradient(to right, #DFD87D 10%, var(--primary-color) 50%);
}

.info p, .footer ul li a {
    padding: 5px 0;
    color: #0F1013;
    font-size: 14px;
    font-weight: 400;
}

.info p i {
    margin-right: 10px;
}

.footer ul li {
    padding: 5px 0;
}

.footer{
    background: url('../images/bg-footer.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    box-shadow: inset 0 0 0 2000px #fffaec80
}

.title-bottom{
    font-size: 16px;
    font-weight: bold;
    color: var(--secondary-color);
}

.socials-bottom{
    display: flex;
    gap: .5rem!important;
    margin-top: 10px;
}

.socials-bottom a{
    padding: 10px;
    border: 1px solid var(--secondary-color);
    border-radius: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 31px;
    height: 31px;
}

/*facebook*/

.socials-bottom a.facebook:hover{
    background: #0866FF;
    border: 1px solid #0866FF;
}

.socials-bottom a.facebook:hover svg path{
    fill: #FFFFFF;
}

/*tiktok*/

.socials-bottom a.tiktok:hover{
    background: #000000;
    border: 1px solid #000000;
}

.socials-bottom a.tiktok:hover svg path{
    fill: #FFFFFF;
}

/*youtube*/

.socials-bottom a.youtube:hover{
    background: #ff0033;
    border: 1px solid #ff0033;
}

.socials-bottom a.youtube:hover svg path{
    fill: #FFFFFF;
}

/*instagram*/

.socials-bottom a.instagram:hover{
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285AEB 90%);
}

.socials-bottom a.instagram:hover svg path{
    fill: #FFFFFF;
}

.socials-bottom a svg{
    scale: 1.5;
}

.hotline:focus-visible {

}
/*social-actions*/

.social-actions {
    position: fixed;
    top: 50%;
    right: 20px; /* hoặc bao nhiêu tùy bạn */
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 12px; /* khoảng cách giữa các icon */
    z-index: 9999; /* đảm bảo nổi trên cùng */
}

.social-actions a img {
    width: 48px; /* hoặc theo kích thước icon bạn */
    height: 48px;
    border-radius: 50%; /* nếu icon là hình tròn */
    transition: transform 0.3s;
}
.social-actions a img:hover {
    transform: scale(1.1);
}

/*menu mobile*/

.btn-menu{
    border-radius: 10px;
    border: 1px solid var(--primary-color);
    padding: 5px 10px;
    color: var(--primary-color);
}

.icon-menu-mobile{
    display: none;
}

.menu-mobile {
    width: 70%;
    position: fixed;
    top: 0;
    left: -250px;
    height: 100%;
    /*overflow: scroll;*/
    background: var(--bg3);
    z-index: 1000;
    border-right: 1px solid var(--secondary-color);
}

.menu-mobile ul li a {
    display: block;
    padding: 5px 10px;
    color: var(--secondary-color);
}

.menu-mobile ul li{
    position: relative;
    padding: 15px;
    width: 100%;
}

.menu-mobile .user-profile ul li:first-child::after{
    background: unset;
}



.menu-mobile ul li:after{
    content: "";
    position: absolute;
    top: 0;
    left: 10px;
    height: 1px;
    width: 65%;
    background: #EBE8D7;
    transform: translate(0%, -50%);
}

.gt-widget-selected {
    border: unset !important;
    background: unset !important;
}

.header-right .gt-widget-selected {
    color: var(--bg3) !important;
}

.select-language-mobile .gt-widget-selected {
    color: var(--secondary-color) !important;
}

.header-right .gt-widget-selected .gt-arrow{
    color: var(--bg3) !important;
}

a.logo-bottom img{
    width: 200px;
}

.aboutTitle{
    padding: 0 15%;
}

/*media max-width 768*/
@media (max-width: 991px) {
    .aboutTitle{
        padding: 0 !important;
    }

    .topbar{
        display: none;
    }

    body{
        overflow: hidden;
    }

    .title-flash-sale {
        flex-direction: column;
        text-align: center;
    }

    .btn-close-menu{
        border-radius: 12px;
        width: 35px;
        border: 2px solid;
        text-align: center;
    }

    .avatar{
        background: var(--secondary-color);
        color: #fff;
        text-align: center;
        display: flex;
        justify-content: end;
        padding: 8px;
    }

    .tour-img, .new-item img {
        height: auto;
        overflow: hidden;
    }

    @media (max-width: 768px) {
        .main-footer .container .row > div:first-child {
            text-align:center;
        }

        .main-footer .container .row > div:nth-child(3), .main-footer .container .row > div:nth-child(4) {
            width:50%;
            padding-top:20px;
        }

        .box-search .search-form-top:after, .search-form-title:after{
            background: unset !important;
        }

        a.logo img {
            width: 70px;
        }

        .icon-menu-mobile{
            display: block;
        }

        .box-search{
            margin-top: 15px;
        }

        .tour-list{
            padding-bottom: 15px;
        }

        .social-actions a{
            position: relative;
        }

        .title-flash-sale .title > img{
            display: none;
        }

        .title {
            font-size: 20px !important;
            text-align: center;
            height: unset;
            display: block;
        }

        .sub-text{
            text-align: center;
        }

        .location-favorite .location-favorite-item{
            height: 125px !important;
        }

        .about .about-title{
            display: flex;
            flex-direction: column;
            text-align: center;
        }
    }
}

/*form login*/

.modal.login .modal-content .modal-header {
    padding: 0 0 10px;
    border: none
}

.modal.login .modal-content .modal-header .close {
    margin-top: 0;
    opacity: 1
}

.modal.login .modal-content .modal-header .modal-title {
    font-size: 24px;
    font-weight: 500
}

.modal.login .modal-content .modal-body {
    padding: 0
}

.modal.login .modal-content .modal-body .form-group, .bc-form-login .form-group {
    position: relative;
    margin-top: 0;
    margin-bottom: 20px
}

@media (max-width: 990px) {
    .news-body {
        padding-top: 15px;
        margin-top: 15px;
    }

    .modal.login .modal-content .modal-body .form-group {
        margin-bottom: 15px
    }

    .service-item, .why-card {
        width: 100% !important;
    }

    .sslide-item{
        padding: 10px;
    }

    .ui-datepicker {
        position: fixed !important;
        left: 0 !important;
        bottom: 0 !important;
        top: unset !important;
    }

    .ui-datepicker-multi-2 .ui-datepicker-group{
        width: 100% !important;
    }
}


.bc-form.loading .fa-spinner {
    display: inline-block
}

.bc-login-page {
    padding: 100px 0
}

.modal.login .modal-content {
    padding: 20px 30px 30px
}

.modal.login .modal-content .modal-body .form-group .form-control, .bc-form-login .form-group .form-control{
    height: 45px;
    box-shadow: none;
    border: 1px solid #DAE1E7;
    border-radius: 13px;
    font-size: 14px;
    color: #5e6d77
}

.modal.login .modal-content .modal-body .form-group .input-icon,.bc-form-login .form-group .input-icon{
    position: absolute;
    top: 22px;
    right: 15px;
    font-size: 20px;
    transform: translateY(-50%);
    color: #acb5be;
    line-height: 0px
}

.modal.login .modal-content .modal-body label,.bc-form-login label {
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 0
}

.modal.login .modal-content .modal-body input[type=checkbox], .bc-form-login input[type=checkbox] {
    margin-right: 5px
}

.modal.login .modal-content .modal-body input[type=radio],.bc-form-login input[type=radio] {
    margin-right: 10px
}

.modal.login .modal-content .modal-body .form-submit,.bc-form-login .form-submit  {
    height: 45px;
    width: 100%;
    background: var(--primary-color);
    color: #fff;
    text-transform: uppercase;
    font-size: 14px;
    border: none;
    border-radius: 3px;
    font-weight: 600
}

.modal.login .modal-content .modal-body .advanced,.bc-form-login .advanced {
    background: #f9f9f9;
    margin-top: 20px;
    padding: 30px;
    margin-left: -30px;
    margin-right: -30px
}

.modal.login .modal-content .modal-body .advanced .socials,.bc-form-login  .advanced .socials {
    padding-top: 20px;
    padding-bottom: 35px
}

.login .modal-content {
    background: #F4F4F4 !important;
    border-radius: 25px !important;
}

.modal.login .modal-content .modal-body .form-submit,.bc-form-login .form-submit {
    border-radius: 99px !important;
    margin: auto;
}

.form-login-page{
    border: 1px solid rgba(0, 0, 0, .2);
    border-radius: 20px;
    padding: 20px;
}

.box-search .form-content .bc-autocomplete,
.input-search .bc-autocomplete {
    opacity: 0;
    visibility: hidden;
    transition: all .3s;
    position: absolute;
    background: #fff;
    padding: 0;
    top: 100%;
    border-radius: 0 0 5px 5px;
    border: solid 1px #dee2e6;
    z-index: 20;
    max-height: 300px;
    overflow-y: auto;
    right: 15px;
    left: 15px;
}


.smart-search .bc-autocomplete.show, .input-search .bc-autocomplete.show {
    opacity: 1 !important;
    visibility: visible !important;
}


.box-search .form-content .dropdown .form-control {
    border: none;
    box-shadow: none;
    padding: 0;
    font-size: 16px;
    color: #767575;
    position: relative;
    left: -5px;
    height: 25px !important
}

.box-search .form-content input.form-control {
    border-radius: 99px !important;
    padding: 9px 12px;
    font-size: 15px;
    height: 50px;
    background-color: #fff;
    font-weight: normal !important;
    border: 0;
    box-shadow: 0px 0px 2px 0px #056741;
    color: var(--secondary-color);
}

.box-search .form-content input:focus {
    box-shadow: 0px 0px 2px 0px #056741 !important;
}

.box-search .form-content input.form-control::placeholder {
    font-size: 15px;
    font-weight: normal !important;
    color: var(--secondary-color);
}

.box-search .field-icon {
    position: absolute;
    top: 50%;
    margin-top: -18px;
    font-size: 35px;
    color: var(--primary-color);
    left: 15px
}

.date-icon {
    position: absolute;
    top: 55px;
    right: 20px;

}

.date-icon svg path{
    fill: var(--secondary-color);
}

.box-search .form-group {
    margin-bottom: 10px;
    position: relative;
}
.box-search .form-content label {
    color: #000;
    font-size: 15px;
    font-weight: 600;
    margin: 10px 0;
}

/* ════════════════════════════════════════
   JQUERY UI DATEPICKER SKIN
   ════════════════════════════════════════ */
.ui-datepicker {
    background: #fff !important;
    border: 1px solid #e4e7ed !important;
    border-radius: 10px !important;
    box-shadow: 0 16px 56px rgba(0, 0, 0, .22) !important;
    padding: 0 0 12px !important;
    width: auto !important;
    z-index: 99 !important;
}

/* single-month header */
.ui-datepicker:not(.ui-datepicker-multi) .ui-datepicker-header {
    display: flex !important;
    align-items: center !important;
    padding: 14px 16px 10px !important;
    background: transparent !important;
    border: none !important;
    border-bottom: 1px solid #f0f2f5 !important;
    border-radius: 0 !important;
}

/* multi: each group header */
.ui-datepicker-multi .ui-datepicker-header {
    display: flex !important;
    align-items: center !important;
    padding: 12px 0 !important;
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
}

.ui-datepicker-title {
    flex: 1 !important;
    text-align: center !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    color: var(--txt) !important;
    line-height: 32px !important;
    margin: 0 !important;
}

.ui-datepicker-prev, .ui-datepicker-next {
    position: static !important;
    float: none !important;
    width: 32px !important;
    height: 32px !important;
    border-radius: 8px !important;
    border: 1px solid #e2e8f0 !important;
    background: #f8fafc !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
    top: auto !important;
}

.ui-datepicker-prev:hover, .ui-datepicker-next:hover {
    background: var(--primary-color) !important;
    border-color: var(--primary-color) !important
}

.ui-datepicker-prev span, .ui-datepicker-next span {
    background-image: none !important;
    text-indent: 0 !important;
    overflow: visible !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    height: 100% !important;
    top: 0 !important;
    left: 0 !important;
    margin: 0 !important;
    font-size: 20px !important;
    color: #666 !important;
    line-height: 1 !important;
}

.ui-datepicker-prev span::after {
    content: '‹'
}

.ui-datepicker-next span::after {
    content: '›'
}

.ui-datepicker-prev:hover span, .ui-datepicker-next:hover span {
    color: #fff !important
}

/* 2-month layout */
.ui-datepicker-multi-2 .ui-datepicker-group {
    width: 50%;
    float: left !important;
    padding: 0 12px;
}

.ui-datepicker-multi-2 .ui-datepicker-group-first {
    border-right: 1px solid #f0f2f5
}

.ui-datepicker-multi-2 .ui-datepicker-group-first .ui-datepicker-next {
    visibility: hidden !important
}

.ui-datepicker-multi-2 .ui-datepicker-group-last .ui-datepicker-prev {
    visibility: hidden !important
}

.ui-datepicker-multi::after {
    content: '';
    display: table;
    clear: both
}

.ui-datepicker-row-break {
    display: none !important
}

/* week number */
.ui-datepicker .ui-datepicker-week-col {
    font-size: 10px !important;
    color: #ccc !important;
    width: 26px !important;
    text-align: center !important;
    padding: 0 !important
}

.ui-datepicker thead .ui-datepicker-week-col {
    color: transparent !important
}

/* table */
.ui-datepicker table {
    width: 100% !important;
    border-collapse: collapse !important;
    padding: 8px 12px 4px !important;
    display: table !important
}

.ui-datepicker th {
    font-size: 11px !important;
    font-weight: 700 !important;
    color: var(--mut) !important;
    text-align: center !important;
    padding: 4px 0 6px !important;
    border: none !important;
    background: transparent !important
}

.ui-datepicker td {
    padding: 2px 1px !important;
    border: none !important
}

/* day cells */
.ui-datepicker td a, .ui-datepicker td span {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 36px !important;
    height: 36px !important;
    border-radius: 8px !important;
    font-size: 13.5px !important;
    font-weight: 500 !important;
    color: var(--txt) !important;
    text-decoration: none !important;
    border: none !important;
    background: transparent !important;
    transition: background .12s, color .12s !important;
    margin: 0 auto !important;
    padding: 0 !important;
    cursor: pointer !important;
}

.ui-datepicker td a:hover {
    background: var(--primary-color) !important;
    color: #fff !important
}

.ui-state-default, .ui-widget-content .ui-state-default {
    background: transparent !important;
    border: none !important;
    color: var(--txt) !important
}

/* today */
.ui-datepicker-today a, .ui-state-highlight, .ui-widget-content .ui-state-highlight {
    background: rgba(232, 57, 42, .1) !important;
    color: var(--red) !important;
    font-weight: 800 !important;
    border: none !important;
}

/* selected */
.ui-state-active, .ui-widget-content .ui-state-active {
    background: var(--primary-color) !important;
    color: #fff !important;
    font-weight: 700 !important;
    border: none !important;
    border-radius: 8px !important;
}

/* other month */
.ui-datepicker-other-month .ui-state-default {
    color: #ddd !important
}

/* disabled */
.ui-datepicker td.ui-state-disabled span {
    color: #e5e5e5 !important;
    cursor: not-allowed !important
}

.ui-datepicker-buttonpane {
    display: none !important
}

.ui-datepicker-header.ui-widget-header.ui-corner-right {
    flex-flow: row-reverse;
}
/*end ui datepicker*/
@media (max-width: 1023px) {
    .smart-search .bc-autocomplete, .input-search .bc-autocomplete {
        margin-top: 10px;
        border-radius: 0;
        right: 0;
        left: -55px;
        background: #f1f1f1
    }
}

.smart-search .bc-autocomplete .item, .input-search .bc-autocomplete .item {
    cursor: pointer;
    padding: 10px 15px
}

.post-slide .slide-item{
    padding: 10px;
}

.new-title {
    height: 50px;
}


.bottom_menu_list {
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 99;
    background: #fff;
    width: 100%;
    box-shadow: 0px -5px 10px 0px #00000033;
    padding: 8px 0;
}

.bottom_menu_list ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
}

.bottom_menu_list ul li {

}

.bottom_menu_list ul li a {
    display: flex;
    flex-flow: column;
    align-items: center;
    color: #0F1013;
    font-size: 13px;
    font-weight: 700;
    gap: 8px;
}

.bottom_menu_list ul li a img {
    width: 28px;
    height: 28px;
}

.bottom_menu_list ul li a img.avatar {
    border-radius: 50%;
}

.bc-menu-mobile.active, .vne_wrap.active{
    display: block !important;
    -webkit-transform: translateX(250px);
    -ms-transform: translateX(250px);
    transform: translateX(250px);
}

.vne_wrap.active {
    z-index: 1;
    position: relative;
}

.vne_wrap {
    transition: all 0.3s ease 0s;
}

.g-menu .main-menu{
    padding:0;
}

.info h5 {
    font-size: 16px;
}
