/* Flexbox */
/*--------------------------------------------------------------
# Normalize
--------------------------------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,200;1,300;1,400;1,500;1,600;1,700;1,800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@200;300;400;500;600;700;800&display=swap");
:root {
  --main-color-one: #FF6B2C;
  --main-color-one-rgb: 29, 191, 115;
  --main-color-two: #00a389;
  --main-color-two-rgb: 71, 200, 237;
  --dashboard-bg: #F6F8FA;
  --section-bg-1: #F7F8FF;
  --section-bg-2: #F5F5F5;
  --heading-color: #1D2635;
  --border-color: #EAECF0;
  --border-color-2: #ddd;
  --body-color: #999;
  --paragraph-color: #666;
  --white: #ffffff;
  --black: #111111;
  --success-color: #65c18c;
  --success-color-rgb: 101, 193, 140;
  --delete-color: #ee0000;
  --delete-color-rgb: 238, 0, 0;
  --review-color: #F49D1A;
  --review-color-rgb: 244, 157, 26;
  --heading-font: "Plus Jakarta Sans", sans-serif;
  --body-font: "Manrope", sans-serif;
  --promo-one: #4D77FF;
  --promo-one-rgb: 77, 119, 255;
  --promo-two: #FFB100;
  --promo-two-rgb: 255, 177, 0;
  --promo-three: #65c18c;
  --promo-three-rgb: 101, 193, 140;
  --promo-four: #FF6B2C;
  --promo-four-rgb: 255, 107, 44;
  --promo-five: #d1d401;
  --promo-five-rgb: 209, 212, 1;
  --promo-six: #0033a0;
  --promo-six-rgb: 0, 51, 160;
  --promo-seven: #008ada;
  --promo-seven-rgb: 0, 138, 218;
  --promo-eight: #dc5eff;
  --promo-eight-rgb: 220, 94, 255;
}

html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  overflow-x: hidden;
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  outline: none;
  -moz-osx-font-smoothing: grayscale;
  /* Firefox */
  -webkit-font-smoothing: antialiased;
  /* WebKit  */
}

body {
  margin: 0;
  color: var(--body-color);
  overflow-x: hidden;
  font-family: var(--body-font);
  font-size: 14px;
  line-height: 26px;
}
@media only screen and (max-width: 480px) {
  body {
    font-size: 15px;
  }
}
@media only screen and (max-width: 375px) {
  body {
    font-size: 14px;
  }
}

h1 {
  font-size: 64px;
  line-height: 1.0833333333;
}

h2 {
  font-size: 44px;
  line-height: 1.4444444444;
}
@media (min-width: 250px) and (max-width: 991.98px) {
  h2 {
    font-size: 30px;
  }
}
@media only screen and (max-width: 575.98px) {
  h2 {
    font-size: 27px;
  }
}
@media only screen and (max-width: 480px) {
  h2 {
    font-size: 26px;
  }
}
@media only screen and (max-width: 375px) {
  h2 {
    font-size: 24px;
  }
}

h3 {
  font-size: 32px;
  line-height: 1.0833333333;
}
@media (min-width: 250px) and (max-width: 991.98px) {
  h3 {
    font-size: 26px;
  }
}
@media only screen and (max-width: 575.98px) {
  h3 {
    font-size: 25px;
  }
}
@media only screen and (max-width: 480px) {
  h3 {
    font-size: 24px;
  }
}
@media only screen and (max-width: 375px) {
  h3 {
    font-size: 22px;
  }
}

h4 {
  font-size: 24px;
  line-height: 1.0833333333;
}
@media only screen and (max-width: 575.98px) {
  h4 {
    font-size: 23px;
  }
}
@media only screen and (max-width: 375px) {
  h4 {
    font-size: 21px;
  }
}

h5 {
  font-size: 20px;
  line-height: 1.2380952381;
}
@media only screen and (max-width: 375px) {
  h5 {
    font-size: 18px;
  }
}

h6 {
  font-size: 16px;
  line-height: 1.2380952381;
}
@media only screen and (max-width: 375px) {
  h6 {
    font-size: 16px;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
  margin: 0;
  -webkit-transition: 300ms;
  transition: 300ms;
}

p {
  color: var(--light-color);
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
  margin-bottom: 0;
  line-height: 26px;
  font-size: 16px;
}

a {
  color: inherit;
  text-decoration: none;
  color: var(--extra-light-color);
  -webkit-transition: 300ms;
  transition: 300ms;
}

a,
a:hover,
a:focus,
a:active {
  text-decoration: none;
  outline: none;
  color: inherit;
}

pre {
  word-break: break-word;
}

a i {
  padding: 0 2px;
}

img {
  max-width: 100%;
}

.list-style-none,
.list_none {
  margin: 0;
  padding: 0;
  list-style: none;
}

ol {
  counter-reset: counter;
  padding-left: 0;
}

ol li:before {
  counter-increment: counter;
  content: counter(counter);
  font-weight: 500;
  margin-right: 10px;
}

/* span {
  display: inline-block;
} */

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

.form--control {
  width: 100%;
}

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

.bg-gray {
  background-color: var(--border-color);
}

.section-bg-1 {
  background-color: var(--section-bg-1);
}

.section-bg-base {
  background-color: var(--section-bg-base);
}

.section-bg-2 {
  background-color: var(--section-bg-2);
}

.section-bg-gradient {
  background: var(--bg-gradient);
}

.footer-bg-1 {
  background-color: var(--footer-bg-1);
}

.footer-bg-2 {
  background-color: var(--footer-bg-2);
}

.copyright-bg-1 {
  background-color: var(--copyright-bg-1);
}

.color-one {
  color: var(--main-color-one);
}

.color-completed {
  color: var(--success-color);
}

.bg-image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.no-margin {
  margin: 0;
}

.lazyloads {
  display: block;
}

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

.flex-between {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px 10px;
}

.flex_between {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px 10px;
}

.form-message {
  font-size: 16px;
  line-height: 24px;
  width: 100%;
  padding: 15px 20px;
  border: 1px solid var(--border-color);
  border-radius: 7px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  color: var(--paragraph-color);
  -webkit-box-shadow: 0 0 10px transparent;
  box-shadow: 0 0 10px transparent;
}
.form-message:focus {
  border-color: rgba(var(--main-color-one-rgb), 0.2);
  -webkit-box-shadow: 0 0 10px rgba(var(--main-color-one-rgb), 0.1);
  box-shadow: 0 0 10px rgba(var(--main-color-one-rgb), 0.1);
}

.padding-10 {
  padding: 10px;
}

.padding-20 {
  padding: 20px;
}
@media only screen and (max-width: 375px) {
  .padding-20 {
    padding: 10px;
  }
}
.radius-20 {
  border-radius: 20px;
}

.radius-10 {
  border-radius: 10px;
}

.radius-5 {
  border-radius: 5px;
}

/* Custom Form */
.single-flex-input {
  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;
  gap: 24px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
@media only screen and (max-width: 480px) {
  .single-flex-input {
    display: block;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.label_title {
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  display: block;
  margin-bottom: 10px;
  color: var(--heading-color);
}

.form--control,
.form-control {
  -moz-appearance: textfield;
  width: 100%;
  height: 55px;
  line-height: 55px;
  padding: 0 15px;
  border: 1px solid var(--border-color);
  background-color: unset;
  outline: none;
  color: var(--paragraph-color);
  -webkit-transition: 300ms;
  transition: 300ms;
  -webkit-box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}
.form--control::-webkit-outer-spin-button, .form--control::-webkit-inner-spin-button,
.form-control::-webkit-outer-spin-button,
.form-control::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
  -moz-appearance: textfield;
}
.form--control:focus,
.form-control:focus {
  border-color: rgba(var(--main-color-one-rgb), 0.3);
  -webkit-box-shadow: 0 0 10px rgba(var(--main-color-one-rgb), 0.1);
  box-shadow: 0 0 10px rgba(var(--main-color-one-rgb), 0.1);
}
@media only screen and (max-width: 480px) {
  .form--control,
.form-control {
    font-size: 15px;
  }
}
@media only screen and (max-width: 375px) {
  .form--control,
.form-control {
    font-size: 14px;
  }
}

.custom-form .single-flex-input:not(:first-child) {
  margin-top: 25px;
}
.custom-form .single-flex-input .single-input,
.custom-form .single-flex-input .form-group {
  margin-top: 0 !important;
}
.custom-form .single-flex-input .single-input .js_nice_select,
.custom-form .single-flex-input .form-group .js_nice_select {
  width: 100%;
}
.custom-form .single-input,
.custom-form .form-group {
  width: 100%;
}
.custom-form .single-input:not(:first-child),
.custom-form .form-group:not(:first-child) {
  margin-top: 25px;
}
.custom-form .single-input .label-title,
.custom-form .form-group .label-title {
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  display: block;
  margin-bottom: 10px;
  color: var(--heading-color);
}
@media only screen and (max-width: 480px) {
  .custom-form .single-input .label-title,
.custom-form .form-group .label-title {
    font-size: 15px;
  }
}
@media only screen and (max-width: 375px) {
  .custom-form .single-input .label-title,
.custom-form .form-group .label-title {
    font-size: 14px;
  }
}
.custom-form .single-input .input-icon,
.custom-form .form-group .input-icon {
  position: absolute;
  bottom: 15px;
  left: 15px;
}
.custom-form .single-input .iti,
.custom-form .form-group .iti {
  width: 100%;
}
.custom-form .single-input .form--control,
.custom-form .single-input .form-control,
.custom-form .form-group .form--control,
.custom-form .form-group .form-control {
  -moz-appearance: textfield;
  width: 100%;
  height: 55px;
  line-height: 55px;
  padding: 0 15px;
  border: 1px solid var(--border-color);
  background-color: unset;
  outline: none;
  color: var(--paragraph-color);
  -webkit-transition: 300ms;
  transition: 300ms;
  -webkit-box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}
.custom-form .single-input .form--control.input-padding-left,
.custom-form .single-input .form-control.input-padding-left,
.custom-form .form-group .form--control.input-padding-left,
.custom-form .form-group .form-control.input-padding-left {
  padding-left: 45px;
}
.custom-form .single-input .form--control#phone,
.custom-form .single-input .form-control#phone,
.custom-form .form-group .form--control#phone,
.custom-form .form-group .form-control#phone {
  width: 100%;
  padding-left: 50px;
}
.custom-form .single-input .form--control::-webkit-outer-spin-button, .custom-form .single-input .form--control::-webkit-inner-spin-button,
.custom-form .single-input .form-control::-webkit-outer-spin-button,
.custom-form .single-input .form-control::-webkit-inner-spin-button,
.custom-form .form-group .form--control::-webkit-outer-spin-button,
.custom-form .form-group .form--control::-webkit-inner-spin-button,
.custom-form .form-group .form-control::-webkit-outer-spin-button,
.custom-form .form-group .form-control::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
  -moz-appearance: textfield;
}
.custom-form .single-input .form--control:focus,
.custom-form .single-input .form-control:focus,
.custom-form .form-group .form--control:focus,
.custom-form .form-group .form-control:focus {
  border-color: rgba(var(--main-color-one-rgb), 0.3);
  -webkit-box-shadow: 0 0 10px rgba(var(--main-color-one-rgb), 0.1);
  box-shadow: 0 0 10px rgba(var(--main-color-one-rgb), 0.1);
}
@media only screen and (max-width: 480px) {
  .custom-form .single-input .form--control,
.custom-form .single-input .form-control,
.custom-form .form-group .form--control,
.custom-form .form-group .form-control {
    font-size: 15px;
  }
}
@media only screen and (max-width: 375px) {
  .custom-form .single-input .form--control,
.custom-form .single-input .form-control,
.custom-form .form-group .form--control,
.custom-form .form-group .form-control {
    font-size: 14px;
  }
}
.custom-form .single-input textarea,
.custom-form .single-input .form-message,
.custom-form .form-group textarea,
.custom-form .form-group .form-message {
  width: 100%;
  line-height: 24px;
  padding: 5px 15px;
  border: 1px solid var(--border-color);
  background-color: unset;
  outline: none;
  color: var(--paragraph-color);
  -webkit-transition: 300ms;
  transition: 300ms;
  -webkit-box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}
.custom-form .single-input textarea:focus,
.custom-form .single-input .form-message:focus,
.custom-form .form-group textarea:focus,
.custom-form .form-group .form-message:focus {
  border-color: rgba(var(--main-color-one-rgb), 0.3);
  -webkit-box-shadow: 0 0 10px rgba(var(--main-color-one-rgb), 0.1);
  box-shadow: 0 0 10px rgba(var(--main-color-one-rgb), 0.1);
}
.custom-form .single-input textarea.textarea-height,
.custom-form .single-input .form-message.textarea-height,
.custom-form .form-group textarea.textarea-height,
.custom-form .form-group .form-message.textarea-height {
  height: 100px;
}
.custom-form .single-input-icon,
.custom-form .form-group-icon {
  position: relative;
}
.custom-form .single-input-icon::after,
.custom-form .form-group-icon::after {
  content: "";
  position: absolute;
  height: 55px;
  width: 2px;
  background-color: #f3f3f3;
  bottom: 0;
  left: 40px;
}
.custom-form .single-input-icon .form--control,
.custom-form .single-input-icon .form-control,
.custom-form .form-group-icon .form--control,
.custom-form .form-group-icon .form-control {
  padding-left: 50px;
  position: relative;
}
.custom-form .single-input-select,
.custom-form .form-group-select {
  width: 100%;
  border: 1px solid var(--border-color);
}
.custom-form textarea {
  height: unset;
  line-height: 26px !important;
}
.custom-form .submit-btn {
  margin-top: 25px;
}

.submit-btn {
  border: 2px solid var(--main-color-one);
  background-color: var(--main-color-one);
  color: #fff;
  padding: 12px 20px;
  -webkit-transition: 300ms;
  transition: 300ms;
}
.submit-btn:hover {
  background-color: rgba(var(--main-color-one-rgb), 0.9);
}

.photo-uploaded {
  background-color: #f3f3f3;
  border-radius: 10px;
  border: 2px dashed #ddd;
  cursor: pointer;
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  padding: 10px;
}
.photo-uploaded-padding {
  padding: 20px;
}
.photo-uploaded.center-text .photo-uploaded-flex {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.photo-uploaded-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 7px;
}
.photo-uploaded-icon {
  font-size: 28px;
  color: var(--light-color);
}
.photo-uploaded-para {
  font-size: 16px;
  color: var(--paragraph-color);
}
.photo-uploaded-file {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  cursor: pointer;
  opacity: 0;
}

/* Toggle Password hide Show */
.single-input {
  position: relative;
}

.toggle-password {
  position: absolute;
  bottom: 13px;
  right: 20px;
  cursor: pointer;
}

.hide-icon {
  display: none;
}

.toggle-password.show-pass .hide-icon {
  display: block;
}

.toggle-password.show-pass .show-icon {
  display: none;
}

/* Dashboard area */
.dashboard__area {
  max-width: 1920px;
  margin-inline: auto;
}
.profile_border_top {
  border-top: 1px solid var(--border-color);
  padding-top: 20px;
  margin-top: 20px;
}
.profile_border_bottom {
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.dashboard_border {
  border: 1px solid var(--border-color);
}
.single_border_top {
  border-top: 1px solid var(--border-color);
}
.single_border_bottom {
  border-bottom: 1px solid var(--border-color);
}

.color-profile {
  color: var(--main-color-one);
}

.btn_flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.badge_notification {
  font-size: 10px;
  line-height: 14px;
  padding: 5px 5px;
  background: var(--main-color-one);
  color: #fff;
  border-radius: 3px;
  word-break: break-all;
  max-width: 80px;
}

.dashboard__area {
  background-color: var(--dashboard-bg);
}
.dashboard__inner {
  width: 100%;
}
.dashboard__inner__item:not(:last-child) {
  margin-bottom: 24px;
}
.dashboard__inner__item.dashboard_border {
  border: 1px solid var(--border-color);
}
.dashboard__left {
  background: var(--white);
  text-align: center;
  padding: 0;
  display: block;
  padding: 40px 20px;
  width: 320px;
  height: 100vh;
  height: 100%;
  overflow-y: hidden;
  position: fixed;
  z-index: 99;
  border-right: 1px solid var(--border-color);
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .dashboard__left {
    width: 280px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .dashboard__left {
    width: 260px;
  }
}
@media (min-width: 250px) and (max-width: 991.98px) {
  .dashboard__left {
    z-index: 1;
    position: absolute;
    top: 0;
    left: -100%;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    z-index: 991;
    background: var(--white);
    text-align: center;
    display: block;
    height: 100vh;
    transition: all 0.5s;
  }
  .dashboard__left.active {
    visibility: visible;
    opacity: 1;
    left: 0;
  }
}
@media only screen and (max-width: 375px) {
  .dashboard__left {
    max-width: 280px;
  }
}
.dashboard__left__close {
  position: absolute;
  right: 0px;
  top: 0;
  color: var(--delete-color);
  border: 1px solid var(--delete-color);
  background: var(--white);
  -webkit-box-shadow: 0 0 10px rgba(var(--border-color), 0.5);
  box-shadow: 0 0 10px rgba(var(--border-color), 0.5);
  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;
  height: 30px;
  width: 30px;
  font-size: 20px;
  border-radius: 5px;
  visibility: hidden;
  opacity: 0;
}
@media (min-width: 250px) and (max-width: 991.98px) {
  .dashboard__left__close {
    visibility: visible;
    opacity: 1;
  }
}
.dashboard__icon {
  display: none;
}
@media (min-width: 250px) and (max-width: 991.98px) {
  .dashboard__icon {
    display: block;
    margin-bottom: 20px;
  }
}
.dashboard__icon__bars {
  font-size: 24px;
  cursor: pointer;
  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;
  height: 45px;
  width: 45px;
  font-size: 24px;
  background: var(--main-color-one);
  -webkit-box-shadow: 0 0 10px rgba(var(--border-color), 0.5);
  box-shadow: 0 0 10px rgba(var(--border-color), 0.5);
  z-index: 95;
  border-radius: 5px;
  color: var(--white);
}
@media (min-width: 250px) and (max-width: 991.98px) {
  .dashboard__icon__bars {
    height: 40px;
    width: 40px;
    border-radius: 0;
  }
}
.dashboard__right {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-left: 320px;
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .dashboard__right {
    margin-left: 280px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .dashboard__right {
    margin-left: 260px;
  }
}
@media (min-width: 250px) and (max-width: 991.98px) {
  .dashboard__right {
    margin-left: 0;
  }
}
.dashboard__right__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 24px;
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .dashboard__right__flex {
    display: block;
  }
}
@media (min-width: 250px) and (max-width: 991.98px) {
  .dashboard__right__flex {
    display: block;
  }
}
.dashboard__bottom {
  height: calc(100vh - 150px);
  overflow-y: auto;
  scrollbar-color: var(--border-color-2) var(--border-color);
  scrollbar-width: thin;
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .dashboard__bottom {
    height: calc(100vh - 150px);
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .dashboard__bottom {
    height: calc(100vh - 150px);
  }
}
.dashboard__bottom::-webkit-scrollbar {
  border-radius: 30px;
  width: 5px;
  background-color: var(--border-color);
}
.dashboard__bottom::-webkit-scrollbar-thumb {
  background-color: var(--border-color-2);
  border-radius: 30px;
}
.dashboard__bottom__list {
  padding: 0;
  margin: 0;
  list-style: none;
  padding-right: 10px;
}
.dashboard__bottom__list__item.active > a {
  background: rgba(var(--main-color-one-rgb), 0.1);
  font-weight: 500;
  color: var(--main-color-one);
}
.dashboard__bottom__list__item.has-children.open > a::after {
  content: "\f068";
}
.dashboard__bottom__list__item.has-children > a {
  position: relative;
}
.dashboard__bottom__list__item.has-children > a::after {
  content: "\f067";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  right: 15px;
  font-size: 16px;
}
.dashboard__bottom__list__item.show > .submenu {
  display: block;
}
.dashboard__bottom__list__item a {
  font-size: 16px;
  font-weight: 400;
  line-height: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: var(--heading-color);
  gap: 15px;
  padding: 14px 15px;
  cursor: pointer;
  border-radius: 10px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.dashboard__bottom__list__item a i {
  font-size: 20px;
}
.dashboard__bottom__list__item > .submenu {
  padding-left: 20px;
  display: none;
  list-style: none;
  margin-top: 5px;
  border-left: 2px solid var(--main-color-one);
}
.dashboard__bottom__list__item > .submenu .dashboard__bottom__list__item.has-children > a {
  font-size: 16px;
}
.dashboard__bottom__list__item > .submenu .dashboard__bottom__list__item.selected a {
  background: var(--main-color-one);
  font-size: 16px;
}
.dashboard__bottom__list__item > .submenu .dashboard__bottom__list__item.selected a::before {
  background: var(--main-color-one);
}
.dashboard__bottom__list__item > .submenu .dashboard__bottom__list__item a {
  font-size: 16px;
  line-height: 22px;
  padding: 5px 0 5px 15px;
  position: relative;
  font-weight: 400;
  gap: 7px;
  background: transparent;
  padding: 10px 15px;
  border-radius: 7px;
}
.dashboard__body {
  padding: 30px;
  min-height: 100vh;
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .dashboard__body {
    padding: 20px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .dashboard__body {
    padding: 20px;
  }
}
@media (min-width: 250px) and (max-width: 991.98px) {
  .dashboard__body {
    padding: 0px;
  }
}
@media only screen and (max-width: 575.98px) {
  .dashboard__body {
    padding: 0px;
  }
}
@media only screen and (max-width: 375px) {
  .dashboard__body {
    padding: 0px;
  }
}

@media (min-width: 250px) and (max-width: 991.98px) {
  .body-overlay {
    position: fixed;
    height: 100%;
    width: 100%;
    left: 100%;
    top: 0%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 990;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: 0.6s;
    transition: 0.6s;
  }
  .body-overlay.active {
    visibility: visible;
    opacity: 1;
    left: 0%;
    top: 0%;
  }
}

.dashboard__search__icon {
  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;
  height: 40px;
  width: 40px;
  font-size: 18px;
  background-color: var(--dashboard-bg);
  border-radius: 50%;
  color: var(--heading-color);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.dashboard__search__icon:hover {
  background-color: var(--main-color-one);
  color: var(--white);
}

.dashboard__header {
  background-color: var(--white);
  padding: 20px 40px;
  position: relative;
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .dashboard__header {
    padding: 20px 30px;
  }
}
@media (min-width: 250px) and (max-width: 991.98px) {
  .dashboard__header {
    padding: 20px 30px;
  }
}
@media only screen and (max-width: 575.98px) {
  .dashboard__header {
    padding: 20px 20px;
  }
}
@media only screen and (max-width: 375px) {
  .dashboard__header {
    padding: 20px 10px;
  }
}
.dashboard__header__title {
  font-size: 24px;
  font-weight: 600;
  color: var(--heading-color);
}
.dashboard__header__para {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: var(--paragraph-color);
}
.dashboard__header__notification {
  position: relative;
}
.dashboard__header__notification:hover .dashboard__header__notification__wrap {
  visibility: visible;
  opacity: 1;
  top: 100%;
}
.dashboard__header__notification__icon {
  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;
  height: 40px;
  width: 40px;
  font-size: 18px;
  background-color: var(--dashboard-bg);
  border-radius: 50%;
  color: var(--heading-color);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.dashboard__header__notification__icon:hover {
  background-color: var(--main-color-one);
  color: var(--white);
}
.dashboard__header__notification__number {
  background: var(--main-color-one);
  color: var(--white);
  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;
  font-size: 9px;
  line-height: 16px;
  font-weight: 400;
  height: 18px;
  width: 18px;
  border-radius: 50%;
  position: absolute;
  top: 0px;
  right: 3px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.dashboard__header__notification__wrap {
  position: absolute;
  top: 130%;
  right: 0;
  background: var(--white);
  z-index: 9998;
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  width: 250px;
  background: var(--white);
  padding: 20px 0;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  display: block !important;
  margin-left: 0 !important;
}
@media (max-width: 480px) {
  .dashboard__header__notification__wrap {
    -webkit-transform: translateX(25%);
    transform: translateX(15%);
  }
}
@media (max-width: 375px) {
  .dashboard__header__notification__wrap {
    -webkit-transform: translateX(28%);
    transform: translateX(17%);
     width: 350px !important;
    max-width: 90vw;
  }
}
.dashboard__header__notification__wrap__title {
  font-size: 20px;
  margin: 0;
  font-weight: 600;
  border-bottom: 1px solid rgba(221, 221, 221, 0.5);
  padding: 0px 15px 15px;
  -webkit-transition: all 0.1s;
  transition: all 0.1s;
}
.dashboard__header__notification__wrap__btn {
  font-size: 15px;
  font-weight: 500;
  color: var(--main-color-one);
  padding: 15px 15px 0;
  display: inline-block;
  text-decoration: underline;
}
.dashboard__header__notification__wrap__list {
  max-height: 250px;
  overflow-y: auto;
  padding: 0 2px 0 0;
  scrollbar-color: #A8A8A8 #F1F1F1;
  scrollbar-width: thin;
  list-style: none;
  margin: 0;
}
.dashboard__header__notification__wrap__list::-webkit-scrollbar {
  width: 5px;
  background-color: #F1F1F1;
  border-radius: 10px;
}
.dashboard__header__notification__wrap__list::-webkit-scrollbar-thumb {
  background-color: #A8A8A8;
  border-radius: 10px;
}
.dashboard__header__notification__wrap__list__item {
  display: block;
  padding: 5px 15px 10px;
  color: var(--heading-color);
  border-bottom: 1px solid rgba(221, 221, 221, 0.5);
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  cursor: pointer;
}
.dashboard__header__notification__wrap__list__item:hover {
  background: var(--main-color-one);
  color: var(--white);
}
.dashboard__header__notification__wrap__list__item:hover .dashboard__header__notification__wrap__list__icon {
  background-color: var(--white);
  color: var(--main-color-one);
}
.dashboard__header__notification__wrap__list__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 15px;
}
.dashboard__header__notification__wrap__list__icon {
  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;
  height: 30px;
  width: 30px;
  font-size: 18px;
  background: var(--main-color-one);
  color: var(--white);
  border-radius: 50%;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.dashboard__header__notification__wrap__list__contents {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.dashboard__header__notification__wrap__list__contents__title {
  font-size: 15px;
  font-weight: 500;
  margin: 0;
  -webkit-transition: all 0.1s;
  transition: all 0.1s;
}
.dashboard__header__notification__wrap__list__contents__sub {
  font-size: 14px;
  font-weight: 400;
  margin-top: 2px;
  display: block;
}
.dashboard__header__author {
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.dashboard__header__author:hover .dashboard__header__author__wrapper {
  visibility: visible;
  opacity: 1;
  top: 100%;
}
.dashboard__header__author__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  cursor: pointer;
  border: 1px solid var(--border-color);
  border-radius: 30px;
}
.dashboard__header__author__thumb {
  max-width: 40px;
}
.dashboard__header__author__thumb img {
  border-radius: 50%;
}
.dashboard__header__author__name {
  position: relative;
  font-size: 16px;
  font-weight: 500;
  color: var(--heading-color);
  padding-right: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.dashboard__header__author__name::after {
  content: "\f078";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 15px;
}
.dashboard__header__author__wrapper {
  position: absolute;
  top: 130%;
  right: 0;
  z-index: 9998;
  max-width: 200px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background: var(--white);
  visibility: hidden;
  opacity: 0;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  -webkit-box-shadow: 0 0 10px var(--border-color);
  box-shadow: 0 0 10px var(--border-color);
  border-radius: 5px;
  overflow: hidden;
}
.dashboard__header__author__wrapper__list {
  max-height: 300px;
  overflow-y: auto;
  scrollbar-color: var(--main-color-one) var(--border-color);
  scrollbar-width: thin;
}
.dashboard__header__author__wrapper__list::-webkit-scrollbar {
  width: 5px;
  background-color: var(--dashboard-bg);
}
.dashboard__header__author__wrapper__list::-webkit-scrollbar-thumb {
  background-color: var(--main-color-one);
}
.dashboard__header__author__wrapper__list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  font-size: 15px;
  line-height: 24px;
  font-weight: 400;
  padding: 10px 20px;
  color: var(--heading-color);
  border-bottom: 1px solid var(--border-color);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  white-space: nowrap;
}
.dashboard__header__author__wrapper__list__item:hover {
  background-color: var(--main-color-one);
  color: var(--white);
}
@media only screen and (max-width: 575.98px) {
  .dashboard__header__left {
    text-align: center;
  }
}
.dashboard__header__right__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media only screen and (max-width: 575.98px) {
  .dashboard__header__right__flex {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.dashboard__header__right__item .search__wrapper {
  position: absolute;
  top: 50%;
  right: 40px;
  height: auto;
  z-index: 9;
  width: 400px;
  margin: 0 auto;
  background: var(--white);
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}
@media only screen and (max-width: 575.98px) {
  .dashboard__header__right__item .search__wrapper {
    width: calc(100% - 24px);
    right: 12px;
  }
}
.dashboard__header__right__item .search__wrapper.active {
  visibility: visible;
  opacity: 1;
  top: 100%;
  z-index: 90;
}
.dashboard__header__right__item .search__wrapper__form {
  position: relative;
  z-index: 9;
  width: 100%;
  margin: 0 auto;
  border-radius: 0px;
}
.dashboard__header__right__item .search__wrapper__close {
  position: absolute;
  right: 0px;
  top: 100%;
  height: 50px;
  width: 60px;
  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;
  font-size: 20px;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  background: var(--border-color);
  color: var(--delete-color);
  padding: 2px 10px;
}
.dashboard__header__right__item .search__wrapper__close:hover {
  color: var(--white);
  background: var(--delete-color);
}
.dashboard__header__right__item .search__wrapper__input {
  width: 100%;
  height: 50px;
  background: none;
  border: 1px solid rgba(var(--main-color-one-rgb), 0.2);
  outline: none;
  text-transform: capitalize;
  padding: 10px 20px;
  padding-right: 75px;
  font-size: 16px;
  font-weight: 500;
  border-radius: 0px;
  color: var(--paragraph-color);
}
.dashboard__header__right__item .search__wrapper__input:focus {
  border-color: rgba(var(--main-color-one-rgb), 0.2);
  -webkit-box-shadow: 0 0 10px rgba(var(--main-color-one-rgb), 0.1);
          box-shadow: 0 0 10px rgba(var(--main-color-one-rgb), 0.1);
}
.dashboard__header__right__item .search__wrapper__input::-webkit-input-placeholder {
  color: var(--paragraph-color);
  font-size: 14px;
}
.dashboard__header__right__item .search__wrapper__input::-moz-placeholder {
  color: var(--paragraph-color);
  font-size: 14px;
}
.dashboard__header__right__item .search__wrapper__input:-ms-input-placeholder {
  color: var(--paragraph-color);
  font-size: 14px;
}
.dashboard__header__right__item .search__wrapper__input::-ms-input-placeholder {
  color: var(--paragraph-color);
  font-size: 14px;
}
.dashboard__header__right__item .search__wrapper__input::placeholder {
  color: var(--paragraph-color);
  font-size: 14px;
}
.dashboard__header__right__item .search__wrapper button {
  position: absolute;
  right: 0;
  height: 100%;
  width: 60px;
  background: var(--main-color-one);
  border: 0;
  outline: none;
  font-size: 18px;
  font-weight: 500;
  color: var(--white);
  cursor: pointer;
}

.dashboard_promo__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 24px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.dashboard_promo__col {
  width: calc(50% - 12px);
}
@media only screen and (max-width: 575.98px) {
  .dashboard_promo__col {
    width: calc(100% - 0px);
  }
}

.dashboard_promo__child:nth-child(8n+2) .dashboard_promo__icon {
  background-color: rgba(var(--promo-two-rgb), 0.1);
  color: var(--promo-two);
}
.dashboard_promo__child:nth-child(8n+3) .dashboard_promo__icon {
  background-color: rgba(var(--promo-three-rgb), 0.1);
  color: var(--promo-three);
}
.dashboard_promo__child:nth-child(8n+4) .dashboard_promo__icon {
  background-color: rgba(var(--promo-four-rgb), 0.1);
  color: var(--promo-four);
}
.dashboard_promo__child:nth-child(8n+5) .dashboard_promo__icon {
  background-color: rgba(var(--promo-five-rgb), 0.1);
  color: var(--promo-five);
}
.dashboard_promo__child:nth-child(8n+6) .dashboard_promo__icon {
  background-color: rgba(var(--promo-six-rgb), 0.1);
  color: var(--promo-six);
}
.dashboard_promo__child:nth-child(8n+7) .dashboard_promo__icon {
  background-color: rgba(var(--promo-seven-rgb), 0.1);
  color: var(--promo-seven);
}
.dashboard_promo__child:nth-child(8n+8) .dashboard_promo__icon {
  background-color: rgba(var(--promo-eight-rgb), 0.1);
  color: var(--promo-eight);
}

.dashboard_promo {
  padding: 20px;
  border-radius: 10px;
  position: relative;
  z-index: 2;
  overflow: hidden;
  border: 1px solid var(--border-color);
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .dashboard_promo {
    padding: 20px 15px;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .dashboard_promo {
    padding: 20px 20px;
  }
}
@media (min-width: 250px) and (max-width: 991.98px) {
  .dashboard_promo {
    padding: 24px 20px;
  }
}
@media only screen and (max-width: 767.98px) {
  .dashboard_promo {
    padding: 20px 15px;
  }
}
.dashboard_promo__flex {
  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;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px 10px;
}
.dashboard_promo__icon {
  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;
  height: 60px;
  width: 60px;
  font-size: 24px;
  border-radius: 50%;
  background-color: rgba(var(--promo-one-rgb), 0.1);
  color: var(--promo-one);
}
.dashboard_promo__subtitle {
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  color: var(--paragraph-color);
}
.dashboard_promo__title {
  font-size: 32px;
  line-height: 1.2;
  font-weight: 600;
  color: var(--heading-color);
}

.dashboard__notification {
  border: 1px solid var(--border-color);
}
.dashboard__notification__flex {
  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;
  gap: 10px;
}
.dashboard__notification__title {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--heading-color);
}
.dashboard__notification__clearBtn {
  color: var(--main-color-two);
  font-size: 16px;
  font-weight: 600;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.dashboard__notification__clearBtn:hover {
  color: var(--main-color-one);
  letter-spacing: 1px;
}
.dashboard__notification__item:not(:last-child) {
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.dashboard__notification__item__time {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: 15px;
  line-height: 20px;
  font-weight: 400;
}
.dashboard__notification__item__author {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 10px;
}
.dashboard__notification__item__author__thumb {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.dashboard__notification__item__author__thumb img {
  border-radius: 50%;
}
.dashboard__notification__item__author__contents {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 12px 10px;
}
@media only screen and (max-width: 480px) {
  .dashboard__notification__item__author__contents {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.dashboard__notification__item__author__details {
  font-size: 16px;
  font-weight: 400;
  line-height: 25px;
  color: var(--paragraph-color);
  max-width: 500px;
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .dashboard__notification__item__author__details {
    font-size: 15px;
  }
}
.dashboard__notification__item__author__details a {
  font-weight: 700;
  color: var(--heading-color);
}

.dashboard_recentOrder__title {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--heading-color);
}
.dashboard_recentOrder__item {
  border: 1px solid var(--border-color);
  padding: 20px;
}
.dashboard_recentOrder__item:not(:last-child) {
  margin-bottom: 24px;
}
.dashboard_recentOrder__item.open .dashboard_recentOrder__item__details {
  border-top: 1px solid var(--border-color);
  padding-top: 24px;
  margin-top: 24px;
}
.dashboard_recentOrder__item.open .dashboard_recentOrder__item__icon .toggle_recentOrder {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.dashboard_recentOrder__item.active .dashboard_recentOrder__item__details {
  display: block;
}
.dashboard_recentOrder__item__flex {
  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;
  gap: 10px;
}
.dashboard_recentOrder__item__service {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}
@media only screen and (max-width: 480px) {
  .dashboard_recentOrder__item__service {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.dashboard_recentOrder__item__service__thumb {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  height: 80px;
}
.dashboard_recentOrder__item__service__thumb img {
  border-radius: 10px;
  height: 100%;
  width: 100%;
  object-fit: cover
}
.dashboard_recentOrder__item__service__title {
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
  color: var(--heading-color);
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .dashboard_recentOrder__item__service__title {
    font-size: 18px;
    line-height: 24px;
  }
}
@media only screen and (max-width: 480px) {
  .dashboard_recentOrder__item__service__title {
    font-size: 18px;
    line-height: 24px;
  }
}
@media only screen and (max-width: 375px) {
  .dashboard_recentOrder__item__service__title {
    font-size: 16px;
  }
}
.dashboard_recentOrder__item__service__id {
  color: var(--main-color-two);
  font-size: 15px;
  font-weight: 500;
  line-height: 24px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media only screen and (max-width: 375px) {
  .dashboard_recentOrder__item__service__id {
    font-size: 14px;
  }
}
.dashboard_recentOrder__item__service__id:hover {
  color: var(--main-color-one);
}
.dashboard_recentOrder__item__service__buyer {
  color: var(--paragraph-color);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media only screen and (max-width: 375px) {
  .dashboard_recentOrder__item__service__buyer {
    font-size: 14px;
  }
}
.dashboard_recentOrder__item__service__buyer a {
  font-weight: 700;
  color: var(--heading-color);
}
.dashboard_recentOrder__item__icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  font-size: 20px;
}
.dashboard_recentOrder__item__icon__single {
  cursor: pointer;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  color: var(--heading-color);
}
.dashboard_recentOrder__item__details {
  display: none;
}
.dashboard_recentOrder__item__details__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
}
@media only screen and (max-width: 480px) {
  .dashboard_recentOrder__item__details__item {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 10px 0;
  }
}
.dashboard_recentOrder__item__details__item:not(:last-child) {
  margin-bottom: 24px;
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .dashboard_recentOrder__item__details__item:not(:last-child) {
    margin-bottom: 15px;
  }
}
.dashboard_recentOrder__item__details__item__left {
  min-width: 200px;
  color: var(--body-color);
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .dashboard_recentOrder__item__details__item__left {
    min-width: 170px;
  }
}
@media only screen and (max-width: 480px) {
  .dashboard_recentOrder__item__details__item__left {
    min-width: 100%;
  }
}
.dashboard_recentOrder__item__details__item__right {
  color: var(--heading-color);
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
}

.dashboard_table__title {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--heading-color);
}
@media only screen and (max-width: 480px) {
  .dashboard_table__title {
    font-size: 20px;
  }
}
.dashboard_table__title__btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 7px;
  padding: 10px 15px;
  font-size: 16px;
  line-height: 22px;
  font-weight: 400;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.dashboard_table__title__btn.btn-bg-1 {
  background-color: var(--main-color-two);
  color: var(--white);
}
.dashboard_table__title__btn.btn-bg-2 {
  background-color: var(--main-color-one);
  color: var(--white);
}
.dashboard_table__title__btn.btn-bg-deactivate {
  background-color: var(--main-color-one);
  color: var(--white);
}
.dashboard_table__title__btn.btn-bg-delete {
  background-color: var(--main-color-two);
  color: var(--white);
}
.dashboard_table__title__btn.btn-outline-delete {
  border: 1px solid var(--delete-color);
  color: var(--delete-color);
}
.dashboard_table__title__btn.btn-outline-delete:hover {
  background-color: var(--delete-color);
  color: var(--white);
  border-color: var(--delete-color);
}
.dashboard_table__title__btn.btn-outline-border {
  background-color: transparent;
  border: 1px solid var(--border-color);
}
.dashboard_table__title__btn.btn-outline-1 {
  background-color: transparent;
  border: 1px solid var(--main-color-one);
  color: var(--main-color-one);
}
.dashboard_table__title__btn.hover_danger:hover {
  background-color: var(--delete-color);
  color: var(--white);
  border-color: var(--delete-color);
}
.dashboard_table__title__flex {
  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;
}
@media only screen and (max-width: 480px) {
  .dashboard_table__title__flex {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 12px;
    padding: 20px;
    
  }
}
.dashboard_table__main {
  overflow-x: auto;
}
.dashboard_table__main table {
  width: 100%;
  color: inherit;
  vertical-align: middle;
  font-weight: 400;
}
.dashboard_table__main table thead {
  background: inherit;
  color: inherit;
  color: var(--heading-color);
}
.dashboard_table__main table thead tr th {
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
  color: var(--heading-color);
  padding: 0 10px 20px;
  white-space: nowrap;
}
.dashboard_table__main table tbody {
  border-top: 0;
  overflow: hidden;
  border-radius: 10px;
}
.dashboard_table__main table tbody tr td {
  border-top: 1px solid var(--border-color);
  padding-top: 15px;
}
.dashboard_table__main table tbody tr td:not(:last-child) {
  padding-right: 20px;
}
.dashboard_table__main table tbody tr:not(:last-child) td {
  padding-bottom: 15px;
}
.dashboard_table__main__ticket {
  min-width: 150px;
}
.dashboard_table__main__ticket__title {
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
  color: var(--heading-color);
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .dashboard_table__main__ticket__title {
    font-size: 16px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .dashboard_table__main__ticket__title {
    font-size: 16px;
  }
}
.dashboard_table__main__ticket__id {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: var(--main-color-two);
  display: inline-block;
}
.dashboard_table__main__orderId {
  color: var(--main-color-two);
  font-size: 16px;
  font-weight: 400;
}
.dashboard_table__main__priority .priorityBtn {
  display: inline-block;
  padding: 5px 15px;
  border: 1px solid var(--main-color-one);
  color: var(--main-color-one);
  border-radius: 30px;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  background-color: rgba(var(--main-color-one-rgb), 0.1);
  white-space: nowrap;
}
.dashboard_table__main__priority .priorityBtn.high {
  color: var(--review-color);
  background-color: rgba(var(--review-color-rgb), 0.1);
  border: 1px solid var(--review-color);
}
.dashboard_table__main__priority .priorityBtn.completed {
  color: var(--success-color);
  background-color: rgba(var(--success-color-rgb), 0.1);
  border: 1px solid var(--success-color);
}
.dashboard_table__main__priority .priorityBtn.pending {
  color: var(--main-color-two);
  background-color: rgba(var(--main-color-two-rgb), 0.1);
  border: 1px solid var(--main-color-two);
}
.dashboard_table__main__priority .priorityBtn.notStarted {
  border: 1px solid var(--main-color-one);
  color: var(--main-color-one);
  background-color: rgba(var(--main-color-one-rgb), 0.1);
}
.dashboard_table__main__priority .priorityBtn.cancel {
  border: 1px solid var(--delete-color);
  color: var(--delete-color);
  background-color: rgba(var(--delete-color-rgb), 0.1);
}
.dashboard_table__main__status__select {
  display: inline-block;
  padding: 5px 15px;
  border: 1px solid var(--main-color-one);
  color: var(--main-color-one);
  border-radius: 30px;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  background-color: rgba(var(--main-color-one-rgb), 0.1);
}
.dashboard_table__main__status__select:hover {
  border: 1px solid var(--main-color-one);
  color: var(--main-color-one);
  background-color: rgba(var(--main-color-one-rgb), 0.1);
}
.dashboard_table__main__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
}
.dashboard_table__main__actions .icon {
  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;
  height: 40px;
  width: 40px;
  border: 1px solid var(--border-color);
  border-radius: 50%;
  font-size: 15px;
  color: var(--paragraph-color);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.dashboard_table__main__actions .icon:hover {
  background-color: var(--main-color-one);
  border-color: var(--main-color-one);
  color: var(--white);
}
.dashboard_table__main__actions .icon.delete:hover {
  background-color: var(--delete-color);
  border-color: var(--delete-color);
  color: var(--white);
}
.dashboard_table__main__actions .icon.edit:hover {
  background-color: var(--main-color-two);
  border-color: var(--main-color-two);
  color: var(--white);
}
.dashboard_table__main__order {
  max-width: 400px;
  min-width: 250px;
}
.dashboard_table__main__order__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}
.dashboard_table__main__order__thumb {
  max-width: 80px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.dashboard_table__main__order__thumb img {
  border-radius: 7px;
}
.dashboard_table__main__order__contents__title {
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
  color: var(--heading-color);
}
.dashboard_table__main__order__contents__subtitle {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: var(--paragraph-color);
}
.dashboard_table__main__order__contents__id {
  color: var(--main-color-two);
}
.dashboard_table__main__order__contents__author {
  color: var(--heading-color);
  font-weight: 500;
}
.dashboard_table__main__date .time {
  background-color: var(--border-color);
  padding: 4px 6px;
  border-radius: 30px;
  white-space: nowrap;
}
.dashboard_table__main__amount .price {
  font-size: 16px;
  font-weight: 600;
  color: var(--heading-color);
}
.dashboard_table__main__type .offline {
  font-size: 16px;
  font-weight: 500;
  color: var(--heading-color);
}
.dashboard_table__main__paymentId {
  color: var(--main-color-two);
  font-size: 16px;
  font-weight: 500;
}
.dashboard_table__main__paymentGateway {
  color: var(--heading-color);
  font-size: 16px;
  font-weight: 500;
}
.dashboard_table__main__reference img {
  max-width: 100px;
}

/* dropdown status select */
.dropdown__status {
  position: relative;
}
.dropdown__status:hover .dropdown__status__list {
  visibility: visible;
  opacity: 1;
  display: block;
}
.dropdown__status__main {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  padding: 5px 15px;
  border: 1px solid var(--main-color-one);
  color: var(--main-color-one);
  background-color: rgba(var(--main-color-one-rgb), 0.1);
  border-radius: 30px;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
}
.dropdown__status__main:hover {
  border: 1px solid var(--main-color-one);
  color: var(--main-color-one);
  background-color: rgba(var(--main-color-one-rgb), 0.1);
}
.dropdown__status__main::after {
  /*content: "\f107";*/
  /*font-family: "Font Awesome 5 Free";*/
  /*font-weight: 900;*/
}
.dropdown__status__main.open, .dropdown__status__main.Open {
  border: 1px solid var(--main-color-one);
  color: var(--main-color-one);
  background-color: rgba(var(--main-color-one-rgb), 0.1);
}
.dropdown__status__main.completed, .dropdown__status__main.Completed {
  border: 1px solid var(--success-color);
  color: var(--success-color);
  background-color: rgba(var(--success-color-rgb), 0.1);
}
.dropdown__status__main.close, .dropdown__status__main.Close {
  border: 1px solid var(--delete-color);
  color: var(--delete-color);
  background-color: rgba(var(--delete-color-rgb), 0.1);
}
.dropdown__status__list {
  position: absolute;
  left: 0;
  background-color: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 5px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 130px;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  visibility: hidden;
  opacity: 0;
  z-index: 9;
  display: none;
}
.dropdown__status__list__option {
  display: block;
  padding: 5px 20px;
  font-size: 15px;
  line-height: 24px;
  font-weight: 400;
  color: var(--heading-color);
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.dropdown__status__list__option:not(:last-child) {
  border-bottom: 1px solid var(--border-color);
}
.dropdown__status__list__option:hover, .dropdown__status__list__option.selected {
  background-color: var(--main-color-one);
  color: var(--white);
}
/* 
.select2-container {
  position: relative;
  display: -ms-grid;
  display: grid;
  width: 100% !important;
  z-index: 1055;
}
.select2-container.select2-container--open.select2-container--default .select2-selection--single .select2-selection__arrow::after {
  -webkit-transform: translate(50%, -50%) rotate(-135deg) !important;
          transform: translate(50%, -50%) rotate(-135deg) !important;
  margin-top: 0;
}
.select2-container--open {
  width: -webkit-fill-available !important;
}
@media (min-width: 250px) and (max-width: 991.98px) {
  .select2-container--open {
    width: -webkit-fill-available !important;
  }
}
.select2-container--default .select2-selection--single {
  background-color: #fff;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  position: relative;
  height: 50px;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: var(--paragraph-color);
  height: 50px;
  line-height: 50px;
  padding-right: 30px;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
  bottom: 0px;
  right: 6px;
  height: 50px;
  line-height: 50px;
  position: absolute;
}
.select2-container--default .select2-selection--single .select2-selection__arrow::after {
  content: "";
  position: absolute;
  right: 50%;
  -webkit-transform: translate(50%, -50%) rotate(45deg);
          transform: translate(50%, -50%) rotate(45deg);
  top: 50%;
  font-size: 14px;
  height: 8px;
  width: 8px;
  border-right: 2px solid var(--body-color);
  border-bottom: 2px solid var(--body-color);
  background-color: transparent;
  margin-top: -3px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.select2-container--default .select2-selection--single .select2-selection__arrow b {
  display: none;
}
.select2-container--default .select2-search--dropdown .select2-search__field {
  border: 1px solid var(--border-color);
}
.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: var(--main-color-one);
}
.select2-container--default .select2-results__option--selected {
  background-color: rgba(var(--main-color-one-rgb), 0.2);
}
.select2-container .dropdown-wrapper {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.select2-container .select2-dropdown {
  border: 1px solid var(--border-color);
}
.select2-container .select2-results__option {
  background-color: rgba(var(--main-color-one-rgb), 0.05);
  color: var(--main-color-one);
}
.select2-container .select2-results__option:not(:first-child) {
  border-top: 1px solid rgba(var(--main-color-one-rgb), 0.1);
}

.without_border .select2-container {
  display: inline-block;
}
.without_border .select2-container--default .select2-selection--single {
  border: 0;
  height: 24px;
}
.without_border .select2-container--default .select2-selection--single .select2-selection__rendered {
  height: 24px;
  line-height: 24px;
  padding: 0 50px 0 0;
}
.without_border .select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 24px;
  line-height: 24px;
}
.without_border .select2-container--default .select2-selection--single .select2-selection__arrow::after {
  border-right: 2px solid var(--body-color);
  border-bottom: 2px solid var(--body-color);
}
.without_border .select2-container .dropdown-wrapper {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

/* Multiple select Css  */
/* .select2.select2-container .select2-selection--multiple {
  height: 50px;
  overflow-y: auto;
}

.select2-container--default .select2-selection--multiple {
  background-color: white;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  cursor: text;
  padding-bottom: 5px;
  padding-right: 5px;
  position: relative;
}
.select2-container--default .select2-selection--multiple:focus {
  border: 1px solid var(--border-color);
}
.select2-container--default .select2-selection--multiple .select2-search--inline .select2-search__field {
  margin-top: 0;
  height: 32px;
}
.select2-container--default .select2-selection--multiple .select2-selection__rendered {
  display: block;
  padding: 0 4px;
  margin: 0;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice {
  background-color: #f8f8f8;
  border: 1px solid #ccc;
  border-radius: 3px;
  margin: 4px 4px 0 0;
  padding: 0 6px 0 22px;
  height: 24px;
  line-height: 24px;
  font-size: 12px;
  position: relative;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice .select2-selection__choice__remove {
  position: absolute;
  top: 0;
  left: 0;
  height: 22px;
  width: 22px;
  margin: 0;
  text-align: center;
  color: #e74c3c;
  font-weight: bold;
  font-size: 16px;
}

.single-flex-input {
  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;
  gap: 24px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
@media only screen and (max-width: 480px) {
  .single-flex-input {
    display: block;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.label_title {
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  display: block;
  margin-bottom: 10px;
  color: var(--heading-color);
}
.label_title__postition {
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  color: var(--heading-color);
  background: var(--white);
  margin-bottom: -11px;
  position: relative;
  display: table;
  padding: 0 10px;
  z-index: 9990;
}

.form--control,
.form-control {
  -moz-appearance: textfield;
  width: 100%;
  height: 55px;
  line-height: 55px;
  padding: 0 15px;
  border: 1px solid var(--border-color);
  background-color: unset;
  outline: none;
  color: var(--paragraph-color);
  -webkit-transition: 300ms;
  transition: 300ms;
  -webkit-box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

.form--control::-webkit-outer-spin-button, .form--control::-webkit-inner-spin-button,
.form-control::-webkit-outer-spin-button,
.form-control::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
  -moz-appearance: textfield;
}
.form--control:focus,
.form-control:focus {
  border-color: rgba(var(--main-color-one-rgb), 0.3);
  -webkit-box-shadow: 0 0 10px rgba(var(--main-color-one-rgb), 0.1);
  box-shadow: 0 0 10px rgba(var(--main-color-one-rgb), 0.1);
}
@media only screen and (max-width: 480px) {
  .form--control,
.form-control {
    font-size: 15px;
  }
}
@media only screen and (max-width: 375px) {
  .form--control,
.form-control {
    font-size: 14px;
  }
}

.custom-form .single-flex-input:not(:first-child) {
  margin-top: 25px;
}
.custom-form .single-flex-input .single-input,
.custom-form .single-flex-input .form-group {
  margin-top: 0 !important;
}
.custom-form .single-flex-input .single-input .js_nice_select,
.custom-form .single-flex-input .form-group .js_nice_select {
  width: 100%;
}
.custom-form .single-input,
.custom-form .form-group {
  width: 100%;
}
.custom-form .single-input:not(:first-child),
.custom-form .form-group:not(:first-child) {
  margin-top: 25px;
}
.custom-form .single-input .label-title,
.custom-form .form-group .label-title {
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  display: block;
  margin-bottom: 10px;
  color: var(--heading-color);
}
@media only screen and (max-width: 480px) {
  .custom-form .single-input .label-title,
.custom-form .form-group .label-title {
    font-size: 15px;
  }
}
@media only screen and (max-width: 375px) {
  .custom-form .single-input .label-title,
.custom-form .form-group .label-title {
    font-size: 14px;
  }
}
.custom-form .single-input .input-icon,
.custom-form .form-group .input-icon {
  position: absolute;
  bottom: 15px;
  left: 15px;
}
.custom-form .single-input .iti,
.custom-form .form-group .iti {
  width: 100%;
}
.custom-form .single-input .form--control,
.custom-form .single-input .form-control,
.custom-form .form-group .form--control,
.custom-form .form-group .form-control {
  -moz-appearance: textfield;
  width: 100%;
  height: 55px;
  line-height: 55px;
  padding: 0 15px;
  border: 1px solid var(--border-color);
  background-color: unset;
  outline: none;
  color: var(--paragraph-color);
  -webkit-transition: 300ms;
  transition: 300ms;
  -webkit-box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}
.custom-form .single-input textarea.form--control,
.custom-form .single-input textarea.form-control,
.custom-form .form-group textarea.form--control,
.custom-form .form-group textarea.form-control
textarea.form--control,
textarea.form-control {
  height: unset;
  padding: 10px 15px;
}
.custom-form .single-input .form--control.input-padding-left,
.custom-form .single-input .form-control.input-padding-left,
.custom-form .form-group .form--control.input-padding-left,
.custom-form .form-group .form-control.input-padding-left {
  padding-left: 45px;
}
.custom-form .single-input .form--control#phone,
.custom-form .single-input .form-control#phone,
.custom-form .form-group .form--control#phone,
.custom-form .form-group .form-control#phone {
  width: 100%;
  padding-left: 50px;
}
.custom-form .single-input .form--control::-webkit-outer-spin-button, .custom-form .single-input .form--control::-webkit-inner-spin-button,
.custom-form .single-input .form-control::-webkit-outer-spin-button,
.custom-form .single-input .form-control::-webkit-inner-spin-button,
.custom-form .form-group .form--control::-webkit-outer-spin-button,
.custom-form .form-group .form--control::-webkit-inner-spin-button,
.custom-form .form-group .form-control::-webkit-outer-spin-button,
.custom-form .form-group .form-control::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
  -moz-appearance: textfield;
}
.custom-form .single-input .form--control:focus,
.custom-form .single-input .form-control:focus,
.custom-form .form-group .form--control:focus,
.custom-form .form-group .form-control:focus {
  border-color: rgba(var(--main-color-one-rgb), 0.3);
  -webkit-box-shadow: 0 0 10px rgba(var(--main-color-one-rgb), 0.1);
  box-shadow: 0 0 10px rgba(var(--main-color-one-rgb), 0.1);
}
@media only screen and (max-width: 480px) {
  .custom-form .single-input .form--control,
.custom-form .single-input .form-control,
.custom-form .form-group .form--control,
.custom-form .form-group .form-control {
    font-size: 15px;
  }
}
@media only screen and (max-width: 375px) {
  .custom-form .single-input .form--control,
.custom-form .single-input .form-control,
.custom-form .form-group .form--control,
.custom-form .form-group .form-control {
    font-size: 14px;
  }
}
.custom-form .single-input .form-message,
.custom-form .form-group .form-message {
  width: 100%;
  line-height: 24px;
  padding: 5px 15px;
  border: 1px solid var(--border-color);
  background-color: unset;
  outline: none;
  color: var(--paragraph-color);
  -webkit-transition: 300ms;
  transition: 300ms;
  -webkit-box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}
.custom-form .single-input .form-message:focus,
.custom-form .form-group .form-message:focus {
  border-color: rgba(var(--main-color-one-rgb), 0.3);
  -webkit-box-shadow: 0 0 10px rgba(var(--main-color-one-rgb), 0.1);
  box-shadow: 0 0 10px rgba(var(--main-color-one-rgb), 0.1);
}
.custom-form .single-input .form-message.textarea-height,
.custom-form .form-group .form-message.textarea-height {
  height: 100px;
}
.custom-form .single-input-icon,
.custom-form .form-group-icon {
  position: relative;
}
.custom-form .single-input-icon::after,
.custom-form .form-group-icon::after {
  content: "";
  position: absolute;
  height: 55px;
  width: 2px;
  background-color: #f3f3f3;
  bottom: 0;
  left: 40px;
}
.custom-form .single-input-icon .form--control,
.custom-form .single-input-icon .form-control,
.custom-form .form-group-icon .form--control,
.custom-form .form-group-icon .form-control {
  padding-left: 50px;
  position: relative;
}
.custom-form .single-input-select,
.custom-form .form-group-select {
  width: 100%;
  border: 1px solid var(--border-color);
}

.custom-form .submit-btn {
  margin-top: 25px;
}

.submit-btn {
  border: 2px solid var(--main-color-one);
  background-color: var(--main-color-one);
  color: var(--white);
  padding: 12px 20px;
  -webkit-transition: 300ms;
  transition: 300ms;
}
.submit-btn:hover {
  background-color: rgba(var(--main-color-one-rgb), 0.9);
}

.photo-uploaded {
  background-color: #f3f3f3;
  border-radius: 10px;
  border: 2px dashed #ddd;
  cursor: pointer;
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  padding: 10px;
}
.photo-uploaded-padding {
  padding: 20px;
}
.photo-uploaded.center-text .photo-uploaded-flex {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.photo-uploaded-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 7px;
}
.photo-uploaded-icon {
  font-size: 28px;
  color: var(--light-color);
}
.photo-uploaded-para {
  font-size: 16px;
  color: var(--paragraph-color);
}
.photo-uploaded-file {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  cursor: pointer;
  opacity: 0;
}

/* Toggle Password hide Show */
.single-input {
  position: relative;
}

.toggle_password {
  position: absolute;
  bottom: 13px;
  right: 20px;
  cursor: pointer;
}

.dashboard__wallet__flex {
  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;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px 10px;
}
.dashboard__wallet__balance {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.dashboard__wallet__balance__icon {
  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;
  height: 70px;
  width: 70px;
  background-color: var(--main-color-two);
  color: var(--white);
  font-size: 30px;
  border-radius: 50%;
}
.dashboard__wallet__balance__title {
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  color: var(--paragraph-color);
}
.dashboard__wallet__balance__price {
  font-size: 28px;
  line-height: 1.2;
  font-weight: 600;
  color: var(--heading-color);
}

.paymentGateway_add {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.paymentGateway_add__item {
  border: 1px solid var(--border-color);
  padding: 10px 10px;
  min-height: 50px;
  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;
  width: calc(33.3333333333% - 13.33px);
}
.paymentGateway_add__item.active {
  border-color: var(--main-color-one);
}
.paymentGateway_add__item__img {
  max-height: 24px;
}
/* Custom Radio Css */
.custom_radio__single {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
}
.custom_radio__inline {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 24px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.custom_radio__inline__two {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 24px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.custom_radio__inline__two .custom_radio__single {
  width: calc(50% - 12px);
}
@media only screen and (max-width: 480px) {
  .custom_radio__inline__two .custom_radio__single {
    width: calc(100% - 0px);
  }
}
.custom_radio__inline__three {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 24px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.custom_radio__inline__three .custom_radio__single {
  width: calc(33.3333333333% - 16px);
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .custom_radio__inline__three .custom_radio__single {
    width: calc(50% - 12px);
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .custom_radio__inline__three .custom_radio__single {
    width: calc(50% - 12px);
  }
}
@media only screen and (max-width: 480px) {
  .custom_radio__inline__three .custom_radio__single {
    width: calc(100% - 0px);
  }
}
.custom_radio__inline__four {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 24px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.custom_radio__inline__four .custom_radio__single {
  width: calc(25% - 18px);
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .custom_radio__inline__four .custom_radio__single {
    width: calc(33.3333333333% - 16px);
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .custom_radio__inline__four .custom_radio__single {
    width: calc(33.3333333333% - 16px);
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .custom_radio__inline__four .custom_radio__single {
    width: calc(50% - 12px);
  }
}
@media only screen and (max-width: 480px) {
  .custom_radio__inline__four .custom_radio__single {
    width: calc(100% - 0px);
  }
}
.custom_radio__inline__five {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 24px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.custom_radio__inline__five .custom_radio__single {
  width: calc(20% - 19.2px);
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .custom_radio__inline__five .custom_radio__single {
    width: calc(25% - 18px);
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .custom_radio__inline__five .custom_radio__single {
    width: calc(25% - 18px);
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .custom_radio__inline__five .custom_radio__single {
    width: calc(33.3333333333% - 16px);
  }
}
@media only screen and (max-width: 767.98px) {
  .custom_radio__inline__five .custom_radio__single {
    width: calc(50% - 12px);
  }
}
@media only screen and (max-width: 480px) {
  .custom_radio__inline__five .custom_radio__single {
    width: calc(100% - 0px);
  }
}
.custom_radio__inline__six {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 24px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.custom_radio__inline__six .custom_radio__single {
  width: calc(16.6666666667% - 20px);
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .custom_radio__inline__six .custom_radio__single {
    width: calc(25% - 18px);
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .custom_radio__inline__six .custom_radio__single {
    width: calc(25% - 18px);
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .custom_radio__inline__six .custom_radio__single {
    width: calc(33.3333333333% - 16px);
  }
}
@media only screen and (max-width: 767.98px) {
  .custom_radio__inline__six .custom_radio__single {
    width: calc(50% - 12px);
  }
}
@media only screen and (max-width: 480px) {
  .custom_radio__inline__six .custom_radio__single {
    width: calc(100% - 0px);
  }
}
.custom_radio__item:not(:first-child) {
  margin-top: 15px;
}
.custom_radio label {
  font-size: 16px;
  color: var(--paragraph-color);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  padding: 0px 0;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
}
.custom_radio input[type=radio] {
  border: 2px solid var(--border-color);
  background: var(--white);
  clear: none;
  cursor: pointer;
  display: inline-block;
  margin: 0;
  outline: 0;
  padding: 0 !important;
  text-align: center;
  vertical-align: middle;
  height: 24px;
  width: 24px;
  -webkit-appearance: none;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
  border-radius: 50%;
  position: relative;
  margin-right: 3px;
}
.custom_radio input[type=radio]:checked {
  border-color: var(--main-color-one);
}
.custom_radio input[type=radio]:checked::before {
  width: calc(100% - 9px);
  height: calc(100% - 9px);
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  content: "";
  border-radius: 50%;
  background-color: var(--main-color-one);
  margin: 0px 0px 0;
  padding: 0px;
  line-height: 1;
}

/* Buyer Job Post */
.dashboard_jobPost__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px 10px;
}
.dashboard_jobPost__author {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 15px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.dashboard_jobPost__author__thumb {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.dashboard_jobPost__author__thumb img {
  border-radius: 10px;
}
.dashboard_jobPost__author__contents {
  flex: 1;
}

.dashboard_jobPost__author__title {
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
  color: var(--heading-color);
}
.dashboard_jobPost__author__price {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--main-color-two);
}
.dashboard_jobPost__author__price sub {
  font-size: 14px;
  line-height: 24px;
  font-weight: 400;
  color: var(--paragraph-color);
}
.dashboard_jobPost__views {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px 24px;
}
.dashboard_jobPost__views__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: var(--paragraph-color);
}
.dashboard_jobPost__views__count {
  font-size: 20px;
  font-weight: 600;
  color: var(--heading-color);
}
.dashboard_jobPost__views__para {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 7px;
}
.dashboard_jobPost__switch {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.dashboard_jobPost__switch__para {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: var(--paragraph-color);
}
.dashboard_jobPost__switch__para strong {
  font-weight: 600;
  color: var(--heading-color);
}

/* Custom Switch Css */
.custom_switch {
  position: relative;
  display: inline-block;
  width: 48px;
  height: 28px;
}
@media only screen and (max-width: 375px) {
  .custom_switch {
    width: 40px;
    height: 24px;
  }
}
.custom_switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.custom_switch input:checked + .slider {
  background-color: var(--main-color-one);
}
.custom_switch input:checked + .slider:before {
  -webkit-transform: translateX(20px);
  transform: translateX(20px);
}
@media only screen and (max-width: 375px) {
  .custom_switch input:checked + .slider:before {
    -webkit-transform: translateX(16px);
            transform: translateX(16px);
  }
}
.custom_switch input:focus + .slider {
  -webkit-box-shadow: 0 0 1px var(--main-color-one);
          box-shadow: 0 0 1px var(--main-color-one);
}
.custom_switch .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.custom_switch .slider:before {
  position: absolute;
  content: "";
  height: 22px;
  width: 22px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
@media only screen and (max-width: 375px) {
  .custom_switch .slider:before {
    height: 18px;
    width: 18px;
  }
}
.custom_switch .slider.round {
  border-radius: 30px;
}
.custom_switch .slider.round::before {
  border-radius: 50%;
}

/* Buyer Account Settings */
.dashboard_accountSettings {
  max-width: 700px;
}
.dashboard_accountSettings__item:not(:last-child) {
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 24px;
  margin-bottom: 24px;
}
.dashboard_accountSettings__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 15px 12px;
}
.dashboard_accountSettings__left {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  max-width: 360px;
}
.dashboard_accountSettings__btn {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.dashboard_accountSettings__title {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--heading-color);
}
.dashboard_accountSettings__para {
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  color: var(--paragraph-color);
}

.dashboard_accountDelete__reason {
  font-size: 14px;
  color: var(--paragraph-color);
  line-height: 24px;
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 7px;
}
.dashboard_accountDelete__reason:not(:last-child) {
  margin-bottom: 12px;
}
.dashboard_accountDelete__reason::before {
  content: "";
  background-color: var(--paragraph-color);
  border-radius: 50%;
  height: 5px;
  width: 5px;
  top: 9px;
  position: relative;
}

/* Account Profile */
.dashboard_accountProfile {
  max-width: 700px;
}
.dashboard_accountProfile__item:not(:last-child) {
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 24px;
  margin-bottom: 24px;
}
.dashboard_accountProfile__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 15px 12px;
}
.dashboard_accountProfile__author {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.dashboard_accountProfile__author__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 15px;
}
.dashboard_accountProfile__author__thumb {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  max-width: 60px;
}
@media only screen and (max-width: 375px) {
  .dashboard_accountProfile__author__thumb {
    max-width: 50px;
  }
}
.dashboard_accountProfile__author__thumb img {
  border-radius: 50%;
}
.dashboard_accountProfile__author__title {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--heading-color);
}
.dashboard_accountProfile__author__para {
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  color: var(--paragraph-color);
  word-break: break-all;
}
.dashboard_accountProfile__btn {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.dashboard_accountProfile__details__item:not(:last-child) {
  margin-bottom: 15px;
}
.dashboard_accountProfile__details__name {
  min-width: 200px;
  font-size: 16px;
  line-height: 24px;
  color: var(--paragraph-color);
}
.dashboard_accountProfile__details__para {
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  color: var(--heading-color);
}

/* Chat Inbox Css */
.chat_wrapper {
  background-color: var(--white);
  border-radius: 10px;
}
.chat_wrapper__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
#uploadImage {
  word-break: break-all;
}
@media (min-width: 250px) and (max-width: 991.98px) {
  .chat_wrapper__flex {
    display: -ms-grid;
    display: grid;
  }
}
.chat_wrapper__contact {
  -ms-flex-preferred-size: 520px;
      flex-basis: 520px;
  padding: 20px;
  max-height: calc(100vh - 130px);
  overflow-y: auto;
  scrollbar-color: var(--body-color) var(--border-color);
  scrollbar-width: thin;
  position: relative;
  flex-shrink: 0;
}
@media screen and (max-width: 1599px) and (min-width: 1400px) {
  .chat_wrapper__contact {
    flex-basis: 450px;
  }
}
@media screen and (max-width: 1399px) and (min-width: 1200px) {
  .chat_wrapper__contact {
    flex-basis: 400px;
  }
}
@media screen and (max-width: 1199px) and (min-width: 992px) {
  .chat_wrapper__contact {
    flex-basis: 370px;
  }
}
.chat_wrapper__contact::-webkit-scrollbar {
  width: 5px;
  background-color: var(--border-color);
  border-radius: 20px;
}
.chat_wrapper__contact::-webkit-scrollbar-thumb {
  background: var(--body-color);
  border-radius: 20px;
}
@media (min-width: 250px) and (max-width: 991.98px) {
  .chat_wrapper__contact {
    padding: 0;
  }
}
.chat_wrapper__contact__close.active {
  visibility: visible;
  opacity: 1;
  left: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
@media (min-width: 250px) and (max-width: 991.98px) {
  .chat_wrapper__contact__close {
    position: fixed;
    left: -100%;
    top: 0;
    background: #fff;
    z-index: 991;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    height: 100vh;
    width: 400px;
  }
}
@media only screen and (max-width: 480px) {
  .chat_wrapper__contact__close {
    width: 300px;
  }
}
@media only screen and (max-width: 375px) {
  .chat_wrapper__contact__close {
    width: 275px;
  }
}
.chat_wrapper__contact__list {
  padding: 0;
  margin: 0;
  list-style: none;
}
@media (min-width: 250px) and (max-width: 991.98px) {
  .chat_wrapper__contact__list {
    padding: 20px;
    height: calc(100vh - 0px);
    overflow-y: auto;
    scrollbar-width: thin;
    position: relative;
  }
  .chat_wrapper__contact__list::-webkit-scrollbar {
    width: 5px;
    background-color: var(--border-color);
    border-radius: 20px;
  }
  .chat_wrapper__contact__list::-webkit-scrollbar-thumb {
    background: var(--main-color-one);
    border-radius: 20px;
  }
}
.chat_wrapper__contact__list__item {
  padding: 20px 10px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background-color: #fafafa;
}
.chat_wrapper__contact__list__item:not(:first-child) {
  padding-top: 20px;
}
.chat_wrapper__contact__list__item:not(:last-child) {
  border-bottom: 1px solid #F5F6F9;
  padding-bottom: 20px;
}
.chat_wrapper__contact__list__item.active {
  background-color: #e3eaff;
  padding: 20px 10px;
}
.chat_wrapper__contact__list__item:hover {
  background-color: #c1d0fc;
  padding: 20px 10px;
}
.chat_wrapper__contact__list__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px 20px;
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .chat_wrapper__contact__list__flex {
    gap: 10px;
  }
}
.chat_wrapper__contact__list__thumb {
  max-width: 60px;
  position: relative;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .chat_wrapper__contact__list__thumb {
    max-width: 50px;
  }
}
@media only screen and (max-width: 480px) {
  .chat_wrapper__contact__list__thumb {
    max-width: 40px;
  }
}
.chat_wrapper__contact__list__thumb .notification__dots {
  position: absolute;
  height: 12px;
  width: 12px;
  background-color: #ddd;
  border-radius: 50%;
  bottom: 5px;
  right: 0;
  z-index: 2;
  border: 2px solid #fff;
  -webkit-box-shadow: 0 0 10px #cacaca;
  box-shadow: 0 0 10px #cacaca;
}
.chat_wrapper__contact__list__thumb .notification__dots.active {
  background-color: var(--success-color);
}
.chat_wrapper__contact__list__thumb img {
  border-radius: 50%;
}

.chat_wrapper__contact__list__thumb img {
  width: 50px;
  height: 50px;
}

.chat_wrapper__contact__list__contents {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 5px 10px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.chat_wrapper__contact__list__contents__details {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.chat_wrapper__contact__list__contents__title {
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
  margin: -2px 0 0;
}
.chat_wrapper__contact__list__contents__para {
  font-size: 14px;
  line-height: 24px;
  color: var(--paragraph-color);
}
.chat_wrapper__contact__list__contents__link {
  color: var(--main-color-one);
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.chat_wrapper__contact__list__contents__link:hover {
  color: var(--main-color-one);
  text-decoration: underline;
}
.chat_wrapper__contact__list__time {
  font-size: 14px;
  line-height: 24px;
  color: var(--paragraph-color);
}
.chat_wrapper__details {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  padding: 20px 0;
  border-left: 1px solid #F5F6F9;
  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-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: calc(104vh - 130px);
}
@media only screen and (max-width: 991px) {
  .chat_wrapper__details {
    height: calc(100vh - 0px);
  }
}
.chat_wrapper__details__header {
  padding: 0 20px 20px;
  border-bottom: 1px solid var(--border-color);
}
.chat_wrapper__details__header__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px 20px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.chat_wrapper__details__header__thumb {
  max-width: 60px;
  position: relative;
}
@media only screen and (max-width: 480px) {
  .chat_wrapper__details__header__thumb {
    max-width: 40px;
  }
}
.chat_wrapper__details__header__thumb .notification__dots {
  position: absolute;
  height: 12px;
  width: 12px;
  background-color: #ddd;
  border-radius: 50%;
  bottom: 5px;
  right: 0;
  z-index: 2;
  border: 2px solid #fff;
  -webkit-box-shadow: 0 0 10px #cacaca;
  box-shadow: 0 0 10px #cacaca;
}
.chat_wrapper__details__header__thumb .notification__dots.active {
  background-color: var(--success-color);
}
.chat_wrapper__details__header__thumb img {
  border-radius: 50%;
}
.chat_wrapper__details__header__contents {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.chat_wrapper__details__header__contents__title {
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
  margin: -2px 0 0;
}
.chat_wrapper__details__header__contents__para {
  font-size: 14px;
  line-height: 24px;
  color: var(--paragraph-color);
}
.chat_wrapper__details__header__contents__link {
  color: var(--main-color-one);
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.chat_wrapper__details__header__contents__link:hover {
  color: var(--main-color-one);
  text-decoration: underline;
}
.chat_wrapper__details__inner {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  max-height: calc(100vh - 370px);
  overflow-y: auto;
  scrollbar-color: var(--body-color) var(--border-color);
  scrollbar-width: thin;
  scrollbar-width: thin;
  padding: 20px;
}
@media only screen and (max-width: 991px) {
  .chat_wrapper__details__inner {
    max-height: 400px;
    max-width: 100vw;
  }
}
.chat_wrapper__details__inner::-webkit-scrollbar {
  width: 5px;
  background-color: var(--border-color);
  border-radius: 20px;
}
.chat_wrapper__details__inner::-webkit-scrollbar-thumb {
  background: var(--body-color);
  border-radius: 20px;
}
.chat_wrapper__details__inner__chat {
  padding: 0 5px;
}
.chat_wrapper__details__inner__chat:not(:last-child) {
  margin-bottom: 30px;
}
.chat_wrapper__details__inner__chat.chat-reply .chat_wrapper__details__inner__chat__flex {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.chat_wrapper__details__inner__chat.chat-reply .chat_wrapper__details__inner__chat__contents {
  text-align: right;
}
.chat_wrapper__details__inner__chat.chat-reply .chat_wrapper__details__inner__chat__contents__para {
  border-radius: 10px 0px 10px 10px;
  background-color: #F5F6F9;
  color: var(--heading-color);
}
.chat_wrapper__details__inner__chat.chat-reply .chat_wrapper__details__inner__chat__contents__para img {
  max-width: 250px;
}
.chat_wrapper__details__inner__chat.chat-reply .chat_wrapper__details__inner__chat__contents__time {
  text-align: right;
}
.chat_wrapper__details__inner__chat__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 15px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.chat_wrapper__details__inner__chat__thumb {
  width: 40px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.chat_wrapper__details__inner__chat__thumb img {
  border-radius: 50%;
}

.chat_wrapper__details__inner__chat__thumb img {
  width: 40px;
  height: 40px;
}

.chat_wrapper__details__inner__chat__contents {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.chat_wrapper__details__inner__chat__contents__para {
  background-color: #e3eaff;
  padding: 10px 20px;
  border-radius: 0 10px 10px 10px;
  color: #5f5f5f;
  font-size: 17px;
  font-weight: 500;
  display: inline-block;
  font-weight: bold;
}
@media only screen and (max-width: 575.98px) {
  .chat_wrapper__details__inner__chat__contents__para {
    font-size: 15px;
    line-height: 24px;
    font-weight: 400;
  }
}
@media only screen and (max-width: 480px) {
  .chat_wrapper__details__inner__chat__contents__para {
    padding: 10px;
    font-size: 14px;
    line-height: 24px;
    font-weight: 400;
  }
}
.chat_wrapper__details__inner__chat__contents__time {
  font-size: 16px;
  color: var(--paragraph-color);
  font-weight: 500;
  display: block;
  font-size: 12px;
}
@media only screen and (max-width: 575.98px) {
  .chat_wrapper__details__inner__chat__contents__time {
    font-size: 15px;
    line-height: 24px;
    font-weight: 400;
  }
}
@media only screen and (max-width: 480px) {
  .chat_wrapper__details__inner__chat__contents__time {
    padding: 10px;
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
  }
}
.chat_wrapper__details__footer__form {
  padding: 0 20px;
}

.dropMedia {
  display: inline-block;
  position: relative;
  cursor: pointer;
}

.dropMedia__uploader {
  display: none;
}

/* Chat Inbox sidebar */
@media (min-width: 250px) and (max-width: 991.98px) {
  .chat_sidebar {
    font-size: 24px;
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 40px;
    width: 40px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background: var(--main-color-one);
    -webkit-box-shadow: 0 0 10px rgba(221, 221, 221, 0.5);
    box-shadow: 0 0 10px rgba(221, 221, 221, 0.5);
    z-index: 95;
    color: #fff;
    margin: 20px 0 0 20px;
    border-radius: 7px;
  }
}

.close_chat {
  position: absolute;
  right: -40px;
  top: 0;
  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;
  height: 40px;
  width: 40px;
  background: #fff;
  color: #dd0000;
  font-size: 20px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.close_chat:hover {
  background-color: #dd0000;
  color: #fff;
}

.offer-remove-icon {
  display: none;
}

.offer-remove .offer-remove-icon {
  display: block;
}

/*=========================================================
          [ Table Css ]
=========================================================*/
.custom--table table {
  width: 100%;
  color: inherit;
  vertical-align: middle;
  font-weight: 400;
}

.custom--table thead {
  font-weight: 700;
  font-size: 18px;
  background: inherit;
  color: inherit;
}

.custom--table tbody {
  border-top: 0;
  overflow: hidden;
  border-radius: 10px;
}

.custom--table tbody tr:nth-child(odd) {
  background-color: inherit;
}

.custom--table tbody tr:nth-child(even) {
  background-color: inherit;
}

.custom--table tr th {
  font-size: 16px;
  font-weight: 500;
  color: var(--light-color);
}

.custom--table tr td {
  font-size: 16px;
  color: var(--heading-color);
  padding: 10px 0;
  line-height: 22px;
}

[data-label] {
  position: relative;
}

[data-label]::before {
  position: absolute;
  content: attr(data-label);
  font-weight: 700;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  padding: 8px 20px;
  display: none;
  font-size: 13px;
}

/* @media (max-width: 767.98px) {
    .table-responsive.table-responsive-sm thead {
        display: none;
    }
    .table-responsive.table-responsive-sm [data-label]::before {
        display: block;
    }
    .table-responsive.table-responsive-sm tr td {
        display: block;
        text-align: right;
        padding-right: 5px;
    }
    .table-responsive [data-label]::before {
        padding: 8px 10px 8px 5px;
    }
} */
.dashboard__headerContents {
  margin-bottom: 24px;
}
.dashboard__headerContents__flex {
  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;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 20px 10px;
}
.dashboard__headerContents__left {
  flex-grow: 1;
  min-width: 200px;
  max-width: 500px;
}
.dashboard__headerContents__title {
  font-size: 30px;
  line-height: 24px;
  font-weight: 600;
  padding: 20px;
  color: var(--paragraph-color);
}
@media (min-width: 220px) and (max-width: 991.98px) {
   .dashboard__headerContents__title {
  font-size: 20px;
}
}

.dashboards-title{
  font-weight: 600;
}

.margin-top-30{
  margin-top: 20px;
}



/* Pagination */

.custom-pagination .pagination li {
  margin: 5px 10px;
}

@media (min-width: 220px) and (max-width: 991.98px) {
  .custom-pagination .pagination li {
    margin: 5px 5px;
  }
}

.custom-pagination .pagination li.active .page-link {
  background: var(--main-color-one);
  color: #fff;
  border-color: var(--main-color-one);
}

.custom-pagination .pagination {
  justify-content: center;
  flex-wrap: wrap;
}

.custom-pagination .pagination li .page-link {
  background: #fff;
  color: var(--extra-light-color);
  border: 1px solid;
  font-size: 18px;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  padding: 10px 20px;
  display: inline-block;
  cursor: pointer;
  border-radius: 5px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.custom-pagination .pagination li .page-link:hover {
  background: var(--main-color-one);
  color: #fff;
}

@media (min-width: 220px) and (max-width: 991.98px) {
  .custom-pagination .pagination li .page-link {
    font-size: 16px;
    padding: 7px 15px;
  }
}

@media only screen and (max-width: 480px) {
  .custom-pagination .pagination li .page-link {
    font-size: 15px;
    padding: 5px 10px;
  }
}

.info-title {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: .5rem;
  display: block;
  color: var(--paragraph-color);
}
.dashboard__headerGlobal__flex {
  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;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 20px 10px;
}
.dashboard__headerGlobal__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 15px;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.dashboard__headerGlobal__btn button{
  border: 0;
}

i.las.la-angle-down.search_by_all {
  font-size: 20px;
  font-weight: 900;
  margin-left: 5px;
  color: #0b0b0b;
}

.note-editor.note-frame.fullscreen {
  z-index: 1055 !important;
}
.chat_sent_image{
  max-width: 250px;
}

.custom_radio__single_seller_order {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 24px;
}

.paymentGateway_add__item_seller_order {
background-color: #cddaf2e3;
  padding: 10px 10px;
  min-height: 50px;
  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;
  color: #0b0b0b;
}


.numbers {
  font-size: 10px;
  font-weight: 600;
  background: var(--main-color-one);
  color: #fff;
  border-radius: 50%;
  margin-left: 10px;
  line-height: 1;
  height: 30px;
  width: 30px;
  display: inline-grid;
  align-items: center;
  justify-content: center;
}

.review_color_two{
 color: #FF6B2C;
}

.no_image_style_two{
  width: 147px;
  height: 150px;
}

.notice-board {
  display: block;
  background-color: #fff;
  box-shadow: 0 0 20px #f2f2f2;
  border-left: 5px solid #dc3545;
  padding: 10px;
  border-radius: 10px;
  margin-top: 30px;
  width: fit-content;
}
.notice-board.info-board {
  border-color: #0dcaf0;
}
.no_data_found {
  display: contents;
  font-size: 18px;
  font-weight: 600;
  background: var(--main-color-one);
  color: var(--heading-color);
  padding: 50px;
  border-radius: 10px;
  margin-top: 40px;
}

.days_new_style{
  display: flex;

}

/*seller service */
.dashboard-service-bottom-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 10px 20px;
  border-radius: 5px;
}

.dashboard-service-single-item {
  padding: 20px;
  border-radius: 10px;
  overflow-x: auto
}

.dashboard-service-single-item.border-1 {
  border: 1px solid rgba(221,221,221,.5)
}

@media only screen and (max-width: 575.98px) {
  .dashboard-service-single-item {
    padding:10px
  }
}

.dash-single-inner {
  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: flex-start;
  align-items: center;
  gap: 20px
}

@media(min-width: 1200px) and (max-width:1399.98px) {
  .dash-single-inner {
    display:block
  }
}

@media(min-width: 992px) and (max-width:1199.98px) {
  .dash-single-inner {
    display:block
  }
}

@media(min-width: 220px) and (max-width:991.98px) {
  .dash-single-inner {
    display:block
  }
}

.dashboar-flex-services {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 20px;
  flex-wrap: nowrap;
  align-items: center
}

@media(min-width: 992px) and (max-width:1199.98px) {
  .dashboar-flex-services {
    gap:10px
  }
}

@media(min-width: 220px) and (max-width:991.98px) {
  .dashboar-flex-services {
    gap:20px
  }
}
@media(min-width: 220px) and (max-width:767.98px) {
  .dashboar-flex-services {
    flex-wrap: wrap
  }
}
@media(min-width: 220px) and (max-width:425px) {
  .dashboar-flex-services {
    gap: 10px;
    flex-wrap: wrap;
    display: grid;
  }
}
.dashboar-flex-services .thumb {
  height: 100%;
  width: 130px;
  height: 70px;
  border-radius: 10px;
  flex-shrink: 0;
}

.dashboar-flex-services .thumb img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 10px
}

.dashboar-flex-services .thumb-contents .title {
  font-size: 24px;
  font-weight: 600;
  line-height: 36px;
  display: -webkit-box;
  text-overflow: ellipsis;
  overflow: hidden;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.dash-single-inner .dash-left-service {
  flex-grow: 1;
}
.dash-single-inner .dash-righ-service {
  flex-shrink: 0;
}
.dashboar-flex-services .thumb-contents {
  flex-grow: 1;
  flex: 1;
}


.dashboar-flex-services .thumb-contents .service-review {
  display: inline-block;
  color: var(--light-color);
  font-size: 16px
}

.dashboar-flex-services .thumb-contents .service-review.style-02 i {
  color: var(--main-color-one)
}

.dashboar-flex-services .thumb-contents .service-review i {
  color: var(--main-color-three)
}

.dashboar-flex-services .thumb-contents .service-review b {
  color: var(--extra-light-color)
}

.service-bottom-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap
}

@media(min-width: 1200px) and (max-width:1399.98px) {
  .service-bottom-flex {
    gap:10px
  }
}

@media(min-width: 992px) and (max-width:1199.98px) {
  .service-bottom-flex {
    gap:10px
  }
}

@media(min-width: 220px) and (max-width:991.98px) {
  .service-bottom-flex {
    gap:10px
  }
}

.dashboard-service-bottom-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 5px 10px;
  border-radius: 5px
}

.dashboard-service-bottom-flex.color-1 {
  background: rgba(199,31,102,.2)
}

.dashboard-service-bottom-flex.color-1 .icon {
  background: #c71f66
}

.dashboard-service-bottom-flex.color-2 {
  background: rgba(29,191,115,.2)
}

.dashboard-service-bottom-flex.color-2 .icon {
  background: #1dbf73
}

.dashboard-service-bottom-flex.color-3 {
  background: rgba(255,107,44,.2)
}

.dashboard-service-bottom-flex.color-3 .icon {
  background: var(--main-color-three)
}

.dashboard-service-bottom-flex .icon {
  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;
  height: 22px;
  width: 22px;
  border-radius: 50%;
  background: var(--main-color-one);
  color: #fff;
  font-size: 14px;
}

.dashboard-service-bottom-flex .content .num {
  color: var(--heading-color);
  display: block;
  font-size: 18px;
  font-weight: 500;
  line-height: 20px
}

.dashboard-service-bottom-flex .content .queue {
  display: block;
  color: var(--light-color);
  font-size: 14px;
  line-height: 20px;
  display: flex;
  align-items: center;
  gap: 5px;
}


.dashboard-switch-flex-content {
  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;
  gap: 30px
}

@media(min-width: 1200px) and (max-width:1399.98px) {
  .dashboard-switch-flex-content {
    -webkit-box-pack:start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    gap: 50px;
    margin-top: 30px
  }
}

@media(min-width: 992px) and (max-width:1199.98px) {
  .dashboard-switch-flex-content {
    -webkit-box-pack:start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    gap: 50px;
    margin-top: 30px
  }
}

@media(min-width: 220px) and (max-width:991.98px) {
  .dashboard-switch-flex-content {
    margin-top:30px
  }
}
@media(min-width: 250px) and (max-width:424px) {
  .dashboard-switch-flex-content {
    flex-wrap: wrap;
  }
}

.dashboard-switch-flex-content .dashboard-switch-single .dashboard-starting {
  font-size: 16px;
  font-weight: 400;
  color: var(--light-color)
}

.dashboard-switch-flex-content .dashboard-switch-single .title-price {
  font-size: 28px;
  line-height: 28px;
  font-weight: 700;
  margin-top: 5px
}

.dashboard-switch-flex-content .dashboard-switch-single .title-price.color-3 {
  color: var(--main-color-three)
}

.dashboard-switch-flex-content .dashboard-switch-single .dash-icon {
  font-size: 24px;
  color: var(--extra-light-color);
  margin: 0 5px
}

.dashboard-switch-flex-content .dashboard-switch-single .dash-icon.color-1 {
  color: var(--main-color-one)
}

.dashboard-switch-flex-content .dashboard-switch-single .dash-icon.color-3 {
  color: var(--main-color-three)
}

.custom-switch {
  height: 0;
  width: 0;
  visibility: hidden
}

.custom-switch:checked+label {
  background: var(--main-color-one)
}

.custom-switch.style-02:checked+label {
  background: #ddd
}

.custom-switch.style-02:checked+label::after {
  left: auto;
  right: calc(100% - 5px);
  -webkit-transform: translateX(100%);
  transform: translateX(100%)
}

.custom-switch:checked+label::after {
  left: calc(100% - 5px);
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%)
}

.switch-label {
  cursor: pointer;
  text-indent: -9999px;
  width: 60px;
  height: 30px;
  background: #ddd;
  display: block;
  border-radius: 100px;
  position: relative;
  margin-top: 10px
}

.switch-label.style-02 {
  background: var(--main-color-one)
}

.switch-label.active::after {
  width: 30px
}

.switch-label.style-02::after {
  left: auto;
  right: 5px
}

.switch-label::after {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  width: 30px;
  height: 20px;
  background: #fff;
  border-radius: 60px;
  -webkit-transition: .3s;
  transition: .3s
}

.file-choose-area {
  text-align: center;
  padding: 40px 20px 50px;
  border: 3px dashed rgba(221,221,221,.5);
  display: block
}

.file-choose-area .icon {
  color: var(--main-color-one);
  font-size: 60px
}

.file-choose-area .drop-title {
  font-size: 18px;
  font-weight: 600;
  line-height: 28px
}

.file-choose-area .drop-title .color-1 {
  color: var(--main-color-one)
}

.file-choose-area .file-size-list {
  padding: 0;
  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;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap
}

.file-choose-area .file-size-list li {
  font-size: 14px;
  line-height: 22px;
  color: var(--extra-light-color)
}

.file-choose-area .file-size-list li:not(:last-child)::after {
  content: ",";
  padding: 0 5px 0 0
}

.edit-service-wrappers .dashboard-edit-thumbs img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 10px
}

.edit-service-wrappers .content-edit .title {
  font-size: 24px;
  font-weight: 700;
  line-height: 36px
}

.edit-service-wrappers .content-edit .edit-para {
  font-size: 14px;
  line-height: 26px;
  color: var(--light-color);
  margin-top: 30px;
  word-break: break-all
}
/*end seller service */


.textarea-input {
  height: 100px;
  line-height: 25px;
}
textarea.form-control.textarea-input {
  padding-top: 13px;
}

.back-to-top {
  position: fixed;
  right: 30px;
  bottom: 30px;
  width: 50px;
  height: 50px;
  background-color: var(--main-color-one);
  color: #fff;
  text-align: center;
  line-height: 50px;
  border-radius: 50%;
  z-index: 99;
  font-size: 25px;
  cursor: pointer;
  -webkit-box-shadow: 0 0 5px rgba(0,0,0,.5);
  box-shadow: 0 0 5px rgba(0,0,0,.5);
  display: none;
  z-index: 9999;
}

.btn-see-more {
  font-size: 18px;
  font-weight: 700;
  color: var(--main-color-one);
  -webkit-transition: all .3s;
  transition: all .3s
}

.btn-see-more.style-02 {
  font-size: 14px;
  font-weight: 500
}

.btn-see-more.style-02::before {
  font-size: 12px;
  border: 1px solid var(--main-color-three);
  border-radius: 50%;
  top: 0
}

.btn-see-more.color-3 {
  color: var(--main-color-three);
}

.btn-see-more.color-3::before {
  color: var(--main-color-three)
}

.btn-see-more.color-3:hover {
  color: var(--main-color-three)
}

.btn-see-more:hover {
  color: var(--main-color-one)
}

.btn-see-more::before {
  font-family: line awesome free;
  font-weight: 900;
  content: "";
  color: var(--main-color-one);
  -webkit-transition: all .3s;
  transition: all .3s;
  font-size: 20px;
  position: relative;
  top: 1px
}

.add-service-wrapper .nav-pills {
  background: #fff;
  padding: 10px;
  box-shadow: 0 0 10px #e9e9e9;
  gap: 10px 20px;
}

.add-service-wrapper .nav-link {
  border: 1px solid var(--border-color);
  color: var(--heading-color);
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0;
  border: 0;
  font-size: 16px;
  font-weight: 400;
  position: relative;
}

.add-service-wrapper .nav-link:not(:last-child) {
  padding-right: 70px;
}
.add-service-wrapper .nav-link:not(:last-child)::before {
  content: "";
  position: absolute;
  height: 2px;
  width: 60px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: auto;
  right: 0px;
  background: #f3f3f3;
  z-index: 0;
}
.add-service-wrapper .nav-link.completed::before {
  background-color: var(--main-color-one);
}
.nav-link-number {
  display: inline-block;
  position: relative;
  z-index: 2;
  border-radius: 50%;
  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;
  height: 35px;
  width: 35px;
  color: var(--heading-color);
  font-size: 16px;
  font-weight: 500;
  border: 1px solid var(--border-color);
  background-color: var(--white);
}
.add-service-wrapper .nav-link:hover {
  color: var(--main-color-one);
}
.add-service-wrapper .nav-link.active .nav-link-number,
.add-service-wrapper .nav-link:hover .nav-link-number {
  border: 1px solid var(--main-color-one);
  color: var(--main-color-one);
}
.add-service-wrapper .nav-link.completed .nav-link-number {
  background-color: var(--white);
  border-color: var(--main-color-one);
  color: var(--white);
}
.nav-link-number::before {
  content: "";
  position: absolute;
  height: calc(100% - 10px);
  width: calc(100% - 10px);
  top: 5px;
  left: 5px;
  background-color: #fff;
  border-radius: 50%;
  z-index: -1;
}
.add-service-wrapper .nav-link.active::before {
  background-color: var(--main-color-one);
}
.add-service-wrapper .nav-link.completed .nav-link-number::before {
  background-color: #65C18C;
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  z-index: 9;
  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;
  font-size: 12px;
}

.add-service-wrapper .nav-link.active,
.add-service-wrapper .nav-link.running {
  border-color: var(--main-color-one);
  background-color: unset;
  color: var(--main-color-one);
}
.service-attribute-wrapper .nav-link {
  padding-right: 0 !important;
}

.service-attribute-wrapper .nav-link:before {
  display: none;
}
.card-body.meta .nav-link {
  padding-right: 0 !important;
}
.card-body.meta .nav-link:before {
  display: none;
}
.single-dashboard-input.service-price-show-hide input {
  background-color: #f5f5f5;
  border-radius: 5px;
  font-weight: 700;
  font-size: 18px;
  color: var(--heading-color);
}
.single-dashboard-input.service-price-show-hide input:focus {
  border-color: var(--main-color-one);
}
#add-service-tabContent .step {
  min-height: 440px;
}

.thumb-contents-review-flex {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.thumb-contents-review-inner {
  display: flex;
  align-items: center;
  gap: 10px;
}
.modal .single-input {
  z-index: 0;
}

.line-charts-wrapper {
  border: 1px solid rgba(221, 221, 221, 0.5);
  padding: 20px;
  border-radius: 20px;
  height: 100%;
  flex: 1;
  background-color: var(--white);
}

.checkbox-inlines {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  cursor: pointer;
  gap: 10px;
  color: black;
  font-size: 16px;
}

.conversation-message-contents .msg_receive img {
  max-width: 250px;
  background-color: #F5F6F9;
  padding: 10px 20px;
  border-radius: 10px 0px 10px 10px;
  color: #000;
  font-size: 16px;
  font-weight: 500;
  display: table;
  margin-left: unset;
}

.seller_look.dashboard__area {
  background-color: var(--white) !important;
}
.seller_look .dashboard__left {
  background: var(--dashboard-bg);
}
.seller_look .dashboard__header {
  background-color: var(--dashboard-bg);
}
.seller_look .dashboard__inner__item.bg-white,
.seller_look .bg-white{
  background: var(--dashboard-bg) !important;
}

.seller_look .line-charts-wrapper {
  background-color: #fff;
}
.bg-card-white{
  background-color: #fff;

}

.seller_look  .form--control, .form-control {
  background-color: #fff;
}

/*Buyer panel no found data*/
.no_data_found_for_buyer_seller_panel {
  background-color: rgba(var(--main-color-one-rgb), 0.1);
  padding: 10px 20px;
  border-radius: 0 10px 10px 10px;
  color: var(--main-color-one);
  font-size: 17px;
  font-weight: 500;
  display: inline-block;
  font-weight: bold;
}
@media only screen and (max-width: 575.98px) {
  .no_data_found_for_buyer_seller_panel {
    font-size: 15px;
    line-height: 24px;
    font-weight: 400;
  }
}
@media only screen and (max-width: 480px) {
  .no_data_found_for_buyer_seller_panel {
    padding: 10px;
    font-size: 14px;
    line-height: 24px;
    font-weight: 400;
  }
}

/* for live chat */
.conversation-wrapper-flex {
  display: flex;
  gap: 5px;
}
.conversation-wrapper-flex.base_receive {
  text-align: left;
}


.conversation-wrapper-flex.base_receive .conversation-message-contents p {
  margin-left: 0;
}

img.no-image {
  width: 133px;
}

/* fix seller image issue */
.dashboard__header__author__thumb img,
.dashboard_accountProfile__author__thumb img{
    width: 40px;
    height: 40px;
}

.text-center .new_testimonial__author__thumb img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.dashboard__top__logo img {
  max-width: 180px;
}
.get-quotes {
  width: 54px;
  height: 54px;
  position: fixed;
  top: 85px; /* Viewport-relative instead of hardcoded px or % */
  left: 290px; /* Relative to screen width */
  border-radius: 50px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: #1486FF;
  color: white;
  border: 2px solid #FFFFFF;
  z-index: 999;
}

.get-quotes > span {
  font-size: 28px;
}
.get-quotes::after {
  content: attr(data-tooltip);
  position: absolute;
  top: 50%;
  left: calc(100% + 10px); /* tooltip box to the right of button */
  transform: translateY(-50%);
  background-color: #0066ff;
  color: white;
  padding: 6px 12px;
  border-radius: 6px;
  white-space: nowrap;
  font-size: 13px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 1000;
}

.get-quotes::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 90%; /* Start right at the button’s edge */
  transform: translateY(-50%);
  margin-left: 4px; /* Adjust spacing between button and arrow */
  border-width: 6px;
  border-style: solid;
  border-color: transparent #0066ff transparent transparent;
  opacity: 0;
  transition: opacity 0.3s ease;
}



.get-quotes:hover::after,
.get-quotes:hover::before {
  opacity: 1;
}

@media (min-width: 1921px) {
  .get-quotes {
    display: none;
    }
    .get-quote-list{
      display: list-item !important;
    }
}

@media (max-width: 1399px) {
  .get-quotes {
    left: 250px;
  }
}

@media (max-width: 1199px) {
  .get-quotes {
    left: 230px;
  }
}
@media (max-width: 991px) {
  .get-quotes {
  display: none;
  }
  .get-quote-list{
    display: list-item !important;
  }
}

/* Override Bootstrap tooltip styling */
/* Sliding Profile Sidebar Styles */