/* @import '../css/responsive.css';
@import '../css/variable.css'; */

@font-face {
    font-family: Inter;
    src: url(/assets/fonts/Inter-Regular.ttf);
}

@font-face {
    font-family: Inter-Black;
    src: url(/assets/fonts/Inter-Black.ttf);
}

@font-face {
    font-family: Inter-Bold;
    src: url(/assets/fonts/Inter-Bold.ttf);
}

@font-face {
    font-family: Inter-ExtraBold;
    src: url(/assets/fonts/Inter-ExtraBold.ttf);
}

@font-face {
    font-family: Inter-Medium;
    src: url(/assets/fonts/Inter-Medium.ttf);
}

@font-face {
    font-family: Inter-SemiBold;
    src: url(/assets/fonts/Inter-SemiBold.ttf);
}

html {
    position: relative;
    min-height: 100%;
}

body {
    background: #f1f1f1;
    overflow-x: hidden;
      font-family: Inter;
}

.mt-0 {
    margin-top: 0px !important;
}

.m-0 {
    margin: 0 !important;
}

.mt-5 {
    margin-top: 5px !important;
}

.mt-10 {
    margin-top: 10px !important;
}

.mt-15 {
    margin-top: 15px !important;
}

.mt-20 {
    margin-top: 20px !important;
}

.mt-25 {
    margin-top: 25px !important;
}

.mt-30 {
    margin-top: 30px !important;
}

.mt-35 {
    margin-top: 35px !important;
}

.mt-40 {
    margin-top: 40px !important;
}

.mt-45 {
    margin-top: 45px !important;
}

.mb-45 {
    margin-bottom: 45px !important;
}

.mt-50 {
    margin-top: 50px !important;
}

.mt-80 {
    margin-top: 80px !important;
}

.mb-0 {
    margin-bottom: 0 !important;
}

.mb-10 {
    margin-bottom: 10px !important;
}

.mb-15 {
    margin-bottom: 15px !important;
}

.mb-20 {
    margin-bottom: 20px !important;
}

.mb-25 {
    margin-bottom: 25px !important;
}

.mb-30 {
    margin-bottom: 30px !important;
}

.mb-35 {
    margin-bottom: 35px !important;
}

.mb-40 {
    margin-bottom: 40px !important;
}

.mb-9 {
    margin-bottom: 9px !important;
}

#wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    height: 100%;
    width: 100%;
}
.dashboard-page .dashboard-card-link {
    text-decoration: none;
}
.app-menu {
    top: 0;
    position: sticky;
    z-index: 1001;
    height: 100vh;
    min-height: 100vh;
    max-height: 100vh;
    width: var(--ct-leftbar-width);
    min-width: var(--ct-leftbar-width);
    padding-bottom: 70px;
    -webkit-transition: all 0.1s ease-in-out;
    transition: all 0.1s ease-in-out;
    background: #222D32;
    /* -webkit-box-shadow: 0px 0px 35px 0px rgba(154, 161, 171, 0.15);
    box-shadow: 0px 0px 35px 0px rgba(154, 161, 171, 0.15); */
}

.app-menu.show {
    opacity: 1;
    z-index: 1055;
    margin-left: 0;
}

.content-page {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    width: 100%;
    position: relative;
    -webkit-transition: all 0.1s ease-in-out;
    transition: all 0.1s ease-in-out;
}

.navbar-custom {
    background: #222D32;
    min-height: 70px;
    top: 0;
    position: sticky;
    -webkit-transition: all 0.1s ease-in-out;
    transition: all 0.1s ease-in-out;
    z-index: 1000;
    /* -webkit-box-shadow: 0px 0px 35px 0px rgba(154, 161, 171, 0.15);
    box-shadow: 0px 0px 35px 0px rgba(154, 161, 171, 0.15); */
    display: flex;
    align-items: center;
    padding: 9px 15px;
}
.navbar-text {
  color: #fff;
}
.btnLogout {
  border: 0;
  background: transparent;
  color: #EE7D30;
}
.menuBtn {
  color: #fff;
}
.content-page .content {
    min-height: calc(100vh - 70px);
    padding: 27px 40px 60px;
    overflow: hidden;
    overflow-y: auto;
}

.logo-box {
    top: 0;
  position: sticky;
  z-index: 1000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  white-space: nowrap;
  height: 72px;
  -webkit-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
  padding: 9px 10px;
}

.logo-box .logo {
    display: block;
}

.logo-box .logo img {
   width: 100%;
  max-width: 225px;
}

.app-menu .menu-wraper {
    margin-top: 3px;
}

.app-menu .menu-wraper ul {
    padding: 0 0;
}

.app-menu .menu-wraper ul li {
    list-style: none;
    margin-bottom: 0;
}

.app-menu .menu-wraper ul li a {
    text-decoration: none;
    display: flex;
    align-items: center;
    min-height: 47px;
    color: #d7d7d7;
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding: 0 15px;
    border-left: 3px solid transparent;
    justify-content: space-between;
      -webkit-transition: all 0.1s ease-in-out;
    transition: all 0.1s ease-in-out;

}

.app-menu .menu-wraper ul li.active a,
.app-menu .menu-wraper ul li a:hover {
    background: #1E282C;
    /* box-shadow: 0px 4px 32px 0px rgba(0, 0, 0, 0.12); */
    color: #ffffff;
    font-weight: 600 !important;
    border-color: #fff;
}

.app-menu .menu-wraper ul li.active a .menuIcon i {
    color: #ffffff;
}

.app-menu .menu-wraper ul li a .menuIcon i {
    font-size: 16px;
}

.app-menu .menu-wraper ul li a .menuIcon {
    display: inline-flex;
    min-width: 20px;
    max-width: 20px;
    margin-right: 10px;
    height: auto;
}

.rightSidenav {
    flex: 1 1 0%;
    text-align: right;
    text-align: right;
    display: flex;
    /*align-items: center;*/
    align-items: baseline;
    justify-content: end;
    gap: 20px;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.notification {
    border: none;
    cursor: pointer;
    background: transparent;
    border-radius: 0;
    color: #AEAEAE;
}

.notification i {
    font-size: 30px;
}

.dropdown-button {
    padding: 8px 14px;
    border-radius: 7px;
    background: #1E282C;
    border: none;
    cursor: pointer;
    color: #ffffff;
    text-align: right;
    font-family: Inter-SemiBold;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 25px;
    line-height: normal;
}

.dropdown-button span {
    color: #d0d0d0;
    text-align: right;
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    display: block;
}

.dropdown-list {
    display: none;
    position: absolute;
    background-color: #1E282C;
    min-width: 160px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1;
    left: 0;
    right: 0;
    text-align: left;
    top: 100%;
}

.dropdown-list::before {
    content: "";
    position: absolute;
    top: -10px;
    left: 50%;
    /* Adjust this depending on your layout */
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 10px solid #1E282C;
}

.dropdown-list a {
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    color: #ffffff;
    font-size: 14px;
    font-family: Inter;
}

.dropdown-list a:hover {
    background-color: #1E282C;
}

.dropdown .show {
    display: block;
}

.btn-primary {
   background: var(--primary);
  color: #fff;
  border-radius: 6px;
  /*min-height: 56px;*/
  font-family: Inter-SemiBold;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  padding: 10px 20px;
  text-transform: capitalize;
}

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

/* .btn-primary:focus */
.btn-primary:active {
    background: var(--primary);
}
.btn-secondary {
   padding: 10px 20px;
}
.page-link {
    color: var(--text-black);
}

button.badgebtn {
    background: transparent;
    border-radius: 0;
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

@media screen and (max-width:767px) {
    .content-page .content {
        padding: 27px 15px 60px;
    }

    .navbar-custom {
        min-height: auto;
        flex-wrap: wrap;
    }

    .leftSide {
        justify-content: space-between;
        flex: 1 1 0;
    }

    .rightSidenav {
        justify-content: space-between;
        gap: 20px;
    }


}


.select2-selection__choice__remove {
    width: auto !important;
}

.eye-icon-btn {
    cursor: pointer;
    padding: 0 10px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f9f9f9;
    border-radius: 0 7px 7px 0;
}

.title01 {
  font-family: Inter-Bold;
  color: #000;
  font-size: 24px;
  margin:0;
}
.card01 {
  background: #fff;
  padding: 40px 30px;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom:15px;
}

.card01 i{
    font-size:28px;
}

.card01 h3{
    font-family: Inter-Bold;
  color: #000;
  font-size: 18px;
  margin-top:20px;
  margin-bottom:0;
}
.dashboard-card-link {
    text-decoration: none;
}

.box-height {
    display: flex;
    align-items: stretch;
    justify-content: stretch;
}

.box-height>* {
    width: 100%;
}


.item-style-01 {
    background: #fff;
    margin-bottom: 15px;
    display: flex;
    min-height: 55px;
}

.item-style-01 .item-thumbnail {
    width: 80px;
    min-height: 80px;
    min-width: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 32px;
    background: var(--primary);
}

.item-thumbnail .image-url {
    width: 100%;
    height: 100%;
    max-height: 80px;
    object-fit: cover;
    display: block;
    border: 3px solid #f67e3e;
    border-radius: 12px;
}

.item-style-01 .item-label {
    flex-grow: 1;
    padding: 10px 16px;
}

.item-style-01 .item-label h3 {
    font-weight: normal;
    margin: 0;
    font-size: 14px;
    text-transform: uppercase;
    color: var(--light-black);
}

.item-style-01 .item-label p {
    font-weight: 700;
    margin: 0;
    font-size: 16px;
    color: var(--text-black);
}

.actionBtn {
    display: flex;
    align-items: center;
    justify-content: end;
}

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

.theme-table {
    border: 1px solid #ddd;
    border-radius: 12px;
    overflow: hidden;
}

.theme-table table thead th {
    background: #222D32;
    color: white;
}

.theme-table table td,
.theme-table table th {
    padding: 17px 20px;
}

.table-bg-1 tbody td {
    background: var(--table-bg-1);
}
a{
    text-decoration:none;
}


.listScroll {
    padding: 15px;
    border: 1px solid rgba(0, 0, 0, 0.175);
}

.listScroll ul {
    padding: 0;
    list-style: none;
    overflow-y: auto;
    max-height: 250px;

}

.listScroll ul li {
    display: block;
    margin: 5px 0;
    font-size: 14px;
}

.pagination .page-item.active .page-link {
    background-color: #EE7D30 !important;
    border-color: #EE7D30 !important;
    color: #fff !important;
}

.pagination .page-link:hover {
    background-color: #EE7D30;
    border-color: #EE7D30;
    color: #fff;
}

/* order css start */
.order-container .order-list {
    padding-left: 0;
    border-bottom: 1px solid var(--light-black);
    margin-left: 12px;
    padding-bottom: 12px;
}
 
.order-container .order-item {
    list-style: none;
    font-size: 14px;
    color: var(--light-black);
    font-family: Inter;
    padding: 5px 0;
}
/* order css end */

/* Style the submenu */
.has-submenu .submenu {
    display: none;
    padding-left: 20px;
}
.app-menu .menu-wraper ul.submenu li a{
    border-left:0 !important;
    padding-left:50px;
    font-weight:400 !important;
}

.app-menu .menu-wraper ul.submenu li.active a{
    color: #EE7D30;
    font-weight:600!important;
}

.has-submenu.active .submenu {
    display: block;
}

.submenu li a {
    font-size: 14px;
    padding: 8px 15px;
    display: block;
}

.has-submenu .submenu-toggle {
    transition: transform 0.3s ease;
}

.has-submenu.active .submenu-toggle {
    transform: rotate(90deg); 
}
/* End Style the submenu */

table .btn-group-sm .btn {
  padding: 0.375rem 0.75rem;
}

.btn-danger {
  padding: 10px 20px;
}
.dashboard-card-link {
  color: #000;
}
.dashboard-card-link i, .dashboard-page .card01 i {
  color: var(--primary);
  background-image: linear-gradient(to left,
   #fff,
    #fff 50%,
     var(--primary) 50%,
    var(--primary));
  background-position: 100% 0;
    background-size: 200% 100%;
    transition: all .25s ease-in;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
  border-radius: 8px;
  font-size: 25px;
}

.dashboard-card-link:hover i, .dashboard-page .hoverCard:hover i {
      color: #fff;
 background-position: 0 0;
}
/*.hoverCard{*/
/*    background-image: linear-gradient(to left,*/
/*    transparent,*/
/*    transparent 50%,*/
/*    var(--primary) 50%,*/
/*    var(--primary));*/
/*  background-position: 100% 0;*/
/*    background-size: 200% 100%;*/
/*    transition: all .25s ease-in;*/
    
/*}*/
/*.hoverCard:hover{*/
/*  background-position: 0 0;*/
  
/*}*/

/*.dashboard-card-link:hover h3, .dashboard-page .hoverCard:hover h3 {*/
/*    color:#fff;*/
/*}*/










