/* IBM Plex Sans Arabic – same font as seller (fonts in seller assets) */
@font-face {
    font-family: 'IBM Plex Sans Arabic';
    src: url('../../seller/fonts/IBM_Plex_Sans_Arabic/IBMPlexSansArabic-Thin.ttf') format('truetype');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'IBM Plex Sans Arabic';
    src: url('../../seller/fonts/IBM_Plex_Sans_Arabic/IBMPlexSansArabic-ExtraLight.ttf') format('truetype');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'IBM Plex Sans Arabic';
    src: url('../../seller/fonts/IBM_Plex_Sans_Arabic/IBMPlexSansArabic-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'IBM Plex Sans Arabic';
    src: url('../../seller/fonts/IBM_Plex_Sans_Arabic/IBMPlexSansArabic-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'IBM Plex Sans Arabic';
    src: url('../../seller/fonts/IBM_Plex_Sans_Arabic/IBMPlexSansArabic-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'IBM Plex Sans Arabic';
    src: url('../../seller/fonts/IBM_Plex_Sans_Arabic/IBMPlexSansArabic-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'IBM Plex Sans Arabic';
    src: url('../../seller/fonts/IBM_Plex_Sans_Arabic/IBMPlexSansArabic-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

html,
body{
    font-family: 'IBM Plex Sans Arabic', sans-serif;
}
body{
    background-color: #ffffff;
}
.header{
    background-color: #2a2925;
    padding-top: 15px;
    padding-bottom: 15px;
}
.header-container{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header-left{
    width: 27%;
    display: flex;
    align-items: center;
    gap: 2.5rem;
}
.header-left .header-info p{
    color: #ffffff;
    font-size: 15px;
}
.header-left .header-info p u{
    font-weight: 600;
}
.header-left .header-info .dropdown-menu-link-button{
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
}
.theme-dropdown {
    position: relative;
    display: inline-block;
    cursor: pointer;
}
.theme-dropdown-list {
    display: none;
    position: absolute;
    background-color: #ffffff;
    box-shadow: 0 0px 5px rgba(0, 0, 0, 0.2);
    list-style-type: none;
    padding: 0;
    margin: 0;
    width: 150px;
    border-radius: 2px;
    z-index: 999;
}
.theme-dropdown-list[toggle-right="true"]{
    right: 0;
}

.theme-dropdown-list[toggle-right="true"] li {
    text-align: left !important;
}

.theme-dropdown-list a.text-theme-dark:hover{
    color: #000000 !important;
}

.theme-dropdown-list li {
    padding: 0.4rem 0.7rem;
    cursor: pointer;
    border-bottom: 1px solid #f2f2f2;
    color: #212529;
}

.theme-dropdown-list li:hover {
    background-color: #e9ecef;
}

.theme-dropdown-link-selected {
    font-weight: bold;
    text-decoration: underline;
}
.header-right{
    width: 72%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header-right{
    padding-left: 50px;
}
.header-right-content{
    padding: 8px;
    background: #1f1e1e;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 1.5rem;
}
.header-right-content .input-group{
    width: 70%;
}
.header-right-content .input-group .input-group-text{
    background-color: #000000;
    font-size: 15px;
    color: #ffffff;
    font-weight: 600;
    padding: 0.47rem 2rem;
    border: #4c4c4c 1px solid;
}
.header-right-content .input-group .form-control{
    background: #ffffff;
}
.w-200{
    width: 200px;
}
.theme-dropdown-list .selected{
    background-color: #f2f2f2 !important;
}
.content-end{
    display: flex;
    align-items: center;
    gap: 1rem;
}
.header-right-content-end{
    display: flex;
    align-items: center;
    gap: 1rem;
}
.cart-link{
    font-size: 25px;
    padding-right: 5px;
    position: relative;
}
.explore-nav a{
    color: #ffffff;
}
.explore-nav{
    background-color: #181717;
    padding-top: 5px;
    padding-bottom: 5px;
}
.explore-nav a{
    font-size: 18px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    width:fit-content;
}
.explore-nav a i{
    font-size: 22px;
}
.sidemenu{
    position: fixed;
    left: -300px;
    width: 300px;
    min-height: 100vh;
    max-height: 100vh;
    overflow-y: auto;
    background-color: #2a2928;
    z-index: 999;
    transition: all 0.5s ease;
    scrollbar-color: #b1b1b1 #eaeaea;
    scrollbar-width: thin;
}
/* Styling the scrollbar in Chrome and Safari */
.sidemenu::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}

.sidemenu::-webkit-scrollbar-thumb {
    background-color: #484848; /* Set thumb color for Chrome and Safari */
}

.sidemenu::-webkit-scrollbar-track {
    background-color: #eaeaea; /* Set track color for Chrome and Safari */
}
.sidemenu.show{
    left: 0 !important;
}
.sidemenu ul{
    margin-bottom: 0;
    padding-left: 0;
}
.sidemenu ul li{
    border-bottom: 1px solid #4c4c4c;
}
.sidemenu ul li.active{
    background-color: #eebf35;
}
.sidemenu ul li.active a{
    color: #000000;
    font-weight: 600;
}
.sidemenu ul li a,.sidemenu ul li button{
    display: block;
    text-align: left;
    color: #ffffff;
    font-size: 15px;
    padding: 15px 20px;
    border:0;
    background:none;
}
#sidemenuCloseBtn{
    font-size: 20px;
    color: #ffffff;
}
.content-overlay{
    position: fixed;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 99;
}
.page-content{
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    min-height: 80vh;
    background-color: #ffffff;
}
.footer-top{
    background-color: #EEBF35;
    padding-top: 15px;
    padding-bottom: 15px;
}
.social-icons{
    margin-bottom: 0;
    padding-left: 0;
}
.social-icons li{
    display: inline-block;
    list-style: none;
    margin-right: 3px;
}
.social-icons li a{
    font-size: 22px;
    padding: 2px 4px;
    border-radius: 20px;
    border: 2px solid #000000;
    background-color: #EEBF35;
    color: #000000;
}
.social-icons li a.custom-padding{
    padding: 1px 7px 3px 7px !important;
}
.social-icons li a:hover{
    background-color: #edc344;
}
.fs-10{
    font-size: 10px !important;
}
.fs-12{
    font-size: 12px !important;
}
.fs-13{
    font-size: 13px !important;
}
.fs-14{
    font-size: 14px !important;
}
.fs-15{
    font-size: 15px !important;
}
.fs-16{
    font-size: 16px !important;
}
.fs-17{
    font-size: 17px !important;
}
.fs-18{
    font-size: 18px !important;
}
.fs-20{
    font-size: 20px !important;
}
.fs-22{
    font-size: 22px !important;
}
.fs-24{
    font-size: 24px !important;
}
.fs-26{
    font-size: 26px !important;
}
.fs-28{
    font-size: 28px !important;
}
.fs-30{
    font-size: 30px !important;
}
.fs-32{
    font-size: 32px !important;
}
.fs-34{
    font-size: 34px !important;
}
.fs-36{
    font-size: 36px !important;
}
.fs-38{
    font-size: 38px !important;
}
.fs-40{
    font-size: 40px !important;
}
.fw-400{
    font-weight: 400;
}
.fw-500{
    font-weight: 500;
}
.fw-600{
    font-weight: 600 !important;
}
.fw-700{
    font-weight: 700 !important;
}
.fw-900{
    font-weight: 900 !important;
}
.ps-50{
    padding-left: 3rem;
}
.page-section{
    padding-right: 15px;
    padding-left: 15px;
}
.footer{
    background-color: #272727;
}
.btn-theme{
    background-color: #eebf35 !important;
    border-color: #eebf35 !important;
    color: #272727 !important;
}
.btn-theme:hover{
    background-color: #f1c645 !important;
    border-color: #f1c645 !important;
    color: #272727 !important;
}
.btn-theme:active{
    background-color: #f1c645 !important;
    border-color: #f1c645 !important;
    color: #272727 !important;
}
.btn-theme:focus{
    background-color: #f1c645 !important;
    border-color: #f1c645 !important;
    color: #272727 !important;
}
.btn-dark {
    background: #2A2925;
    color: #FFB902;
    width: 100%;
    padding: 20px;
    text-align: center;
    font-weight: bold;
    display: inline-block;
    border-radius: 8px;
}
#submitBtn, .submitBtn {
    background: #EEBF35;
    width: 100%;
    padding: 20px;
    text-align: center;
    border: none;
    font-weight: bold;
    border-radius: 8px;
}
.text-theme{
    color: #eebf35 !important;
}
.footer-heading{
    font-size: 18px;
    color: #ffffff;
    font-weight: 600;
}
.footer-list{
    padding-left: 0;
    margin-bottom: 0;
}
.footer-list li{
    list-style: none;
    margin-bottom: 10px;
    text-align: left;
}
.footer-list li a{
    color: #ffffff;
}
.footer-list li a:hover{
    text-decoration: underline !important;
}
.fs-16{
    font-size: 16px;
}
.no-scroll{
    overflow: hidden;
}
.footer-copyright{
    padding-top: 15px;
    padding-bottom: 15px;
    background-color: #000000;
}
.page-content{
    position: relative;
    padding-bottom: 40px;
}
.overlay{
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.2);
    z-index: -1;
}
.dashboard-avatar{
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: #484744;
}
.text-theme-dark{
    color: #212529 !important;
}
a.text-theme-dark:hover{
    color: #000000;
}
.content-header{
    margin-bottom: 40px;
}
.theme-card-1{
    background-color: #E7E6E6;
    padding: 20px;
}
.theme-card-2{
    background-color: #2A2928;
    padding: 20px;
}
.btn-theme-lg{
    background-color: #eebf35;
    border-color: #eebf35;
    color: #272727;
    font-size: 19px;
    padding-top: 0.9rem;
    padding-bottom: 0.9rem;
}
.btn-theme-lg:hover{
    background-color: #f1c645;
    border-color: #f1c645;
    color: #272727;
}
.theme-card-1 .theme-card-content{
    height: 145px;
}
.theme-card-heading{
    font-weight: 700;
}
.theme-card-1 p{
    font-size: 15px;
}
.theme-card-2 p{
    font-size: 15px;
}
.theme-card-2 .theme-card-content{
    height: 159px;
}
.theme-card-2 .card-info-text{
    height: 101px;
    overflow-y: auto;
}
.lh-28{
    line-height: 28px;
}
.service-card{
    background-color: #1F4E79;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
}
.service-card .service-img{
    height: 271px;
}
.service-card .service-content{
    padding: 18px;
    height: 271px;
}
.service-card .service-content-description{
    height: 210px;
    overflow-y: auto;
}
a.text-theme:hover{
    color: #f1c645 !important;
}
.service-card .service-meta{
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 1rem;
}
.service-card .service-meta .meta{
    display: flex;
    align-items: center;
    gap: 0.3rem;
}
.service-card .service-meta .meta i{
    font-size: 17px;
}
.theme-breadcrumb{
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 15px;
}
.main-heading{
    font-size: 36px;
}
.text-theme-secondary{
    color: #1F4E79;
}
.text-theme-danger{
    color: #c00000;
}
.theme-accordion{
    border-radius: 5px;
    overflow: hidden;
    border: 1px solid #ededed;
}
.accordion-header{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 17px 30px;
}
.accordion-header h2{
    font-size: 18px;
    font-weight: 400;
}
.accordion-header .action-btn{
    display: flex;
    align-items: center;
    gap: 0.7rem;
}
.accordion-content{
    padding: 20px 30px;
    background-color: #ffffff;
    display: none;
}
.theme-search-bar{
    position: relative;
}
.theme-search-bar input{
    padding: 20px 50px 20px 20px;
    font-size: 18px;
}
.theme-search-bar button{
    position: absolute;
    right: 20px;
    top: 18px;
    border:0;
    background:none;
}
.theme-heading-card{
    padding: 24px 30px;
    border-radius: 8px;
    border: 1px solid #d8d8d8;
}
.theme-box{
    padding: 13px;
    border-radius: 5px;
    border: 1px solid #d8d8d8;
    background-color: #ffffff;
}
.theme-order-card{
    position: relative;
    padding: 15px 15px 15px 70px;
    border-radius: 5px;
}
.bg-theme-dark{
    background-color: #2A2928;
}
.bg-theme-success{
    background-color: #70ad47;
}
.bg-theme-secondary{
    background-color: #365953;
}
.bg-theme{
    background-color: #eebf35;
}
.rounded-2{
    border-radius: 10px;
    overflow: hidden;
}
.padding-custom-1{
    padding: 10px;
}
.h-130{
    height: 130px;
}
.btn-theme-secondary{
    padding: 8px 10px;
    background-color: #205f6e;
    border-color: #205f6e;
    border-radius: 8px;
    color: #ffffff;
}
.btn-theme-secondary:hover{
    background-color: #336796;
    border-color: #336796;
    color: #ffffff;
}
.btn-theme-secondary:focus{
    background-color: #336796;
    border-color: #336796;
    color: #ffffff;
}
.btn-theme-secondary:active{
    background-color: #336796;
    border-color: #336796;
    color: #ffffff;
}
.btn-theme-secondary.disabled{
    background-color: #205f6e;
    border-color: #205f6e;
    color: #ffffff;
}
.btn-theme-dark{
    padding: 8px 10px;
    background-color: #2A2928;
    border-color: #2A2928;
    border-radius: 8px;
    color: #ffffff;
}
.btn-theme-dark:hover{
    background-color: #000000;
    border-color: #000000;
    color: #ffffff;
}
.btn-theme-dark:active{
    background-color: #000000;
    border-color: #000000;
    color: #ffffff;
}
.btn-theme-dark:focus{
    background-color: #000000;
    border-color: #000000;
    color: #ffffff;
}
.btn-theme-dark:disabled,
.btn-theme-dark[disabled]{
    background-color: #292929;
    border-color: #292929;
    color: #ffffff;
}
.theme-btn-lg{
    padding-top: 0.9rem !important;
    padding-bottom: 0.9rem !important;
}
.card-badge{
    position: absolute;
    left: 15px;
    top: 0;
    height: 100%;
    width:40px;
    text-align:center;
}
.card-badge p{
    writing-mode: tb-rl;
    transform: rotate(-180deg);
}
.btn-theme-success{
    padding: 8px 10px;
    background-color: #70ad47;
    border-color: #70ad47;
    color: #ffffff;
    border-radius: 8px;
}
.btn-theme-success:hover{
    background-color: #599034;
    border-color: #599034;
    color: #ffffff;
}
.btn-theme-success:focus{
    background-color: #599034;
    border-color: #599034;
    color: #ffffff;
}
.btn-theme-success:active{
    background-color: #599034;
    border-color: #599034;
    color: #ffffff;
}
.theme-widget-1{
    padding: 12px;
    border-radius: 12px;
    height: 165px;
}
.rating-badge{
    font-size: 25px;
    background-color: #eebf35;
    color: #212529;
    padding: 11px 13px;
    border-radius: 50%;
    font-weight: 600;
}
.theme-border-1{
    border: 1px solid #dad9d9;
}
.bottom-0{
    bottom: 0;
}
.tab-btn{
    padding: 8px 10px;
}
.list-count{
    font-size: 22px;
    padding: 8px 18px;
    border-radius: 50%;
}
.theme-info-box{
    border: 1px solid #dadada;
    border-radius: 10px;
    overflow: hidden;
}
.theme-info-box .info-content{
    background-color: #f2f2f2;
    height: 150px;
    padding: 20px;
}
.theme-info-box .info-footer{
    background-color: #205f6e;
    padding: 10px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.bg-theme-danger{
    background-color: #c00000 !important;
}
.theme-modal-body{
    padding: 30px;
}
.btn-modal{
    padding: 8px 40px;
    border-radius: 20px;
}
.btn-theme-modal-warning{
    background-color: #eebf35;
    border-color: #eebf35;
    color: #ffffff;
}
.btn-theme-modal-warning:hover{
    background-color: #eebf35;
    border-color: #eebf35;
    color: #ffffff;
}

.btn-theme-modal-success{
    background-color: #70ad47;
    border-color: #70ad47;
    color: #ffffff;
}
.btn-theme-modal-success:hover{
    background-color: #70be3d;
    border-color: #70be3d;
    color: #ffffff;
}
.btn-theme-modal-success:focus{
    background-color: #70be3d;
    border-color: #70be3d;
    color: #ffffff;
}
.btn-theme-modal-success:active{
    background-color: #70be3d;
    border-color: #70be3d;
    color: #ffffff;
}
.btn-theme-shadow-light{
    padding: 8px 40px;
    background: #ffffff;
    border-color: #ffffff;
    box-shadow: 1px 3px 2px #909090;
}
.btn-theme-shadow-light:hover{
    background: #f8f8f8;
    border-color: #f8f8f8;
}
.theme-card-bg-light{
    background-color: #e7e6e6 !important;
}
.w-60{
    width: 60% !important;
}
.w-40{
    width: 40% !important;
}
.discount-badge{
    padding: 10px 25px;
}
.btn-theme-shadow-success{
    padding: 5px 35px;
    background: #70ad47;
    border-color: #70ad47;
    box-shadow: 1px 3px 2px #dddddd;
    color: #ffffff;
}
.btn-theme-shadow-success:hover{
    background: #70b543;
    border-color: #70b543;
    color: #ffffff;
}
.btn-shadow-theme-dark{
    padding: 5px 35px;
    background: #2a2928;
    border-color: #2a2928;
    box-shadow: 1px 3px 2px #2a2928;
}
.btn-shadow-theme-dark:hover{
    background: #000000;
    border-color: #000000;
}
.btn-theme-sm{
    padding: 5px 30px !important;
}
.service-card-2{
    display: flex;
    background-color: #2A2928;
    border-radius: 8px;
    overflow: hidden;
}
.service-card-2 .card-content-left{
    width: 40%;
    height: 270px;
    position: relative;
}
.service-card-2 .card-content-left .subscribe-btn{
    position: absolute;
    z-index: 999;
    bottom: 20px;
    width: 100%;
}
.service-card-2 .card-content-left img{
    height: 270px;
    width: 100%;
    object-fit: cover;
}
.service-card-2 .card-content-right{
    width: 60%;
    height: 270px;
    padding: 20px;
}
.padding-custom-2{
    padding: 0 15px 0 70px !important;
}
.deals-offer-img{
    height: 280px;
    width: 100%;
    object-fit: cover;
}
.theme-badge{
    padding: 1px 8px;
    border-radius: 50%;
    font-size: 27px;
}
.badge-dark{
    background-color: #2A2928;
}
.badge-shadow{
    box-shadow: 0px 1.5px 3px #969696;
}
.badge-success{
    background-color: #70ad47;
}
.badge-info{
    background-color: #eebf35;
}
.fs-badge{
    font-size: 11px;
    font-weight: 900;
    display: inline-block;
}
.rotate-30-negative{
    transform: rotate(-30deg);
}
.lh-34{
    line-height: 34px;
}
.theme-badge-empty{
    height: 42px;
    width: 42px;
    border-radius: 50%;
}
.desktop-min-height-280{
    min-height: 280px;
}
.badge-warning{
    background-color: #eebf35;
}
.theme-box-shadow{
    background-color: #ffffff;
    box-shadow: 0 2px 1px rgba(158, 151, 151, 0.7);
    border-radius: 8px;
    overflow: hidden;
}
.bg-theme-light{
    background-color: #f2f2f2;
}
.bg-accordion-theme-light{
    background-color: #d8d8d8;
}
.bg-accordion-theme-light-success{
    background-color: #e2f0d9;
}
.lh-18{
    line-height: 18px;
}
.theme-widget-1{
    background-color: #f2f2f2;
    padding: 10px 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    border-radius: 10px;
    box-shadow: 0 2px 1px rgba(158, 151, 151, 0.7);
    height: 150px;
}
.border-table{
    border: 1px solid #d0d2d6 !important;
}
.progress {
    padding: 0;
    width: 100%;
    height: 10px;
    overflow: hidden;
    background: #ffffff;
    border-radius: 6px;
  }

.bar {
      position:relative;
    float:left;
    min-width:1%;
    height:100%;
    background: #eebf35;
}
.progress-lg{
    width: 180px;
}
.rating-badge-lg{
    font-size: 50px;
    background-color: #eebf35;
    color: #212529;
    padding: 30px 34px;
    border-radius: 50%;
    font-weight: 600;
}
.form-control-theme{
    border: 1px solid #dbdbdb;
    border-radius: 0;
    font-size: 18px;
}
.theme-range-slider {
    -webkit-appearance: none; /* Override default CSS styles */
    appearance: none;
    width: 100%; /* Full-width */
    height: 10px; /* Specified height */
    background: #d3d3d3; /* Grey background */
    outline: none; /* Remove outline */
    opacity: 1; /* Set transparency (for mouse-over effects on hover) */
    -webkit-transition: .2s; /* 0.2 seconds transition on hover */
    transition: opacity .2s;
    border-radius: 10px;
}

.theme-range-slider::-webkit-slider-thumb {
    -webkit-appearance: none; /* Override default look */
    appearance: none;
    width: 15px; /* Set a specific slider handle width */
    height: 15px; /* Slider handle height */
    background: #2A2928;
    cursor: pointer; /* Cursor on hover */
    border-radius: 50%;
}

.theme-range-slider::-moz-range-thumb {
    width: 20px; /* Set a specific slider handle width */
    height: 20px; /* Slider handle height */
    background: rgb(252, 132, 92); /* Green background */
    cursor: pointer; /* Cursor on hover */
    border-color: rgb(252, 132, 92);
    border-radius: 0;
}
.shopping-cart{
    position: fixed;
    right: -370px;
    width: 370px;
    min-height: 100vh;
    max-height: 100vh;
    overflow-y: auto;
    background-color: #343434;
    z-index: 9999;
    transition: all 0.5s ease;
}
.shopping-cart.show{
    right: 0 !important;
}
.shopping-cart-header{
    position: relative;
}

#cartCloseBtn{
    position: absolute;
    top: 15px;
    right: 20px;
    padding: 4px 9px;
    border-radius: 50% !important;
    font-size: 20px;
}

.empty-cart i{
    font-size: 80px;
}

.shopping-cart-body{
    height: 65vh;
    overflow-y: auto;
    padding: 10px;
    scrollbar-color: #b1b1b1 #eaeaea;
    scrollbar-width: thin;
    border-bottom: 1px solid #616161;
}

/* Styling the scrollbar in Chrome and Safari */
.shopping-cart-body::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}

.shopping-cart-body::-webkit-scrollbar-thumb {
    background-color: #484848; /* Set thumb color for Chrome and Safari */
}

.shopping-cart-body::-webkit-scrollbar-track {
    background-color: #eaeaea; /* Set track color for Chrome and Safari */
}
.flex-form{
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-item{
    display: flex;
    gap: 0.8rem;
    background-color: #e1dede;
    overflow: hidden;
    position: relative;
    margin-bottom: 2px;
}

.cart-item-img{
    height: 110px;
    width: 107px;
    max-width: 100%;
    object-fit: cover;
}

.cart-item-remove{
    position: absolute;
    z-index: 999999;
    bottom: 3px;
    right: 10px;
}

.shopping-cart-footer{
    padding: 10px;
}

.auth-form{
    max-width: 450px;
    margin: auto;
    text-align: center;
    margin-top: 60px;
    margin-bottom: 60px;
}

.form-input-light{
    background-color: #fff;
    border-radius: 0px;
    border: none;
    font-weight: 500;
    color: #252525;
    padding: 10px 15px;
    font-size: 16px;
}
.form-input-light:focus{
    background-color: #fff;
    color: #252525;
    border: none;
}
.form-check-input{
    background-color: #fff;
}
.text-hover-decoration-underline:hover{
    text-decoration: underline !important;
}
.position-lg-absolute{
    position: absolute;
}
.theme-widget-2{
    padding: 12px;
    border-radius: 12px;
    height: 165px;
}
.theme-widget-2{
    padding: 10px 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    border-radius: 10px;
    box-shadow: 0 2px 1px rgba(158, 151, 151, 0.7);
    height: 150px;
    width: 170px;
}
.service-badge{
    text-transform: uppercase;
    background-color: #2a2928;
    padding: 5px 15px;
    border-radius: 20px;
    color: #ffffff;
    font-size: 10px;
    font-weight: 500;
}
.service-header{
    padding-top: 40px;
    padding-bottom: 140px;
    background-size: cover;
    background-repeat: no-repeat;
}
.services-content{
    margin-top: -120px;
    background-color: transparent;
}
.service-images{
    display: flex;
    align-items: center;
    gap: 0.3rem;
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-color: #b1b1b1 #eaeaea;
    scrollbar-width: thin;
}
/* Styling the scrollbar in Chrome and Safari */
.service-images::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}

.service-images::-webkit-scrollbar-thumb {
    background-color: #484848; /* Set thumb color for Chrome and Safari */
}

.service-images::-webkit-scrollbar-track {
    background-color: #eaeaea; /* Set track color for Chrome and Safari */
}
.service-images img{
    height: 250px;
    object-fit: cover;
}
.service-images a{
    flex: 0 0 auto;
}
.service-features{
    display: flex;
    flex-wrap: nowrap;
    gap: 1.3rem;
    overflow-x: auto;
    scrollbar-color: #b1b1b1 #eaeaea;
    scrollbar-width: thin;
}

/* Styling the scrollbar in Chrome and Safari */
.service-features::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}

.service-features::-webkit-scrollbar-thumb {
    background-color: #484848; /* Set thumb color for Chrome and Safari */
}

.service-features::-webkit-scrollbar-track {
    background-color: #eaeaea; /* Set track color for Chrome and Safari */
}

.service-feature{
    width: 120px;
    text-align: center;
    margin-bottom: 17px;
    flex: 0 0 auto;
}
.service-feature h5{
    color: #d29500;
}
.service-option-content{
    height: 130px;
    display: flex;
    /*align-items: center;*/
    flex-direction: column;
    background-color: #f2f2f2;
    justify-content: center;
}
.service-option-content .text-left{
    overflow-y: auto;
    scrollbar-color: #b1b1b1 #eaeaea;
    scrollbar-width: thin;
}
/* Styling the scrollbar in Chrome and Safari */
.service-option-content .text-left::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}

.service-option-content .text-left::-webkit-scrollbar-thumb {
    background-color: #484848; /* Set thumb color for Chrome and Safari */
}

.service-option-content .text-left::-webkit-scrollbar-track {
    background-color: #eaeaea; /* Set track color for Chrome and Safari */
}
.service-option-img{
    height: 130px;
    width: 100%;
    object-fit: cover;
}
.service-option-variation-img{
    width: 123px !important;
}
.service-option-record{
    display: flex;
    align-items: center;
    gap: 0.3rem;
}
.record-width-20{
    width: 20%;
}
.record-width-13{
    width: 13%;
}
.record-width-40{
    width: 40%;
}
.add-to-order-btn{
    background-color: #eebf35;
    color: #212529;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
    font-size: 16px;
    text-transform: uppercase;
    border-radius: 0;
}
.add-to-order-btn:hover{
    background-color: #f1c645;
    border-color: #f1c645;
    color: #272727;
}
.add-to-order-btn:active{
    background-color: #f1c645;
    border-color: #f1c645;
    color: #272727;
}
.add-to-order-btn:focus{
    background-color: #f1c645;
    border-color: #f1c645;
    color: #272727;
}
.add-to-order-btn.btn-success{
    color: #ffffff !important;
    background-color: #198754 !important;
    border-color: #198754 !important;
}
.add-to-order-btn.btn-success:hover, .add-to-order-btn.btn-success:active, .add-to-order-btn.btn-success:focus{
    color: #ffffff !important;
    background-color: #198754 !important;
    border-color: #198754 !important;
} 
.service-plan-record{
    display: flex;
    align-items: center;
    gap: 0.3rem;
}
.service-plan-width-60{
    width: 60%;
    display: flex;
    align-items: center;
}
.service-plan-width-13{
    width: 13%;
}
.service-plan-width-26{
    width: 26%;
}
.service-plan-width-39{
    width: 39%;
}
.service-plan-width-86{
    width: 86%;
    display: flex;
    align-items: center;
}
.service-plan-option-content{
    height: 65px;
    display: flex;
    align-items: center;
    flex-direction: column;
    background-color: #f2f2f2;
    justify-content: center;
}
.service-plan-count{
    height: 65px;
    display: flex;
    align-items: center;
    flex-direction: column;
    background-color: #2a2928;
    justify-content: center;
    width: 40px;
    flex-shrink: 0;
}
.service-location{
    height: 250px;
    width: 100%;
}
.service-sidebar-container{
    border: 2px solid #b3b5b9;
    border-radius: 3px;
    overflow: hidden;
}
.border-bottom-theme-light-1{
    border-bottom: 1px solid #b3b5b9;
}
.border-top-theme-light-1{
    border-top: 1px solid #b3b5b9;
}
.border-top-theme-1{
    border-top: 1px solid #212529;
}
.service-select-records{
    min-height: 130px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    background-color: #f2f2f2;
    padding: 10px;
    gap: 0.5rem;
}
.service-select{
    position: relative;
    cursor: pointer;
    margin-bottom: 15px;
}
.service-select-img{
    height: 130px;
    width: 100%;
    object-fit: cover;
    border-radius: 5px;
    overflow: hidden;
}
.service-select-checkbox{
    position: absolute;
    bottom: -15px;
    left: 74px;
    padding: 0 6px;
    border-radius: 50%;
    background-color: #7f7f7f;
}
.service-select.active .service-select-checkbox{
    background-color: #00b050 !important;
}
.discount-slider{
    padding-top: 35px;
}
.discount-slider .swiper-pagination{
    text-align: left !important;
    top: 0;
    right: 0 !important;
    height: fit-content;
    z-index: 9999999;
}
.discount-slider .swiper-pagination .swiper-pagination-bullet{
    width: 13px !important;
    height: 13px !important;
}
.swiper-pagination-bullet-active{
    background: #212529 !important;
}

.service-offer-card{
    position: relative;
    overflow: hidden;
    display: flex;
    padding-left: 25px;
}
.service-offer-card .service-offer-img{
    height: 175px;
}
.service-offer-card .service-content{
    padding: 10px 15px;
}
.service-offer-card .service-content-description{
    height: 143px;
}
.service-offer-card .discount-badge{
    padding: 5px 20px;
}
a.text-theme:hover{
    color: #f1c645 !important;
}
.service-offer-card .service-meta{
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 1rem;
}
.service-offer-card .service-meta .meta{
    display: flex;
    align-items: center;
    gap: 0.3rem;
}
.service-offer-card .service-meta .meta i{
    font-size: 17px;
}

.btn-theme-shadow-green{
    padding: 5px 35px;
    background: #00af50;
    border-color: #00af50;
    box-shadow: 1px 3px 2px #dddddd;
    color: #ffffff;
}
.btn-theme-shadow-green:hover{
    background: #009342;
    border-color: #009342;
    color: #ffffff;
}

.service-offer-card .card-badge{
    left: 0 !important;
}

.deal-card{
    border-radius: 6px;
    overflow: hidden;
}

.deal-card .service-img{
    height: 160px;
    width: 100%;
    object-fit: cover;
}
.deal-card .service-content-description{
    padding: 15px;
}
.background-cover{
    background-size: cover;
    background-repeat: no-repeat;
}
.pt-40{
    padding-top: 40px;
}
.justify-content-sm-center{
    justify-content: left !important;
}

.cart-service-features{
    display: flex;
    flex-wrap: nowrap;
    gap: 0.7rem;
    overflow-x: auto;
    scrollbar-color: #b1b1b1 #eaeaea;
    scrollbar-width: thin;
}
/* Styling the scrollbar in Chrome and Safari */
.cart-service-features::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}

.cart-service-features::-webkit-scrollbar-thumb {
    background-color: #484848; /* Set thumb color for Chrome and Safari */
}

.cart-service-features::-webkit-scrollbar-track {
    background-color: #eaeaea; /* Set track color for Chrome and Safari */
}
.cart-service-features .service-feature{
    width: 90px;
    text-align: center;
}
.cart-service-features .service-feature h5{
    color: #d29500;
}
.cart-service-img-box{
    width: 20%;
}
.cart-service-information{
    width: 80%;
    display: flex;
    justify-content: space-between;
    padding: 10px 15px;
}
.cart-service-img-box img{
    height: 250px;
    width: 100%;
    object-fit: cover;
}
.cart-service-price-quantity{
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: space-between;
    width: 20%;
}
.cart-service-information .service-info{
    width: 80%;
}
.cart-service-price-quantity .count-bar{
    display: flex;
    align-items: center;
}
.count-bar{
    display: flex;
    align-items: center;
}
.del-cart-item-btn, .remove-warranty-btn{
    background-color: #e74c3c;
    border-radius: 0;
    border-radius: 5px;
    padding: 8px 10px;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.2rem;
    color: #ffffff;
}
.cart-item-add-btn{
    background-color: #d9d9d9;
    border-radius: 0;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    box-shadow: 0px 1px 2px #898282;
    padding: 1.5px 9px;
    font-size: 20px;
}
.flex-grow-1{
    flex-grow: 1;
}
.del-cart-item-btn:hover, .remove-warranty-btn:hover{
    background-color: #f04532;
    border-color: #f04532;
    color: #ffffff;
}
.del-cart-item-btn:active, .remove-warranty-btn:active{
    background-color: #f04532;
    border-color: #f04532;
    color: #ffffff;
}
.del-cart-item-btn:focus , .remove-warranty-btn:focus{
    background-color: #f04532;
    border-color: #f04532;
    color: #ffffff;
}
.cart-item-add-btn:hover{
    background-color: #cbcbcb;
    border-color: #cbcbcb;
    box-shadow: 0px 1px 2px #898282;
}
.cart-item-add-btn:active{
    background-color: #cbcbcb;
    border-color: #cbcbcb;
    box-shadow: 0px 1px 2px #898282;
}
.cart-item-add-btn:focus{
    background-color: #cbcbcb;
    border-color: #cbcbcb;
    box-shadow: 0px 1px 2px #898282;
}
.shopping-cart-item{
    background-color: #f2f2f2;
    position: relative;
    margin-bottom: 50px;
}
.shopping-cart-item:last-child{
    margin-bottom: 0;
}
.theme-accordion-sm .accordion-header{
    padding: 12px 18px !important;
}

.theme-accordion-sm .accordion-content{
    padding: 12px 18px !important;
}

.theme-accordion-sm{
    border-radius: 0 !important;
}

.cart-options{
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.cart-option{
    background-color: #f2f2f2;
    height: 60px;
    display: flex;
    align-items: center;
}

.cart-option.disabled{
    background-color: #f6f6f6;
}

.cart-option-w-50{
    width: 50%;
}

.cart-option-w-100{
    width: 100%;
}

.cart-option-w-25{
    width: 25%;
}

.cart-option-w-25{
    width: 25%;
}

.input-bg-theme{
    background-color: #eebf35 !important;
}

input.input-bg-theme:focus{
    background-color: #eebf35 !important;
}

.input-bg-theme-secondary{
    background-color: #ff9999 !important;
}

.document-upload{
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    cursor: pointer;
    width: 100%;
}
.cart-option-count{
    height: 100%;
    display: flex;
    align-items: center;
    background-color: #2a2928;
    justify-content: center;
}
.document-upload::after{
    position: absolute;
    right: 0;
    content: '';
    height: 100%;
    width: 7px;
    background-color: #eebf35;
}
.text-theme-success{
    color: #05b050;
}
.cart-plan-badge{
    background-color: #eebf35;
    padding: 8px 12px;
    border-radius: 8px;
    border: 1px solid #212529;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    width: fit-content;
}
.cart-upload-design{
    padding-left: 50px;
    padding-right: 50px;
}
.cart-upload-design .width-15{
    width: 15%;
}
.cart-upload-design .width-85{
    width: 85%;
}
.upload-pdf{
    height: 150px;
    width: 100%;
    background-color: #ffaf32;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    overflow: hidden;
}
.custom-control-input{
    height: 150px;
    font-size: 17px;
    padding: 12px 17px;
    background-color: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #8f8e8d;
}
.service-listing-container{
    padding: 30px 40px 40px 40px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}
.bg-color-1{
    background-color: #205f6e;
}
.bg-color-2{
    background-color: #343434;
}
.bg-color-3{
    background-color: #c84c93;
}
.swiper-pagination-custom{
    position: absolute;
    bottom: 12px !important;
}
.info-footer-count{
    position: absolute;
    top: 19px;
    left: 15px;
    padding: 4px 15px;
    border-radius: 50%;
    overflow: hidden;
    background-color: #eebf35;
}
.theme-box-shadow-light{
    box-shadow: 1px 3px 2px #c3c3c3;
}
.py-custom-1-6{
    padding-top: 1.68rem !important;
    padding-bottom: 1.68rem !important;
}
.btn-create-rfx{
    background-color: #e7e6e6;
  padding: 10px 0px;
  color: #246a86;
  font-size: 18px;
  font-weight: 700;
  box-shadow: 0 0 10px #979797;
  border-radius: 10px;
}
.btn-create-rfx:hover{
    background-color: transparent;
    border-color: #212529;
    box-shadow: 0 0 10px #979797;
}
.btn-create-rfx:focus{
    background-color: transparent;
    border-color: #212529;
    box-shadow: 0 0 10px #979797;
}
.btn-create-rfx:active{
    background-color: transparent;
    border-color: #212529;
    box-shadow: 0 0 10px #979797;
}
.btn-create-rfx img{
    border-radius: 8px;
    margin-bottom: 9px;
}
.p-custom-0{
    padding: 0 !important;
}
.section-background{
    position: relative;
}
.section-overlay{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.7);
}
.section-background .container{
    position: relative;
}
.fw-300{
    font-weight: 300;
}
.feature-btn{
    background-color: #d9d9d9;
    border-color: #d9d9d9;
    padding: 8px 25px;
    border-radius: 10px;
    box-shadow: 0px 3px 5px #bdbbbb;
}
.rfx-listing-table th{
    background-color: #212529;
    color: #ffffff;
    vertical-align: middle;
}
.rfx-listing-table td{
    vertical-align: middle;
    color: #212529;
    font-size: 14px;
    font-weight: 500;
}
.bg-theme-warning{
    background-color: #eebf35;
}
.bg-theme-danger{
    background-color: #c00000;
}
.theme-width-40{
    width: 40%;
}
.icon-badge{
    padding: 13px;
    border-radius: 50%;
}

.btn-submit-rounded{
    border-color: #000000;
    padding: 25px 11px;
    border-radius: 50%;
}
.flex-1{
    flex: 1;
}
.border-theme-dark{
    border-color: #2a2928;
}
.theme-border-1-5{
    border: 1.5px solid #2a2928;
}
.theme-form-input{
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    cursor: pointer;
    width: 100%;
}
.theme-form-input::after{
    position: absolute;
    right: 0;
    content: '';
    height: 100%;
    width: 7px;
    background-color: #eebf35;
}
.theme-form-input.decor-success::after{
    background-color: #247c12 !important;
}
.theme-form-input.decor-danger::after{
    background-color: #c00000 !important;
}
.pt-100{
    padding-top: 100px;
}
.pt-80{
    padding-top: 80px;
}
.service-order-box{
    padding: 20px 20px;
    background-color: #f2f2f2;
    border: 1px solid #dddddd;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 210px;
    gap: 1rem;
}
.btn-service-order-btn{
    background-color: #eebf35;
    border-color: #eebf35;
    color: #212529;
    font-size: 14px;
    border-radius: 0;
    padding: 14px;
    width: auto;
    overflow: hidden;
    padding: 10px 25px;
    border-radius: 30px;
}
.btn-service-order-btn:hover{
    background-color: #eebf35;
    color: #212529;
}
.service-order-summary-box{
    padding: 20px;
    background-color: #f2f2f2;
    border: 1px solid #dddddd;
    border-radius: 4px;
    height: 430px;
}
.theme-box-light{
    padding: 20px;
    background-color: #f2f2f2;
    border: 1px solid #dddddd;
    border-radius: 4px;
    position: relative;
}
.btn-theme-order-success{
    background-color: #00b050;
    border-color: #00b050;
    color: #ffffff;
    padding: 12px 50px;
}
.btn-theme-order-success:hover{
    background-color: #00b050;
    color: #ffffff;
}
.mb-40{
    margin-bottom: 40px;
}
.border-blue{
    border-bottom: 1px solid #3e91de !important;
}
.text-theme-green{
    color: #007600;
}
.cart-service-review-desc{
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 35%;
}
.service-record{
    display: flex;
    align-items: center;
    gap: 0.3rem;
}
.service-record img{
    height: 110px;
    max-width: 100%;
}
.service-record .service-record-content{
    flex: 1;
    height: 110px;
    overflow-y: auto;
    border: 1px solid #e2e2e2;
    padding: 5px;
}
.service-record .service-record-features{
    padding-left: 0;
    margin-bottom: 0;
}
.service-record .service-record-features li{
    font-size: 14px;
    color: #181717;
}
.service-record-badge{
    position: absolute;
    top: 40%;
    left: 37%;
    background-color: #ffff00;
    padding: 8px 55px;
    border: 1px solid #ec0d00;
    border-radius: 5px;
    transform: rotate(-10deg);
}
.cart-option-w-16{
    width: 16%;
}
.form-option-h-70{
    height: 70px;
}
.text-theme-light{
    color: #7f7f7f;
}
.theme-form-input.decor-none::after{
    display: none;
}
.theme-file-input-btn:hover{
    color: #7f7f7f;
    border: none;
}
.theme-file-input-btn:active{
    color: #7f7f7f;
    border: none;
}
.theme-file-input-btn:focus{
    color: #7f7f7f;
    border: none;
}
.btn-theme-light{
    background-color: #8f9095;
    border-color: #8f9095;
}
.btn-theme-light:hover{
    background-color: #848589;
    border-color: #848589;
}
.btn-theme-light:focus{
    background-color: #848589;
    border-color: #848589;
}
.btn-theme-light:active{
    background-color: #848589;
    border-color: #848589;
}

.loading-bar {
    background: #EEBF35;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999999999;
    height: 3px;
    transition: all 0.8s;
}

label.error{
    font-size: 10px;
    color: #9f2a21;
    margin-top: 10px;

}

.small.error{
    color: #9f2a21;
}

.theme-pagination-container .active>.page-link, .theme-pagination-container .page-link.active{
    background-color: #212529;
    border-color: #212529;
}
.theme-pagination-container .page-link:hover{
    color: #212529;
}
.theme-pagination-container p{
    font-size: 14px;
}
.scope-option{
    display: flex;
    align-items: center;
    gap: 0.3rem;
}
.scope-option-record{
    display: flex;
    align-items: center;
    background-color: #f2f2f2;
    color: #837f7f;
    height: 100px;
}
.scope-record-img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.scope-record-w17{
    width: 17%;
}
.scope-record-w38{
    width: 38%;
}
.scope-record-count{
    height: 100%;
    display: flex;
    align-items: center;
    background-color: #2a2928;
    justify-content: center;
}
.scope-record-w15{
    width: 15%;
}

.form-options{
    display: flex;
    align-items: center;
    gap: 0.3rem;
}
.form-option{
    background-color: #f2f2f2;
    height: 60px;
    display: flex;
    align-items: center;
}
.form-option-w-30{
    width: 30%;
}
.form-option-w-20{
    width: 20%;
}
.form-option-w-50{
    width: 50%;
}
.btn-theme-danger{
    padding: 8px 10px;
    background-color: #c00000;
    border-color: #c00000;
    color: #ffffff;
    border-radius: 8px;
}
.btn-theme-danger:hover{
    background-color: #cb1212;
    border-color: #cb1212;
    color: #ffffff;
}
.btn-theme-danger:focus{
    background-color: #cb1212;
    border-color: #cb1212;
    color: #ffffff;
}
.btn-theme-danger:active{
    background-color: #cb1212;
    border-color: #cb1212;
    color: #ffffff;
}
.fs-70{
    font-size: 70px;
}
.btn-theme-warning{
    padding: 8px 10px;
    background-color: #eebf35;
    border-color: #eebf35;
    color: #ffffff;
    border-radius: 8px;
}
.btn-theme-warning:hover{
    background-color: #edc23f;
    border-color: #edc23f;
    color: #ffffff;
}
.btn-theme-warning:focus{
    background-color: #edc23f;
    border-color: #edc23f;
    color: #ffffff;
}
.btn-theme-warning:active{
    background-color: #edc23f;
    border-color: #edc23f;
    color: #ffffff;
}
.decor-success::after{
    position: absolute;
    right: 0;
    top: 0;
    content: '';
    height: 100%;
    width: 7px;
    background-color: #247c12 !important;
}
.info-box{
    position: relative;
}
.bg-soft-success{
    background-color: #e2f0d9 !important;
}
.rfx-bid-records{
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.rfx-bid-record-w20{
    width: 20%;
}
.rfx-bid-record-w60{
    width: 60%;
}
.rfx-bid-record{
    height: 230px;
}
.service-bid-img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.bid-info-split{
    height: 115px;
}
.bg-theme-accordion-light{
    background-color: #e2f0d9;
}
.cart-service-scope{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 18px !important;
    background-color: #e6e6e6;
    border-bottom: 1px solid #ffffff;
    gap: 1rem;
}
.cart-service-scope .scope-img{
    height: 80px;
    width: 90px;
    object-fit: cover;
    border-radius: 3px;
}
.cart-product-images{
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.cart-product-image{
    height: 60px;
    width: 60px;
    border-radius: 50%;
    object-fit: contain;
    background-color: #ffffff;
    border: 1px solid #000000;
}
.cart-item-service{
    background-color: #f2f2f2;
    border-top-right-radius: 3px;
    border-top-left-radius: 3px;
    padding: 5px 10px;
    border-bottom: 2px solid #000000;
    width: 100%;
}
.search-services-list{
    position: absolute;
    background: #f2f2f2;
    top: 40px;
    z-index: 999999;
    width: 100%;
    left: 1px;
    border-bottom-right-radius: 3px;
    border-bottom-left-radius: 3px;
    max-height: 55vh;
    overflow-y: auto;
}
.search-services-list ul{
    margin-bottom: 0;
    padding-left: 0;
}
.search-services-list ul li{
    list-style: none;
}
.search-services-list ul li a{
    display: block;
    padding: 10px 20px;
    color: #212529;
    font-size: 14px;
    border-bottom: 1px solid #dfdfdf;
}
.search-services-list ul li a:hover{
    background: #d5d5d5;
}
.search-services-list ul li a:nth-last-child{
    border-bottom: none;
}
.search-processing-icon{
    position: absolute;
    right: 9px;
    top: 9px;
}
.btn-theme-modal-danger{
    background-color: #cb1212;
    border-color: #cb1212;
    color: #ffffff;
}
.btn-theme-modal-danger:hover{
    background-color: #a81616;
    border-color: #a81616;
    color: #ffffff;
}
.btn-theme-modal-danger:focus{
    background-color: #a81616;
    border-color: #a81616;
    color: #ffffff;
}
.btn-theme-modal-danger:active{
    background-color: #a81616;
    border-color: #a81616;
    color: #ffffff;
}
.display-mobile-hidden{
    display: block !important;
}
.display-desktop-hidden{
    display: none !important;
}
.header-right .input-group-text{
    background-color: #000000;
    font-size: 15px;
    color: #ffffff;
    font-weight: 600;
    padding: 0.47rem 2rem;
    border: #4c4c4c 1px solid;
    display: block;
}
.service-card .service-img{
    height: 271px;
    width: 240px;
    object-fit: cover;
}
.deal-card .service-content-description{
    height: 150px;
}
.column-services-listing .deal-card .service-content-description{
    height: 80px !important;
}
.text-theme-yellow{
    color: #d19502;
}
.order-track-condition{
    width: 100px;
    text-align: center;
}
.order-track-condition .progress{
    height: 32px;
    width: 32px;
    background-color: #ffffff;
    border-radius: 50%;
    margin: auto;
    box-shadow: -2px 1px 2px #c4c4c4;
}
.spacer{
    width: 100px;
    height: 2px;
    margin-top: 40px;
    border: 2px solid #1C274C;
}
.order-track-condition h6{
    height: 42px;
}
.progress.active{
    background-color: #1C274C;
    display: flex;
    align-items: center;
    justify-content: center;
}
.service-meta .btn-icon{
    background:none;
    border:0;
}
.service-content a,.service-content button{
    color:inherit;
}
.cart-items{
    padding: 8px 5px 8px 8px;
    background-color: #f2f2f2;
}
.cart-product-image-box{
    position: relative;
    margin-bottom: 15px;
}
.cart-product-image-box .product-quantity{
    position: absolute;
    bottom: -9px;
    left: 9px;
    padding: 2px 7px;
    border-radius: 50%;
    color: #ffffff;
    background-color: #00af50;
    font-size: 10px;
}
.cart-product-image-box .remove-product{
    position: absolute;
    bottom: -9px;
    right: 9px;
    padding: 2px 4px;
    border:0;
    border-radius: 50%;
    color: #ffffff;
    background-color: #a81616;
    font-size: 10px;
    display: block;
}
.cart-product-images{
    width: 100%;
    overflow: auto;
    scrollbar-color: #b1b1b1 #eaeaea;
    scrollbar-width: thin;
}

/* Styling the scrollbar in Chrome and Safari */
.cart-product-images::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}

.cart-product-images::-webkit-scrollbar-thumb {
    background-color: #484848; /* Set thumb color for Chrome and Safari */
}

.cart-product-images::-webkit-scrollbar-track {
    background-color: #eaeaea; /* Set track color for Chrome and Safari */
}

.service-item .service-items-products{
    background-color: #e1dede;
    padding:10px 5px;
    border-bottom-left-radius: 3px;
    border-bottom-right-radius: 3px;
}

.service-item:not(:has(.service-items-products)) .cart-item:last-child {
    border-bottom-left-radius: 3px;
    border-bottom-right-radius: 3px;
}

.theme-search-bar i{
    position: absolute;
    right: 18px;
    top: 23px;
}

label{
    font-weight: 400;
}

html[dir="rtl"] .shopping-cart{
    left: -370px;
    right: unset;
}

html[dir="rtl"] .shopping-cart.show{
    left: 0 !important;
    right: unset !important;
}

html[dir="rtl"] .sidemenu{
    right: -300px;
    left: unset;
}

html[dir="rtl"] .sidemenu.show{
    right: 0;
    left: unset !important;
}

html[dir="rtl"] ul{
    padding-right: 0;
}

html[dir="rtl"] .sidemenu ul li a, html[dir="rtl"] .sidemenu ul li button{
    text-align: right;
}

html[dir="rtl"] .theme-dropdown-list[toggle-right="true"]{
    left: 0;
    right: unset;
}

/* html[dir="rtl"] .theme-search-bar i{
    position: absolute;
    right: 18px;
    top: 23px;
} */
.header-right-content .btn-icon{
    background:none;
    border:0;
}
.notification-count{
    position: absolute;
    width: 18px;
    height: 18px;
    background: red;
    padding: 0;
    margin: 0;
    font-size: 10px;
    border-radius: 50%;
    top: -3px;
    right: -13%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-count{
    position: absolute;
    width: 16px;
    height: 16px;
    background: red;
    padding: 0;
    margin: 0;
    font-size: 10px;
    border-radius: 50%;
    top: 0;
    right: -15%;
    display: flex;
    align-items: center;
    justify-content: center;
}

html[dir="rtl"] .dir-rtl-content-right{
    justify-content: right !important;
}

.w-350{
    width: 350px !important;
}
.notification button{
    background:none;
    border:0;
}
.notification-list{
    padding: 6px;
    margin-bottom: 0;
    max-height: 72vh;
    overflow: auto;
    scrollbar-color: #b1b1b1 #eaeaea;
    scrollbar-width: thin;
}
/* Styling the scrollbar in Chrome and Safari */
.notification-list::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}

.notification-list::-webkit-scrollbar-thumb {
    background-color: #484848; /* Set thumb color for Chrome and Safari */
}

.notification-list::-webkit-scrollbar-track {
    background-color: #eaeaea; /* Set track color for Chrome and Safari */
}
.notification-list .notification{
    margin-bottom: 5px;
    border-radius: 5px;
    background-color: #f6f6f6 !important;
    height: auto;
    overflow-y: auto;
}
.notification.viewed{
    background-color: #d8d8d8 !important;
}
.notification-list .notification:last-child{
    margin-bottom: 0;
}
.notification-list .notification:hover{
    background-color: #e9ecef !important;
}
.notification-list .notification.viewed:hover{
    background-color: rgb(216, 218, 219) !important;
}
.notification.success{
    background-color: #defaab !important;
}
.notification.success:hover{
    background-color: #d6f898 !important;
}
.notification-badge{
    padding: 1px 8px;
    border-radius: 6px;
    color: #ffffff;
}
.notification-dropdown{
    cursor: auto;
}

/* Chat Styles */
.chat-count{
    position: absolute;
    width: 18px;
    height: 18px;
    background: red;
    padding: 0;
    margin: 0;
    font-size: 10px;
    border-radius: 50%;
    top: -3px;
    right: -13%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
}

.chat-dropdown{
    cursor: auto;
}

.chat-list{
    padding: 6px;
    margin-bottom: 0;
    max-height: 60vh;
    overflow: auto;
    scrollbar-color: #b1b1b1 #eaeaea;
    scrollbar-width: thin;
}

.chat-list::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}

.chat-list::-webkit-scrollbar-thumb {
    background-color: #484848;
}

.chat-list::-webkit-scrollbar-track {
    background-color: #eaeaea;
}

.chat-item{
    margin-bottom: 8px;
    border-radius: 8px;
    background-color: #f8f9fa;
    padding: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 1px solid transparent;
}

.chat-item:hover{
    background-color: #e9ecef;
    border-color: #dee2e6;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.chat-item:last-child{
    margin-bottom: 0;
}

.chat-avatar{
    position: relative;
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.chat-avatar img{
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.online-indicator{
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 12px;
    height: 12px;
    background-color: #28a745;
    border-radius: 50%;
    border: 2px solid #fff;
    box-shadow: 0 0 0 1px #28a745;
}

.offline-indicator{
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 12px;
    height: 12px;
    background-color: #6c757d;
    border-radius: 50%;
    border: 2px solid #fff;
    box-shadow: 0 0 0 1px #6c757d;
}

.chat-content{
    min-width: 0;
}

.chat-content h6{
    color: #2c3e50;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 150px;
}

.chat-content p{
    color: #6c757d;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 200px;
    line-height: 1.3;
}

.chat-badge{
    flex-shrink: 0;
}

.chat-badge .badge{
    font-size: 10px;
    padding: 4px 6px;
    border-radius: 10px;
    font-weight: 600;
}

.chat-badge .badge.bg-primary{
    background-color: #007bff !important;
}

.chat-badge .badge.bg-success{
    background-color: #28a745 !important;
}

.chat-badge .badge.bg-warning{
    background-color: #ffc107 !important;
    color: #212529 !important;
}

/* Chat tray header button */
#chatListBox .btn-outline-primary{
    border-color: #007bff;
    color: #007bff;
    font-size: 12px;
    padding: 4px 8px;
    border-radius: 4px;
}

#chatListBox .btn-outline-primary:hover{
    background-color: #007bff;
    color: white;
}

/* View all chats button */
#chatListBox .btn-outline-primary.w-100{
    border-radius: 6px;
    font-size: 13px;
    padding: 8px 12px;
    font-weight: 500;
}
.page-link{
    color: #212529 !important;
}
.theme-pagination-container .active>.page-link, .theme-pagination-container .page-link.active{
    color: #ffffff !important;
}
.info-display-box {
    border-radius: 8px;
    height: 70px;
}
.info-display-box{
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 12px 28px;
    border-radius: 8px;
    background-color: #f2f2f2;
}

.info-input-box i {
    position: absolute;
    right: 0;
}

.info-input-box i {
    font-size: 30px;
    top: 4px;
}
.info-display-box label{
    margin-bottom: 0;
    font-size: 17px;
    font-weight: 600;
    text-transform: uppercase;
}
.info-display-box .info-input-box {
    flex: 1;
    position: relative;
}   
.multipleInputs{
    display: flex;
}
.multipleInputs input {
    display: inline-block !important;
    margin: 0 4px;
    /*width: 38px;*/
    padding: 0px;
    background: #dbdbdb !important;
    height: 40px;
    border-radius: 8px;
    border: none !important;
    text-align: center;
}

.info-display-box .info-input-box{
    flex: 1;
    position: relative;
}
.info-display-box .info-input-box input{
    background: transparent;
    border: transparent;
    font-size: 17px;
    padding-right: 95px;
}
.info-display-box .info-input-box input:focus{
    box-shadow: none;
}
.info-display-box .info-input-box .info-badge{
    position: absolute;
    top: 4px;
    right: 0;
}
.info-badge{
    font-size: 14px;
    padding: 5px 12px 4px 12px;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 5px;
}
.info-badge-success{
    background-color: #00b050;
    color: #ffffff;
}
.info-form-add-input{
    position: absolute;
    right: 20px;
    bottom: 2px;
}
.info-form-add-input a{
    color: #212529;
    font-size: 26px;
}
.info-form-add-input a:hover{
    color: #434546;
}
.bg-grey{
    background-color: #7f7f7f;
}
.card-record{
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #f2f2f2;
    padding: 17px;
}
.rewards{
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex-wrap: wrap;
}
.reward{
    padding: 20px 13px 13px 13px;
    text-align: center;
    width: 150px;
    background-color: #212529;
    border-radius: 10px;
}
.reward a{
    border-radius: 5px;
}
.reward-activity-card{
    position: relative;
    padding: 15px 15px 15px 50px;
    background-color: #f2f2f2;
    border: 1px solid #e9e8e8;
    border-radius: 3px;
    overflow: hidden;
}
.reward-activity-card .card-badge{
    width: auto;
    left: 0;
}
.reward-activity-card a{
    position: absolute;
    top: 5px;
    right: 5px;
}
.reward-status-widget{
    position: relative;
    height: 240px;
    overflow: hidden;
    border-radius: 8px;
    border: 1px solid #e9e8e8;
    padding: 15px;
}
.reward-status-widget .info-heading{
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.reward-status-widget .info-heading .icon-box{
    font-size: 26px;
    color: #ffffff;
    padding: 0 7px;
    border-radius: 50%;
    border: 2px solid #ffffff;
}
.reward-status-widget .toggle-btn{
    position: absolute;
    bottom: 3px;
    right: 13px;
}
.reward-status-widget .progress{
    position: relative;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    color: #ffffff;
    background: #eebf35;
    margin: auto;
    margin-bottom: 5px;
}
.reward-status-widget .progress h3{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 18px;
    font-weight: 300;
    z-index: 1;
}
.reward-status-widget .progress h3 span{
    font-size: 15px;
    font-weight: 300;
}
.reward-status-widget .progress::before{
    content: '';
    display: block;
    height: 100%;
    margin-left: 50%;
    transform-origin: left;
    border-radius: 0 100% 100% 0/50%;
    transform: rotate(calc(((85 - 50) * 0.01turn )));
    background: #eebf35;
}
.reward-status-widget .progress::after{
    content: '';
    position: absolute;
    inset: 2px;
    border-radius: 50%;
    background: #212529;
}
.right-0{
    right: 0 !important;
}
.search-btn{
    cursor: pointer;
}
.position-static{
    position: static !important;
}

.text-sm-center{
    text-align: left !important;
}
.pr-20{
    padding-right: 20px !important;
    padding-left: unset !important;
}
html[dir="rtl"] .pr-20{
    padding-left: 20px !important;
    padding-right: unset !important;
}
html[dir="rtl"] .footer-list li{
    text-align: right !important;
}
html[dir="rtl"] .text-sm-center{
    text-align: right !important;
}
html[dir="rtl"] .justify-content-sm-center{
    justify-content: right !important;
}

input::-webkit-outer-spin-button,input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}

.order-detail-widget{
    background-color: #2A2928 !important;
    width: 150px;
}

.bg-light-success{
    background-color: #e2f0d9;
}

.border-light-1{
    border: 1px solid #dbe0d9;
}

.bg-light-warning{
    background-color: #fff2cc;
}
.text-end{
    text-align: right !important;
}
.sidemenu ul{
    padding-right: 0 !important;
}
.password-eye-btn{
    padding: 10px 15px;
    border-radius: 0;
}
.form-control{
    border-color: transparent;
    background-color: transparent;
}
.form-control:focus{
    border-color: transparent;
    box-shadow: none;
    background-color: transparent;
}
.profile-img-header{
    height: 50px;
    width: 50px;
    object-fit: cover;
    background-color: #484744;
    border-radius: 50%;
}
.profile-btn-header{
    position: relative;
}
.profile-img-header-edit{
    position: absolute;
    top: 15px;
    right: -12px;
    font-size: 12px;
    color: #ffffff;
    padding: 0px 4px;
    background-color: black;
    border-radius: 50%;
}
.profile-img-header-edit:hover{
    color: #ffffff;
}
.dashboard-list-dropdown{
    width: 170px;
    padding: 5px;
}
.dashboard-list-dropdown li{
    background-color: #f2f2f2;
    border-radius: 5px;
    margin-bottom: 3px;
}
.dashboard-list-dropdown li:last-child{
    margin-bottom: 0;
}
.border-radius-10{
    border-radius: 10px;
}
.form-input-h-115{
    height: 115px;
}

.text-left{
    text-align: left;
}

.rfx-listing-table .theme-dropdown{
    position: static;
}

.address-information-box{
    padding: 22px 22px 45px 22px;
    background-color: #f2f2f2;
    position: relative;
    margin-bottom: 10px;
    border: 2px solid #bbbbbb;
    border-radius: 8px;
}
.primary-address-check{
    background-color: #aba8a8;
    color: #f5f2f2;
    padding: 4px 15px 4px 15px;
    border-radius: 20px;
    position: absolute;
    top: 14px;
    right: 20px;
    font-size: 12px;
    cursor: pointer;
}
.primary-address-check.active{
    background-color: #2fb52f;
}
.bg-input-changed{
    background-color: aliceblue !important;
}
.cursor-pointer{
    cursor: pointer;
}
.address-box{
    border: 1px solid #cbcbcb;
}
.address-box.active{
    background-color: #f0f8ff !important;
}
.wishlist-action-btn{
    width: 20px;
    display: block;
    text-align: center;
}
.theme-breadcrumb a{
    text-decoration: underline !important;
}
.theme-breadcrumb span{
    text-decoration: underline !important;
}
.filter-box{
    padding: 5px 22px;
    background-color: #f2f2f2;
    display: flex;
    gap: 2.5rem;
    align-items: center;
    justify-content: space-between;
    width: fit-content;
    border-radius: 20px;
}
.filter-box .filter-buttons{
    display: flex;
    align-items: center;
    gap: 0.4rem;
}
.seller-storefront-header{
    padding: 40px 0;
    background-color: #eebf35;
}
.btn-custom-padding{
    padding: 1px 8px !important;
}
.btn-theme-green{
    padding: 5px 35px;
    background: #00af50;
    border-color: #00af50;
    color: #ffffff;
    border-radius: 8px;
}
.btn-theme-green:hover{
    background: #009342;
    border-color: #009342;
    color: #ffffff;
}
.seller-information{
    padding: 20px;
    border: 1px solid #c59607;
    border-radius: 20px;
}
.text-muted{
    color: #6c757d !important;
}
.service-variation-h-100{
    height: 100px !important;
}
.cart-item-option-img{
    height: 65px;
    width: 107px;
    max-width: 100%;
    object-fit: cover;
}
.cart-options-selected-header{
    background-color: #565555;
}
.cart-options-selected-header p{
    color: #ffffff !important;
}
.cart-page-options-selected-header{
    background-color: #d7d5d5;
    border-bottom: 1px solid #ffffff;
}
.cart-options-selected-header p{
    letter-spacing: 1px !important;
}
.cart-page-options-selected-header p{
    color: #000000 !important;
}
.background-light{
    background-color: #f9f9f9;
}
.flex-wrap{
    flex-wrap: wrap;
}
.modular-b-variation{
    width: 150px;
}
.modular-b-variation img{
    width: 100%;
    height: 100px;
    object-fit: cover;
    border-radius: 10px;
    border: 5px solid #e7e6e6;
}
.btn-scope-variation[data-selected="true"] img{
    border-color: #00b050;
    box-shadow: 0 0 11px #00b050a8;
}
.order-tracking-step{
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 0.4rem;
    margin-bottom: 45px;
    cursor: pointer;
}
.order-tracking-step p{
    font-size: 14px;
    text-align: center;
    font-weight: 300;
}
.order-tracking-step .tracking-status-checkmark{
    font-size: 38px;
}
.order-tracking-step.checked{
    color: #1c7f00;
}

.order-tracking-step.pending .tracking-status-checkmark{
    color: #d0cece;
}

.order-tracking-step.resubmitted .tracking-status-checkmark{
    color: #41afff;
}

.order-tracking-step.rejected{
    color: #d50404;
}

.document-box{
    padding: 5px 20px 5px 15px;
    background-color: #ffffff;
    border-left: 2px solid #780202;
    width: fit-content;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.documents-list-approved .document-box{
    padding: 5px 20px 5px 15px;
    background-color: #ffffff;
    border-left: 2px solid green;
    width: fit-content;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.bg-soft-danger{
    background-color: #faebd7;
}

.border-1{
    border: 1px solid #dddddd;
}

.border-1:focus{
    border: 1px solid #dddddd;
}

#updateDocumentForm label.error{
    margin-top: 0 !important;
}

.site-visit-slot{
    display: flex;
    align-items: center;
    gap: 6px;
    background-color: #f2f2f2;
    padding: 5px;
    border-radius: 5px;
    cursor: pointer;
    margin-bottom: 10px;
    border: 1px solid #f2f2f2;
}
.site-visit-slot.active{
    background-color: #ecffe7;
    border-color: #9cd890;
}

.consultation-slot{
    display: flex;
    align-items: center;
    gap: 6px;
    background-color: #f2f2f2;
    padding: 5px;
    border-radius: 5px;
    cursor: pointer;
    margin-bottom: 10px;
    border: 1px solid #f2f2f2;
}
.consultation-slot.active{
    background-color: #ecffe7;
    border-color: #9cd890;
}

.appointment-slot{
    display: flex;
    align-items: center;
    gap: 6px;
    background-color: #f2f2f2;
    padding: 5px;
    border-radius: 5px;
    cursor: pointer;
    margin-bottom: 10px;
    border: 1px solid #f2f2f2;
}
.appointment-slot.active{
    background-color: #ecffe7;
    border-color: #9cd890;
}

.dropoff-pickup-slot{
    display: flex;
    align-items: center;
    gap: 6px;
    background-color: #f2f2f2;
    padding: 5px;
    border-radius: 5px;
    cursor: pointer;
    margin-bottom: 10px;
    border: 1px solid #f2f2f2;
    flex-direction: column;
}
.dropoff-pickup-slot.active{
    background-color: #ecffe7;
    border-color: #9cd890;
}
.dropoff-pickup-slot .dropoff-date-time-box, .dropoff-pickup-slot .pickup-date-time-box{
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 10px;
}

.dropoff-pickup-slot .dropoff-date-time-box{
    border-bottom: 1px solid #d7d7d7;
}

.pr-20{
    padding-right: 20px;
}

.acitivity-timeline {
    position: relative;
    overflow: hidden;
}
.acitivity-timeline .acitivity-item {
    position: relative;
}
.acitivity-timeline .acitivity-item .flex-shrink-0 {
    z-index: 2;
}
.acitivity-timeline .acitivity-item .acitivity-avatar {
    height: 32px;
    width: 32px;
	border-radius:50%;
}
.avatar-title {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	color: #fff;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	height: 100%;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	width: 100%;
}
.acitivity-timeline .acitivity-item:before {
    content: "";
    position: absolute;
    border-left: 1px dashed #e9ebec;
    left: 16px;
    height: 100%;
    top: 5px;
    z-index: 0;
}
.acitivity-timeline .acitivity-item:last-child::before {
    border-color: transparent;
}
.rounded-circle {
	border-radius: 50% !important;
}
.bg-primary-subtle {
	background-color: #e2e5ed;
}
.small, small {
	font-size: .875em;
}
.badge {
	line-height: .95;
	font-size:10px;
}
.bg-success-subtle{
	background:#daf4f0;
}
.bg-danger-subtle{
	background:#fde8e4;
}
.document-upload-accordion{
    position: relative;
}
.document-increment{
    position: absolute;
    top: 28px;
    right: 15px;
}
.btn-doucment-element-remove{
    padding: 3px 9px;
}
.btn-doucment-element-add{
    padding: 3px 8px;
}
.btn-doucment-element-remove i, .btn-doucment-element-add i{
    font-size: 13px;
}
.notyf__toast{
    max-width: 390px !important;
}
.notyf__ripple{
    width: 500px !important;
}

/* google translate css */
body .skiptranslate:first-child {
    display: none !important;
}

#google_translate_element .goog-te-gadget{
    display: block !important;
}

body {
    top: 0px !important;
}

#google_translate_element{
    position: static;
}

#google_translate_element .goog-te-gadget-simple{
    padding: 6px 8px;
    border-radius: 8px;
}

#google_translate_element .goog-te-gadget-simple img{
    display: none;
}

#goog-gt-tt{
    display: none !important;
}

.accordion-button .fa-bars  , .info-box-div .fa-bars{
	position: absolute;
	right: 0;
	color: #1F4E79;
	top: 0;
	bottom: 0;
}
.accordion-button  {
	background: #F2F2F2 !important;
	min-height: 72px;
}
.accordion-button span , .info-box-div span {
	color: #1F4E79;
	line-height: 24px;
}
.accordion-button::after{
	display: none;
}
.accordion-button i , .info-box-div i , .info-box-div img , .accordion-item a.accordion-button img {
	color: grey;
	font-size: 28px;
	width: 38px;
	text-align: center;
	margin-right: 10px;
	align-content: center;
}

.promo-img{
    width: 109px;
    height: 94px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #f2f2f2;
    background-color: #5d5d5d;
}
.promo-img-avatar{
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.promo-img-placeholder{
    font-size: 50px;
    color: #ffc107;
}
.promo-plan{
    background: #F7F7F7;
    padding: 20px 20px 0 20px;
    border-radius: 20px;
}
.promo-plan p{
    font-weight: 400;
    margin-bottom: 0px;
}
.promo-plan-btn{
    text-align: right;
    padding: 15px 0 20px;
}
.promo-span{
    color: #1F4E79;
}
.promo-c{
    font-size: 13px;
}
.btn-red-white{
    padding: 10px 40px;
    border-radius: 10px;
    background: #FF2200 !important;
    color: #ffffff !important;
}
.loyalty-btn-red-white{
    padding: 10px 15px;
    border-radius: 10px;
    background: #FF2200 !important;
    color: #ffffff !important;
}
.loyalty-yellow-black{
    padding: 10px 15px;
    border-radius: 10px;
    background: #FFB902 !important;
    color: #2A2925 !important;
}
.loyalty-btn-green-white{
    padding: 10px 15px;
    border-radius: 10px;
    background: #27ae60 !important;
    border-color: #27ae60;
    color: #ffffff !important;
}
.text-red{
    color: #FF2200 !important;
}
.text-blue{
    color: #1F4E79 !important;
}
#promo-codes h3{
    font-weight: 400;
}
#buyer-content {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}
#buyer-content {
    min-height: 100vh;;
    padding:30px 110px;
    background-size: cover;
}
.subscription-plan{
    background: #F7F7F7;
    padding: 20px 15px 0 15px;
    border-radius: 20px;
}
.subscription-c{
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 5px;
}
.btn-link:focus{
    box-shadow: none !important;
}



/* #google_translate_element {
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 9999;
    background-color: #fff;
    border: 1px solid #ccc;
    padding: 6px 10px;
    border-radius: 5px;
    box-shadow: 0 0 5px rgba(0,0,0,0.1);
} */

/* .goog-logo-link, .goog-te-gadget span {
    display: none !important;
}

.goog-te-combo {
    padding: 4px 8px;
    font-size: 14px;
    border-radius: 4px;
} */

.milestone-payment-record.selected{
    padding: 10px;
    background: #707f98;
    border-radius: 10px;
}

.milestone-payment-record.selected .service-plan-width-60{
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    overflow: hidden;
}

.milestone-payment-record.selected .service-plan-width-26{
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    overflow: hidden;
}

.milestone-payment-record.selected .service-plan-width-26 p{
    font-size: 16px !important;
    font-weight: 700 !important;
}

.flex-shrink-0{
    flex-shrink: 0;
}

.width-75px{
    width: 75px !important;
}

.total-payable-amount{
    background-color: #eebf35;
    width: fit-content;
    margin-left: auto;
    padding: 15px;
    border-radius: 10px;
}

.promo-code-seller-block{
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-bottom: 0.5rem;
}

.promo-code-seller-block:last-child{
    margin-bottom: 0;
}

.promo-code-form-view{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.4rem;
}
.seller-info-view{
    flex: 1;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    background: #F2F2F2;
    height: 128px;
}
.seller-info-view .seller-business-logo{
    height: 100%;
    width: 148px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 600;
}
.seller-info-view .seller-business-logo img{
    width: 148px;
    height: 100%;
    object-fit: cover;
}
.seller-info-view .seller-count{
    height: 100%;
    width: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    background-color: #2b2b2b;
    color: #ffffff;
    flex-shrink: 0;
}
.seller-info-view .seller-info-content{
    padding: 10px 20px;
}

.seller-info-view .seller-info-content h6{
    font-weight: 500;
    line-height: 23px;
}

.promo-code-form{
    flex: 1;
    background-color: #F2F2F2;
    height: 128px;
    padding: 10px 20px;
    display: flex;
    align-items: start;
    justify-content: center;
    flex-direction: column;
}

.promo-code-form h6{
    font-weight: 500;
}

.promo-code-form .form-control{
    background-color: #ffffff;
    border-radius: 30px;
}

.seller-service-total{
    background-color: #F2F2F2;
    height: 128px;
    padding: 10px 40px;
    display: flex;
    align-items: start;
    justify-content: center;
    flex-direction: column;
}
.seller-service-block{
    background-color: #F2F2F2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 90px;
    padding: 15px;
    border-radius: 8px;
}
.service-info-left{
    display: flex;
    align-items: center;
    gap: 0.85rem;
    height: 100%;
}
.service-info-left img{
    height: 100%;
    width: 80px;
    object-fit: cover;
    border-radius: 6px;
}

.text-decoration-line-through{
    text-decoration: line-through;
}

.service-pricing-info h5{
    text-align: end;
}

.otp-form-box{
    padding: 40px 10px;
    background-color: rgb(24, 23, 23, 0.8);
    border-radius: 19px;
}

.otp-form-box .otp-form{
    width: 75%;
    margin: auto;
}

.password-form-box{
    padding: 40px 10px;
    background-color: rgb(24, 23, 23, 0.8);
    border-radius: 19px;
}

.password-form-box .password-form{
    width: 85%;
    margin: auto;
}

.profile-setting-btn{
    white-space: no-wrap;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
}

.action-btn-icon{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.theme-loading-box{
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.file-item{
    padding: 10px 15px 10px 0;
    background-color: #ffffff;
    display: flex;
    border-radius: 10px;
    border: 2px solid #efefef;
    min-width: 32%;
}

.file-icon{
    height: 40px;
    width: 40px;
    background-color: #efefef;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 20px;
    color: #4c4c4c;
}

.pac-container {
    z-index: 9999 !important;
}

.booking-type-option{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    width: 100%;
    gap: 20rem;
    cursor: pointer;
}

.booking-type-option.disabled{
    cursor: auto !important;
}

.booking-type-option-content{
    display: flex;
    align-items: center;
    gap: 8px;
}

.booking-type-option-info{
    display: flex;
    align-items: center;
    gap: 12px;
}

.booking-type-options{
    display: flex;
    gap: 9px;
    flex-direction: column;
    width: 100%;
}

.schedule-service-slots-info{
    display: flex;
    gap: 20px;
    padding: 20px;
}

.select-slot-date-info .select-slot-date-info-box{
    padding: 8px;
    background-color: #ffffff;
    border: 1px solid #dedede;
    border-radius: 10px;
    margin-bottom: 10px;
}

.schedule-slots{
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    flex: 1;
    height: fit-content;  
}

.schedule-slots .slot{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 8px;
    background-color: #f4f4f4;
    height: 55px;
    cursor: pointer;
    width: 190px;
    border-radius: 10px;
}

.schedule-slots .slot.active{
    border: 2px solid #eebf35;
    background-color: #fff9e8 !important;
}

.schedule-slots .slot.disabled{
    background-color: #fff9e8 !important;
}

.schedule-slots .slot.filling-fast{
    background-color: #f9eed2 !important;
}

.schedule-slots .slot.just-available{
    background-color: rgba(54, 89, 83, 0.1) !important;
}

.schedule-slots .slot-last{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 8px;
    background-color: #f4f4f4;
    height: 55px;
    cursor: pointer;
    width: 190px;
    border-radius: 10px;
}

.schedule-slots .slot-last.active{
    border: 2px solid #eebf35;
    background-color: #fff9e8 !important;
}

.schedule-slots .slot-last.disabled{
    background-color: #fff9e8 !important;
}

.schedule-slots .slot-last.filling-fast{
    background-color: #f9eed2 !important;
}

.schedule-slots .slot-last.just-available{
    background-color: rgba(54, 89, 83, 0.1) !important;
}

.text-theme-muted{
    color: #939393 !important;
}

@media only screen and (min-width: 998px){
    .select-slot-date-info{
        width: 30%;
        flex-shrink: 0;
    }
}

.select-slot-date-info{
    padding: 10px;
    background-color: #f4f4f4;
    border-radius: 8px;
}

.slots-box{
   padding: 12px 15px;
   border: 1px solid #eeeeee; 
   border-radius: 10px;
   box-shadow: 0 0 10px #f2f2f2;
}

.availability-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.availability-item {
    position: relative;
    cursor: pointer;
    margin-bottom: 0;
}

.availability-item input {
    display: none;
}

.availability-item span {
    display: inline-block;
    padding: 8px 15px;
    border-radius: 30px;
    background: #fff;
    border: 1px solid #ddd;
    font-size: 14px;
}

/* Rating Start Input */
.availability-item input:checked + span {
    border-color: #f9c97a;
    background: #fff9e8;
    color: #000;
    font-weight: 600;
    box-shadow: 0 0 0 2px #f9c97a55;
}

.rating-wrapper {
    align-items: center;
    gap: 10px;
}

.rating-input {
    display: inline-flex;
    flex-direction: row-reverse; 
}

.rating-input input {
    display: none;
}

.rating-input label {
    font-size: 26px;
    color: #d3cfc9; 
    cursor: pointer;
    transition: color 0.2s;
    margin-bottom: 0;
}

/* Hover: fill all stars from left to right */
.rating-input label:hover,
.rating-input label:hover ~ label {
    color: #ffcc33;
}

/* Selected: fill all previous stars */
.rating-input input:checked ~ label {
    color: #ffcc33;
}

.buyer-dashboard .theme-card-1, .buyer-dashboard .theme-card-2{
    cursor: pointer;
}

.mt-10{
    margin-top: 10px !important;
}
.w-fit-content{
    width: fit-content !important;
}

.btn-focus-style-disable{
    background-color: rgba(242, 242, 242, 1);
}
.btn-focus-style-disable:hover{
    background-color: rgba(242, 242, 242, 1);
}

.btn-focus-style-disable:focus, .btn-focus-style-disable:active{
    box-shadow: none;
    background-color: rgba(242, 242, 242, 1);
}

.cart-concierge-product-row .cart-option-count{
    width: 45px;
}

.service-option-variation-record .service-option-content{
    height: 90px;
}

.cart-product-image-box .position-relative{
    width: fit-content;
}

.cart-product-image-box .remove-product{
    right: 3px !important;
}

.cart-product-image-box .badge.bg-light{
    text-align: left !important;
    width: fit-content !important;
}

.multiday-slots-info-type{
    display: flex;
    align-items: center;
    gap: 22px;
    padding: 15px 20px;
}

.multiday-slots-type-view{
    display: flex;
    gap: 20px;
    padding: 0 20px 20px 20px;
}

.day-heading{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 0 20px;
    margin-bottom: 10px;
}

.add-day-btn-container{
    padding: 0 20px;
}

.booking-table{
    width: 40%;
    margin-left: auto;
}

.booking-cost-calculations{
    padding: 0 20px;
}

.order-tracking-step.disabled{
    opacity: 0.5;
}

.shopping-cart .warranty-item{
    display: flex;
    background-color: #e1dede;
    overflow: hidden;
    position: relative;
    margin-bottom: 2px;
}

.warranty-view{
    position: absolute;
    bottom: 3px;
    right: 5px;
    height: 20px;
    width: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    color: #ffffff;
    background-color: #00af50;
    font-size: 10px;
}

.warranty-view i{
    margin-top: 1px;
}

.warranty-view:hover{
    color: #ffffff;
}

.bg-image-light{
    background-color: #f4faff;
}

.warranty-list-box{
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eeeeee;
}

.warranty-list-row{
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 5px;
}

.warranty-list-info{
    background: #f4f4f4;
    padding: 10px 15px;
    border-radius: 8px;
    margin-bottom: 10px;
}

.warranty-list-row .warranty-icon{
    height: 100px;
    width: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fefefe;
    border-radius: 5px;
    overflow: hidden;
}
.warranty-list-row .warranty-icon img{
    height: 100%;
    width: 100%;
    object-fit: contain;
}

.warranty-list-row .warranty-list-info-box{
    height: 100px;
    width: 110px;
    background-color: #fefefe;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    border-radius: 5px;
    overflow: hidden;
}

.warranty-list-row .warranty-list-info-box.box-width-lg{
    flex: 1;
}

.warranty-list-row .warranty-list-info-box .claim-btn{
    height: 100px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #edbe35;
    border-color: #edbe35;
    color: #181717;
}
.warranty-list-row .warranty-list-info-box .claim-btn:hover{
    transition: all 0.5s ease;
    background-color: #e9b92d;
    border-color: #e9b92d;
}

.warranty-list-row .warranty-list-info-box .claim-view-btn{
    height: 100px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #1fa930;
    border-color: #1fa930;
    color: #ffffff;
}

.warranty-list-row .warranty-list-info-box .claim-view-btn:hover{
    transition: all 0.5s ease;
    background-color: #179c28;
    border-color: #179c28;
}

.warranty-list-row .warranty-list-info-box .claim-buyer-notes-btn{
    height: 100px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #636363;
    border-color: #636363;
    color: #ffffff;
}

.warranty-list-row .warranty-list-info-box .claim-buyer-notes-btn:hover{
    transition: all 0.5s ease;
    background-color: #535353;
    border-color: #535353;
}

.box-bg-success{
    background-color: #1fa930 !important;
}

.box-bg-danger{
    background-color: #c0392b !important;
}

.box-bg-primary{
    background-color: #2c3e50 !important;
}

.box-bg-warning{
    background-color: #e67e22 !important;
}

.box-bg-success-light{
    background-color: #27ae60 !important;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.order-summary-row .order-summary-box{
    box-shadow: 0 0 5px #f2f2f2;
    padding: 18px 25px;
    border-radius: 10px;
    border: 1px solid #f2f2f2;
}

.milestone-payment-record.summary-milestone-record{
    width: 100%;
    border-radius: 5px;
    overflow: hidden;
}

.milestone-payment-record.summary-milestone-record .service-plan-count, .milestone-payment-record.summary-milestone-record .service-plan-option-content{
    height: 35px;
} 

.order-info-progress{
    display: flex;
    flex-wrap: wrap;
}

.order-info-progress-box{
    display: flex;
    gap: 10px;
    background-color: #f8f9fa;
    border-radius: 1rem;
    border: 1px solid #eeeeee;
    padding: 1rem;
    min-height: 100px;
    margin-bottom: 20px;
    height: fit-content;
}

.btn-order-info{
    border: 1px solid #acacac;
    color: #3c3c3c;
}

.btn-order-info:hover, .btn-order-info:active, .btn-order-info:focus{
    background-color: #3c3c3c;
    border: 1px solid #3c3c3c;
    color: #ffffff;
}

.order-info-progress-box .order-step-info{
    max-width: 275px;
}

.progress-seperator{
    height: 1px;
    width: 20px;
    border-bottom: 1px solid #e5e7eb;
    padding-top: 50px;
}

.border-bottom-theme{
    border-bottom: 1px solid #e1e1e1;
}

#conciergeChecklistShow div:last-child{
    border-bottom: none !important;
}

#conciergeChecklistShow .checklist-list-item{
    display: flex;
    gap: 0.5rem;
    padding: 10px 15px;
    background-color: #f7f7f7;
    border-radius: 8px;
    margin-bottom: 10px;
}

.theme-card-2.opacity-8{
    background-color: #4a4b4a;
}

.slot-sts-show{
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.slot-sts-show.filling-fast .indicator{
    height: 10px;
    width: 10px;
    border-radius: 50%;
    background-color: #f9eed2 !important;
    border: 1px solid #d5b154;
}

.slot-sts-show.just-available .indicator{
    height: 10px;
    width: 10px;
    border-radius: 50%;
    background-color: rgba(54, 89, 83, 0.1) !important;
    border: 1px solid rgba(54, 89, 83, 0.8);
}