#sidebar-menu .has-arrow:after{
  margin-left: auto;

  height: fit-content;
  margin-top: auto;
  margin-bottom: auto;
}

body {
  font-family: 'Titillium Web', sans-serif;
}

.text-left {
  text-align: left !important;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
  font-family: inherit;
}

:root {
  --rs-picker-value: #000;
  --secondary-color: #bb0c19;
  --e-global-color-primary: #6EC1E4;
  --e-global-color-secondary: #54595F;
  --e-global-color-text: #7A7A7A;
  --e-global-color-accent: #61CE70;
  --e-global-color-b321ea1: #443E2F;
  --e-global-color-745c2f4: #00aaf0;
  --e-global-color-4da5a11: #7A7A7A;
  --e-global-color-aecf752: #D7DB26;
  --p-color: #00aaf0;

}

.rs-picker-has-value .rs-btn .rs-picker-toggle-value, .rs-picker-has-value .rs-picker-toggle .rs-picker-toggle-value {
  color: #000 !important;
}

.py-md-10 {
    padding-top: 150px !important;
    padding-bottom: 150px !important;
}


/* Custom loader */
.loader {
    border-radius: 50%;
    display: inline-block;
    border-top: 3px solid #FFF;
    border-right: 3px solid transparent;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
}
  
@keyframes rotation {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
} 

.h-100-vh {
  height: 100vh;
}

/* FITCH */

.section-products {
  padding: 80px 0 54px;
}

.section-products .header {
  margin-bottom: 50px;
}

.section-products .header h3 {
  font-size: 1rem;
  color: #fe302f;
  font-weight: 500;
}

.section-products .header h2 {
  font-size: 2.2rem;
  font-weight: 400;
  color: #444444; 
}

.section-products .single-product {
  margin-bottom: 26px;
}

.section-products .single-product .part-1 {
  position: relative;
  height: 290px;
  max-height: 290px;
  margin-bottom: 20px;
  overflow: hidden;
}

.section-products .single-product .part-1::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  transition: all 0.3s;
}

.section-products .single-product:hover .part-1::before {
  transform: scale(1.2,1.2) rotate(5deg);
}

.section-products #product-1 .part-1::before {
  background: url("https://i.ibb.co/L8Nrb7p/1.jpg") no-repeat center;
  background-size: cover;
  transition: all 0.3s;
}

.section-products #product-2 .part-1::before {
  background: url("https://i.ibb.co/cLnZjnS/2.jpg") no-repeat center;
  background-size: cover;
}

.section-products #product-3 .part-1::before {
  background: url("https://i.ibb.co/L8Nrb7p/1.jpg") no-repeat center;
  background-size: cover;
}

.section-products #product-4 .part-1::before {
  background: url("https://i.ibb.co/cLnZjnS/2.jpg") no-repeat center;
  background-size: cover;
}

.section-products .single-product .part-1 .discount,
.section-products .single-product .part-1 .new {
  position: absolute;
  top: 15px;
  left: 20px;
  color: #ffffff;
  background-color: #fe302f;
  padding: 2px 8px;
  text-transform: uppercase;
  font-size: 0.85rem;
}

.section-products .single-product .part-1 .new {
  left: 0;
  background-color: #444444;
}

.section-products .single-product .part-1 ul {
  position: absolute;
  bottom: -41px;
  left: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
  opacity: 0;
  transition: bottom 0.5s, opacity 0.5s;
}

.section-products .single-product:hover .part-1 ul {
  bottom: 30px;
  opacity: 1;
}

.section-products .single-product .part-1 ul li {
  display: inline-block;
  margin-right: 4px;
}

.section-products .single-product .part-1 ul li a {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  background-color: #ffffff;
  color: #444444;
  text-align: center;
  box-shadow: 0 2px 20px rgb(50 50 50 / 10%);
  transition: color 0.2s;
}

.section-products .single-product .part-1 ul li a:hover {
  color: #fe302f;
}

.section-products .single-product .part-2 .product-title {
  font-size: 1rem;
}

.section-products .single-product .part-2 h4 {
  display: inline-block;
  font-size: 1rem;
}

.section-products .single-product .part-2 .product-old-price {
  position: relative;
  padding: 0 7px;
  margin-right: 2px;
  opacity: 0.6;
}

.section-products .single-product .part-2 .product-old-price::after {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #444444;
  transform: translateY(-50%);
}


/* Tooltip container */
.tooltip {
  position: relative;
  display: inline-block;
  border-bottom: 1px dotted black; /* If you want dots under the hoverable text */
}

/* Tooltip text */
.tooltip .tooltiptext {
  visibility: hidden;
  width: 120px;
  background-color: black;
  color: #fff;
  text-align: center;
  padding: 5px 0;
  border-radius: 6px;
 
  /* Position the tooltip text - see examples below! */
  position: absolute;
  z-index: 1;
}

/* Show the tooltip text when you mouse over the tooltip container */
.tooltip:hover .tooltiptext {
  visibility: visible;
}

.btn-colapsed i {
  font-size: 11pt;
}

.btn-colapsed span{
  width: 0;
  opacity: 0;
  transition: .7s;
  display: none !important;
}

.btn-colapsed:hover {
  transition: all 1s ease-out;
}

.btn-colapsed:hover span{
  width: fit-content;
  transition: all 1s ease-out;
  margin-left: 5px;
  display: inline;
  opacity: 1;
}

/* Product details page */



/* .img-card{
    width: 40%;
} */

.img-card img {
  width: 100%;
  flex-shrink: 0;
  border-radius: 4px;
  height: 520px;
  object-fit: cover;
}

.small-Card {
  display: flex;
  justify-content: start;
  align-items: center;
  margin-top: 15px;
  gap: 12px;
}

.small-Card img {
  width: 104px;
  height: 104px;
  border-radius: 4px;
  cursor: pointer;
}

.small-Card img:active {
  border: 1px solid #17696a;
}

.product-container .sm-card {
  border: 2px solid darkred;
}

.product-container .small {
  font-size: 10pt;
  color: white;
  font-weight: 400;
}

.product-info{
  width: 60%;
}
.product-info h3 {
  font-size: 32px;
  font-weight: 600;
  line-height: 130%;
}

.product-info h5 {
  font-size: 24px;
  font-weight: 500;
  line-height: 130%;
  color: #ff4242;
  margin: 6px 0;
}

.product-info del {
  color: #a9a9a9;
}

.product-info p {
  color: #424551;
  margin: 15px 0;
  width: 70%;
}

.sizes p {
  font-size: 22px;
  color: black;
}

.size-option {
  width: 200px;
  height: 30px;
  margin-bottom: 15px;
  padding: 5px;
}

.quantity input {
  width: 51px;
  height: 33px;
  margin-bottom: 15px;
  padding: 6px;
}

.delivery {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #787a80;
  font-size: 12px;
  line-height: 150%;
  letter-spacing: 1px;
}

.product-container hr {
  color: #787a80;
  opacity: 0.67;
  margin: 0px;
}

.product-container .pagination {
    color: #787a80;
    margin: 15px 0;
    cursor: pointer;
}

@media screen and (max-width: 576px) {
  .small-Card img{
    width: 80px;
  }
  .product-info{
    width: 100%;
  }
  .product-info p{
    width: 100%;
  }

  .delivery{
    width: 100%;
  }

  .product-container hr{
    width: 100%;
  }
}

.category-text {
  color: #a9a9a9 !important;
  font-size: 12pt;
  font-weight: bold;
}

.new-appointment-modal .modal-body {

  background-color: var(--bs-body-bg);
}

.w-20 {
  width: 20px;
}

.h-20 {
  height: 20px;
}

.wallet-card  {
  transition: 0.7s;
}

.wallet-card:hover, .wallet-card.active {
  border-color: var(--bs-primary);
  scale: 1.01;
}

.remove-bg {
  mix-blend-mode: multiply;
}

.remove-bg-white {
  /* filter: brightness(0) invert(1); */
}

.card-ca .dropdown-item.active{
  background-color: var(--bs-primary);
  color: #ffffff;
}

.modal-bg {
  background-color: #61ce701a;
}

.text-uppercase {
  text-transform: uppercase;
}

input:invalid+.validity:after {
  content: '✖';
}

input:invalid+.validity {
  display: block;
}

input:valid+.validity:after {
  content: '✓';
}

input:valid+.validity {
  display: none;
}

/* @page {
  size: 91.44mm 53.34; 
  margin: 0;
}
@media print {
  html, body {
    width: 91.44mm; 
    height: 53.34mm;
  }
  /* ... the rest of the rules ... 
} */

.rating.active {
  color: var(--bs-yellow);
}

.rating:not(.active) {
  color: #f5f5f5;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    /* display: none; <- Crashes Chrome on hover */
    -webkit-appearance: none;
    margin: 0; /* <-- Apparently some margin are still there even though it's hidden */
}

input[type=number] {
    -moz-appearance:textfield; /* Firefox */
}

.text-uppercase {

}

.appointment-line {
  cursor: pointer;
}

.appointment-line:hover {
  opacity: .9;
}

.table-head-appointment {
  background-color: rgba(0,0,0,.1);
}

.app-calendar-wrapper {
  max-height: 100vh;
  overflow: scroll;
}

.app-calendar-wrapper .fc .fc-toolbar.fc-header-toolbar {
  position: sticky;
  top: 0;
  background-color: #fff;
}

.fc-toolbar .fc-toolbar-chunk {
  text-align: center;
}

.badge-soft-primary-force {
  background-color: rgba(12,118,138,.18) !important;
}

input[type="time"]::-webkit-inner-spin-button,
input[type="time"]::-webkit-calendar-picker-indicator {
  filter: invert(1);
}

.metismenu li {
  text-transform: uppercase;
}

.table th {
  text-align: center;
}

.table>:not(caption)>*>* {
  text-align: center;
}

.table.text-left>:not(caption)>*>* {
  text-align: left;
}

button {
  text-transform: uppercase;
}

.color-inherit {
  color: inherit;
}

.modal-title {
  text-transform: uppercase;
}

.table>:not(caption)>*>* {
  vertical-align: middle;
}

.cursor-pointer {
  cursor: pointer
}
.table-hover>tbody>tr:hover {
  color:var(--bs-table-hover-color) !important;
  background-color: rgb(235 231 231 / 97%) !important
}


.truncate,.whitespace-nowrap {
  white-space: nowrap
}

.sticky-first-column.table th:first-child,
.sticky-first-column.table td:first-child {
  position: sticky;
  left: 0;
  color: #fff;
}

@media print {
  html, body {
    height: initial !important;
    overflow: initial !important;
  }
}

body {
  font-family: 'Titillium Web', sans-serif, sans-serif !important;
}

.perf-report .table>:not(caption)>*>* {
  font-size: 10px;
    padding: 5px;
}

.rapport-activity .table tr.small td {
  padding: 4px 12px;
}
.rapport-activity .table {
  margin-bottom: 0;
}

.bg-secondary-2 {
  background-color: var(--secondary-color);
}

.bg-secondary-3 {
  background-color: var(--e-global-color-aecf752);
}

.bg-primary-2 {
  background-color: rgba(var(--bs-primary-rgb),.2)!important;
}

.rapport-activity .table tr:not(.small) td {
  padding: 8px 12px;
  font-weight: 500;
}

.rounded-11 {
  border-radius: 40px;
  overflow: hidden;
}

.repport-page-content {
  background-image: url("/assets/images/logo-dark.webp");
  background-repeat: no-repeat;
  /* background-attachment: fixed; */
  background-position: center;
  background-size: 113%;
}

.repport-page-content .op {
  background-color: rgba(255,255,255,.9);
}

/* body.vertical-collpsed .menu-span:not(:hover) span:last-child {
  display: none;
} */

body.vertical-collpsed .menu-span span:first-child {
  display: block !important;
  padding-left: 0px !important;
}

body.vertical-collpsed .menu-span {
  padding-left: 0px !important;
}

.vertical-collpsed .vertical-menu #sidebar-menu>ul>li:hover>a {
  /* width: fit-content !important; */
}

body.vertical-collpsed .sub-menu li:not(:hover) span {
  color: #000 !important;
}

body.vertical-collpsed #sidebar-menu .has-arrow:hover .menu-span {
  width: 100% !important;
}

body.vertical-collpsed #sidebar-menu .has-arrow:hover .menu-span span:last-child {
  /* margin-left: 40px !important; */
  text-wrap: wrap;
}

body.vertical-collpsed .sub-menu .menu-span span:first-child {
  display: none !important;
}

body.vertical-collpsed .sub-menu .menu-span span:last-child {
  padding-left: 0px !important;
  padding-right: 0px !important;
}

#page-topbar {
  background-color: #fff;
  /* box-shadow: 0 2px 3px rgba(0,0,0,.04); */
  border-bottom: 1px solid #f2f2f2;
  z-index: 1;
  box-shadow: 0px 0px 10px 0px #A5A5A530;

}

.main-content {
  margin-top: 20px;
}

.rapport-activity .table tr td:nth-child(2)
,.rapport-activity .table tr th {
  text-align: center;
}

.rapport-activity .table tr.small td:first-child {
}

.rapport-activity .table tr.small td span.d-flex {
  padding-left: 60px;
  border-bottom: 1px solid #f2f2f2;

}

.invert-image {
  filter: invert(100%);
}

body[data-sidebar=colored].vertical-collpsed .vertical-menu #sidebar-menu>ul>li:hover>a {
  background-color: #111c43;
}

.rapport-activity .table tr td:nth-child(2),
.rapport-activity .table tr th:nth-child(2) {
  border-left: 1px solid var(--bs-primary);
  border-right: 1px solid var(--bs-primary);
  border-bottom: none;
}

.rapport-activity .table tr td,
.rapport-activity .table tr th {
  border: none;
}

.rapport-activity .table tr th:nth-child(1) {
  padding-right: 40px;
}

.rapport-activity .table tr.bg-primary-2 td:first-child {
  text-align: center;
}

.rounded-11.border-primary {
  border-width: 3px !important;
}

/* Sidebar */
body[data-sidebar=colored] .vertical-menu {
  background-color: #fff;
}
body[data-sidebar=colored] #sidebar-menu ul li a {
  font-family: 'Titillium Web', sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 19px;
  letter-spacing: 0em;
  text-align: left;
  color: #292929;
  text-transform: capitalize;
}

body[data-sidebar=colored] .sidebar-user .user-name-text {
  font-size: 14px;
  font-weight: 600;
  line-height: 17px;
  letter-spacing: 0em;
  text-align: left;
  color: #292929;
}

body[data-sidebar=colored] .sidebar-user .user-name-sub-text {
  font-family: 'Titillium Web', sans-serif;
  font-size: 14px !important;
  font-weight: 400;
  line-height: 17px;
  letter-spacing: 0em;
  text-align: left;
  color: #A5A5A5 !important;

  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
  width: calc(100% - 10px);
}

body[data-sidebar=colored] #sidebar-menu ul li a.active {
  border-radius: 4px;
  background-color: var(--p-color);
  color: #fff !important;
  transition: .7s;

}

body[data-sidebar=colored] .mm-active a:not(.active) {
  color: #292929 !important;
}

body[data-sidebar=colored] #sidebar-menu ul li a {
  overflow: visible;
  position: unset;
}

body[data-sidebar=colored] #sidebar-menu ul li a:not(.has-arrow)::after {
  content: '';
  width: 3px;
  height: 32px;
  border-radius: 6px;
  background-color: var(--p-color);
  position: absolute;
  right: 0px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
}


body[data-sidebar=colored] #sidebar-menu ul li a.active::after {
  opacity: 1;
}

.metismenu li {
  padding: 0 10px;
  position: relative;
}

body[data-sidebar=colored] #sidebar-menu ul li a {
  padding: 10px;
}

body[data-sidebar=colored] .navbar-brand-box {
  background-color: #fff;
  height: 70px;
  /* box-shadow: 0px 0px 10px 0px #A5A5A530; */
  border-right: 1px solid #F1F2F3;
  border-bottom: 1px solid #F1F2F3;
  overflow: visible;
  overflow: hidden;
}

body[data-sidebar=colored] .vertical-menu .vertical-menu-btn {
  /* border: 1.5px solid #000000; */
  width: 36px;
  height: 36px;
  border-radius: 100%;
  color: #000;
  box-shadow: 1px 1px 5.099999904632568px 0px #00000026 !important;
  transform: translate(50%, 50%);
  z-index: 2;
  padding: 0px !important;
  display: flex;
  background-color: #fff;
}


body[data-sidebar=colored] .vertical-menu .vertical-menu-btn i {
  margin: auto;
}

body[data-sidebar=colored] #sidebar-menu ul li.menu-title {
  display: none;
}

#sidebar-menu ul li ul.sub-menu li a {
  padding: 10px;
}

body[data-sidebar=colored] .mm-active .sub-menu {
  margin-top: 10px;
}

body[data-sidebar=colored] .mm-active a.has-arrow {
  background-color: #00aaf021;
  color: #292929;
  border-radius: 4px;
}

.header-rounded {
  height: 40px;
  width: 40px;
  border-radius: 100%;
  background-color: #1919190D;
  display: flex;
}

.header-rounded button {
  padding: 0;
  margin: auto;
  height: 100%;

  width: 20px;
  height: 20px;
  border-radius: 100%;
}

.header-rounded button img {
  /* height: 100%; */
}

.noti-icon {
  overflow: visible;
}

.noti-icon i {
  line-height: 22px;
}

.noti-icon .noti-dot {

  top: 0px;
  right: 0;
}



/* Dashboard */
.c-card, .sells-by-agency {
  background: #FFFFFF;
  padding: 20px;
  border-radius: 6px;
}

.c-card .title {
  font-size: 40px;
  font-weight: 700;
  line-height: 34px;
  letter-spacing: 0em;
  text-align: left;
  margin-bottom: 0;
}

.c-card .text {
  font-size: 14px;
  font-weight: 500;
  line-height: 17px;
  letter-spacing: 0em;
  text-align: left;
  color: #A5A5A5;
}

.c-card .variation {
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: 0em;
  text-align: left;
  margin-bottom: 0;
}

.c-card .variation.up {
  color: #00aaf0;
}

.c-card .variation.down {
  color: #FF6F66;
}

.c-card .c-menu {
  height: 40px;
  width: 40px;
  border-radius: 100%;
  background: #F9F9F9;
}

.c-card .c-menu i {
  height: fit-content;
  margin: auto;
  font-size: 25px;
}

.c-card .dropdown-item.active {
  background-color: #00aaf06a !important;
}

.sells-by-agency .title{
  font-size: 18px;
  font-weight: 600;
  line-height: 22px;
  letter-spacing: 0em;
  height: fit-content;
  margin-bottom: 0px;

}

.sells-by-agency .c-menu {
  height: 40px;
  width: 40px;
  border-radius: 100%;
  background-color: #F9F9F9;
}

.sells-by-agency .c-menu i {
  margin: auto;
  font-size: 25px;
}

.sells-by-agency table tr td {
  border: none;
}

span.sub-text {
  font-size: 14px;
  font-weight: 500;
  line-height: 17px;
  letter-spacing: 0em;
  text-align: left;
  color: #A5A5A5;
}

.appointments-dashboard .link {
  text-decoration: underline !important;
  color: #00aaf0;
}

.appointments-dashboard .app-count {
  height: 30px;
  width: 30px;
  border-radius: 100%;
  display: flex;
  color: #fff;
  background-color: #00aaf0;

  font-size: 14px;
  font-weight: 500;
  line-height: 17px;
  letter-spacing: 0em;
  text-align: center;


}

.c-title {
  font-size: 18px;
  font-weight: 600;
  line-height: 22px;
  letter-spacing: 0em;
  text-align: left;
  color: #292929;

}

.table th {
  font-size: 16px;
  font-weight: 600;
  line-height: 18px;
  letter-spacing: 0em;
  /* text-align: left; */
}

.badge-soft-success {
  color: #00aaf0;
  background-color: rgba(113, 180, 68, .3);
}

.sells-charts .apexcharts-legend-marker {
  height: 18px !important;
  width: 18px !important;
  border-radius: 4px !important;
}

.sells-charts .apexcharts-legend.apexcharts-align-left .apexcharts-legend-series {
  display: flex !important;
}

/* Customisations */
.page-title{
  margin-bottom: 20px;
}
.page-title .title {
  font-size: 32px;
  font-weight: 700;
  line-height: 38px;
  letter-spacing: 0em;
  text-align: left;  
}

.page-title li {
  font-size: 14px;
  font-weight: 400;
  line-height: 17px;
  letter-spacing: 0em;
  text-align: left;
}

.page-title ol {
  padding-left: 0;
}

.btn-primary {
  background-color: var(--p-color);
  border-color: var(--p-color);
}

.btn-primary:hover {
  background-color: #443E2F;
}

.c-table-card-title {
  font-size: 25px;
  font-weight: 600;
  line-height: 40px;
  letter-spacing: 0em;
  text-align: left;

}
/* Search */
.search-form {}

.search-form{

  position: relative;
}

.search-form .fa-search{

  position: absolute;
  top:50%;
  left: 20px;
  color: #9ca3af;
  transform: translateY(-50%);
}

.search-form span{

  position: absolute;
  right: 17px;
  top: 13px;
  padding: 2px;
  border-left: 1px solid #d1d5db;

}

.left-pan{
  padding-left: 7px;
}

.left-pan i{
 
 padding-left: 10px;
}

.search-form .form-input{

  /* height: 45px; */
  text-indent: 33px;
  border-radius: 4px;
  box-shadow: 0px 0px 1px 0px #225E1A0A;
  background-color: #F6F6F6;
}

.search-form .form-input:focus{
  box-shadow: none;
  border:none;
}

.btn-gray {
  box-shadow: 0px 0px 2px 0px #225E1A0A;
  background-color: #f2f2f2;
}

.btn-gray:hover {
  background-color: #00aaf061;
}
.pagination .page-item {
  margin-right: 10px !important;
}

.pagination .page-item, .pagination-rounded .page-link {
  height: 30px;
  width: 30px;
  border-radius: 100%;
  overflow: hidden;
  line-height: 14px;
}

.pagination .page-item.active, .active>.page-link, .page-link.active {
  background-color: var(--p-color);
  color: #fff;
}

.pagination .page-item:not(.active) {
  border: 1px solid var(--p-color);
  color: var(--p-color);
}

.pagination-rounded .page-link{
  background-color: transparent !important;
}

.appointments-legends span {
  color: var(--bs-text-muted);
}

.c-table-hover tbody tr {
  cursor: pointer;
}

.fc-col-header-cell-cushion {
  color: #292929;
}

.date-picker-wrapper {
  right: 0px;
}

.nav-pills .nav-link.active {
  background-color: var(--e-global-color-b321ea1);
}
.pagination-rounded .page-link {
  padding: var(--bs-pagination-padding-y) 0;
  width: 100%;
  margin: inherit;
}

.vertical-collpsed .vertical-menu #sidebar-menu>ul>li>a {
  padding: 15px 13px;
}

.vertical-collpsed .vertical-menu .vertical-menu-btn {
  /* display: block !important;
  transform: rotate(180deg) !important; */
  margin: auto;
  right: -30px;
  top: 15px;
}

.vertical-collpsed .navbar-brand-box {
  width: 70px;
}

.page-content {
  min-height: 80vh;
}

.paginations .pagination {
  justify-content: end;
}

.pos-left .date-picker-wrapper{
  left: 0px !important;
  right: unset !important;
}