@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap");
@import url("https://fonts.cdnfonts.com/css/helvetica-neue-55");
/* ==========================================================================
   FONT CONFIG
   ========================================================================== */
/* Font Weights */
/* Layout */
/* ==========================================================================
   CSS VARIABLES � LIGHT THEME (DEFAULT)
   ========================================================================== */
:root {
    /* Core */
    --primary: #D0FF00;
    --secondary: #111111;
    --white: #FFFFFF;
    --black: #000000;
    --danger: #ff0000;
    /* Blacks */
    --jet-black: #0B0B0B;
    --charcoal-black: #1F1F1F;
    /* Grays */
    --medium-gray: #AAAAAA;
    --soft-gray: #F6F6F6;
    --dark-gray: #666666;
    --cool-gray-light: #D1D5DB;
    /* Accents */
    --greenish-yellow: #F4F6EC;
    --active-light: #D1FAE5;
    --green-active: #038C66;
    --tealish-blue: #ECEEF2;
    --carbon-grey: #585858;
    --bluish-purple: #E4D4F9;
    --barley-white: #F0F7D1;
    --cyan-blue: #CFD6DF;
    --lemon-chiffon: #FFF9BB;
    --brownish-orange: #CB7F23;
    --eggshell: #EAECCA;
    --venom-green: #7C9800;
    --misty-rose: #FFE6EA;
    --solid-pink: #8B2635;
    --papaya-whip: #FEF3C7;
    --russet: #92400E;
    --pink-lace: #F0E6FF;
    --magenta: #5A2D5A;
    --ice-blue: #E6F3FF;
    --royal-blue: #1D6BB9;
    --deep-teal: #2D5A4F;
    --mint-green: #CBE7C4;
    --mint-light: #E3FCE9;
    --rose-light: #FDE6E6;
    --light-green: #DAF0B9;
    --dark-green: #556800;
    --light-organge: #FFE0D2;
    --dark-organge: #F04E05;
    --medium-light-green: #BFDFCF;
    --medium-dark-green: #007554;
    --light-org: #FFE4B5;
    --dark-org: #AA5010;
    /* Status */
    --crimson-red: #DC3545;
    --soft-lime: #C3D478;
    --lime-yellow: #D5ED69;
    --light-lime: #E2ECB8;
    --amber-yellow: #FFC107;
    /* Utility */
    --down-bg: #FFEBEB;
    --red-text: #D30404;
    /* RGB Values */
    --secondary-rgb: 17, 17, 17;
    --white-rgb: 255, 255, 255;
    --black-rgb: 0, 0, 0;
}

/* ==========================================================================
   DARK THEME (ACTIVE WHEN body.dark)
   ========================================================================== */
body.dark {
    /* Core */
    --primary: #D0FF00;
    --secondary: #ffffff;
    --white: #222222;
    --black: #000000;
    --danger: #FF6B6B;
    /* Blacks */
    --jet-black: #000000;
    --charcoal-black: #121212;
    /* Grays */
    --medium-gray: #9CA3AF;
    --soft-gray: #111111;
    --dark-gray: #9CA3AF;
    --cool-gray-light: #6B7280;
    /* Accents */
    --greenish-yellow: #D0FF001F;
    --active-light: #D1FAE5CC;
    --green-active: #111111;
    --tealish-blue: #ECEEF2CC;
    --carbon-grey: #111111;
    --bluish-purple: #E2CEFFCC;
    --barley-white: #D0FF001F;
    --cyan-blue: #CFD6DFCC;
    --lemon-chiffon: #FFF9BBCC;
    --brownish-orange: #111111;
    --eggshell: #DFE587CC;
    --venom-green: #111111;
    --misty-rose: #FFCBD3CC;
    --solid-pink: #111111;
    --papaya-whip: #FFEC9ECC;
    --russet: #111111;
    --pink-lace: #F0E6FFCC;
    --magenta: #111111;
    --ice-blue: #E6F3FFCC;
    --royal-blue: #111111;
    --deep-teal: #A5A5A5;
    --mint-green: #E8FFE3CC;
    --mint-light: #CAFFBE;
    --rose-light: #FFEBEB;
    --light-green: #DAF0B9CC;
    --dark-green: #111111;
    --light-organge: #F18756CC;
    --dark-organge: #111111;
    --medium-light-green: #BFDFCFCC;
    --medium-dark-green: #111111;
    --light-org: #FFDFA7CC;
    --dark-org: #111111;
    /* Status */
    --crimson-red: #F87171;
    --soft-lime: #E2ECB8;
    --lime-yellow: #B5C762;
    --light-lime: #E2ECB8;
    --amber-yellow: #FACC15;
    /* Utility */
    --down-bg: #FECACACC;
    --red-text: #111111;
    /* RGB Values */
    --secondary-rgb: 255, 255, 255;
    --white-rgb: 255, 255, 255;
    --black-rgb: 34, 34, 34;
}

/* ==========================================================================
   SCSS VARIABLE BRIDGE (ORDER MATCHES ABOVE)
   ========================================================================== */
/* Core */
/* Blacks */
/* Grays */
/* Accents */
/* Status */
/* Utility */
/* RGB Values */
/*============  Border Radius Property Mixin Here    =============*/
/*============  Flex Property Mixin Here    =============*/
/*============  Transition Property Mixin Here    =============*/
/*============  Transform Property Mixin Here    =============*/
/*============  Before/After Property Mixin Here    =============*/
/*============  Border/Outline/Shadow/Text-Decoration Property Mixin Here    =============*/
/*============  Fix Widht/Height Property Mixin Here    =============*/
/*============  Text Ellipsis Property Mixin Here    =============*/
/*============  Input Placeholder Color Mixin Here    =============*/
/*============  scroll-bar Mixin Here    =============*/
/*============  Column Count Mixin Here    =============*/
/*============  Sidebar Mixin code here    =============*/
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  padding: 0 !important;
  margin: 0 !important;
  font-size: 16px;
  line-height: 18px;
  color: #111111;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
  text-align: left;
  background-color: #F6F6F6;
}

a {
  text-decoration: none;
  outline: none;
  box-shadow: none;
}
a:focus, a:hover {
  outline: none;
  box-shadow: none;
}
a {
  list-style: none;
  text-decoration: none;
}

button, .btn {
  cursor: pointer;
  text-decoration: none;
  outline: none;
  box-shadow: none;
}
button:focus, button:hover, .btn:focus, .btn:hover {
  outline: none;
  box-shadow: none;
}

input, .form-control {
  text-decoration: none;
  outline: none;
  box-shadow: none;
}
input:focus, input:hover, .form-control:focus, .form-control:hover {
  outline: none;
  box-shadow: none;
}

ul, ol {
  list-style: none;
  margin-bottom: 0;
  padding-left: 0;
}

h1, h2, h3, h4, h5, h6, p {
  margin-bottom: 0;
  padding: 0;
}

img {
  width: auto;
  max-width: 100%;
  min-width: auto;
  height: auto;
  max-width: 100%;
  min-height: auto;
}

picture {
  display: inline-block;
  line-height: 0;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  padding-bottom: 20px;
}
@media only screen and (max-width: 991px) {
  .section-head {
    padding-bottom: 16px;
  }
}
@media only screen and (max-width: 480px) {
  .section-head {
    flex-direction: column;
    align-items: flex-start;
  }
}
.section-head .common-btn {
  min-width: 80px;
}
.section-head .head-left {
  flex: 1;
  font-size: 14px;
  line-height: 16px;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
  color: rgba(17, 17, 17, 0.6);
}
.section-head .head-left .section-title-lg, .section-head .head-left .section-title-md {
  padding-bottom: 8px;
}
.section-head .head-right {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 14px;
}

.section-title-lg {
  font-size: 24px;
  line-height: 120%;
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  color: #111111;
}
@media only screen and (max-width: 991px) {
  .section-title-lg {
    font-size: 22px;
  }
}
@media only screen and (max-width: 480px) {
  .section-title-lg {
    font-size: 20px;
  }
}

.section-title-md {
  font-size: 20px;
  line-height: 120%;
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  color: #111111;
}
@media only screen and (max-width: 991px) {
  .section-title-md {
    font-size: 18px;
  }
}

.section-title-xs {
  font-size: 16px;
  line-height: 18px;
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  color: #111111;
  padding-bottom: 14px;
}

.view-detail-box {
  padding: 16px;
  background-color: #FFFFFF;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  margin-bottom: 20px;
}
.view-detail-box:last-child {
  margin-bottom: 0;
}

.view-single .view-lable {
  display: block;
  font-size: 14px;
  line-height: 112%;
  font-weight: 400;
  color: rgba(17, 17, 17, 0.6);
  padding-bottom: 8px;
}
.view-single .view-containet {
  display: block;
  font-size: 16px;
  line-height: 110%;
  font-weight: 400;
  color: #111111;
  word-break: break-word;
}

.common-white-box {
  background-color: #FFFFFF;
  border-radius: 8px;
  margin-bottom: 20px;
}
.common-white-box:last-child {
  margin-bottom: 0;
}
.common-white-box .box-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 16px;
  border-bottom: 1px solid rgba(17, 17, 17, 0.1);
}
.common-white-box .box-head .head-left {
  display: flex;
  align-items: center;
  gap: 14px;
}
.common-white-box .box-body {
  padding: 16px;
}

.grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
@media only screen and (max-width: 1279px) {
  .grid {
    gap: 20px;
  }
}
@media only screen and (max-width: 991px) {
  .grid {
    gap: 16px;
  }
}

.grid-4 > div {
  width: calc(25% - 18px);
}
@media only screen and (max-width: 1279px) {
  .grid-4 > div {
    width: calc(33.33% - 14px);
  }
}
@media only screen and (max-width: 1199px) {
  .grid-4 > div {
    width: calc(50% - 10px);
  }
}
@media only screen and (max-width: 767px) {
  .grid-4 > div {
    width: calc(100% - 0px);
  }
}

.grid-3 > div {
  width: calc(33.33% - 16px);
}
@media only screen and (max-width: 1279px) {
  .grid-3 > div {
    width: calc(50% - 10px);
  }
}
@media only screen and (max-width: 991px) {
  .grid-3 > div {
    width: calc(50% - 8px);
  }
}
@media only screen and (max-width: 767px) {
  .grid-3 > div {
    width: calc(100% - 0px);
  }
}
.grid-3 > div.width2 {
  width: calc(50% - 12px);
}
@media only screen and (max-width: 1279px) {
  .grid-3 > div.width2 {
    width: calc(50% - 10px);
  }
}
@media only screen and (max-width: 991px) {
  .grid-3 > div.width2 {
    width: calc(50% - 8px);
  }
}
@media only screen and (max-width: 767px) {
  .grid-3 > div.width2 {
    width: calc(100% - 0px);
  }
}

.grid-2 > div {
  width: calc(50% - 12px);
}
@media only screen and (max-width: 1279px) {
  .grid-2 > div {
    width: calc(50% - 10px);
  }
}
@media only screen and (max-width: 991px) {
  .grid-2 > div {
    width: calc(50% - 8px);
  }
}
@media only screen and (max-width: 767px) {
  .grid-2 > div {
    width: calc(100% - 0px);
  }
}

.grid-1 > div {
  width: 100%;
}

.button-group {
  display: flex;
  align-items: center;
  gap: 16px;
}

.common-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-align: center;
  padding: 10px 20px;
  font-size: 15px;
  line-height: 16px;
  font-weight: 500;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  white-space: nowrap;
}

.primary-btn {
  background-color: #111111;
  border: 1px solid #111111;
  color: #D0FF00;
  cursor: pointer;
}
.primary-btn:hover {
  background-color: transparent;
  color: #111111;
}

.filter-btn {
  background-color: rgba(17, 17, 17, 0.02);
  color: rgba(17, 17, 17, 0.6);
  border: 1px solid rgba(17, 17, 17, 0.1);
}
.filter-btn picture {
  pointer-events: none;
}

.icon-btn {
  text-decoration: none;
  outline: none;
  box-shadow: none;
}
.icon-btn:focus, .icon-btn:hover {
  outline: none;
  box-shadow: none;
}
.icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 36px;
  min-width: 36px;
  height: 36px;
  min-height: 36px;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  cursor: pointer;
  background-color: rgba(17, 17, 17, 0.02);
  border: 1px solid rgba(17, 17, 17, 0.1);
}

.secondry-btn {
  background-color: transparent;
  border: 1px solid #111111;
  color: #111111;
}
.secondry-btn:hover {
  background-color: #111111;
  color: #D0FF00;
}

.status-btn {
  text-decoration: none;
  outline: none;
  box-shadow: none;
}
.status-btn:focus, .status-btn:hover {
  outline: none;
  box-shadow: none;
}
.status-btn {
  min-width: 104px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 15px;
  line-height: 16px;
  padding: 6px;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  cursor: pointer;
}

.active-btn {
  background-color: #D1FAE5;
  color: #038C66;
  border: 1px solid #D1FAE5;
}
.active-btn:hover {
        background-color: #038C66;
        color: #FFFFFF;
        border-color: #038C66;
    }

.inactive-btn {
  background-color: #ECEEF2;
  color: #585858;
  border: 1px solid #ECEEF2;
}
.inactive-btn:hover {
        background-color: #585858;
        color: #FFFFFF;
        border-color: #585858;
    }

.upcoming-btn {
  background-color: #E4D4F9;
  color: #585858;
  border: 1px solid #E4D4F9;
}
.upcoming-btn:hover {
  background-color: #585858;
  color: #FFFFFF;
  border-color: #585858;
}

.pending-btn {
  background-color: #CFD6DF;
  color: #585858;
  border: 1px solid #CFD6DF;
}
.pending-btn:hover {
  background-color: #585858;
  color: #FFFFFF;
  border-color: #585858;
}

.transit-btn {
  background-color: #FFF9BB;
  color: #CB7F23;
  border: 1px solid #FFF9BB;
}
.transit-btn:hover {
  background-color: #585858;
  color: #FFFFFF;
  border-color: #585858;
}

.completed-btn {
  background-color: #EAECCA;
  color: #7C9800;
  border: 1px solid #EAECCA;
}
.completed-btn:hover {
  background-color: #585858;
  color: #FFFFFF;
  border-color: #585858;
}

.canceled-btn {
  background-color: #FFE6EA;
  color: #8B2635;
  border: 1px solid #FFE6EA;
}
.canceled-btn:hover {
  background-color: #585858;
  color: #FFFFFF;
  border-color: #585858;
}

.maintenance-btn {
    background-color: #FEF3C7;
    color: #92400E;
    border: 1px solid #FEF3C7;
}
.maintenance-btn:hover {
        background-color: #585858;
        color: #FFFFFF;
        border-color: #585858;
    }

.scrapped-btn {
    background-color: #c43ddb55;
    color: #37257c;
    border: 1px solid #D1FAE5;
}
 .scrapped-btn:hover {
        background-color: #585858;
        color: #FFFFFF;
        border-color: #585858;
    }
.custom-breadcrumb {
  display: flex;
  align-items: center;
  padding-bottom: 20px;
}
@media only screen and (max-width: 991px) {
  .custom-breadcrumb {
    padding-bottom: 16px;
  }
}
.custom-breadcrumb .bcrumb-item {
  font-size: 14px;
  line-height: 110%;
  font-weight: 400;
  color: rgba(17, 17, 17, 0.6);
  padding: 0;
}
.custom-breadcrumb .bcrumb-item a {
  color: rgba(17, 17, 17, 0.6);
}
.custom-breadcrumb .bcrumb-item::after {
  content: "/";
  display: inline-block;
  padding: 0 8px;
}
.custom-breadcrumb .bcrumb-item.active {
  color: #111111;
}
.custom-breadcrumb .bcrumb-item:last-child::after {
  content: inherit;
}
@media screen and (max-width: 767px) {
  .custom-breadcrumb {
    display: none;
  }
}

.common-modal .modal-dialog {
  width: 100%;
  margin: auto;
  padding: 15px;
}
.common-modal .modal-dialog.modal-center {
  display: flex;
  align-items: center;
  min-height: 100%;
}
.common-modal .modal-content {
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  background-color: #F6F6F6;
  border: none;
  overflow: hidden;
}
.common-modal .modal-content .modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px;
  border-bottom: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 0px;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  -o-border-radius: 0px;
}
.common-modal .modal-content .modal-header .modal-title {
  font-size: 24px;
  line-height: 120%;
  color: #111111;
  font-family: "Manrope", sans-serif;
  font-weight: 600;
}
.common-modal .modal-content .close-modal {
  position: relative;
  width: 30px;
  min-width: 30px;
  height: 30px;
  min-height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9;
  background: transparent;
  border: none;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
}
.common-modal .modal-content .close-modal::after, .common-modal .modal-content .close-modal::before {
  content: " ";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  background: #111111;
}
.common-modal .modal-content .close-modal::after {
  width: 60%;
  height: 2px;
}
.common-modal .modal-content .close-modal::before {
  height: 60%;
  width: 2px;
}
.common-modal .modal-content .modal-body {
  padding: 24px;
  font-size: 16px;
  line-height: 22px;
  font-weight: 400;
  color: #000;
}
.common-modal .modal-content .modal-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 15px 20px;
  border-top: 1px solid #dee2e6;
  border-radius: 0px;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  -o-border-radius: 0px;
}
.common-modal.delete-modal .modal-header {
  flex-direction: column;
}
.common-modal.delete-modal .modal-header .delete-model-title {
  width: 100%;
  padding-bottom: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.common-modal.delete-modal .modal-header p {
  width: 100%;
  font-size: 14px;
  line-height: 110%;
  font-weight: 400;
  color: rgba(17, 17, 17, 0.6);
}
.common-modal.delete-modal .modal-body {
  text-align: center;
  padding-top: 10px;
}
.common-modal.delete-modal .deletemodal-action {
  padding-top: 24px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 24px;
}
.common-modal.delete-modal .deletemodal-action .common-btn {
  width: 100%;
}
.common-modal.delete-modal .bulkmodal-action {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  padding-top: 14px;
}
.common-modal.delete-modal .bulkmodal-action .common-btn {
  min-width: 156px;
}

.device-list-modal .search-device {
  width: 100%;
  position: relative;
}
.device-list-modal .search-device .search-control {
  width: 100%;
  text-align: left;
  font-size: 14px;
  line-height: 16px;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
  color: #111111;
  background-color: rgba(17, 17, 17, 0.02);
  border: 1px solid rgba(17, 17, 17, 0.1);
  padding: 12px 14px;
  padding-right: 40px;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
.device-list-modal .search-device .search-control::-webkit-input-placeholder {
  color: rgba(17, 17, 17, 0.6);
}
.device-list-modal .search-device .search-control::-moz-placeholder {
  color: rgba(17, 17, 17, 0.6);
}
.device-list-modal .search-device .search-control:-ms-input-placeholder {
  color: rgba(17, 17, 17, 0.6);
}
.device-list-modal .search-device .search-control:-moz-placeholder {
  color: rgba(17, 17, 17, 0.6);
}
.device-list-modal .search-device .search-control::placeholder {
  color: rgba(17, 17, 17, 0.6);
}
.device-list-modal .search-device .search-control:focus {
  border-color: #111111;
}
.device-list-modal .search-device .search-btn {
  pointer-events: none;
  position: absolute;
  top: 3px;
  bottom: 3px;
  right: 3px;
  margin: auto 0;
  width: 36px;
  background-color: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  outline: none;
  box-shadow: none;
  text-decoration: none;
}
.device-list-modal .search-device .search-btn:focus, .device-list-modal .search-device .search-btn:hover {
  border: none;
  outline: none;
  box-shadow: none;
}
.device-list-modal .table-wrapper-main {
  padding: 14px 0;
}
.device-list-modal .device-list-action {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
}
.device-list-modal .device-list-action .common-btn {
  min-width: 156px;
}

.admin-wrrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ========     SideBar Css Start Here...   ===============*/
.sidebar-main {
  max-width: 278px;
  width: 100%;
  min-height: 100vh;
  border-right: 1px solid #DADDE1;
  background-color: #FFFFFF;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 888;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
@media only screen and (max-width: 991px) {
  .sidebar-main {
    left: -278px;
  }
}
.sidebar-main .sidebar-logo {
  height: 84px;
  padding: 20px 14px;
  text-align: center;
  position: relative;
}
.sidebar-main .sidebar-logo::before {
  content: " ";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  max-width: 184px;
  width: 100%;
  margin: 0 auto;
  background-color: rgba(17, 17, 17, 0.1);
  height: 2px;
}
.sidebar-main .sidebar-logo a {
  display: inline-block;
}
.sidebar-main .sidebar-menus {
  padding: 20px 14px;
  height: calc(100vh - 84px);
  overflow-x: hidden;
  overflow-y: auto;
}
.sidebar-main .sidebar-menus::-webkit-scrollbar {
  width: 6px;
}
.sidebar-main .sidebar-menus::-webkit-scrollbar:horizontal {
  height: 6px;
}
.sidebar-main .sidebar-menus::-webkit-scrollbar-thumb {
  background-color: rgba(17, 17, 17, 0.5);
  border-radius: 4px;
}
.sidebar-main .sidebar-menus::-webkit-scrollbar-track {
  background-color: transparent;
}
.sidebar-main .sidebar-menus .nav-items {
  padding-bottom: 12px;
}
.sidebar-main .sidebar-menus .nav-items:last-child {
  padding-bottom: 0;
}
.sidebar-main .sidebar-menus .nav-items .nav-item-link {
  position: relative;
  z-index: 2;
  width: 100%;
  text-align: left;
  font-size: 14px;
  line-height: 16px;
  font-weight: 400;
  color: #111111;
  padding: 15px 10px;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  background-color: rgba(17, 17, 17, 0.02);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  white-space: nowrap;
  margin: 0;
  vertical-align: middle;
}
.sidebar-main .sidebar-menus .nav-items .nav-item-link span {
  white-space: nowrap;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  margin-bottom: -4px;
}
.sidebar-main .sidebar-menus .nav-items .nav-item-link picture {
  width: 16px;
  min-width: 16px;
  height: 16px;
  min-height: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.sidebar-main .sidebar-menus .nav-items .nav-item-link picture img {
  width: 16px;
}
.sidebar-main .sidebar-menus .nav-items .nav-item-link:hover {
  background-color: #D0FF00;
}
.sidebar-main .sidebar-menus .nav-items .nav-item-link.active {
  background-color: #D0FF00;
}

/* ========     Deshboard Header Css Start Here...   ===============*/
.deshboard-header {
  background-color: #FFFFFF;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  padding: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  z-index: 777;
}
@media only screen and (min-width: 992px) {
  .deshboard-header {
    margin-left: 278px;
    width: calc(100% - 278px);
  }
}
@media only screen and (max-width: 1199px) {
  .deshboard-header {
    gap: 12px;
  }
}
@media only screen and (max-width: 991px) {
  .deshboard-header {
    padding: 12px 16px;
    padding-left: 48px;
  }
}
@media only screen and (max-width: 767px) {
  .deshboard-header {
    padding-left: 42px;
  }
}
.deshboard-header > div {
  display: flex;
  align-items: center;
  gap: 16px;
}
@media only screen and (max-width: 1199px) {
  .deshboard-header > div {
    gap: 12px;
  }
}
@media only screen and (max-width: 1024px) {
  .deshboard-header > div {
    gap: 10px;
  }
}
.deshboard-header .md-search-btn {
  text-decoration: none;
  outline: none;
  box-shadow: none;
}
.deshboard-header .md-search-btn:focus, .deshboard-header .md-search-btn:hover {
  outline: none;
  box-shadow: none;
}
.deshboard-header .md-search-btn {
  position: relative;
  width: 36px;
  min-width: 36px;
  height: 36px;
  min-height: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid rgba(17, 17, 17, 0.1);
  background: rgba(17, 17, 17, 0.02);
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}
@media only screen and (min-width: 576px) {
  .deshboard-header .md-search-btn {
    display: none;
  }
}
.deshboard-header .head-left {
  justify-content: flex-start;
}
.deshboard-header .head-left .search-box-buton {
  width: 400px;
  max-width: 100%;
  position: relative;
}
@media only screen and (max-width: 1199px) {
  .deshboard-header .head-left .search-box-buton {
    width: 320px;
  }
}
@media only screen and (max-width: 1024px) {
  .deshboard-header .head-left .search-box-buton {
    width: 290px;
  }
}
@media only screen and (max-width: 767px) {
  .deshboard-header .head-left .search-box-buton {
    width: 242px;
  }
}
@media only screen and (max-width: 575px) {
  .deshboard-header .head-left .search-box-buton {
    display: none;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: calc(100% - 12px);
    background-color: #FFFFFF;
    z-index: 9;
    padding-left: 42px;
  }
}
.deshboard-header .head-left .search-box-buton .search-control {
  text-align: left;
  font-size: 14px;
  line-height: 16px;
  font-weight: 400;
}
.deshboard-header .head-left .search-box-buton .search-control::-webkit-input-placeholder {
  color: rgba(17, 17, 17, 0.6);
}
.deshboard-header .head-left .search-box-buton .search-control::-moz-placeholder {
  color: rgba(17, 17, 17, 0.6);
}
.deshboard-header .head-left .search-box-buton .search-control:-ms-input-placeholder {
  color: rgba(17, 17, 17, 0.6);
}
.deshboard-header .head-left .search-box-buton .search-control:-moz-placeholder {
  color: rgba(17, 17, 17, 0.6);
}
.deshboard-header .head-left .search-box-buton .search-control::placeholder {
  color: rgba(17, 17, 17, 0.6);
}
.deshboard-header .head-left .search-box-buton .search-control {
  width: 100%;
  padding: 10px 16px;
  background: rgba(17, 17, 17, 0.02);
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  padding-right: 36px;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}
@media only screen and (max-width: 1199px) {
  .deshboard-header .head-left .search-box-buton .search-control {
    padding: 10px;
    padding-right: 36px;
  }
}
.deshboard-header .head-left .search-box-buton .search-control:focus {
  border-color: #111111;
}
.deshboard-header .head-left .search-box-buton .search-btn {
  position: absolute;
  top: 3px;
  bottom: 4px;
  right: 3px;
  margin: auto 0;
  width: 32px;
  background-color: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  outline: none;
  box-shadow: none;
  text-decoration: none;
}
.deshboard-header .head-left .search-box-buton .search-btn:focus, .deshboard-header .head-left .search-box-buton .search-btn:hover {
  border: none;
  outline: none;
  box-shadow: none;
}
@media only screen and (max-width: 575px) {
  .deshboard-header .head-left .search-box-buton .search-btn .search-icon {
    display: none;
  }
}
@media only screen and (min-width: 576px) {
  .deshboard-header .head-left .search-box-buton .search-btn .close-icon {
    display: none;
  }
}
.deshboard-header .head-left .search-box-buton .search-btn .close-icon img {
  filter: brightness(0) saturate(100%) invert(0%) sepia(83%) saturate(4575%) hue-rotate(138deg) brightness(129%) contrast(87%);
}
.deshboard-header .head-left .global-inputs {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.deshboard-header .head-left .global-inputs .custom-input-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  position: relative;
  cursor: pointer;
  font-size: 14px;
  line-height: 16px;
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  color: rgba(17, 17, 17, 0.6);
  user-select: none;
}
.deshboard-header .head-left .global-inputs .custom-input-btn .checkmark {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 16px;
  min-width: 16px;
  height: 16px;
  min-height: 16px;
  background-color: #fff;
  border: 1px solid #111111;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
.deshboard-header .head-left .global-inputs .custom-input-btn .checkmark::after {
  content: " ";
  position: absolute;
  opacity: 0;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
.deshboard-header .head-left .global-inputs .custom-input-btn input {
  cursor: pointer;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 0;
}
.deshboard-header .head-left .global-inputs .custom-input-btn input[type=checkbox]:checked ~ .checkmark {
  background: #111111;
  border-color: #111111;
}
.deshboard-header .head-left .global-inputs .custom-input-btn input[type=checkbox]:checked ~ .checkmark::after {
  opacity: 1;
}
.deshboard-header .head-left .global-inputs .custom-input-btn input[type=checkbox]:checked ~ .label-text {
  color: red;
}
.deshboard-header .head-left .global-inputs .custom-input-btn input[type=checkbox] + .checkmark {
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
}
.deshboard-header .head-left .global-inputs .custom-input-btn input[type=checkbox] + .checkmark::after {
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: url("../../images/check-right-icon.svg") no-repeat center center;
  filter: brightness(0) saturate(100%) invert(89%) sepia(91%) saturate(3327%) hue-rotate(13deg) brightness(101%) contrast(104%);
  background-size: calc(100% - 4px);
}
.deshboard-header .head-left .global-inputs .info-wrap {
  position: relative;
}
.deshboard-header .head-left .global-inputs .info-wrap .info-icon {
  cursor: pointer;
}
.deshboard-header .head-left .global-inputs .info-wrap .info-content {
  white-space: nowrap;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  top: 25px;
  padding: 8px 6px;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  background: linear-gradient(0deg, #FFFFFF, #FFFFFF), linear-gradient(0deg, #F6F6F6, #F6F6F6);
  border: 1px solid #CECED0;
  font-size: 12px;
  line-height: 12px;
  font-weight: 400;
  color: rgba(17, 17, 17, 0.6);
  display: none;
}
.deshboard-header .head-left .global-inputs .info-wrap .info-content::after {
  content: " ";
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%) rotate(-45deg);
  width: 12px;
  min-width: 12px;
  height: 12px;
  min-height: 12px;
  border-top: 1px solid #CECED0;
  border-right: 1px solid #CECED0;
  background-color: #FFFFFF;
  border-radius: 0 4px 0 0;
}
.deshboard-header .head-left .global-inputs .info-wrap:hover .info-content {
  display: block;
}
.deshboard-header .head-right {
  justify-content: flex-end;
}
.deshboard-header .head-right .notification-dropdown .notification-toggle {
  text-decoration: none;
  outline: none;
  box-shadow: none;
}
.deshboard-header .head-right .notification-dropdown .notification-toggle:focus, .deshboard-header .head-right .notification-dropdown .notification-toggle:hover {
  outline: none;
  box-shadow: none;
}
.deshboard-header .head-right .notification-dropdown .notification-toggle {
  position: relative;
  width: 36px;
  min-width: 36px;
  height: 36px;
  min-height: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid rgba(17, 17, 17, 0.1);
  background: rgba(17, 17, 17, 0.02);
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}
.deshboard-header .head-right .notification-dropdown .notification-toggle picture {
  position: relative;
}
.deshboard-header .head-right .notification-dropdown .notification-toggle .noti-badge {
  position: absolute;
  top: 0px;
  right: 0px;
  background-color: #D0FF00;
  color: white;
  font-size: 10px;
  line-height: 1.2;
  width: 7px;
  min-width: 7px;
  height: 7px;
  min-height: 7px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
.deshboard-header .head-right .user-dropdown .user-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px 6px;
  border: 1px solid rgba(17, 17, 17, 0.1);
  background-color: rgba(17, 17, 17, 0.02);
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}
.deshboard-header .head-right .user-dropdown .user-toggle .user-img {
  display: inline-block;
  width: 24px;
  min-width: 24px;
  height: 24px;
  min-height: 24px;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  overflow: hidden;
}
.deshboard-header .head-right .user-dropdown .user-toggle .user-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.deshboard-header .head-right .user-dropdown .user-toggle .user-name {
        display: inline-block;
        font-size: 14px;
        line-height: 100%;
        font-family: "Manrope", sans-serif;
        font-weight: 500;
        color: rgba(17, 17, 17, 0.6);
        max-width: 150px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
}
@media only screen and (max-width: 767px) {
  .deshboard-header .head-right .user-dropdown .user-toggle .user-name {
    display: none;
  }
}
.deshboard-header .head-right .user-dropdown .user-toggle .dropdown-icon {
  width: 20px;
  min-width: 20px;
  height: 20px;
  min-height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.deshboard-header .head-right .user-dropdown .user-toggle .dropdown-icon img {
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  filter: brightness(0) saturate(100%) invert(0%) sepia(83%) saturate(4575%) hue-rotate(138deg) brightness(129%) contrast(87%);
}
.deshboard-header .head-right .user-dropdown .user-toggle.show {
  border-color: rgba(0, 0, 0, 0.9);
}
.deshboard-header .head-right .user-dropdown .user-toggle.show .dropdown-icon img {
  transform: rotateX(180deg);
  -webkit-transform: rotateX(180deg);
  -moz-transform: rotateX(180deg);
  -ms-transform: rotateX(180deg);
  -o-transform: rotateX(180deg);
}
.deshboard-header .head-right .user-dropdown .dropdown-menu {
  padding: 0;
  background-color: #fff;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  border: 1px solid rgba(17, 17, 17, 0.1);
  min-width: 200px;
  box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.1490196078);
  overflow: hidden;
}
.deshboard-header .head-right .user-dropdown .dropdown-menu li .dropdown-item {
  text-decoration: none;
  outline: none;
  box-shadow: none;
}
.deshboard-header .head-right .user-dropdown .dropdown-menu li .dropdown-item:focus, .deshboard-header .head-right .user-dropdown .dropdown-menu li .dropdown-item:hover {
  outline: none;
  box-shadow: none;
}
.deshboard-header .head-right .user-dropdown .dropdown-menu li .dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 15px;
  border-bottom: 1px solid rgba(17, 17, 17, 0.1);
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  background-color: transparent;
  font-size: 14px;
  line-height: 100%;
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  color: rgba(17, 17, 17, 0.6);
}
.deshboard-header .head-right .user-dropdown .dropdown-menu li .dropdown-item:hover {
  background-color: rgba(208, 255, 0, 0.3);
}
.deshboard-header .head-right .user-dropdown .dropdown-menu li:last-child .dropdown-item {
  border-bottom: none;
}
.deshboard-header.header-sticky {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.sidebar-toggle {
  text-decoration: none;
  width: 38px;
  min-width: 38px;
  height: 38px;
  min-height: 38px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #FFFFFF;
  border: 1px solid rgba(17, 17, 17, 0.2);
  border-left: none;
  position: absolute;
  top: 0;
  left: -2px;
  bottom: 0;
  margin: auto 0;
  -webkit-border-radius: 0 10px 10px 0;
  -moz-border-radius: 0 10px 10px 0;
  -ms-border-radius: 0 10px 10px 0;
  border-radius: 0 10px 10px 0;
  -o-border-radius: 0 10px 10px 0;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
@media only screen and (max-width: 767px) {
  .sidebar-toggle {
    width: 32px;
    min-width: 32px;
  }
}
.sidebar-toggle img {
  transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  position: relative;
  left: -3px;
}

/* ========     Deshboard Footer Css Start Here...   ===============*/
.deshboard-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background-color: #FFFFFF;
}
@media only screen and (min-width: 992px) {
  .deshboard-footer {
    margin-left: 278px;
    width: calc(100% - 278px);
  }
}
@media only screen and (max-width: 480px) {
  .deshboard-footer {
    flex-direction: column;
    gap: 8px;
    padding: 10px 16px;
  }
}
.deshboard-footer .copy-right {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  line-height: 16px;
  font-weight: 400;
  color: #111111;
}
.deshboard-footer .copy-right span {
  margin-bottom: -4px;
}
.deshboard-footer .powered-by {
  font-size: 12px;
  line-height: 140%;
  font-weight: 400;
  color: rgba(17, 17, 17, 0.6);
}

@media only screen and (min-width: 992px) {
  .sidebar-collapse .sidebar-main {
    max-width: 60px;
  }
  .sidebar-collapse .sidebar-main .sidebar-menus .nav-items > .nav-item-link span {
    -webkit-animation-name: fadeOut;
    animation-name: fadeOut;
    -webkit-animation-duration: 0.3s;
    animation-duration: 0.3s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    visibility: hidden;
  }
  .sidebar-collapse .sidebar-main .sidebar-menus .nav-items ul {
    height: 0;
    overflow: hidden;
    transition: all 0.5s ease;
    opacity: 0;
    visibility: hidden;
  }
  .sidebar-collapse .sidebar-main .sidebar-menus .sidebar-dropdown button::after {
    -webkit-animation-name: fadeOut;
    animation-name: fadeOut;
    -webkit-animation-duration: 0.3s;
    animation-duration: 0.3s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    visibility: hidden;
  }
  .sidebar-collapse .sidebar-main:hover {
    max-width: 278px;
  }
  .sidebar-collapse .sidebar-main:hover .sidebar-menus .nav-items > .nav-item-link span {
    -webkit-animation-name: fadeIn;
    animation-name: fadeInt;
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    visibility: visible;
  }
  .sidebar-collapse .sidebar-main:hover .sidebar-menus .nav-items ul {
    height: auto;
    overflow: hidden;
    transition: all 0.5s ease;
    opacity: 1;
    visibility: visible;
  }
  .sidebar-collapse .sidebar-main:hover .sidebar-menus .sidebar-dropdown button::after {
    -webkit-animation-name: fadeIn;
    animation-name: fadeInt;
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    visibility: visible;
  }
  .sidebar-collapse .deshboard-header {
    margin-left: 60px;
    width: calc(100% - 60px);
  }
  .sidebar-collapse .deshboard-header .sidebar-toggle img {
    transform: rotate(-90deg);
    -webkit-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
  }
  .sidebar-main .sidebar-toggle {
    display: none;
  }
}
@media only screen and (max-width: 991px) {
  .sidebar-main .sidebar-toggle {
    top: 12px;
    left: calc(100% + 0px);
    margin: 0;
    border-left: 1px solid rgba(17, 17, 17, 0.2);
    background-color: rgba(17, 17, 17, 0.02);
  }
  .sidebar-collapse::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.2);
    z-index: 888;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
  }
  .sidebar-collapse .sidebar-main {
    left: 0;
  }
  .sidebar-collapse .sidebar-main .sidebar-toggle {
    background-color: #FFFFFF;
  }
}
@media only screen and (max-width: 575px) {
  .search-open .deshboard-header .head-left .search-box-buton {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
.common-form {
  width: 100%;
}
.common-form .form-group {
  margin-bottom: 0px;
  position: relative;
}
.common-form .form-group .label-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 9px;
}
.common-form .form-group .label-row .form-label {
  margin-bottom: 0;
}
.common-form .form-group .form-label {
  display: block;
  text-align: left;
  margin-bottom: 9px;
  font-size: 14px;
  line-height: 100%;
  color: #111111;
  font-family: "Manrope", sans-serif;
  font-weight: 600;
}
.common-form .form-group .label-info {
  font-size: 14px;
  line-height: 100%;
  color: #111111;
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  display: inline-block;
}
.common-form .form-group .group-input {
  position: relative;
  width: 100%;
}
.common-form .form-group .req-mark {
  color: #ff0000;
  margin-left: 2px;
  font-weight: 400;
}
.common-form .form-group .form-control {
  text-align: left;
  padding: 12px 16px;
  font-size: 14px;
  line-height: 16px;
  font-weight: 400;
  color: #111111;
  background-color: #FFFFFF;
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  vertical-align: middle;
  font-family: "Helvetica Neue", Arial, sans-serif;
}
.common-form .form-group .form-control::placeholder {
  color: rgba(17, 17, 17, 0.6);
}
.common-form .form-group .form-control:focus {
  border-color: #111111;
}
.common-form .form-group .form-control:disabled {
  background-color: rgba(17, 17, 17, 0.1);
}
@media only screen and (max-width: 480px) {
  .common-form .form-group .form-control {
    padding: 10px 10px;
  }
}
.common-form .form-group .error-message {
    display: block;
    text-align: left;
    font-size: 14px;
    line-height: 18px;
    font-weight: 400;
    color: #ff4646;
    margin-top: 4px;
}
.common-form .form-group .input-icon-left {
  position: absolute;
  top: 1px;
  bottom: 1px;
  left: 1px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  pointer-events: none;
  -webkit-border-radius: 10px 0 0 10px;
  -moz-border-radius: 10px 0 0 10px;
  -ms-border-radius: 10px 0 0 10px;
  border-radius: 10px 0 0 10px;
  -o-border-radius: 10px 0 0 10px;
}
.common-form .form-group .input-icon-left + .form-control {
  padding-left: 40px;
}
.common-form .form-group .input-icon-right {
  position: absolute;
  top: 1px;
  bottom: 1px;
  right: 1px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  pointer-events: none;
  -webkit-border-radius: 10px 0 0 10px;
  -moz-border-radius: 10px 0 0 10px;
  -ms-border-radius: 10px 0 0 10px;
  border-radius: 10px 0 0 10px;
  -o-border-radius: 10px 0 0 10px;
}
.common-form .form-group .input-icon-right + .form-control {
  padding-right: 40px;
}
.common-form .form-group .input-action {
  position: absolute;
  top: 2px;
  bottom: 2px;
  right: 2px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 38px;
  border: none;
  -webkit-border-radius: 0px 10px 10px 0px;
  -moz-border-radius: 0px 10px 10px 0px;
  -ms-border-radius: 0px 10px 10px 0px;
  border-radius: 0px 10px 10px 0px;
  -o-border-radius: 0px 10px 10px 0px;
  background-color: transparent;
  cursor: pointer;
}
.common-form .form-group .input-action + .form-control {
  padding-right: 50px;
}

.dropdown.bootstrap-select {
  width: 100% !important;
}
.dropdown.bootstrap-select .dropdown-toggle.btn-light {
  padding: 12px 16px;
  padding-right: 40px;
  position: relative;
  background-color: #FFFFFF;
  border: 1px solid rgba(17, 17, 17, 0.1);
  font-size: 14px;
  line-height: 16px;
  font-weight: 400;
  color: #111111;
  font-family: "Helvetica Neue", Arial, sans-serif;
  text-decoration: none;
  outline: none;
  box-shadow: none;
}
.dropdown.bootstrap-select .dropdown-toggle.btn-light:focus, .dropdown.bootstrap-select .dropdown-toggle.btn-light:hover {
  outline: none;
  box-shadow: none;
}
.dropdown.bootstrap-select .dropdown-toggle.btn-light {
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
@media only screen and (max-width: 480px) {
  .dropdown.bootstrap-select .dropdown-toggle.btn-light {
    padding: 10px 10px;
  }
}
.dropdown.bootstrap-select .dropdown-toggle.btn-light::after {
  content: " ";
  position: absolute;
  right: 15px;
  top: 0px;
  bottom: 0;
  background: url("../../images/dropdown-icon.svg") no-repeat center center;
  background-size: contain;
  width: 15px;
  height: 15px;
  padding: 0;
  margin: auto 0;
  border: none;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transform: rotateX(0deg);
  -webkit-transform: rotateX(0deg);
  -moz-transform: rotateX(0deg);
  -ms-transform: rotateX(0deg);
  -o-transform: rotateX(0deg);
}
.dropdown.bootstrap-select .dropdown-toggle.btn-light:focus {
  outline: none !important;
  box-shadow: none;
}
.dropdown.bootstrap-select .dropdown-toggle.btn-light.disabled {
  background-color: rgba(17, 17, 17, 0.1);
  opacity: 1;
}
.dropdown.bootstrap-select .dropdown-toggle.btn-light .filter-option-inner-inner {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
  width: 100%;
}
.dropdown.bootstrap-select .dropdown-toggle.btn-light .filter-option-inner-inner img {
  width: 20px;
  height: 15px;
  margin-right: 6px;
  position: relative;
  bottom: 2px;
}
.dropdown.bootstrap-select .dropdown-toggle.btn-light.show {
  border-color: #111111;
}
.dropdown.bootstrap-select .dropdown-toggle.btn-light.show::after {
  transform: rotateX(180deg);
  -webkit-transform: rotateX(180deg);
  -moz-transform: rotateX(180deg);
  -ms-transform: rotateX(180deg);
  -o-transform: rotateX(180deg);
}
.dropdown.bootstrap-select .dropdown-toggle.btn-light.bs-placeholder .filter-option-inner-inner {
  color: rgba(17, 17, 17, 0.6);
}
.dropdown.bootstrap-select > .dropdown-menu {
  background: #FFFFFF;
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  width: 100%;
  overflow: hidden;
}
.dropdown.bootstrap-select > .dropdown-menu .bs-searchbox .form-control {
  text-decoration: none;
  outline: none;
  box-shadow: none;
}
.dropdown.bootstrap-select > .dropdown-menu .bs-searchbox .form-control:focus, .dropdown.bootstrap-select > .dropdown-menu .bs-searchbox .form-control:hover {
  outline: none;
  box-shadow: none;
}
.dropdown.bootstrap-select > .dropdown-menu .bs-searchbox .form-control {
  padding: 8px 16px;
  border: 1px solid rgba(17, 17, 17, 0.1);
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
  color: #111111;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
.dropdown.bootstrap-select > .dropdown-menu .bs-searchbox .form-control:focus {
  border-color: #111111;
}
.dropdown.bootstrap-select > .dropdown-menu > .inner::-webkit-scrollbar {
  width: 6px;
}
.dropdown.bootstrap-select > .dropdown-menu > .inner::-webkit-scrollbar:horizontal {
  height: 6px;
}
.dropdown.bootstrap-select > .dropdown-menu > .inner::-webkit-scrollbar-thumb {
  background-color: rgba(17, 17, 17, 0.5);
  border-radius: 4px;
}
.dropdown.bootstrap-select > .dropdown-menu > .inner::-webkit-scrollbar-track {
  background-color: transparent;
}
.dropdown.bootstrap-select > .dropdown-menu ul {
  padding: 0 8px;
}
.dropdown.bootstrap-select > .dropdown-menu ul li a {
  position: relative;
  background: transparent;
  padding: 8px 10px;
  margin: 2px 0;
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
  color: #111111;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}
.dropdown.bootstrap-select > .dropdown-menu ul li a.selected, .dropdown.bootstrap-select > .dropdown-menu ul li a:hover {
  color: #FFFFFF;
  background-color: rgba(17, 17, 17, 0.7);
}
.dropdown.bootstrap-select > .dropdown-menu ul li a .text {
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
  width: 100%;
}
.dropdown.bootstrap-select > .dropdown-menu ul li a .text img {
  width: 20px;
  height: 15px;
  margin-right: 6px;
}
.dropdown.bootstrap-select > .dropdown-menu ul li a::before {
  content: " ";
  position: absolute;
  left: 8px;
  right: 8px;
  bottom: 0;
  height: 1px;
  background-color: rgba(17, 17, 17, 0.1);
}
.dropdown.bootstrap-select > .dropdown-menu ul li:last-child a::before {
  display: none;
}
.dropdown.bootstrap-select.checkbox-select > .dropdown-menu ul li a .check-mark {
  border-radius: 2px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  -o-border-radius: 2px;
  border: 1px solid rgba(17, 17, 17, 0.4);
}
.dropdown.bootstrap-select.checkbox-select > .dropdown-menu ul li a .check-mark::after {
  background: url("../../images/check-right-icon.svg") no-repeat center center;
  background-size: 10px;
  filter: brightness(0) saturate(100%) invert(99%) sepia(1%) saturate(6698%) hue-rotate(181deg) brightness(117%) contrast(94%);
}
.dropdown.bootstrap-select.radio-select > .dropdown-menu ul li a .check-mark {
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  border: 2px solid rgba(17, 17, 17, 0.4);
}
.dropdown.bootstrap-select.radio-select > .dropdown-menu ul li a .check-mark::after {
  background: url("../../assets/images/rounded-dots.svg") no-repeat center center;
  background-size: 8px;
  filter: brightness(0) saturate(100%) invert(99%) sepia(1%) saturate(6698%) hue-rotate(181deg) brightness(117%) contrast(94%);
}
.dropdown.bootstrap-select.show-tick > .dropdown-menu ul li a {
  padding-left: 40px;
}
.dropdown.bootstrap-select.show-tick > .dropdown-menu ul li a .check-mark {
  display: inline-block;
  position: absolute;
  left: 10px;
  top: 0;
  bottom: 0;
  margin: auto 0;
  width: 18px;
  min-width: 18px;
  height: 18px;
  min-height: 18px;
  background-color: transparent;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
.dropdown.bootstrap-select.show-tick > .dropdown-menu ul li a .check-mark::after {
  content: " ";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  border: none;
  transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
.dropdown.bootstrap-select.show-tick > .dropdown-menu ul li a:hover .check-mark {
  border-color: #FFFFFF;
}
.dropdown.bootstrap-select.show-tick > .dropdown-menu ul li a.selected .check-mark {
  border-color: #FFFFFF;
}
.dropdown.bootstrap-select.show-tick > .dropdown-menu ul li a.selected .check-mark::after {
  opacity: 1;
}

.selectedTags {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 4px;
}
.selectedTags .tag {
  padding: 6px 8px;
  font-size: 14px;
  line-height: 16px;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
  color: rgba(17, 17, 17, 0.6);
  background-color: #F4F6EC;
  display: flex;
  align-items: center;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}
    .selectedTags .tag .remove-tag {
        border: none;
        outline: none;
        box-shadow: none;
        text-decoration: none;
        padding: 0;
        margin: -2px 0 0 8px;
    }
.selectedTags .tag .remove-tag:focus, .selectedTags .tag .remove-tag:hover {
  border: none;
  outline: none;
  box-shadow: none;
}

.switch {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 52px;
  height: 32px;
}
.switch .slider {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 30px;
  background-color: rgba(17, 17, 17, 0.1);
  cursor: pointer;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  z-index: 9;
  border: 1px solid #111111;
}
.switch .slider:before {
  position: absolute;
  left: 8px;
  bottom: 0px;
  top: 0px;
  margin: auto 0;
  width: 16px;
  height: 16px;
  content: "";
  border-radius: 50%;
  background-color: #111111;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
.switch input {
  opacity: 0;
  touch-action: none;
}
.switch input:checked ~ .slider {
  background-color: #111111;
}
.switch input:checked ~ .slider:before {
  background-color: #D0FF00;
  transform: translate(20px, 0px);
}

.add-row {
  align-items: flex-end;
  padding-bottom: 14px;
}
.add-row > div {
  flex: 1;
}
.add-row .icon-btn {
  width: 42px;
  min-width: 42px;
  height: 42px;
  min-height: 42px;
}
@media only screen and (max-width: 480px) {
  .add-row .icon-btn {
    width: 38px;
    min-width: 38px;
    height: 38px;
    min-height: 38px;
  }
}

.buuton-align-end {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  padding-top: 10px;
}
@media only screen and (max-width: 767px) {
  .buuton-align-end {
    padding-top: 6px;
  }
}
@media only screen and (max-width: 480px) {
  .buuton-align-end {
    padding-top: 2px;
  }
}

.buuton-align-center {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.custom-inputs {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.custom-input-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  position: relative;
  cursor: pointer;
  font-size: 14px;
  line-height: 16px;
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  color: rgba(17, 17, 17, 0.6);
  user-select: none;
}
.custom-input-btn .checkmark {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 16px;
  min-width: 16px;
  height: 16px;
  min-height: 16px;
  background-color: #fff;
  border: 1px solid #111111;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
.custom-input-btn .checkmark::after {
  content: " ";
  position: absolute;
  opacity: 0;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
.custom-input-btn input {
  cursor: pointer;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 0;
}
.custom-input-btn input[type=checkbox]:checked ~ .checkmark {
  background: #111111;
  border-color: #111111;
}
.custom-input-btn input[type=checkbox]:checked ~ .checkmark::after {
  opacity: 1;
}
.custom-input-btn input[type=checkbox]:checked ~ .label-text {
  color: red;
}
.custom-input-btn input[type=checkbox] + .checkmark {
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
}
.custom-input-btn input[type=checkbox] + .checkmark::after {
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: url("../../images/check-right-icon.svg") no-repeat center center;
  filter: brightness(0) saturate(100%) invert(89%) sepia(91%) saturate(3327%) hue-rotate(13deg) brightness(101%) contrast(104%);
  background-size: calc(100% - 4px);
}

.upload-box {
  width: 100%;
  position: relative;
}
.upload-box .upload-area {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  border: 2px dashed rgba(17, 17, 17, 0.1);
  border-radius: 8px;
  background-color: #FFFFFF;
  cursor: pointer;
  padding: 14px;
  transition: all 0.3s ease;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  font-size: 16px;
  line-height: 18px;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
  color: rgba(17, 17, 17, 0.6);
  text-align: center;
}
.upload-box .upload-area .upload-icon {
  margin-bottom: 8px;
}
.upload-box .upload-area .or {
  display: block;
  text-align: center;
  margin: 8px 0;
}
.upload-box .upload-area .click-text {
  display: block;
  text-align: center;
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  color: #111111;
  text-decoration: underline;
}
.upload-box .preview {
  position: relative;
}
.upload-box .preview img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  object-fit: cover;
}
.upload-box .preview .remove-btn {
  border: none;
  outline: none;
  box-shadow: none;
  text-decoration: none;
}
.upload-box .preview .remove-btn:focus, .upload-box .preview .remove-btn:hover {
  border: none;
  outline: none;
  box-shadow: none;
}
.upload-box .preview .remove-btn {
  position: absolute;
  top: 6px;
  right: 6px;
  background: #111111;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  width: 24px;
  min-width: 24px;
  height: 24px;
  min-height: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
.upload-box .preview .remove-btn img {
  width: 80%;
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(323deg) brightness(101%) contrast(102%);
}

.attached-list {
  width: 100%;
  padding: 16px 16px;
  background-color: #FFFFFF;
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  margin-bottom: 24px;
}
.attached-list .attached-list-row {
  padding: 16px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
}
@media only screen and (max-width: 480px) {
  .attached-list .attached-list-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}
.attached-list .attached-list-row:first-child {
  padding-top: 0;
}
.attached-list .attached-list-row:last-child {
  padding-bottom: 0;
}
.attached-list .attached-list-row > div {
  display: flex;
  align-items: center;
  gap: 14px;
}
.attached-list .attached-list-row .attached-label {
  font-size: 16px;
  line-height: 18px;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
  color: #111111;
}
.attached-list .attached-list-row .attached-label p {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
  width: 100%;
}
.attached-list .attached-list-row .attached-label .at-sm-label {
  display: block;
  font-size: 14px;
  line-height: 16px;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
  color: rgba(17, 17, 17, 0.6);
}
.attached-list .attached-list-row .attached-right {
  margin-left: auto;
}

.input-range-slider .rangeslider--horizontal {
  background: #F0F7D1;
  height: 8px;
  box-shadow: none;
  cursor: pointer;
  opacity: 1;
}
.input-range-slider .rangeslider__fill {
  background: #111111;
  box-shadow: none;
}
.input-range-slider .rangeslider__handle {
  display: none;
}

.lrf-flow-section {
  background-color: #111111;
  min-height: 100vh;
  display: flex;
  gap: 7px;
}
@media (max-width: 767px) {
  .lrf-flow-section {
    position: relative;
    flex-direction: column-reverse;
    gap: 30px;
    padding-bottom: 70px;
  }
}
@media (max-width: 575px) {
  .lrf-flow-section {
    gap: 20px;
  }
}
.lrf-flow-section .lrf-left {
  width: 60%;
  padding: 10px;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
@media (min-width: 1536px) {
  .lrf-flow-section .lrf-left {
    width: 50%;
  }
}
@media (min-width: 1600px) {
  .lrf-flow-section .lrf-left {
    width: 53%;
  }
}
@media (min-width: 2300px) {
  .lrf-flow-section .lrf-left {
    width: 45%;
  }
}
@media (max-width: 1279px) {
  .lrf-flow-section .lrf-left {
    width: 50%;
  }
}
@media (max-width: 767px) {
  .lrf-flow-section .lrf-left {
    width: 100%;
    text-align: center;
  }
}
.lrf-flow-section .lrf-left .lrf-img-wrap {
  display: flex;
  gap: 6px;
  margin-bottom: 6px;
}
@media (max-width: 1199px) {
  .lrf-flow-section .lrf-left .lrf-img-wrap {
    flex-direction: column;
  }
}
@media (max-width: 767px) {
  .lrf-flow-section .lrf-left .lrf-img-wrap {
    display: none;
  }
}
.lrf-flow-section .lrf-left .lrf-img-wrap .img-wrap {
  width: 33.23%;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
@media (max-width: 1199px) {
  .lrf-flow-section .lrf-left .lrf-img-wrap .img-wrap {
    width: 100%;
    flex-direction: row;
  }
}
.lrf-flow-section .lrf-left .lrf-img-wrap .img-wrap .img-small {
  width: 100%;
  padding-bottom: 103.16%;
}
@media (max-width: 1199px) {
  .lrf-flow-section .lrf-left .lrf-img-wrap .img-wrap .img-small {
    padding-bottom: 40%;
  }
}
.lrf-flow-section .lrf-left .lrf-img-wrap .lrf-img3 {
  flex: 1;
  display: block;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  padding-bottom: 68%;
}
.lrf-flow-section .lrf-left .lrf-img-wrap .lrf-img3 img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.lrf-flow-section .lrf-left .lrf-info-wrap {
  display: flex;
  gap: 6px;
}
@media (max-width: 1199px) {
  .lrf-flow-section .lrf-left .lrf-info-wrap {
    flex-direction: column-reverse;
  }
}
.lrf-flow-section .lrf-left .lrf-info-wrap .info-box {
  background-color: rgba(255, 255, 255, 0.08);
  padding: 40px;
  border-radius: 20px;
  flex: 1;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
@media (max-width: 1367px) {
  .lrf-flow-section .lrf-left .lrf-info-wrap .info-box {
    padding: 30px;
  }
}
@media (max-width: 1279px) {
  .lrf-flow-section .lrf-left .lrf-info-wrap .info-box {
    padding: 20px;
  }
}
.lrf-flow-section .lrf-left .lrf-info-wrap .info-box .info-title {
  font-size: 40px;
  line-height: 110%;
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  color: #FFFFFF;
  margin-bottom: 28px;
}
@media (max-width: 1367px) {
  .lrf-flow-section .lrf-left .lrf-info-wrap .info-box .info-title {
    font-size: 36px;
    margin-bottom: 20px;
  }
}
@media (max-width: 1280px) {
  .lrf-flow-section .lrf-left .lrf-info-wrap .info-box .info-title {
    font-size: 34px;
  }
}
@media (max-width: 1199px) {
  .lrf-flow-section .lrf-left .lrf-info-wrap .info-box .info-title {
    font-size: 32px;
  }
}
@media (max-width: 991px) {
  .lrf-flow-section .lrf-left .lrf-info-wrap .info-box .info-title {
    font-size: 30px;
  }
}
@media (max-width: 767px) {
  .lrf-flow-section .lrf-left .lrf-info-wrap .info-box .info-title {
    font-size: 26px;
    margin-bottom: 10px;
  }
}
@media (max-width: 575px) {
  .lrf-flow-section .lrf-left .lrf-info-wrap .info-box .info-title {
    font-size: 24px;
    margin-bottom: 10px;
  }
}
.lrf-flow-section .lrf-left .lrf-info-wrap .info-box .info-text {
  font-size: 20px;
  line-height: 120%;
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.6);
}
@media (max-width: 1280px) {
  .lrf-flow-section .lrf-left .lrf-info-wrap .info-box .info-text {
    font-size: 18px;
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .lrf-flow-section .lrf-left .lrf-info-wrap .info-box .info-text {
    font-size: 16px;
    margin-bottom: 10px;
  }
}
.lrf-flow-section .lrf-left .lrf-info-wrap .info-box .info-text strong {
  color: #FFFFFF;
  font-weight: 600;
}
.lrf-flow-section .lrf-left .lrf-info-wrap .info-box .link-wrap {
  display: flex;
  gap: 10px;
}
@media (max-width: 767px) {
  .lrf-flow-section .lrf-left .lrf-info-wrap .info-box .link-wrap {
    justify-content: center;
  }
}
.lrf-flow-section .lrf-left .lrf-info-wrap .info-box .link-wrap .icon-link {
  padding: 10px 30px;
  background-color: rgba(255, 255, 255, 0.04);
  border-radius: 40px;
}
@media (max-width: 767px) {
  .lrf-flow-section .lrf-left .lrf-info-wrap .info-box .link-wrap .icon-link {
    padding: 6px 20px;
  }
}
.lrf-flow-section .lrf-left .lrf-info-wrap .info-box .link-wrap .icon-link img {
  height: 20px;
  width: 20px;
  min-width: 20px;
}
.lrf-flow-section .lrf-left .img-small {
  display: block;
  position: relative;
  width: 33.23%;
  padding-bottom: 35.16%;
  border-radius: 20px;
  overflow: hidden;
}
@media (max-width: 1199px) {
  .lrf-flow-section .lrf-left .img-small {
    width: 100%;
    padding-bottom: 40%;
  }
}
@media (max-width: 767px) {
  .lrf-flow-section .lrf-left .img-small {
    display: none;
  }
}
.lrf-flow-section .lrf-left .img-small img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.lrf-flow-section .lrf-right {
    position: relative;
    display: flex;
    justify-content: center;
    flex: 1;
    height: 100vh;
    padding: 70px 40px;
    align-items: center;
    flex-direction: column;
}
@media (max-width: 1280px) {
  .lrf-flow-section .lrf-right {
    padding: 70px 30px;
  }
}
@media (max-width: 1199px) {
  .lrf-flow-section .lrf-right {
    padding: 70px 12px;
  }
}
@media (max-width: 767px) {
  .lrf-flow-section .lrf-right {
    padding: 40px 12px 0;
    position: unset;
  }
}
@media (max-width: 575px) {
  .lrf-flow-section .lrf-right {
    padding: 20px 12px 0;
  }
}
.lrf-flow-section .lrf-right .lrf-form-wrap {
  max-width: 500px;
  width: 100%;
  margin: auto;
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 38px;
}
@media (max-width: 1367px) {
  .lrf-flow-section .lrf-right .lrf-form-wrap {
    gap: 30px;
  }
}
@media (max-width: 1199px) {
  .lrf-flow-section .lrf-right .lrf-form-wrap {
    gap: 20px;
  }
}
@media (max-width: 767px) {
  .lrf-flow-section .lrf-right .lrf-form-wrap {
    gap: 30px;
  }
}
.lrf-flow-section .lrf-right .lrf-logo {
  width: 240px;
  height: auto;
}
@media (max-width: 1199px) {
  .lrf-flow-section .lrf-right .lrf-logo {
    width: 200px;
  }
}
@media (max-width: 767px) {
  .lrf-flow-section .lrf-right .lrf-logo {
    width: 160px;
    margin: 0 auto;
  }
}
.lrf-flow-section .lrf-right .lrf-logo img {
  height: 100%;
  width: 100%;
}
@media (max-width: 767px) {
  .lrf-flow-section .lrf-right .lrt-title-wrap {
    text-align: center;
  }
}
.lrf-flow-section .lrf-right .lrt-title-wrap .lrt-title {
  font-size: 32px;
  line-height: 44px;
  margin-bottom: 6px;
  color: #FFFFFF;
  font-family: "Manrope", sans-serif;
  font-weight: 400;
}
@media (max-width: 1367px) {
  .lrf-flow-section .lrf-right .lrt-title-wrap .lrt-title {
    font-size: 30px;
    line-height: 42px;
  }
}
@media (max-width: 1279px) {
  .lrf-flow-section .lrf-right .lrt-title-wrap .lrt-title {
    font-size: 28px;
    line-height: 40px;
  }
}
@media (max-width: 1199px) {
  .lrf-flow-section .lrf-right .lrt-title-wrap .lrt-title {
    font-size: 26px;
    line-height: 38px;
  }
}
@media (max-width: 991px) {
  .lrf-flow-section .lrf-right .lrt-title-wrap .lrt-title {
    font-size: 24px;
    line-height: 36px;
  }
}
@media (max-width: 767px) {
  .lrf-flow-section .lrf-right .lrt-title-wrap .lrt-title {
    font-size: 22px;
    line-height: 34px;
  }
}
@media (max-width: 767px) {
  .lrf-flow-section .lrf-right .lrt-title-wrap .lrt-title {
    font-size: 20px;
    line-height: 32px;
  }
}
.lrf-flow-section .lrf-right .lrt-title-wrap .lrt-title strong {
  color: #D0FF00;
  font-weight: 600;
}
.lrf-flow-section .lrf-right .lrt-title-wrap p {
  font-size: 16px;
  line-height: 110%;
  font-weight: 400;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: rgba(255, 255, 255, 0.6);
}
.lrf-flow-section .lrf-right .common-form .form-group {
  margin-bottom: 24px;
}
.lrf-flow-section .lrf-right .common-form .form-group:last-child {
  margin-bottom: 0;
}
.lrf-flow-section .lrf-right .common-form .form-group .form-label {
  color: #FFFFFF;
  margin-bottom: 8px;
}
.lrf-flow-section .lrf-right .common-form .form-group .input-wrap {
  position: relative;
}
.lrf-flow-section .lrf-right .common-form .form-group .input-wrap .icon {
  position: absolute;
  top: 20px;
  right: 16px;
}
.lrf-flow-section .lrf-right .common-form .form-group .form-control {
  font-size: 16px;
  line-height: 24px;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #FFFFFF;
  padding: 17px 45px 17px 16px;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.lrf-flow-section .lrf-right .common-form .form-group .form-control::placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.lrf-flow-section .lrf-right .common-form .forgot-link {
  display: block;
  font-size: 14px;
  line-height: 112%;
  color: #FFFFFF;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.3);
  text-underline-offset: 2px;
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  margin-left: auto;
  margin-top: 6px;
  width: fit-content;
}
.lrf-flow-section .lrf-right .lrf-btn {
  text-align: center;
  padding: 20px;
  width: 100%;
  max-width: 500px;
  font-size: 18px;
  line-height: 100%;
  font-weight: 500;
  font-family: "Helvetica Neue", Arial, sans-serif;
  background-color: #D0FF00;
  color: #111111;
  border: 1px solid #D0FF00;
  border-radius: 40px;
  transition: all 0.3s ease;
}
    .lrf-flow-section .lrf-right .lrf-btn:hover {
        background-color: #FFFFFF !important;
        border-color: #FFFFFF !important;
        color: #111111 !important;
    }
.lrf-flow-section .lrf-right .lrf-footer {
    text-align: center;
    margin-top: auto;
    padding-top: 15px;
}
.lrf-flow-section .lrf-right .lrf-footer h3 {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  color: #FFFFFF;
  margin-bottom: 4px;
}
.lrf-flow-section .lrf-right .lrf-footer p {
  font-size: 12px;
  line-height: 14px;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
}

.tabing-nav {
  align-items: center;
  margin-bottom: 20px;
  flex-wrap: nowrap;
  overflow: auto;
}
.tabing-nav .nav-link {
  text-decoration: none;
  outline: none;
  box-shadow: none;
}
.tabing-nav .nav-link:focus, .tabing-nav .nav-link:hover {
  outline: none;
  box-shadow: none;
}
.tabing-nav .nav-link {
  border: none;
  padding: 11px 10px;
  text-align: center;
  background-color: transparent;
  border-radius: 8px 8px 0 0;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  border-bottom: 1px solid rgba(17, 17, 17, 0.1);
  font-size: 14px;
  line-height: 17px;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
  color: rgba(17, 17, 17, 0.6);
  min-width: 191px;
  display: flex;
  justify-content: center;
  align-items: center;
  white-space: nowrap;
}
@media only screen and (max-width: 575px) {
  .tabing-nav .nav-link {
    min-width: 160px;
  }
}
@media only screen and (max-width: 480px) {
  .tabing-nav .nav-link {
    min-width: 140px;
  }
}
@media only screen and (max-width: 359px) {
  .tabing-nav .nav-link {
    min-width: 130px;
  }
}
.tabing-nav .nav-link.active, .tabing-nav .nav-link:hover {
  background-color: #111111;
  color: #D0FF00;
  font-weight: 500;
}

.inner-tabing-nav {
  width: 100%;
  background-color: #111111;
  padding: 10px;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  overflow: auto;
  margin-bottom: 24px;
}
.inner-tabing-nav .nav-link {
  text-decoration: none;
  outline: none;
  box-shadow: none;
}
.inner-tabing-nav .nav-link:focus, .inner-tabing-nav .nav-link:hover {
  outline: none;
  box-shadow: none;
}
.inner-tabing-nav .nav-link {
  border: none;
  padding: 10px 10px;
  text-align: center;
  background-color: transparent;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  font-size: 14px;
  line-height: 16px;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
  color: #FFFFFF;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}
.inner-tabing-nav .nav-link.active, .inner-tabing-nav .nav-link:hover {
  background-color: #D0FF00;
  color: #111111;
  font-weight: 500;
}

/* ========     Deshboard Containet Css Start Here...   ===============*/
.dashboard-content {
  flex: 1;
  padding: 16px;
}
@media only screen and (min-width: 992px) {
  .dashboard-content {
    margin-left: 278px;
    width: calc(100% - 278px);
  }
}

.table-container-wrap {
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  border: 1px solid rgba(17, 17, 17, 0.1);
  overflow: hidden;
}
.table-container-wrap .table-wrapper {
  overflow-x: auto;
}
.table-container-wrap .table-wrapper table {
  width: 100%;
  border-collapse: collapse;
  background-color: #FFFFFF;
  border: 0;
}
.table-container-wrap .table-wrapper table thead {
  background-color: #F4F6EC;
}
.table-container-wrap .table-wrapper table thead th {
  text-align: left;
  padding: 14px 14px;
  font-size: 14px;
  line-height: 112%;
  color: #111111;
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  border: none;
  white-space: nowrap;
}
.table-container-wrap .table-wrapper table tbody tr {
  border-bottom: 1px solid rgba(17, 17, 17, 0.1);
  transition: background-color 0.2s ease;
}
.table-container-wrap .table-wrapper table tbody tr:hover {
  background-color: #F4F6EC;
}
.table-container-wrap .table-wrapper table tbody tr:last-child {
  border-bottom: 0;
}
.table-container-wrap .table-wrapper table tbody tr td {
  padding: 16px 14px;
  vertical-align: middle;
  font-size: 14px;
  line-height: 16px;
  color: rgba(17, 17, 17, 0.6);
  font-weight: 400;
  border: none;
}
.table-container-wrap .table-wrapper table tbody tr td[contenteditable=true] {
  background-color: transparent;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  outline: none;
}
.table-container-wrap .table-wrapper table tbody tr td[contenteditable=true]:focus {
  background-color: rgba(17, 17, 17, 0.1);
}
.table-container-wrap .table-wrapper table .text-center {
  text-align: center;
}
.table-container-wrap .table-wrapper table .action-btn {
  border: none;
  outline: none;
  box-shadow: none;
  text-decoration: none;
}
.table-container-wrap .table-wrapper table .action-btn:focus, .table-container-wrap .table-wrapper table .action-btn:hover {
  border: none;
  outline: none;
  box-shadow: none;
}
.table-container-wrap .table-wrapper table .action-btn {
  background-color: transparent;
}
.table-container-wrap .table-wrapper table .more-dropdown-menu {
  background: linear-gradient(0deg, #FFFFFF, #FFFFFF), linear-gradient(0deg, #F6F6F6, #F6F6F6);
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  padding: 0;
}
.table-container-wrap .table-wrapper table .more-dropdown-menu li .more-item {
  text-decoration: none;
  outline: none;
  box-shadow: none;
}
.table-container-wrap .table-wrapper table .more-dropdown-menu li .more-item:focus, .table-container-wrap .table-wrapper table .more-dropdown-menu li .more-item:hover {
  outline: none;
  box-shadow: none;
}
.table-container-wrap .table-wrapper table .more-dropdown-menu li .more-item {
  border: none;
  background-color: transparent;
  width: 100%;
  padding: 8px;
  border-bottom: 1px solid rgba(17, 17, 17, 0.1);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 15px;
  line-height: 16px;
  color: #111111;
  font-weight: 400;
}
.table-container-wrap .table-wrapper table .more-dropdown-menu li:last-child .more-item {
  border-bottom: 0;
}

.dataTables_wrapper .table-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  padding: 20px 16px 16px;
}
@media only screen and (max-width: 767px) {
  .dataTables_wrapper .table-controls {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 12px;
  }
}
.dataTables_wrapper .table-controls:last-child {
  padding-bottom: 0;
}
.dataTables_wrapper .table-controls .dataTables_info, .dataTables_wrapper .table-controls .dataTables_paginate {
  float: none;
  padding: 0;
  margin: 0;
}
.dataTables_wrapper .table-controls .dataTables_info {
  font-size: 14px;
  line-height: 16px;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
  color: rgba(17, 17, 17, 0.6);
}
.dataTables_wrapper .table-controls .dataTables_paginate {
  display: flex;
  align-items: center;
  gap: 8px;
}
.dataTables_wrapper .table-controls .dataTables_paginate .paginate_button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 32px;
  min-width: 32px;
  height: 32px;
  min-height: 32px;
  padding: 0;
  margin: 0;
  text-decoration: none;
  outline: none;
  box-shadow: none;
}
.dataTables_wrapper .table-controls .dataTables_paginate .paginate_button:focus, .dataTables_wrapper .table-controls .dataTables_paginate .paginate_button:hover {
  outline: none;
  box-shadow: none;
}
.dataTables_wrapper .table-controls .dataTables_paginate .paginate_button {
  background: rgba(17, 17, 17, 0.02) !important;
  border: 1px solid rgba(17, 17, 17, 0.1) !important;
  color: rgba(17, 17, 17, 0.6) !important;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}
.dataTables_wrapper .table-controls .dataTables_paginate span {
  display: flex;
  align-items: center;
  gap: 8px;
}
.dataTables_wrapper .table-controls .dataTables_paginate span .paginate_button {
  text-decoration: none;
  border: 1px solid #FFFFFF;
  background: #FFFFFF !important;
}
.dataTables_wrapper .table-controls .dataTables_paginate span .paginate_button.current {
  color: #D0FF00 !important;
  font-weight: 500;
  background: #111111 !important;
  border: 1px solid #111111 !important;
}

.settings-wrapper .inner-tabing-nav {
  margin-top: -20px;
  gap: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.settings-wrapper .inner-tabing-nav .nav-item {
  width: calc(33.33% - 11px);
  min-width: max-content;
}
.settings-wrapper .inner-tabing-nav .nav-item .nav-link {
  width: 100%;
}
.settings-wrapper .switch-setting {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding-bottom: 24px;
}
@media only screen and (max-width: 575px) {
  .settings-wrapper .switch-setting {
    flex-direction: column;
    align-items: flex-start;
  }
}
.settings-wrapper .switch-setting:last-child {
  padding-bottom: 0;
}
.settings-wrapper .switch-setting .setting-label {
  font-size: 16px;
  line-height: 18px;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
  color: rgba(17, 17, 17, 0.6);
}
.settings-wrapper .switch-setting strong {
  display: block;
  margin-bottom: 8px;
  font-size: 16px;
  line-height: 18px;
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  color: #111111;
}
.settings-wrapper .switch-setting strong:last-child {
  margin-bottom: 0;
}
.settings-wrapper .backup-warning strong {
  display: block;
  margin-bottom: 13px;
  font-size: 16px;
  line-height: 18px;
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  color: #111111;
}
.settings-wrapper .backup-warning strong:last-child {
  margin-bottom: 0;
}
.settings-wrapper .backup-warning .common-form {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  padding-bottom: 24px;
}
.settings-wrapper .backup-warning .select-box {
  width: 150px;
}
@media only screen and (max-width: 575px) {
  .settings-wrapper .backup-warning .select-box {
    width: 100%;
  }
}
.settings-wrapper .backup-warning .input-box {
  flex: 1;
}
@media only screen and (max-width: 575px) {
  .settings-wrapper .backup-warning .input-box {
    width: 100%;
    flex: 100%;
  }
}
.settings-wrapper .window-body {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  row-gap: 24px;
}
@media only screen and (max-width: 767px) {
  .settings-wrapper .window-body {
    row-gap: 20px;
  }
}
@media only screen and (max-width: 480px) {
  .settings-wrapper .window-body {
    row-gap: 16px;
  }
}

.profile-img picture {
  width: 100px;
  min-width: 100px;
  height: 100px;
  min-height: 100px;
}
.profile-img picture img {
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  width: 100%;
  height: 100%;
}

.edit-profile-section {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 24px;
}
.edit-profile-section .upload-side {
  width: 100%;
  max-width: 350px;
}
.edit-profile-section .upload-side .upload-box {
  min-height: 220px;
}
.edit-profile-section .form-side {
  flex: 1;
}

.stats-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding-bottom: 20px;
}
@media only screen and (max-width: 1279px) {
  .stats-cards {
    gap: 12px;
  }
}
.stats-cards:last-child {
  padding-bottom: 0;
}
.stats-cards .stat-card {
  background: #FFFFFF;
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  padding: 16px;
  position: relative;
}
@media only screen and (max-width: 1279px) {
  .stats-cards .stat-card {
    padding: 12px;
  }
}
.stats-cards .stat-card .stat-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.stats-cards .stat-card .stat-top .stat-card-title {
  font-size: 32px;
  line-height: 34px;
  font-weight: 400;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #111111;
}
@media only screen and (max-width: 1279px) {
  .stats-cards .stat-card .stat-top .stat-card-title {
    font-size: 28px;
    line-height: 30px;
  }
}
@media only screen and (max-width: 991px) {
  .stats-cards .stat-card .stat-top .stat-card-title {
    font-size: 26px;
    line-height: 28px;
  }
}
@media only screen and (max-width: 767px) {
  .stats-cards .stat-card .stat-top .stat-card-title {
    font-size: 24px;
    line-height: 26px;
  }
}
@media only screen and (max-width: 480px) {
  .stats-cards .stat-card .stat-top .stat-card-title {
    font-size: 22px;
    line-height: 24px;
  }
}
.stats-cards .stat-card .stat-top .stat-badge {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  line-height: 16px;
  padding: 4px;
  font-weight: 400;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #111111;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}
.stats-cards .stat-card .stat-top .stat-badge.up {
  background: #e3fce9;
}
.stats-cards .stat-card .stat-top .stat-badge.down {
  background: #fde6e6;
}
.stats-cards .stat-card .stat-buttom {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  gap: 12px;
  font-size: 18px;
  line-height: 20px;
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  color: rgba(17, 17, 17, 0.6);
}
@media only screen and (max-width: 1279px) {
  .stats-cards .stat-card .stat-buttom {
    gap: 6px;
    padding-top: 20px;
    font-size: 16px;
    line-height: 18px;
  }
}
@media only screen and (max-width: 991px) {
  .stats-cards .stat-card .stat-buttom {
    padding-top: 16px;
  }
}
@media only screen and (max-width: 767px) {
  .stats-cards .stat-card .stat-buttom {
    padding-top: 12px;
  }
}
@media only screen and (max-width: 480px) {
  .stats-cards .stat-card .stat-buttom {
    font-size: 15px;
    line-height: 17px;
  }
}

.stats-cards .stat-card .stat-buttom .stat-icon {
    width: 20px;
    height: 20px;
}

.stats-cards-2 .stat-card {
    width: calc(50% - 8px);
}

@media only screen and (max-width: 1279px) {
    .stats-cards-2 .stat-card {
        width: calc(50% - 6px);
    }
}

@media only screen and (max-width: 480px) {
    .stats-cards-2 .stat-card {
        width: 100%;
    }
}

.stats-cards-3 .stat-card {
  width: calc(33.33% - 11px);
}
@media only screen and (max-width: 1279px) {
  .stats-cards-3 .stat-card {
    width: calc(33.33% - 8px);
  }
}
@media only screen and (max-width: 767px) {
  .stats-cards-3 .stat-card {
    width: calc(50% - 6px);
  }
}
@media only screen and (max-width: 480px) {
  .stats-cards-3 .stat-card {
    width: 100%;
  }
}

.stats-cards-4 .stat-card {
    width: calc(25% - 12px);
}

@media only screen and (max-width: 1279px) {
    .stats-cards-4 .stat-card {
        width: calc(25% - 9px);
    }
}

@media only screen and (max-width: 1199px) {
    .stats-cards-4 .stat-card {
        width: calc(33.33% - 8px);
    }
}

@media only screen and (max-width: 767px) {
    .stats-cards-4 .stat-card {
        width: calc(50% - 6px);
    }
}

@media only screen and (max-width: 480px) {
    .stats-cards-4 .stat-card {
        width: 100%;
    }
}

.stats-cards-5 .stat-card {
    width: calc(20% - 13px);
}

@media only screen and (max-width: 1279px) {
    .stats-cards-5 .stat-card {
        width: calc(33.33% - 8px);
    }
}

@media only screen and (max-width: 767px) {
    .stats-cards-5 .stat-card {
        width: calc(50% - 6px);
    }
}

@media only screen and (max-width: 480px) {
    .stats-cards-5 .stat-card {
        width: 100%;
    }
}

.filter-bar-wrapper {
  max-width: 400px;
  width: 100%;
  min-height: 100vh;
  height: 100%;
  overflow: auto;
  background-color: #FFFFFF;
  position: fixed;
  top: 0;
  right: -450px;
  z-index: 999;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 991px) {
  .filter-bar-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
}
.filter-bar-wrapper .filter-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 99;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 24px;
  background: linear-gradient(0deg, #F4F6EC, #F4F6EC), linear-gradient(0deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.2));
  border-bottom: 1px solid rgba(17, 17, 17, 0.1);
}
@media only screen and (max-width: 991px) {
  .filter-bar-wrapper .filter-header {
    padding: 20px;
  }
}
@media only screen and (max-width: 480px) {
  .filter-bar-wrapper .filter-header {
    padding: 16px;
  }
}
.filter-bar-wrapper .filter-header .filter-close {
  cursor: pointer;
  display: inline-block;
  background-color: transparent;
  box-shadow: inherit;
  width: 24px;
  height: 24px;
  border-radius: 20px;
  border: none;
  outline: none;
  transition: all 0.3s ease 0s;
  -webkit-transition: all 0.3s ease 0s;
  position: relative;
  box-shadow: none;
}
.filter-bar-wrapper .filter-header .filter-close::before, .filter-bar-wrapper .filter-header .filter-close::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  left: 0;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transition: all 0.3s ease 0s;
  -webkit-transition: all 0.3s ease 0s;
  background: #111111;
}
.filter-bar-wrapper .filter-header .filter-close::before {
  width: 18px;
  height: 2px;
}
.filter-bar-wrapper .filter-header .filter-close::after {
  width: 2px;
  height: 18px;
}
.filter-bar-wrapper .filter-body {
  overflow: auto;
  flex: 1;
}
.filter-bar-wrapper .filter-body::-webkit-scrollbar {
  width: 6px;
}
.filter-bar-wrapper .filter-body::-webkit-scrollbar:horizontal {
  height: 6px;
}
.filter-bar-wrapper .filter-body::-webkit-scrollbar-thumb {
  background-color: rgba(17, 17, 17, 0.5);
  border-radius: 4px;
}
.filter-bar-wrapper .filter-body::-webkit-scrollbar-track {
  background-color: transparent;
}
.filter-bar-wrapper .filter-body {
  padding: 24px 24px 0;
}
@media only screen and (max-width: 991px) {
  .filter-bar-wrapper .filter-body {
    padding: 20px 20px 0;
  }
}
@media only screen and (max-width: 480px) {
  .filter-bar-wrapper .filter-body {
    padding: 16px 16px 0;
  }
}
.filter-bar-wrapper .filter-footer {
  margin-top: auto;
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 24px;
}
@media only screen and (max-width: 991px) {
  .filter-bar-wrapper .filter-footer {
    padding: 20px;
    gap: 20px;
  }
}
@media only screen and (max-width: 480px) {
  .filter-bar-wrapper .filter-footer {
    padding: 16px;
    gap: 16px;
  }
}
.filter-bar-wrapper .filter-footer .common-btn {
  width: calc(50% - 12px);
}
@media only screen and (max-width: 991px) {
  .filter-bar-wrapper .filter-footer .common-btn {
    width: calc(50% - 10px);
  }
}
@media only screen and (max-width: 480px) {
  .filter-bar-wrapper .filter-footer .common-btn {
    width: calc(50% - 8px);
  }
}

.filter-sidebar-open {
  position: relative;
  overflow: hidden;
}
.filter-sidebar-open::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.55);
  z-index: 999;
}
.filter-sidebar-open .filter-bar-wrapper {
  right: 0;
}

.device-details-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.device-details-wrap .device-left {
  max-width: 300px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media only screen and (max-width: 767px) {
  .device-details-wrap .device-left {
    max-width: 100%;
    flex-direction: row;
  }
}
@media only screen and (max-width: 480px) {
  .device-details-wrap .device-left {
    flex-direction: column;
  }
}
.device-details-wrap .device-left .view-detail-box {
  margin-bottom: 0;
}
@media only screen and (max-width: 767px) {
  .device-details-wrap .device-left .view-detail-box {
    max-width: 300px;
    width: 100%;
  }
}
@media only screen and (max-width: 480px) {
  .device-details-wrap .device-left .view-detail-box {
    max-width: 100%;
    text-align: center;
  }
}
.device-details-wrap .device-left .device-img img {
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}
.device-details-wrap .device-left .device-qr .qr-inner {
  padding: 9px;
  width: 100%;
  text-align: center;
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 14px;
  -webkit-border-radius: 14px;
  -moz-border-radius: 14px;
  -ms-border-radius: 14px;
  -o-border-radius: 14px;
}
.device-details-wrap .device-left .device-qr .qr-inner img {
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}
.device-details-wrap .device-left .device-qr .qr-inner .device-name {
  display: block;
  font-size: 14px;
  line-height: 16px;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-weight: 500;
  color: #111111;
  margin-top: 4px;
}
.device-details-wrap .device-left .device-qr .common-btn {
  width: 100%;
  margin-top: 12px;
}
.device-details-wrap .device-details {
  flex: 1;
}
@media only screen and (max-width: 767px) {
  .device-details-wrap .device-details {
    flex: 100%;
    width: 100%;
  }
}
.device-details-wrap .device-details .grid > div {
  width: calc(50% - 12px);
}
@media only screen and (max-width: 1279px) {
  .device-details-wrap .device-details .grid > div {
    width: calc(50% - 10px);
  }
}
@media only screen and (max-width: 991px) {
  .device-details-wrap .device-details .grid > div {
    width: calc(50% - 8px);
  }
}
@media only screen and (max-width: 480px) {
  .device-details-wrap .device-details .grid > div {
    width: calc(100% - 0px);
  }
}

.test-list {
  width: 100%;
  background-color: #FFFFFF;
  overflow: hidden;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  margin-bottom: 20px;
}
.test-list:last-child {
  margin-bottom: 0;
}

.test-list-row {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 16px;
  border-bottom: 1px solid rgba(17, 17, 17, 0.1);
  padding: 16px;
}
.test-list-row:last-child {
  border-bottom: none;
}
@media only screen and (max-width: 480px) {
  .test-list-row {
    flex-direction: column;
    gap: 10px;
  }
}
.test-list-row .row-right {
  flex: 1;
  display: flex;
  gap: 16px;
}
.test-list-row .row-right .test-info {
  flex: 1;
  font-size: 16px;
  line-height: 18px;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
  color: rgba(17, 17, 17, 0.6);
}
.test-list-row .row-right .test-info .test-title {
  font-size: 16px;
  line-height: 18px;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
  color: #111111;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.test-list-row .row-right .test-info .test-title .health-pr {
  font-size: 16px;
  line-height: 18px;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-weight: 500;
  color: #111111;
  margin-left: auto;
}
.test-list-row .row-right .test-info .test-title i {
  font-style: normal;
  font-size: 12px;
  line-height: 13px;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
  color: rgba(17, 17, 17, 0.6);
}
.test-list-row .common-btn {
  margin-left: auto;
  min-width: 88px;
  padding: 10px 11px;
}

.health-list {
  display: flex;
  flex-wrap: wrap;
}
.health-list > div {
  width: 50%;
}
@media only screen and (max-width: 767px) {
  .health-list > div {
    width: 100%;
  }
}
.health-list .test-list-row:nth-last-child(2) {
  border-bottom: none;
}

/*# sourceMappingURL=style.css.map */

/* New CSS start here .Net */
.show-tick .dropdown-menu .no-results {
    word-wrap: break-word;
    white-space: break-spaces;
    padding: 7px;
}

.dataTables_wrapper .dataTables_info {
    padding: 15px;
}

.dataTables_paginate.paging_simple_numbers {
    padding: 9px;
}

.mt-auto-cls {
    margin-top: auto;
}

.common-auth-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.checkingandforgotcls {
    display: flex;
    gap: 4px;
    align-items: center;
}

.common-auth-flex .commonbacklogincls {
        background: #D0FF001A !important;
        border-color: #D0FF001A !important;
        color: #fff !important;
}

.checkingandforgotcls .form-check-label {
    color: #fff;
    font-size: 13px;
    font-weight: 400;
    margin-bottom: 0px;
    line-height: 17px;
    margin-top: 4px;
}

.newtmpauthcls {
    justify-content: flex-end;
    margin-top: -28px;
}

.commoncheckremove .dropdown .dropdown-menu .inner li .check-mark {
    display: none !important;
}

.commoncheckremove .dropdown .dropdown-menu .inner li .dropdown-item {
    padding-left: 10px;
}

.checkingandforgotcls .form-check-input:checked {
    background-color: #d0ff00;
    border-color: #d0ff00;
}

.checkingandforgotcls .form-check-input:checked {
    background-color: #d0ff00;
    border-color: #d0ff00;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e");
}

@media only screen and (max-width: 1024px) {
    .common-auth-flex {
        flex-wrap: wrap;
    }
}

/* New CSS over here .Net */
.input-phone {
    position: relative;
}

    .input-phone .input-phone-code {
        position: absolute;
        left: 0;
        top: 0;
        width: 60px;
        border-top-right-radius: 0 !important;
        border-bottom-right-radius: 0 !important;
    }

    .input-phone .phone-field {
        padding-left: 70px !important;
    }


/*Dashboard new design*/
.activity-log-list .activity-log-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 14px;
    font-size: 14px;
    line-height: 16px;
    font-family: "Helvetica Neue", Arial, sans-serif;
    font-weight: 400;
    color: rgba(var(--secondary-rgb), 0.6);
    padding: 16px 0;
}

@media only screen and (max-width: 767px) {
    .activity-log-list .activity-log-item {
        padding: 8px 0;
        flex-wrap: wrap;
        gap: 8px;
    }
}

.activity-log-list .activity-log-item:first-child {
    padding-top: 0;
}

.activity-log-list .activity-log-item:last-child {
    padding-bottom: 0;
}

.activity-log-list .activity-log-item h3 {
    font-size: 16px;
    line-height: 20px;
    font-family: "Manrope", sans-serif;
    font-weight: 500;
    color: var(--secondary);
    margin-bottom: 8px;
}

.activity-log-list .activity-log-item .log-detail {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px 16px;
}

    .activity-log-list .activity-log-item .log-detail picture {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 38px;
        width: 38px;
        min-width: 38px;
        border-radius: 8px;
        background-color: rgba(var(--secondary-rgb), 0.02);
        border: 1px solid rgba(var(--secondary-rgb), 0.1);
    }

        .activity-log-list .activity-log-item .log-detail picture img {
            height: 20px;
            width: 20px;
        }

    .activity-log-list .activity-log-item .log-detail p {
        width: 100%;
    }

.common-white-box-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

    .common-white-box-wrap .common-white-box {
        width: calc(50% - 7px);
    }

@media (max-width: 1199px) {
    .common-white-box-wrap .common-white-box {
        width: 100%;
    }
}

.common-white-box-wrap .common-white-box:last-child {
    margin-bottom: 20px;
}

.common-white-box-wrap .common-white-box-left {
    width: calc(66% - 7px);
}

@media (max-width: 1199px) {
    .common-white-box-wrap .common-white-box-left {
        width: 100%;
    }
}

.common-white-box-wrap .common-white-box-left .common-white-box {
    width: 100%;
}

.common-white-box-wrap .common-white-box-left .select-device-type {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 14px;
    white-space: nowrap;
}

    .common-white-box-wrap .common-white-box-left .select-device-type .custom-input-btn {
        flex: 1;
    }

.common-white-box-wrap .common-white-box-right {
    width: calc(34% - 7px);
}

@media (max-width: 1199px) {
    .common-white-box-wrap .common-white-box-right {
        width: 100%;
    }
}

.common-white-box-wrap .common-white-box-right .common-white-box {
    width: 100%;
}

.common-white-box-wrap .common-white-box-right .common-white-box-wrap {
    position: sticky;
    top: 80px;
}

.price-breakdown-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

    .price-breakdown-wrap .breakdown-title {
        font-size: 14px;
        line-height: 16px;
        font-family: "Helvetica Neue", Arial, sans-serif;
        font-weight: 400;
        color: rgba(var(--secondary-rgb), 0.6);
        width: 100%;
    }

    .price-breakdown-wrap .price-breakdown-value {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        width: 100%;
        gap: 10px;
        padding-bottom: 14px;
        margin-bottom: 7px;
        border-bottom: 1px solid rgba(var(--secondary-rgb), 0.1);
    }

        .price-breakdown-wrap .price-breakdown-value:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }

        .price-breakdown-wrap .price-breakdown-value p {
            width: calc(50% - 5px);
            font-size: 14px;
            line-height: 112%;
            font-weight: 400;
            color: rgba(var(--secondary-rgb), 0.7);
        }

            .price-breakdown-wrap .price-breakdown-value p strong {
                font-size: 16px;
                font-weight: 400;
                color: var(--secondary);
            }

@media (max-width: 1279px) {
    .price-breakdown-wrap .price-breakdown-value p strong {
        font-size: 14px;
    }
}

.price-breakdown-wrap .price-breakdown-value span {
    width: calc(50% - 5px);
    font-size: 14px;
    line-height: 112%;
    font-weight: 500;
    color: var(--secondary);
    text-align: right;
}

.price-breakdown-wrap .price-breakdown-value h6 {
    width: calc(50% - 5px);
    font-size: 18px;
    line-height: 112%;
    font-weight: 600;
    color: var(--secondary);
    font-family: "Manrope", sans-serif;
}

@media (max-width: 1199px) {
    .price-breakdown-wrap .price-breakdown-value h6 {
        font-size: 16px;
    }
}

.price-breakdown-wrap .price-breakdown-value h6:last-child {
    text-align: right;
}

.price-breakdown-wrap .price-breakdown-value.vendor-info {
    gap: 25px 12px;
}

    .price-breakdown-wrap .price-breakdown-value.vendor-info span {
        width: calc(68% - 6px);
        word-break: break-all;
    }

    .price-breakdown-wrap .price-breakdown-value.vendor-info p {
        width: calc(32% - 6px);
    }

.chart-white-box .box-head {
    border-bottom: none;
    padding-bottom: 10px;
}

    .chart-white-box .box-head .chart-le-wrap {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        gap: 40px;
    }

        .chart-white-box .box-head .chart-le-wrap .chart-legend {
            width: auto;
        }

    .chart-white-box .box-head .chart-legend {
        display: flex;
        gap: 8px;
        width: 100%;
        font-size: 14px;
        line-height: 16px;
        font-family: "Helvetica Neue", Arial, sans-serif;
        font-weight: 400;
        color: rgba(var(--secondary-rgb), 0.6);
    }

        .chart-white-box .box-head .chart-legend .legend-icon {
            display: block;
            height: 12px;
            width: 12px;
            min-width: 12px;
            background-color: var(--soft-lime);
        }

        .chart-white-box .box-head .chart-legend .general-icon,
        .chart-white-box .box-head .chart-legend .per-count-icon {
            display: block;
            height: 12px;
            width: 12px;
            min-width: 12px;
            background-color: var(--lime-yellow);
        }

.chart-white-box .box-body .chart-wrapper {
    min-height: 270px;
    position: relative;
}

.chart-white-box .primary-btn:hover img {
    filter: brightness(0);
}
#toast-container > div {
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
    gap: 8px;
    justify-content: flex-end;
}
#toast-container .toast-close-button {
    margin-top: -4px;
    position: unset;
    float: none;
    line-height: 18px;
    margin-left: auto;
}

.dropdown.bootstrap-select > .dropdown-menu ul li a {
    line-height: 16px;
}

.datetime-wrapper {
    position: relative;
}

.datetime-wrapper input {
        padding-right: 40px;
}

.icons-common {
    position: absolute;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    right: 15px;
}