/*
	*******************
	Template name:  6amtechAdmin
	Version:        1.0
	Author:         6amtech
	Author url:     https://6amtech.com/

	NOTE:
	-----
	Please DO NOT EDIT THIS CSS, you may need to use "custom.css" file for writing your custom css.
	We may release future updates so it will overwrite this file. it's better and safer to use "custom.css".

    ******** CSS INDEX ********
    01. Base
        1.1 Typography 
        1.2 Spacing
        1.3 Color
    02. Components
        2.1 Helper
        2.2 Animation
        2.3 Social List
        2.4 Inputs
        2.5 Buttons
        2.6 Widget
        2.7 Pagination
        2.8 BackToTop
        2.9 Preloader
        2.10 Breadcrumb
    03. Layout
        3.1 Header
        3.2 Footer
        3.3 Blog
        3.4 404
        3.5 Coming Soon
        3.6 Banner
    04. Section
        4.1 Small Sections
    ********************/
:root {
  --c1: #0093FA;
  --title-color: #000;
  --title-color2: #334257;
  --border-color: #D0DBE9;
  --absolute-white: #fff;
  --c2: #FF6767;
  --bg-color: #F7F9FC;
  --bg-color2: #eee;
  --text-light-color: #758590;
  --text-color: #4B5864;
  --link-color: #0093FA;
  --input-border-color: #E4E4E4;
  --input-border-color-active: rgba(65, 83, 179, 0.5);
  --white-color: #ffffff;
  --dark-color: #18181A;
  --body-bg: #F5F5F5;
  --absolute-dark: #18181A;
  --mobile-search-bg: #ddd;
  --shadow-color: rgba(0, 0, 0, 0.05);
  --dropdown-menu-color: #ffffff;
  --light-bg: #F7F9FC;
  --c1-light-bg: rgba(65, 83, 179, .05);
  --success-color: #3DBC10;
  --timeline-color: #DCDCDC;
  --aside-bg: #334257;
  --card-border-color: #f4f4f4;
  --thead-bg: #F6FAFF;
  --badge-secondary-bg: #d7d7d7;
  --title-font: 'Inter', sans-serif;
  --body-font: 'Inter', sans-serif;
  --thin: 100;
  --extra-light: 200;
  --light: 300;
  --regular: 400;
  --medium: 500;
  --semi-bold: 600;
  --bold: 700;
  --extra-bold: 800;
  --dark-color-bold: 900;
  --base_fz: 0.875rem;
  --h1_fz: 1.75rem;
  --h2_fz: 1.375rem;
  --h3_fz: 1.125rem;
  --h4_fz: 1rem;
  --h5_fz: 0.875rem;
  --h6_fz: 0.75rem;
  --base-line-height: 1.4;
  --title-line-height: 1.2;
}

[theme="dark"] {
  --body-bg: #18181A;
  --c1: #4153B3;
  --bg-color: #39393b;
  --dropdown-menu-color: #39393b;
  --text-light-color: #758590;
  --text-color: #CCD0D3;
  --title-color: rgba(255, 255, 255, 0.8);
  --title-color2: rgba(255, 255, 255, 0.7);
  --border-color: #5d5d5d;
  --white-color: #232325;
  --dark-color: #fff;
  --mobile-search-bg: #505050;
  --shadow-color: rgba(255, 255, 255, 0.05);
  --light-bg: #2a2a2a;
  --c1-light-bg: rgba(65, 83, 179, .1);
  --timeline-color: #484848;
  --input-border-color: rgba(255, 255, 255, 0.4);
  --aside-bg: transparent;
  --card-border-color: rgba(255, 255, 255, 0.03);
  --thead-bg: rgba(255, 255, 255, 0.03);
  --badge-secondary-bg: rgba(255, 255, 255, 0.1);
  --bs-border-color: rgba(255, 255, 255, 0.2);
}

/* ************************
   01.1: Reset
   ********************* */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

* {
  outline: none !important;
}

html {
  font-family: sans-serif;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

body {
  margin: 0;
  font-family: var(--body-font);
  font-weight: var(--regular);
  font-size: var(--base_fz);
  line-height: var(--base-line-height);
  color: var(--text-color);
  text-align: start;
  background-color: var(--body-bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden !important;
  -webkit-margin-after: -2.5rem;
  margin-block-end: -2.5rem;
}

[tabindex="-1"]:focus {
  outline: 0 !important;
}

hr {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  padding: 0;
  margin: 0;
  font-weight: var(--bold);
  line-height: var(--title-line-height);
  font-family: var(--title-font);
  color: var(--title-color);
}

h1 {
  font-size: var(--h1_fz);
}

h2 {
  font-size: var(--h2_fz);
}

h3 {
  font-size: var(--h3_fz);
}

h4 {
  font-size: var(--h4_fz);
}

h5 {
  font-size: var(--h5_fz);
}

h6 {
  font-size: var(--h6_fz);
}

p {
  -webkit-margin-before: 0;
  margin-block-start: 0;
  -webkit-margin-after: 1.25rem;
  margin-block-end: 1.25rem;
}

p:last-child {
  -webkit-margin-after: 0;
  margin-block-end: 0;
}

a {
  color: var(--title-color);
  text-decoration: none;
  background-color: transparent;
}

a:hover {
  color: var(--link-color);
}

input,
button,
select,
optgroup,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

select {
  word-wrap: normal;
  display: block;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

button:not(:disabled),
[type="button"]:not(:disabled),
[type="reset"]:not(:disabled),
[type="submit"]:not(:disabled) {
  cursor: pointer;
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

input[type="radio"],
input[type="checkbox"] {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
}

textarea {
  overflow: auto;
  resize: vertical;
}

[type="checkbox"] {
  -webkit-margin-end: 0.3125rem;
  margin-inline-end: 0.3125rem;
}

::-moz-selection {
  text-shadow: none;
  color: var(--absolute-white);
  background-color: var(--c1) !important;
}

::selection {
  text-shadow: none;
  color: var(--absolute-white);
  background-color: var(--c1) !important;
}

::-webkit-input-placeholder {
  color: var(--title-color) !important;
  opacity: 0.4 !important;
}

::-moz-placeholder {
  color: var(--title-color) !important;
  opacity: 0.4 !important;
}

:-ms-input-placeholder {
  color: var(--title-color) !important;
  opacity: 0.4 !important;
}

::-ms-input-placeholder {
  color: var(--title-color) !important;
  opacity: 0.4 !important;
}

::placeholder {
  color: var(--title-color) !important;
  opacity: 0.4 !important;
}

iframe {
  max-width: 100%;
}

button:focus,
input:focus,
select:focus,
textarea:focus {
  outline: none !important;
}

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

/* Order List */
ol {
  -webkit-padding-start: 1.25rem;
  padding-inline-start: 1.25rem;
}

ol li:not(:last-child) {
  -webkit-margin-after: 0.3125rem;
  margin-block-end: 0.3125rem;
}

/* ************************
   01.2: Padding/Margin
   ********************* */
.pt-120 {
  -webkit-padding-before: 7.5rem;
  padding-block-start: 7.5rem;
}

@media only screen and (max-width: 991px) {
  .pt-120 {
    -webkit-padding-before: 3.75rem;
    padding-block-start: 3.75rem;
  }
}

.pb-120 {
  -webkit-padding-after: 7.5rem;
  padding-block-end: 7.5rem;
}

@media only screen and (max-width: 991px) {
  .pb-120 {
    -webkit-padding-after: 3.75rem;
    padding-block-end: 3.75rem;
  }
}

.mt-30 {
  -webkit-margin-before: 1.875rem;
  margin-block-start: 1.875rem;
}

.mt-20 {
  -webkit-margin-before: 1.25rem;
  margin-block-start: 1.25rem;
}

.mt-10 {
  -webkit-margin-before: 0.625rem;
  margin-block-start: 0.625rem;
}

.mb-30 {
  -webkit-margin-after: 1.875rem;
  margin-block-end: 1.875rem;
}

.mb-20 {
  -webkit-margin-after: 1.25rem;
  margin-block-end: 1.25rem;
}

.mb-10 {
  -webkit-margin-after: 0.625rem;
  margin-block-end: 0.625rem;
}

.mt-n1 {
  margin-top: -0.25rem !important;
}

.mt-n2 {
  margin-top: -0.5rem !important;
}

.mt-n3 {
  margin-top: -1rem !important;
}

.mt-n4 {
  margin-top: -1.5rem !important;
}

.mt-n5 {
  margin-top: -3rem !important;
}

.mb-n1 {
  margin-bottom: -0.25rem !important;
}

.mb-n2 {
  margin-bottom: -0.5rem !important;
}

.mb-n3 {
  margin-bottom: -1rem !important;
}

.mb-n4 {
  margin-bottom: -1.5rem !important;
}

.mb-n5 {
  margin-bottom: -3rem !important;
}

.mb-n30 {
  margin-bottom: -1.875rem !important;
}

.p-30 {
  padding: 1.875rem !important;
}

@media only screen and (max-width: 479px) {
  .p-30 {
    padding: 1.25rem 1rem !important;
  }
}

.p-20 {
  padding: 1.25rem !important;
}

@media only screen and (max-width: 479px) {
  .p-20 {
    padding: 1.25rem 1rem !important;
  }
}

.p-01 {
  padding: 0.0625rem;
}

/* ************************
   01.3: Color
   ********************* */
.text-color {
  color: var(--text-color) !important;
}

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

.text-color-bo {
  border-color: var(--text-color) !important;
}

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

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

.title-color-bo {
  border-color: var(--title-color) !important;
}

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

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

.white-color-bo {
  border-color: var(--white-color) !important;
}

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

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

.dark-color-bo {
  border-color: var(--dark-color) !important;
}

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

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

.link-color-bo {
  border-color: var(--link-color) !important;
}

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

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

.c1-bo {
  border-color: var(--c1) !important;
}

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

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

.c2-bo {
  border-color: var(--c2) !important;
}

.c1-light-bg {
  background-color: var(--c1-light-bg);
}

a, .socials a:after, .dm-btn, .pagination li a svg path,
.pagination li span svg path, .page-inline-menu a:after, .aside-body .nav li.has-sub-item:after, .chat_list {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.list-inline, .list-info, .widget ul, .common-list, .page-inline-menu, .wizard .steps ul, .wizard .actions ul, .services-tab-menu {
  padding: 0;
  margin: 0;
  list-style: none;
}

.list-inline li {
  display: inline-block;
}

.list-separator {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 1.875rem;
  -moz-column-gap: 1.875rem;
  column-gap: 1.875rem;
  row-gap: 1rem;
}

.list-separator li:not(:last-child) {
  position: relative;
}

.list-separator li:not(:last-child):after {
  position: absolute;
  inset-block-start: calc(50% - 0.1875rem);
  inset-inline-end: -1.125rem;
  inline-size: 0.375rem;
  block-size: 0.375rem;
  background-color: var(--border-color);
  content: "";
}

.list-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 0.875rem;
}

.list-info li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.625rem;
}

.dm-btn, .pagination li a,
.pagination li span {
  font-weight: var(--medium);
}

.pagination li a.current,
.pagination li span.current, .pagination li a:hover, .pagination li a.active,
.pagination li span:hover,
.pagination li span.active {
  background-color: var(--c1);
}

.pagination li a,
.pagination li span {
  color: var(--white-color);
}

.aside {
  background-color: var(--white-color);
}

.pagination li a,
.pagination li span {
  background-color: var(--title-color);
}

.pagination li a,
.pagination li span {
  font-family: var(--title-font);
}

.list-separator li:not(:last-child):after, .badge-dot, .timeline-number, .socials a, .badge .dot, .switcher_control::after, .status, .wizard .steps ul .number, .service-man-list__item_header img, .avatar-status {
  border-radius: 50%;
}

.search-form__input_group, .dm-btn, .pagination li a,
.pagination li span, .select2-container--default .select2-selection--multiple, .dropdown-menu,
.card, .payment-card, .modal-body_title_bg, .page-inline-menu a:after, .aside-body .nav li > a, .user-profile, .message_text, .input_msg_write .send-msg-btns, .service-list-item {
  border-radius: 0.3125rem;
}

.order-statistics, .order-stats, .common-list li, .upload-file__img img, .setting-box, .information-details-box, .service-man-list__item {
  border-radius: 0.625rem;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice, .switcher_control, .upload-file__close, .aside-body .nav li .link-title .count {
  border-radius: 3.125rem;
}

.list-separator li:not(:last-child):after, .badge-dot, .timeline-number, .socials a, .badge .dot, .switcher_control::after, .status, .wizard .steps ul .number, .service-man-list__item_header img, .avatar-status {
  border-radius: 100%;
}

.box-shadow, .dropdown-menu,
.card, .aside, .settings-sidebar, .filter-aside {
  -webkit-box-shadow: 0px 0px 0.125rem rgba(65, 83, 179, 0.05), 0px 0.75rem 1.5rem -0.25rem rgba(65, 83, 179, 0.05);
  box-shadow: 0px 0px 0.125rem rgba(65, 83, 179, 0.05), 0px 0.75rem 1.5rem -0.25rem rgba(65, 83, 179, 0.05);
}

.setting-box, .service-list-item {
  -webkit-box-shadow: 0px 0.3125rem 0.625rem var(--shadow-color);
  box-shadow: 0px 0.3125rem 0.625rem var(--shadow-color);
}


.card {
  -webkit-box-shadow: 0px 0.625rem 0.8125rem rgba(17, 38, 146, 0.05);
  box-shadow: 0px 0.625rem 0.8125rem rgba(17, 38, 146, 0.05);
}

.btn:focus, .dm-btn, .dm-btn:focus {
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

.aside-body .nav li .link-title .count {
  line-height: 1;
}

.socials a:after {
  background: #ff0076;
  background: -o-linear-gradient(45deg, #ff0076 0%, #590f87 100%);
  background: linear-gradient(45deg, #ff0076 0%, #590f87 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff0076', endColorstr='#590f87',GradientType=1 );
}

/* ************************
   02.1: Helper Classes
   ********************* */
.ov-hidden {
  overflow: hidden !important;
}

.ovx-hidden {
  overflow-x: hidden !important;
}

.radius-3 {
  border-radius: 0.1875rem !important;
}

.radius-5 {
  border-radius: 0.3125rem !important;
}

.radius-10 {
  border-radius: 0.625rem !important;
}

.radius-50 {
  border-radius: 3.125rem !important;
}

.h-40 {
  height: 2.5rem !important;
}

.overlay {
  position: relative;
  z-index: 1;
}

.overlay:after {
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  position: absolute;
  z-index: -1;
  content: "";
  background-color: var(--body-bg);
  opacity: 0.8;
}

.gap-5 {
  gap: 0.3125rem !important;
}

.gap-10 {
  gap: 0.625rem !important;
}

.gap-20 {
  gap: 1.25rem !important;
}

.gap-30 {
  gap: 1.875rem !important;
}

.table-cover-img {
  max-width: 4.375rem;
}

/* Width */
.mw-75 {
  max-inline-size: 75% !important;
}

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

.orange-color {
  color: #F8923B !important;
}

/* Fonts */
.title-font {
  font-family: var(--title-font);
}

.body-font {
  font-family: var(--body-font);
}

/* Gutter 60 */
.media {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.media-body {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.fz-12 {
  font-size: 12px !important;
}

.fz-14 {
  font-size: 14px !important;
}

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

.fz-18 {
  font-size: 18px !important;
}

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

.fz-22 {
  font-size: 22px !important;
}

.fz-24 {
  font-size: 24px !important;
}

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

.bg-img {
  background-size: cover;
  background-repeat: no-repeat;
}

.index-2 {
  z-index: 2;
}

/* Cursor */
.cursor-pointer {
  cursor: pointer;
}

.disabled {
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
}

.img-dropshadow {
  border: 3px solid var(--white-color);
  -webkit-filter: drop-shadow(0px 5px 10px rgba(0, 115, 180, 0.1));
  filter: drop-shadow(0px 5px 10px rgba(0, 115, 180, 0.1));
}

/* Font Weight */
.fw-medium {
  font-weight: var(--medium) !important;
}

.max-w220 {
  max-inline-size: 13.75rem;
}

.min-w280 {
  min-inline-size: 17.5rem;
}

.w-max-content {
  inline-size: -webkit-max-content !important;
  inline-size: -moz-max-content !important;
  inline-size: max-content !important;
}

.data-table-top {
  -webkit-margin-after: 1rem;
  margin-block-end: 1rem;
}

.text--end {
  text-align: end !important;
}

[data-bs-toggle="modal"] {
  cursor: pointer;
}

.badge-dot {
  width: 0.4375rem;
  height: 0.4375rem;
  background-color: var(--c1);
}

.timeline-steps {
  max-inline-size: 25rem;
  margin: 0 auto;
}

.timeline-step {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}

.timeline-step:after {
  content: "";
  position: absolute;
  inset-inline-start: 0.9375rem;
  inset-block-start: 2rem;
  block-size: 0rem;
  inline-size: 0.125rem;
  background-color: var(--timeline-color);
}

.timeline-step:not(:last-child):after {
  block-size: 100%;
}

.timeline-info {
  margin: 0.3125rem 0rem 1.25rem;
}

.timeline-title {
  font-size: 1rem;
  color: var(--timeline-color);
  margin: 0rem 0rem 0.5rem;
}

.timeline-text {
  -webkit-margin-after: 0.3125rem;
  margin-block-end: 0.3125rem;
  color: var(--timeline-color);
}

.timeline-number {
  width: 2rem;
  height: 2rem;
  background-color: var(--timeline-color);
  -ms-flex-negative: 0;
  flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 0.9375rem;
  font-weight: var(--semi-bold);
  -webkit-margin-end: 0.875rem;
  margin-inline-end: 0.875rem;
}

.timeline-number svg {
  inline-size: 1rem;
  block-size: 1rem;
  -o-object-fit: contain;
  object-fit: contain;
  opacity: 0;
}

.timeline-number svg path {
  fill: var(--absolute-white);
}

.timeline-step.completed .timeline-number {
  background-color: var(--success-color);
}

.timeline-step.completed .timeline-number svg {
  opacity: 1;
}

.timeline-step.completed .timeline-title {
  color: var(--title-color);
}

.timeline-step.completed .timeline-text {
  color: var(--text-color);
  opacity: 0.5;
}

.timeline-step.completed:after {
  background-color: var(--success-color);
}

.bank-card-img {
  position: absolute;
  inset-block-start: 1.5rem;
  inset-inline-end: 1.875rem;
}

.bg-bottom {
  background-position: left bottom;
}

.bg-contain {
  background-size: contain;
}

/* ************************
   02.2: Animations
   ********************* */
.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: backwards;
  animation-fill-mode: backwards;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2.5rem, 0);
    transform: translate3d(0, -2.5rem, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2.5rem, 0);
    transform: translate3d(0, -2.5rem, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

@-webkit-keyframes matrix {
  0% {
    -webkit-transform: matrix(1, 0, 0, 1, 0, 0);
    transform: matrix(1, 0, 0, 1, 0, 0);
  }
  25% {
    -webkit-transform: matrix(1, 0, 0, 1, 15, 20);
    transform: matrix(1, 0, 0, 1, 15, 20);
  }
  50% {
    -webkit-transform: matrix(1, 0, 0, 1, -5, 25);
    transform: matrix(1, 0, 0, 1, -5, 25);
  }
  75% {
    -webkit-transform: matrix(1, 0, 0, 1, -15, 15);
    transform: matrix(1, 0, 0, 1, -15, 15);
  }
  100% {
    -webkit-transform: matrix(1, 0, 0, 1, 0, 0);
    transform: matrix(1, 0, 0, 1, 0, 0);
  }
}

@keyframes matrix {
  0% {
    -webkit-transform: matrix(1, 0, 0, 1, 0, 0);
    transform: matrix(1, 0, 0, 1, 0, 0);
  }
  25% {
    -webkit-transform: matrix(1, 0, 0, 1, 15, 20);
    transform: matrix(1, 0, 0, 1, 15, 20);
  }
  50% {
    -webkit-transform: matrix(1, 0, 0, 1, -5, 25);
    transform: matrix(1, 0, 0, 1, -5, 25);
  }
  75% {
    -webkit-transform: matrix(1, 0, 0, 1, -15, 15);
    transform: matrix(1, 0, 0, 1, -15, 15);
  }
  100% {
    -webkit-transform: matrix(1, 0, 0, 1, 0, 0);
    transform: matrix(1, 0, 0, 1, 0, 0);
  }
}

@-webkit-keyframes ripple {
  from {
    width: 0.1%;
    height: 0.1%;
    opacity: 1;
  }
  to {
    width: 100%;
    height: 100%;
    opacity: 0;
  }
}

@keyframes ripple {
  from {
    width: 0.1%;
    height: 0.1%;
    opacity: 1;
  }
  to {
    width: 100%;
    height: 100%;
    opacity: 0;
  }
}

/* ************************
   02.3: Social List
   ********************* */
.socials a {
  width: 2.8125rem;
  height: 2.8125rem;
  background-color: rgba(255, 255, 255, 0.1);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 0.3125rem;
  position: relative;
  z-index: 1;
}

.socials a:not(:last-child) {
  -webkit-margin-end: 0.3125rem;
  margin-inline-end: 0.3125rem;
}

.socials a:after {
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  position: absolute;
  z-index: -1;
  content: "";
  border-radius: 50%;
  -webkit-transform: scale(0.7);
  -ms-transform: scale(0.7);
  transform: scale(0.7);
  opacity: 0;
}

.socials a:hover:after {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  opacity: 1;
}

/* ************************
   03.4: Inputs
   ********************* */
.theme-input-style {
  display: block;
  inline-size: 100%;
  block-size: 2.1875rem;
  padding: 0.5rem 0.625rem;
  line-height: 1.5;
  color: var(--title-color);
  background-color: var(--white-color);
  background-clip: padding-box;
  border: 1px solid var(--input-border-color);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0.3125rem;
  -webkit-transition: border-color .15s ease-in-out;
  -o-transition: border-color .15s ease-in-out;
  transition: border-color .15s ease-in-out;
}

.theme-input-style:focus, .theme-input-style:active {
  border-color: var(--input-border-color-active);
}

.input-group > .theme-input-style {
  position: relative;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  width: 1%;
  min-width: 0;
}

.search-form__input_group {
  background-color: rgba(153, 167, 186, 0.2);
  border: 1px solid #99A7BA;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 0.625rem;
}

.search-form__icon {
  border: none;
  padding: 0.3125rem;
  background-color: transparent;
  opacity: 0.5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: var(--absolute-white);
}

.search-form__input {
  height: 2.5rem;
  color: var(--absolute-white);
  padding: 0;
  border: none;
  background-color: transparent;
}

.search-form__input::-webkit-input-placeholder {
  color: var(--absolute-white) !important;
}

.search-form__input::-moz-placeholder {
  color: var(--absolute-white) !important;
}

.search-form__input:-ms-input-placeholder {
  color: var(--absolute-white) !important;
}

.search-form__input::-ms-input-placeholder {
  color: var(--absolute-white) !important;
}

.search-form__input::placeholder {
  color: var(--absolute-white) !important;
}

.search-form_style-two {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.3125rem;
}

@media only screen and (max-width: 575px) {
  .header .search-form {
    position: absolute;
    inset-block-start: -1000%;
    inset-inline-end: 1rem;
    inline-size: calc(100% - 2rem);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity 200ms ease;
    -o-transition: opacity 200ms ease;
    transition: opacity 200ms ease;
  }
  .header .search-form__input_group {
    block-size: 2.8125rem;
    z-index: 9;
    background-color: var(--mobile-search-bg);
  }
  .header .search-form.active {
    opacity: 1;
    visibility: visible;
    inset-block-start: 100%;
  }
}

/* form control */
.form-control {
  background-color: var(--white-color);
  color: var(--title-color);
  border-color: var(--input-border-color);
}

.form-control:not([type=file]) {
  font-size: 0.875rem;
  block-size: 2.5rem;
}

.form-control:focus, .form-control:active {
  border-color: var(--input-border-color-active);
  -webkit-box-shadow: none;
  box-shadow: none;
  background-color: var(--white-color);
  color: var(--title-color);
}

select.form-control {
  -webkit-appearance: revert;
  -moz-appearance: revert;
  appearance: revert;
}

textarea.form-control,
textarea.theme-input-style {
  block-size: 7.5rem;
}

/* Change the white to any color */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 1.875rem var(--white-color) inset !important;
  -webkit-text-fill-color: var(--dark-color) !important;
}

/* ************************
   02.5: Buttons
   ********************* */
.btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 0.5rem;
}

.dm-btn {
  font-size: 0.75rem;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
  text-transform: uppercase;
  font-family: var(--title-font);
  line-height: 1;
  padding: 0.75rem 1.625rem;
  outline: none;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-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;
  border: 1px solid transparent;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.dm-btn--lg {
  padding: 0.875rem 1.875rem;
}

.dm-btn i, .dm-btn .material-icons, .dm-btn .material-symbols-outlined {
  font-size: 0.875rem;
  -webkit-margin-end: 0.4375rem;
  margin-inline-end: 0.4375rem;
}

.dm-btn strong {
  -webkit-margin-end: 0.125rem;
  margin-inline-end: 0.125rem;
}

.dm-btn:focus, .dm-btn:hover {
  color: var(--absolute-white);
  background-color: var(--c1);
  border-color: var(--c1);
  opacity: 0.9;
}

.dm-btn--primary {
  background-color: var(--c1);
  color: var(--absolute-white);
}

.dm-btn--secondary {
  background-color: #E1E1E1;
  color: var(--absolute-dark);
}

.dm-btn--danger {
  background-color: var(--c2);
  color: var(--absolute-white);
}

.btn-primary {
  --bs-btn-bg: var(--c1);
  --bs-btn-border-color: var(--c1);
}

.btn-outline-dark {
  --bs-btn-color: #334257;
  --bs-btn-border-color: #334257;
  --bs-btn-hover-bg: #334257;
  --bs-btn-hover-border-color: #334257;
  --bs-btn-active-bg: #334257;
  --bs-btn-active-border-color: #334257;
  --bs-btn-disabled-color: #334257;
  --bs-btn-disabled-border-color: #334257;
}

/* ************************
   02.6: Widget
   ********************* */
.widget:not(:last-child) {
  -webkit-margin-after: 2.5rem;
  margin-block-end: 2.5rem;
}

.widget .widget-title {
  -webkit-margin-after: 1.25rem;
  margin-block-end: 1.25rem;
}

/* ************************
   02.7: Pagination
   ********************* */
.pagination,
.pagination ul {
  margin: 0;
}

.pagination li:not(:last-child) {
  -webkit-margin-end: 0.5rem;
  margin-inline-end: 0.5rem;
}

@media only screen and (max-width: 479px) {
  .pagination li:not(:last-child) {
    -webkit-margin-end: 0.3125rem;
    margin-inline-end: 0.3125rem;
  }
}

.pagination li a,
.pagination li span {
  width: 2.25rem;
  height: 2.25rem;
  line-height: 1;
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 0.875rem;
}

@media only screen and (max-width: 479px) {
  .pagination li a,
  .pagination li span {
    width: 1.75rem;
    height: 1.75rem;
  }
}

.pagination li a:hover, .pagination li a.active,
.pagination li span:hover,
.pagination li span.active {
  color: var(--absolute-white);
}

.pagination li.nav-btn a.disabled {
  cursor: not-allowed;
  opacity: .7;
}

/* ************************
02.8: Plugins & Bootstrap CSS Customization
********************* */
/* Bootstrap Floting Label */
/* Bootstrap Dropdown Taggle */
/* Apex Chart CSS */
/* Custom Select2 CSS */
.select2-container {
  width: 100%;
}

.select2-container--default .select2-search--inline .select2-search__field {
  background: transparent;
  border: none;
  outline: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-appearance: textfield;
}

.select2-container .select2-search--inline .select2-search__field {
  margin-top: 0.625rem;
  margin-left: 0.625rem;
}

.select2-container--default .select2-selection--multiple {
  background-color: var(--white-color);
  border-color: var(--input-border-color);
  cursor: text;
  min-block-size: 45px;
}

.select2-container--default.select2-container--focus .select2-selection--multiple {
  border-color: var(--input-border-color-active);
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
  background-color: #F3F4F5;
  border: none;
  padding: 0.375rem 1rem 0.375rem 1.625rem;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
  border: none;
  color: var(--text-color);
  font-size: 1.25rem;
  padding: 0 0.25rem 0 0.5rem;
  top: 0.0625rem;
}

.select2-container--default .select2-selection--single {
  background-color: var(--white-color);
  border-color: var(--border-color);
  min-block-size: 2.8125rem;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: var(--dark-color);
}

.selected-item-c1 + .select2-container--default .select2-selection--single .select2-selection__rendered {
  color: var(--c1);
  font-weight: var(--medium);
}

.select2-dropdown {
  background-color: var(--white-color);
  border-color: var(--border-color);
}

.select2-container--default .select2-results__option--selected {
  background-color: rgba(255, 255, 255, 0.1);
}

.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove {
  border-left: 0px solid #aaa;
}

/* Datatables CSS */
.custom-table.no-footer {
  border: none !important;
}

.custom-table thead th {
  background-color: var(--thead-bg);
  border: none !important;
}

.custom-table th, .custom-table td {
  padding-block: 1rem !important;
}

/* floala text editor */
/* Table */
/* Toast */
/* Nav TAbs */
/* Accordion */
/* Dropdown */
.dropdown-item,
.card-text {
  color: var(--text-color);
}

.dropdown-item {
  text-align: start;
}

.dropdown-item:hover {
  background-color: transparent;
  color: var(--link-color);
}

/* Progress bar */
.text-bg--secondary {
  color: var(--title-color);
  background-color: var(--badge-secondary-bg);
}

.btn-info {
  --bs-btn-color: #fff;
  --bs-btn-hover-color: #fff;
}

.btn-outline-info {
  --bs-btn-hover-color: #fff;
}

dt {
  font-weight: var(--regular);
}

dd {
  -webkit-margin-start: 0px;
  margin-inline-start: 0px;
}

.list-group {
  --bs-list-group-color: var(--text-color);
  --bs-list-group-bg: var(--white-color);
  -webkit-padding-start: 0px;
  padding-inline-start: 0px;
}

[theme="dark"] .list-group {
  --bs-list-group-border-color: rgba(255, 255, 255, 0.125);
}

/* ************************
   02.9: Preloader
   ********************* */
.preloader {
  position: fixed;
  inline-size: 100%;
  block-size: 100%;
  background-color: var(--white-color);
  z-index: 9999999;
  display: grid;
  place-items: center;
}

.loader {
  position: relative;
  display: grid;
  grid-template-columns: 33% 33% 33%;
  grid-gap: 2px;
  inline-size: 100px;
  block-size: 100px;
}

.loader > div {
  position: relative;
  width: 100%;
  height: 100%;
  background: var(--c1);
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transform-origin: center center;
  -ms-transform-origin: center center;
  transform-origin: center center;
  -webkit-animation: loader 2s infinite linear;
  animation: loader 2s infinite linear;
}

.loader > div:nth-of-type(1),
.loader > div:nth-of-type(5),
.loader > div:nth-of-type(9) {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}

.loader > div:nth-of-type(4),
.loader > div:nth-of-type(8) {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

.loader > div:nth-of-type(2),
.loader > div:nth-of-type(6) {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}

.loader > div:nth-of-type(3) {
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
}

@-webkit-keyframes loader {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  80% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
}

@keyframes loader {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  80% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
}

/* ************************
   02.10: Breadcrumb
   ********************* */
/* ************************
   02.11: Card
   ********************* */
.dropdown-menu,
.card {
  background-color: var(--white-color);
  border: 1px solid var(--card-border-color);
}

.dropdown-menu {
  background-color: var(--dropdown-menu-color);
}

.bank-info-card {
  background-color: rgba(0, 106, 255, 0.05);
}

.card-header {
  background-color: var(--white-color);
  -webkit-box-shadow: 0px 0px 0.125rem rgba(65, 83, 179, 0.05), 0rem 0.375rem 0.75rem -0.1875rem rgba(65, 83, 179, 0.05);
  box-shadow: 0px 0px 0.125rem rgba(65, 83, 179, 0.05), 0rem 0.375rem 0.75rem -0.1875rem rgba(65, 83, 179, 0.05);
  border-color: transparent;
}

.card-header,
.card-body {
  padding: 1.25rem 1.25rem;
}

.order-statistics {
  background-color: rgba(0, 170, 109, 0.15);
  padding: 2.1875rem;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.order-statistics * {
  color: var(--title-color2);
}

.order-statistics h2 {
  font-weight: var(--bold);
  font-size: 1.625rem;
  -webkit-margin-after: 0.4375rem;
  margin-block-end: 0.4375rem;
}

.order-statistics h3 {
  font-weight: var(--regular);
}

.order-statistics .absolute-img {
  position: absolute;
  inset-block-start: 1.875rem;
  inset-inline-end: 1.25rem;
  inline-size: 2.5rem;
}

.order-statistics-offline, .order-statistics-cancelled {
  background-color: rgba(248, 59, 59, 0.1);
}

.order-statistics-refunded {
  background-color: rgba(248, 146, 59, 0.1);
}

.order-statistics-failed {
  background-color: rgba(255, 0, 0, 0.2);
}

.order-statistics-total {
  background-color: rgba(0, 150, 255, 0.1);
}

.order-stats {
  background-color: rgba(110, 137, 175, 0.05);
  padding: 1.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.625rem;
  block-size: 100%;
  -webkit-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}

.order-stats__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.625rem;
}

.order-stats__title {
  color: #0661CB;
  font-size: 1.125rem;
  font-weight: 700;
}

.order-stats__subtitle {
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--title-color2);
  margin-bottom: 0;
}

.order-stats_picked .order-stats__title, .order-stats_accepted .order-stats__title {
  color: #00AA6D;
}

.order-stats_processing .order-stats__title {
  color: #FF6D6D;
}

.payment-card {
  --payment-card-bg: #F9F9F9;
  background-color: var(--payment-card-bg);
}

[theme="dark"] .payment-card {
  --payment-card-bg: rgba(255, 255, 255, 0.03);
}

.payment-card-header {
  background-color: #334257;
  padding: 0.625rem 1.25rem;
  color: var(--absolute-white);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.3125rem;
}

.payment-card-body {
  padding: 1.25rem;
}

/* ************************
   02.12: Common
   ********************* */
.avatar {
  block-size: 2.1875rem;
  inline-size: 2.1875rem;
}

.avatar-sm {
  block-size: 1.625rem;
  inline-size: 1.625rem;
}

.avatar-lg {
  block-size: 3.125rem;
  inline-size: 3.125rem;
}

/* Option Select */
/* Events */
/* common List */
.common-list li {
  position: relative;
  padding: 0.625rem 1rem;
  background-color: rgba(110, 137, 175, 0.05);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.common-list li:not(:last-child) {
  -webkit-margin-after: 1rem;
  margin-block-end: 1rem;
}

.common-list__style2 li {
  display: grid;
  grid-template-columns: 9.375rem 1fr 3.125rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: transparent;
}

.common-list__style2 li:not(:last-child) {
  -webkit-margin-after: 0rem;
  margin-block-end: 0rem;
}

@media only screen and (max-width: 479px) {
  .common-list__style2 li {
    grid-template-columns: 5.625rem 1fr 1.875rem;
  }
}

.common-list__style2 .review-count {
  text-align: end;
}

.progress {
  --bs-progress-height: .5rem;
  --bs-progress-border-radius: 0.375rem;
}

.progress-bar {
  --bs-progress-bar-bg: var(--c1);
}

/* Badge */
.badge {
  font-size: 0.75rem;
  font-weight: var(--bold);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 0.375rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.badge .dot {
  block-size: 0.4375rem;
  inline-size: 0.4375rem;
  background-color: var(--white-color);
  display: block;
}

.badge a {
  color: currentColor;
}

.badge-info {
  background-color: rgba(13, 202, 240, 0.1);
  color: #0dcaf0;
}

.badge-info .dot {
  background-color: #2B95FF;
}

.badge-primary {
  background-color: rgba(65, 83, 179, 0.1);
  color: #4153B3;
}

.badge-primary .dot {
  background-color: #4153B3;
}

.badge-success {
  background-color: rgba(22, 181, 89, 0.1);
  color: #16B559;
}

.badge-success .dot {
  background-color: #16B559;
}

.badge-danger {
  background-color: rgba(255, 55, 55, 0.1);
  color: #FF3737;
}

.badge-danger .dot {
  background-color: #FF3737;
}

/* Switcher */
.switcher {
  display: block;
  position: relative;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  inline-size: 2.25rem;
  block-size: 1.125rem;
}

.switcher_control {
  position: absolute;
  inset-block-start: 0;
  inset-inline-start: 0;
  inline-size: 2.25rem;
  block-size: 1.125rem;
  -webkit-transition: background-color .15s ease-in;
  -o-transition: background-color .15s ease-in;
  transition: background-color .15s ease-in;
  background-color: #CED7DD;
}

.switcher_control::after {
  content: "";
  position: absolute;
  inset-block-start: 0.0625rem;
  inset-inline-start: 0.0625rem;
  inline-size: 1rem;
  block-size: 1rem;
  -webkit-transition: left .15s ease-in;
  -o-transition: left .15s ease-in;
  transition: left .15s ease-in;
  background-color: var(--absolute-white);
}

.switcher_input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.switcher_input:checked ~ .switcher_control {
  background-color: var(--c1);
}

.switcher_input:checked ~ .switcher_control:after {
  inset-inline-start: 1.1875rem;
}

/* Table Action Icons */
.table-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5rem;
}

.table-actions_download, .table-actions_delete, .table-actions_view, .table-actions_edit {
  cursor: pointer;
  inline-size: 1.875rem;
  block-size: 1.875rem;
  display: grid;
  place-items: center;
  padding: 0.3125rem;
}

.table-actions_download i, .table-actions_download .material-icons, .table-actions_download .material-symbols-outlined, .table-actions_delete i, .table-actions_delete .material-icons, .table-actions_delete .material-symbols-outlined, .table-actions_view i, .table-actions_view .material-icons, .table-actions_view .material-symbols-outlined, .table-actions_edit i, .table-actions_edit .material-icons, .table-actions_edit .material-symbols-outlined {
  margin: 0rem;
  font-size: 0.875rem;
}

.table-actions_download:focus, .table-actions_download:hover, .table-actions_delete:focus, .table-actions_delete:hover, .table-actions_view:focus, .table-actions_view:hover, .table-actions_edit:focus, .table-actions_edit:hover {
  color: var(--absolute-white);
}

/* Modal */
.modal .modal-content {
  color: var(--title-color);
  background-color: var(--white-color);
}

.modal-body .btn-close {
  position: absolute;
  inset-block-start: 0.625rem;
  inset-inline-end: 0.625rem;
}

.modal-body .btn-close:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.modal-body_title {
  -webkit-margin-after: 0.625rem;
  margin-block-end: 0.625rem;
}

.modal-body_title_bg {
  background-color: var(--bg-color);
  padding: 0.75rem;
}

.modal .meta-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 0.125rem;
}

/* Custom checkbox */
/* multiple-select-actions */
/* upload file */
.upload-file {
  position: relative;
  cursor: pointer;
  display: inline-block;
}

.upload-file__input2, .upload-file__input {
  position: absolute;
  inset-inline-start: 0;
  inset-block-start: 0;
  inline-size: 100%;
  block-size: 100%;
  opacity: 0;
  cursor: pointer;
}

.upload-file__img {
  block-size: 8.75rem;
  inline-size: 8.75rem;
  min-inline-size: 8.75rem;
}

.upload-file__img img {
  aspect-ratio: 1 / 1;
  background-color: var(--white-color);
}

.upload-file__img_banner {
  inline-size: 100%;
  max-inline-size: 20.9375rem;
  block-size: auto;
}

@media only screen and (max-width: 1399px) {
  .upload-file__img_banner {
    inline-size: 100%;
  }
}

.upload-file__img_banner img {
  aspect-ratio: 3 / 1;
}

.upload-file__close {
  inline-size: 2rem;
  block-size: 2rem;
  background-color: #FFE1E2;
  display: grid;
  place-items: center;
  padding: 0.3125rem;
  color: var(--c2);
  position: absolute;
  inset-inline-end: -0.625rem;
  inset-block-end: -0.625rem;
}

.upload-file__close .material-icons {
  font-size: 1rem;
}

.file__value {
  padding: 0.625rem 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1rem;
  background-color: rgba(0, 170, 109, 0.1);
}

.file__value:after {
  content: "X";
  cursor: pointer;
  font-weight: var(--bold);
}

.file__value--text {
  font-weight: var(--bold);
}

/* Offcanvas Overlay */
.offcanvas-overlay {
  position: fixed;
  inline-size: 100%;
  block-size: 100%;
  inset-inline-end: 0;
  inset-block-start: 0;
  background-color: rgba(0, 0, 0, 0.3);
  -webkit-transition: opacity 150ms ease;
  -o-transition: opacity 150ms ease;
  transition: opacity 150ms ease;
  z-index: -1;
  opacity: 0;
}

.offcanvas-overlay.active {
  opacity: 1;
  z-index: 1032;
}

.offcanvas-overlay.aside-active {
  opacity: 1;
  z-index: 1031;
}

/* Service Price List */
/* Contact List */
/* Rating Review */
.rating-review__title {
  font-weight: var(--medium);
  font-size: 2.1875rem;
  color: #758590;
  -webkit-margin-after: 0.25rem;
  margin-block-end: 0.25rem;
}

.rating-review__out-of {
  font-size: 3.125rem;
  -webkit-margin-end: 0.3125rem;
  margin-inline-end: 0.3125rem;
}

.rating-review__info {
  color: #758590;
  font-weight: var(--semi-bold);
}

.rating i, .rating .material-icons, .rating .material-symbols-outlined {
  color: var(--c1);
}

/* Two Column List */
/* custom checkbox */
/* Img Wrap Circle */
.mx-10 {
  -webkit-margin-start: 0.625rem;
  margin-inline-start: 0.625rem;
  -webkit-margin-end: 0.625rem;
  margin-inline-end: 0.625rem;
}

.apexcharts-toolbar {
  display: none !important;
}

.chart-wrap {
  position: relative;
}

.chart-wrap .badge {
  position: absolute;
  inset-inline-end: 0;
  inset-block-start: 0.625rem;
}

.total--users {
  position: absolute;
  left: 50%;
  inset-block-start: 35%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
}

.page-inline-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.page-inline-menu a {
  padding: 0.75rem 1.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: var(--medium);
  text-transform: capitalize;
  position: relative;
}

.page-inline-menu a:after {
  inline-size: 0%;
  block-size: 0.125rem;
  content: "";
  background-color: var(--c1);
  position: absolute;
  inset-block-end: 0rem;
  inset-inline-start: 0rem;
}

.page-inline-menu a.active {
  color: var(--c1);
}

.page-inline-menu a.active:after {
  inline-size: 100%;
}

.page-inline-menu a:hover {
  color: var(--c1);
}

.order-statistics-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(215px, 1fr));
  gap: 1rem;
}

@media only screen and (max-width: 1599px) {
  .order-statistics-grid {
    grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  }
}

.order-statistics-grid.grid-style--two {
  grid-template-columns: repeat(auto-fit, minmax(275px, 1fr));
}

.status {
  inline-size: 0.625rem;
  block-size: 0.625rem;
  inset-block-end: -0.125rem;
  inset-inline-end: 0rem;
  position: absolute;
  z-index: 1;
  border: 0.125rem solid var(--absolute-white);
}

/* ************************
   03.1: Header
   ********************* */
.header {
  padding: 0.6875rem 0;
  -webkit-padding-start: 17.5rem;
  padding-inline-start: 17.5rem;
  block-size: 3.75rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-padding-end: 0.9375rem;
  padding-inline-end: 0.9375rem;
  background-color: var(--white-color);
  -webkit-border-after: 1px solid var(--border-color);
  border-block-end: 1px solid var(--border-color);
}

@media only screen and (max-width: 1199px) {
  .header {
    -webkit-padding-start: 0.9375rem;
    padding-inline-start: 0.9375rem;
  }
  .header .aside-toggle {
    display: block !important;
  }
}

.toggle-menu-button i, .toggle-menu-button .material-icons {
  font-size: 1.75rem;
}

/* ************************
   03.2: Footer
   ********************* */
.footer {
  padding: 1.125rem 0 0.5rem;
}

/* ************************
   03.3: aside
   ********************* */
.aside {
  inline-size: 16.875rem;
  position: fixed;
  inset-inline-start: 0;
  inset-block-start: 0;
  block-size: 100%;
  z-index: 1031;
  -webkit-transition: width 100ms;
  -o-transition: width 100ms;
  transition: width 100ms;
}

@media only screen and (max-width: 1199px) {
  .aside {
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}

.aside-header {
  padding: 0.6875rem 1.25rem;
  block-size: 3.75rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-border-end: 1px solid var(--border-color);
  border-inline-end: 1px solid var(--border-color);
}

.aside-body {
  padding: 1.25rem 0.625rem;
  max-block-size: calc(100% - 60px);
  background-color: var(--aside-bg);
  position: relative;
}

.aside-body .nav {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.aside-body .nav li {
  display: block;
}

.aside-body .nav li.nav-category {
  font-size: 12px;
  font-weight: var(--bold);
  text-transform: uppercase;
  position: relative;
  color: var(--absolute-white);
  opacity: 0.5;
  padding: 0.625rem;
}

.aside-body .nav li > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  padding: 0.625rem;
}

.aside-body .nav li a {
  font-size: 0.875rem;
}

.aside-body .nav li .link-title {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.aside-body .nav li .link-title .count {
  background-color: var(--c2);
  color: var(--absolute-white);
  padding: 0.1875rem 0.5rem;
}

.aside-body .nav li.has-sub-item {
  position: relative;
}

.aside-body .nav li.has-sub-item:after {
  font-family: 'Material Icons';
  content: "chevron_right";
  position: absolute;
  inset-inline-end: 0.625rem;
  inset-block-start: 0.625rem;
  color: var(--absolute-white);
  opacity: 0.5;
}

.aside-body .nav li.sub-menu-opened:after {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.aside-body .nav li:hover > a, .aside-body .nav li.active > a {
  background-color: rgba(239, 246, 255, 0.1);
}

.aside-body .nav a {
  color: var(--absolute-white);
  -webkit-margin-after: 0.3125rem;
  margin-block-end: 0.3125rem;
}

.aside-body .nav ul {
  -webkit-padding-before: 0.3125rem;
  padding-block-start: 0.3125rem;
}

.aside-body .nav ul li a {
  -webkit-padding-start: 2.25rem;
  padding-inline-start: 2.25rem;
}

.aside-body .nav ul.sub-menu {
  display: none;
}

.mobile-logo {
  display: none;
}

a[disabled] {
  pointer-events: none;
  opacity: 0.6;
}

.user-profile {
  background-color: var(--bg-color);
  padding: 1.25rem 0.9375rem;
  -webkit-transition: all 100ms;
  -o-transition: all 100ms;
  transition: all 100ms;
}

.header .aside-toggle {
  display: none;
}

body.aside-open .aside {
  -webkit-transform: translateX(0) !important;
  -ms-transform: translateX(0) !important;
  transform: translateX(0) !important;
}

body.aside-folded .header {
  -webkit-padding-start: 4.375rem;
  padding-inline-start: 4.375rem;
}

body.aside-folded .header .aside-toggle {
  display: block;
}

body.aside-folded .main-area {
  -webkit-padding-start: 4.6875rem;
  padding-inline-start: 4.6875rem;
}

@media only screen and (max-width: 991px) {
  body.aside-folded .main-area {
    margin-left: 0;
  }
}

body.aside-folded .aside {
  inline-size: 3.75rem;
}

body.aside-folded .aside .aside-toggle {
  display: none;
}

body.aside-folded .aside .mobile-logo {
  display: block;
}

body.aside-folded .aside .main-logo {
  display: none;
}

body.aside-folded .aside-header {
  padding: 0.3125rem;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

body.aside-folded .aside-body .search-form {
  display: none;
}

body.aside-folded .aside-body .nav-category {
  visibility: hidden;
  max-height: 42px;
}

body.aside-folded .aside-body .nav-category:before {
  position: absolute;
  content: "";
  width: 0.3125rem;
  height: 0.125rem;
  inset-inline-start: 0;
  inset-block-start: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  background-color: var(--absolute-white);
  visibility: visible;
}

body.aside-folded .aside-body li a span:not(.material-icons) {
  visibility: hidden;
  opacity: 0;
}

body.aside-folded .aside-body li.active i, body.aside-folded .aside-body li:hover i {
  color: var(--link-color);
}

body.aside-folded.open-aside-folded .header .aside-toggle {
  display: none;
}

body.aside-folded.open-aside-folded .aside {
  inline-size: 16.875rem;
}

body.aside-folded.open-aside-folded .aside .aside-toggle {
  display: block;
}

body.aside-folded.open-aside-folded .aside .mobile-logo {
  display: none;
}

body.aside-folded.open-aside-folded .aside .main-logo {
  display: block;
}

body.aside-folded.open-aside-folded .aside-header {
  padding: 0.6875rem 1.25rem;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

body.aside-folded.open-aside-folded .aside .aside-body .search-form {
  display: block;
}

body.aside-folded.open-aside-folded .aside .aside-body li i {
  color: #aeaeae;
}

body.aside-folded.open-aside-folded .aside .aside-body li.nav-category {
  visibility: visible;
}

body.aside-folded.open-aside-folded .aside .aside-body li.nav-category:before {
  display: none;
}

body.aside-folded.open-aside-folded .aside .aside-body li a span {
  visibility: visible;
  opacity: 1;
}

body.aside-folded.open-aside-folded .aside .aside-body li.active i, body.aside-folded.open-aside-folded .aside .aside-body li:hover i {
  color: #8280FD;
}

/* ************************
   03.4: Main Area
   ********************* */
.main-area {
  -webkit-padding-before: 5.625rem;
  padding-block-start: 5.625rem;
  -webkit-padding-start: 18rem;
  padding-inline-start: 18rem;
  -webkit-padding-end: 0.9375rem;
  padding-inline-end: 0.9375rem;
  block-size: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

@media only screen and (max-width: 1199px) {
  .main-area {
    -webkit-padding-start: 0.9375rem;
    padding-inline-start: 0.9375rem;
  }
}

@media only screen and (max-width: 479px) {
  .main-area {
    -webkit-padding-start: 0;
    padding-inline-start: 0;
    -webkit-padding-end: 0;
    padding-inline-end: 0;
  }
}

/* ************************
   03.5: Theme Switcher
   ********************* */
.settings-sidebar, .filter-aside {
  position: fixed;
  background-color: var(--white-color);
  inline-size: 18.75rem;
  inset-inline-end: -18.75rem;
  inset-block-start: 0;
  z-index: 1029;
  block-size: 100vh;
  padding: 3.75rem 0rem 1.25rem;
  -webkit-transition: -webkit-transform 200ms ease;
  transition: -webkit-transform 200ms ease;
  -o-transition: transform 200ms ease;
  transition: transform 200ms ease;
  transition: transform 200ms ease, -webkit-transform 200ms ease;
}

@media only screen and (max-width: 479px) {
  .settings-sidebar, .filter-aside {
    inline-size: 16.25rem;
    inset-inline-end: -16.25rem;
  }
}

.settings-sidebar.active, .active.filter-aside {
  inset-inline-end: 0;
}

.settings-toggle-icon {
  position: absolute;
  inline-size: 2.8125rem;
  block-size: 2.8125rem;
  inset-inline-start: -2.8125rem;
  inset-block-start: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  background-color: #e9ecfb;
  border-start-start-radius: 5px;
  border-end-start-radius: 5px;
  padding: 0.3125rem;
  display: grid;
  place-items: center;
  cursor: pointer;
}

.settings-toggle-icon .material-icons {
  font-size: 1.5rem;
}

.settings-content h4 {
  padding: 1.25rem;
  border-bottom: 1px dashed var(--border-color);
  text-align: center;
}

.switchers-wrap {
  padding: 1.25rem;
}

.switch-items {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  -webkit-column-gap: 0.625rem;
  -moz-column-gap: 0.625rem;
  column-gap: 0.625rem;
  row-gap: 1.25rem;
}

.setting-box {
  background-color: var(--body-bg);
  block-size: 6.25rem;
  display: grid;
  place-items: center;
  border: 1px solid transparent;
  padding: 0.9375rem;
  -webkit-transition: border 200ms ease;
  -o-transition: border 200ms ease;
  transition: border 200ms ease;
  cursor: pointer;
}

.setting-box.active {
  border-color: var(--c1);
}

.setting-box.dark-mode {
  background-color: var(--absolute-dark);
}

.setting-box.light-mode {
  background-color: var(--absolute-white);
}

.setting-box-wrap h5 {
  text-align: center;
  -webkit-margin-before: 0.625rem;
  margin-block-start: 0.625rem;
}

/* ************************
   03.6: RTL
   ********************* */
[dir="rtl"] .nav {
  -webkit-padding-start: 0;
  padding-inline-start: 0;
}

[dir="rtl"] .aside-body .nav li.has-sub-item:after {
  content: "chevron_left";
}

[dir="rtl"] .aside-body .nav li.sub-menu-opened:after {
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
}

[dir="rtl"] .ps__rail-y {
  left: 0 !important;
  right: auto !important;
}

@media only screen and (max-width: 1199px) {
  [dir="rtl"] .aside {
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
  }
}

[dir="rtl"] .apexcharts-legend-marker {
  margin-right: 0rem;
  margin-left: 0.3125rem;
}

[dir="rtl"] .chart-wrap .badge {
  inset-inline-end: 1.25rem;
}

[dir="rtl"] .btn-group,
[dir="rtl"] .input-group-merge {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

[dir="rtl"] .modal-header .btn-close {
  margin-left: 0 !important;
  margin-right: auto !important;
}

/* ************************
   03.7: Filter Aside
   ********************* */
.filter-aside {
  z-index: 1033;
  -webkit-padding-before: 0;
  padding-block-start: 0;
  inline-size: 25rem;
  inset-inline-end: -25rem;
}

@media only screen and (max-width: 479px) {
  .filter-aside {
    inline-size: 100%;
    inset-inline-end: -100%;
  }
}

.filter-aside__header {
  background-color: var(--bg-color);
  padding: 1.25rem 1.25rem;
  -webkit-margin-after: 0.625rem;
  margin-block-end: 0.625rem;
}

.filter-aside__title {
  text-transform: uppercase;
  color: var(--c1);
}

.filter-aside__body {
  padding: 1.25rem;
  block-size: 70vh;
  overflow-y: auto;
}

/* ************************
   03.8: Login
   ********************* */
.register-form,
.login-form {
  min-block-size: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 0.75rem;
}

.register-wrap,
.login-wrap {
  display: grid;
  grid-template-columns: 35% 65%;
}

@media only screen and (max-width: 575px) {
  .register-wrap,
  .login-wrap {
    grid-template-columns: 1fr;
  }
}

.register-right,
.login-right {
  padding: 2.5rem;
  position: relative;
}

@media only screen and (max-width: 575px) {
  .register-right,
  .login-right {
    padding: 1.5gulrem 0.9375rem;
  }
}

.register-left, .register-img,
.login-left,
.login-img {
  block-size: 100%;
}

@media only screen and (max-width: 575px) {
  .register-left,
  .login-left {
    display: none;
  }
}

.register-footer,
.login-footer {
  padding-block: 0.5rem;
  padding-inline: 1rem;
  -webkit-margin-before: auto;
  margin-block-start: auto;
}

.register-copy,
.login-copy {
  background-color: #333F99;
  border-radius: 0.1875rem;
  color: var(--absolute-white);
  padding: 0.5rem 0.625rem;
}

.register-wrap {
  grid-template-columns: 15% 85%;
}

@media only screen and (max-width: 991px) {
  .register-wrap {
    grid-template-columns: 1fr;
  }
}

@media only screen and (max-width: 991px) {
  .register-left {
    display: none;
  }
}

/* ************************
   04.1: Dark Theme CSS
   ********************* */
[theme="dark"] .settings-toggle-icon {
  background-color: var(--c1);
}

[theme="dark"] .events .line {
  background-color: #6c6c6c;
}

[theme="dark"] .apexcharts-yaxis-label,
[theme="dark"] .apexcharts-xaxis-label,
[theme="dark"] .apexcharts-yaxis-title-text,
[theme="dark"] .apexcharts-yaxis-title,
[theme="dark"] .apexcharts-legend-text {
  color: rgba(255, 255, 255, 0.7) !important;
  fill: rgba(255, 255, 255, 0.7) !important;
}

[theme="dark"] .card-header {
  background-color: rgba(255, 255, 255, 0.05);
}

[theme="dark"] .table {
  --bs-table-color: rgba(255, 255, 255, .8);
}

[theme="dark"] .btn-close {
  background: transparent url("../img/icons/close.png") center/1em auto no-repeat;
}

[theme="dark"] ::-webkit-calendar-picker-indicator {
  -webkit-filter: invert(1);
  filter: invert(1);
}

[theme="dark"] .select2-container--default .select2-search--dropdown .select2-search__field {
  background-color: var(--body-bg);
  color: var(--absolute-white);
}

[theme="dark"] img.dark-support {
  -webkit-filter: brightness(0.8) contrast(1.2);
  filter: brightness(0.8) contrast(1.2);
}

[theme="dark"] .btn-outline-dark {
  --bs-btn-color: rgba(255, 255, 255, .4);
  --bs-btn-border-color: rgba(255, 255, 255, .4);
  --bs-btn-hover-bg: rgba(255, 255, 255, .4);
  --bs-btn-hover-border-color: rgba(255, 255, 255, .4);
  --bs-btn-active-bg: rgba(255, 255, 255, .4);
  --bs-btn-active-border-color: rgba(255, 255, 255, .4);
  --bs-btn-disabled-color: rgba(255, 255, 255, .4);
  --bs-btn-disabled-border-color: rgba(255, 255, 255, .4);
}

/* ************************
   05.1: Jquery Steps
   ********************* */
.wizard .content .title {
  display: none;
}

.wizard .steps {
  -webkit-margin-after: 0rem;
  margin-block-end: 0rem;
}

@media only screen and (max-width: 991px) {
  .wizard .steps {
    -webkit-margin-after: 2.5rem;
    margin-block-end: 2.5rem;
  }
}

.wizard .steps ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media only screen and (max-width: 479px) {
  .wizard .steps ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 1rem;
  }
}

.wizard .steps ul li {
  position: relative;
}

.wizard .steps ul li:not(:first-child) {
  -webkit-padding-start: 14.875rem;
  padding-inline-start: 14.875rem;
}

@media only screen and (max-width: 991px) {
  .wizard .steps ul li:not(:first-child) {
    -webkit-padding-start: 3.125rem;
    padding-inline-start: 3.125rem;
  }
}

@media only screen and (max-width: 479px) {
  .wizard .steps ul li:not(:first-child) {
    -webkit-padding-start: 0rem;
    padding-inline-start: 0rem;
  }
}

.wizard .steps ul li:not(:first-child)::after {
  inline-size: 11.875rem;
  block-size: 0.0625rem;
  background-color: var(--bg-color2);
  position: absolute;
  inset-inline-start: 1.5rem;
  inset-block-start: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  content: "";
}

@media only screen and (max-width: 991px) {
  .wizard .steps ul li:not(:first-child)::after {
    inset-inline-start: 0.625rem;
    inline-size: 1.875rem;
  }
}

@media only screen and (max-width: 479px) {
  .wizard .steps ul li:not(:first-child)::after {
    display: none;
  }
}

.wizard .steps ul li.first.done a {
  opacity: 1;
}

.wizard .steps ul li.first.done a .number {
  background-color: var(--c1);
}

.wizard .steps ul li a {
  color: var(--title-color);
  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;
  gap: 0.625rem;
  font-size: 1rem;
  opacity: 0.3;
}

.wizard .steps ul .number {
  inline-size: 1.5rem;
  min-inline-size: 1.5rem;
  block-size: 1.5rem;
  background-color: var(--title-color);
  display: grid;
  place-items: center;
  padding: 0.3125rem;
  color: var(--white-color);
  line-height: 1;
  font-size: 0.75rem;
}

.wizard .steps ul .current a {
  opacity: 1;
}

.wizard .steps ul .current-info {
  display: none;
}

.wizard .steps ul .current .number {
  background-color: var(--c1);
}

.wizard .actions {
  -webkit-margin-before: 1.875rem;
  margin-block-start: 1.875rem;
}

.wizard .actions ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.625rem;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

#register-vertical-steps.wizard.vertical {
  display: grid;
  grid-template-columns: 1fr 2fr;
}

@media only screen and (max-width: 575px) {
  #register-vertical-steps.wizard.vertical {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

#register-vertical-steps.wizard.vertical .actions {
  grid-column: span 3;
}

#register-vertical-steps.wizard .steps {
  -webkit-margin-after: 0rem;
  margin-block-end: 0rem;
  position: relative;
  -webkit-padding-before: 3.75rem;
  padding-block-start: 3.75rem;
}

#register-vertical-steps.wizard .steps:before {
  content: "Sign Up Form";
  position: absolute;
  inset-block-start: 0rem;
  inset-inline-start: 0rem;
  font-size: 1.375rem;
  color: var(--c1);
  font-weight: var(--medium);
}

#register-vertical-steps.wizard .steps ul {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

#register-vertical-steps.wizard .steps ul li {
  position: relative;
}

#register-vertical-steps.wizard .steps ul li:not(:first-child) {
  -webkit-padding-start: 0rem;
  padding-inline-start: 0rem;
  -webkit-padding-before: 4.375rem;
  padding-block-start: 4.375rem;
}

#register-vertical-steps.wizard .steps ul li:not(:first-child)::after {
  inline-size: 0.125rem;
  block-size: 60%;
  z-index: -1;
  inset-block-start: 22%;
  inset-inline-start: 0.625rem;
  content: "";
}

@media only screen and (max-width: 479px) {
  #register-vertical-steps.wizard .steps ul li:not(:first-child)::after {
    display: block;
  }
}

#register-vertical-steps.wizard .steps ul li.done + li::after, #register-vertical-steps.wizard .steps ul li.done::after {
  background-color: var(--c1);
  z-index: 1;
}

#register-vertical-steps.wizard .steps ul li.done a {
  opacity: 1;
}

#register-vertical-steps.wizard .steps ul li.done a .number {
  background-color: var(--c1);
}

#register-vertical-steps.wizard .steps ul li a {
  display: grid;
  row-gap: 0rem;
  grid-template-columns: 1.875rem 1fr;
}

#register-vertical-steps.wizard .steps ul li a .step-info {
  grid-column: span 2;
  -webkit-padding-start: 2.5rem;
  padding-inline-start: 2.5rem;
  font-size: 0.875rem;
  opacity: 0.5;
}

#register-vertical-steps.wizard .content {
  -webkit-margin-start: 1.875rem;
  margin-inline-start: 1.875rem;
}

@media only screen and (max-width: 575px) {
  #register-vertical-steps.wizard .content {
    -webkit-margin-start: 0rem;
    margin-inline-start: 0rem;
    -webkit-margin-before: 2.5rem;
    margin-block-start: 2.5rem;
  }
}

/* ************************
   05.2: Provider Details
   ********************* */
.provider-details-overview {
  display: grid;
  gap: 0.625rem;
  grid-template-columns: 30% 40% 30%;
}

@media only screen and (max-width: 991px) {
  .provider-details-overview {
    grid-template-columns: 1fr 1fr;
  }
}

@media only screen and (max-width: 767px) {
  .provider-details-overview {
    grid-template-columns: 1fr;
  }
}

.provider-details-overview__statistics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.3125rem;
}

@media only screen and (max-width: 991px) {
  .provider-details-overview__statistics {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
    grid-column: 1/-1;
  }
}

@media only screen and (max-width: 379px) {
  .provider-details-overview__statistics {
    grid-template-columns: 1fr;
  }
}

/* Information Details Box */
.information-details-box {
  background-color: var(--white-bg);
  border: 1px solid rgba(65, 83, 179, 0.05);
  -webkit-box-shadow: 0px 0px 2px rgba(145, 158, 171, 0.2), 0px 12px 24px -4px rgba(145, 158, 171, 0.1);
  box-shadow: 0px 0px 2px rgba(145, 158, 171, 0.2), 0px 12px 24px -4px rgba(145, 158, 171, 0.1);
  padding: 1.875rem;
}

@media only screen and (max-width: 575px) {
  .information-details-box {
    padding: 1rem;
  }
}

.information-details-box__title {
  font-size: 1.25rem;
  -webkit-margin-after: 1.25rem;
  margin-block-end: 1.25rem;
}

.information-details-box__title i, .information-details-box__title .material-icons {
  font-size: inherit;
}

.information-details-box__subtitle {
  -webkit-margin-after: 1.25rem;
  margin-block-end: 1.25rem;
}

/* Service Man List */
.service-man-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.25rem;
}

.service-man-list__item {
  border: 1px solid rgba(65, 83, 179, 0.05);
  -webkit-box-shadow: 4px 4px 10px -4px rgba(145, 158, 171, 0.2);
  box-shadow: 4px 4px 10px -4px rgba(145, 158, 171, 0.2);
}

.service-man-list__item_header {
  background: rgba(65, 83, 179, 0.05);
  border-radius: 0.625rem 0.625rem 1.25rem 1.25rem;
  padding: 0.9375rem;
}

.service-man-list__item_header img {
  inline-size: 3.625rem;
  block-size: 3.625rem;
}

.service-man-list__item_header .service-man-name {
  color: var(--c1);
}

.service-man-list__item_body {
  padding: 0.9375rem;
}

/* ************************
   05.3: Chat
   ********************* */
.avatar-status {
  position: absolute;
  inline-size: 0.625rem;
  block-size: 0.625rem;
  inset-block-end: 0rem;
  inset-inline-end: 0rem;
  border: 2px solid var(--absolute-white);
}

.chat_list {
  padding: 0.75rem 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 1rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.chat_list:hover, .chat_list.active {
  background-color: rgba(217, 217, 217, 0.3);
}

.outgoing_msg, .received_msg {
  inline-size: 70%;
  -webkit-margin-after: 1rem;
  margin-block-end: 1rem;
}

.received_msg .message_text {
  background-color: rgba(217, 217, 217, 0.3);
}

.outgoing_msg {
  -webkit-margin-start: auto;
  margin-inline-start: auto;
}

.outgoing_msg .message_text {
  background-color: var(--c1);
  color: var(--absolute-white);
}

.message_text {
  -webkit-margin-after: 0.3125rem;
  margin-block-end: 0.3125rem;
  padding: 0.625rem 1rem;
}

.time_date {
  font-size: 12px;
}

.card-chat {
  min-block-size: calc(100vh - 200px);
}

.inbox_chat,
.inbox_msg {
  max-block-size: 45vh;
  overflow-y: auto;
}

.inbox_chat {
  max-block-size: 60vh;
}

.add-img,
.add-attatchment {
  position: relative;
  cursor: pointer;
}

.add-img .material-icons,
.add-attatchment .material-icons {
  cursor: pointer;
}

.add-img input,
.add-attatchment input {
  opacity: 0;
  position: absolute;
  inline-size: 100%;
  block-size: 100%;
  inset-block-start: 0rem;
  inset-inline-start: 0rem;
  cursor: pointer;
}

.send-msg-btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 0.625rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.send-msg-btns button {
  border: none;
  color: var(--c1);
  background-color: transparent;
}

.input_msg_write {
  position: relative;
}

.input_msg_write textarea {
  -webkit-padding-after: 2.5rem;
  padding-block-end: 2.5rem;
}

.input_msg_write .send-msg-btns {
  -webkit-padding-before: 0.25rem;
  padding-block-start: 0.25rem;
  background-color: var(--white-color);
  position: absolute;
  z-index: 1;
  inline-size: calc(100% - 17px);
  inset-inline-start: 0.0625rem;
  inset-block-end: 0.0625rem;
}

/* ************************
   05.4: Service
   ********************* */
.service-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(13.75rem, 1fr));
  gap: 1.5625rem;
}

.service-list-wrap {
  display: grid;
  grid-template-columns: 16.25rem 1fr;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  gap: 1.875rem;
}

@media only screen and (max-width: 991px) {
  .service-list-wrap {
    grid-template-columns: 1fr;
  }
}

.service-list-item {
  background-color: var(--c1-light-bg);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.service-content {
  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-positive: 1;
  flex-grow: 1;
}

.service-title {
  background-color: var(--white-color);
  padding: 0.75rem;
  display: block;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.service-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0.5rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 0.75rem;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.services-tab-menu li {
  padding: 1.25rem;
  -webkit-border-start: 0.125rem solid var(--c1-light-bg);
  border-inline-start: 0.125rem solid var(--c1-light-bg);
  text-transform: capitalize;
  border-start-end-radius: 0.3125rem;
  border-end-end-radius: 0.3125rem;
}

.services-tab-menu li.active {
  border-color: var(--c1);
  background-color: var(--c1-light-bg);
}

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