/*
 * It is advised not to edit the smartadmin_production.css
 * as this will override any changes you make in the 
 * later versions of this theme. 
 * 
 * We advise that you use use this CSS to override 
 * SmartAdmin styles. 
 * 
 * Rename the stylesheet to whatever your liking so it will stay
 * unique to you with each update of SmartAdmin.
 */

/*
 * INDEX
 * 
 * - HTML
 * - BODY
 * - CUSTOM STYLES
 */

@font-face {
  font-family: "SanFranciscoLight";
  src: url("../fonts/SF-UI-Display-Light.ttf");
  src: url("../fonts/SF-UI-Display-Light.eot") format("embedded-opentype"),
    url("../fonts/SF-UI-Display-Light.woff") format("woff"), url("../fonts/SF-UI-Display-Light.ttf") format("truetype"),
    url("../fonts/SF-UI-Display-Light.svg#SFUIDisplay-Light") format("svg");
  font-weight: normal;
  font-style: normal;
}

body {
  font-family: "SanFranciscoLight" !important;
}

/*spinner___________________________________________*/

.app {
  align-items: center;
  display: flex;
  /* height: 100vh; */
  justify-content: center;
  width: 100vw;
}

.app .loading-linear {
  background: #2196f375;
  height: 4px;
  position: relative;
  width: 100vw;
}

.app .loading-linear .loading-linear__alpha,
.app .loading-linear .loading-linear__beta {
  background: #2196f3;
  height: 100%;
  left: 0;
  max-width: 0;
  position: absolute;
  top: 0;
  width: 100%;
  will-change: max-width, left;
}

.app .loading-linear .loading-linear__alpha {
  animation: loading-linear__alpha 2s linear infinite;
}

.app .loading-linear .loading-linear__beta {
  animation: loading-linear__beta 2s linear infinite;
}

@-webkit-keyframes loading-linear__alpha {
  55% {
    max-width: 35%;
  }

  85% {
    left: 100%;
    max-width: 0;
  }
}

@-moz-keyframes loading-linear__alpha {
  55% {
    max-width: 35%;
  }

  85% {
    left: 100%;
    max-width: 0;
  }
}

@-o-keyframes loading-linear__alpha {
  55% {
    max-width: 35%;
  }

  85% {
    left: 100%;
    max-width: 0;
  }
}

@keyframes loading-linear__alpha {
  55% {
    max-width: 35%;
  }

  85% {
    left: 100%;
    max-width: 0;
  }
}

@-webkit-keyframes loading-linear__beta {
  60% {
    left: 0;
    max-width: 0;
  }

  75% {
    left: 0;
    max-width: 35%;
  }

  100% {
    left: 100%;
    max-width: 0;
  }
}

@-moz-keyframes loading-linear__beta {
  60% {
    left: 0;
    max-width: 0;
  }

  75% {
    left: 0;
    max-width: 35%;
  }

  100% {
    left: 100%;
    max-width: 0;
  }
}

@-o-keyframes loading-linear__beta {
  60% {
    left: 0;
    max-width: 0;
  }

  75% {
    left: 0;
    max-width: 35%;
  }

  100% {
    left: 100%;
    max-width: 0;
  }
}

@keyframes loading-linear__beta {
  60% {
    left: 0;
    max-width: 0;
  }

  75% {
    left: 0;
    max-width: 35%;
  }

  100% {
    left: 100%;
    max-width: 0;
  }
}

#widget-grid {
  margin-top: 20px;
}

.logo-head {
  height: 3rem !important;
  width: 3rem !important;
}

.h-26vw {
  min-height: 26vw;
}

.h-12rem {
  height: 12rem;
}

.h-14rem {
  height: 14rem;
}

.h-4vw {
  height: 4vw;
}

.h-3vw {
  height: 3vw;
}

.h-2-5vw {
  height: 2.5vw;
}

.h-2rem {
  height: 2rem;
}

.customStyle {
  width: 12rem;
  float: right;
  margin: 2px;
}

.customWidth {
  width: 46%;
}

.color-white {
  color: white;
}

.customPadding {
  padding-left: 12px;
}

.customLabel {
  font-weight: normal;
}

.customColumn {
  width: 30%;
  background-color: whitesmoke;
}

.customMargin {
  margin-top: 30px;
}

.spinner {
  width: 35px;
  height: 35px;
  position: relative;
  margin: 0 auto;
}

.switchInfo {
  font-size: 1.2rem;
  margin-bottom: 5rem;
  margin-left: 26rem;
  text-align: center;
  margin-top: -4rem;
}

.double-bounce1,
.double-bounce2 {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #3b9ff3;
  opacity: 0.6;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-animation: sk-bounce 2s infinite ease-in-out;
  animation: sk-bounce 2s infinite ease-in-out;
}

.double-bounce2 {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}

input::-webkit-input-placeholder {
  color: #9b9b9b !important;
  font-style: italic;
  font-weight: normal !important;
}

@-webkit-keyframes sk-bounce {
  0%,
  100% {
    -webkit-transform: scale(0);
  }

  50% {
    -webkit-transform: scale(1);
  }
}

@keyframes sk-bounce {
  0%,
  100% {
    transform: scale(0);
    -webkit-transform: scale(0);
  }

  50% {
    transform: scale(1);
    -webkit-transform: scale(1);
  }
}

.sk-cube-grid {
  width: 18px;
  height: 18px;
  margin: 2px;
}

.sk-cube-grid .sk-cube {
  width: 33%;
  height: 33%;
  background-color: #333;
  float: left;
  -webkit-animation: sk-cubeGridScaleDelay 1.3s infinite ease-in-out;
  animation: sk-cubeGridScaleDelay 1.3s infinite ease-in-out;
}

.sk-cube-grid .sk-cube1 {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

.sk-cube-grid .sk-cube2 {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}

.sk-cube-grid .sk-cube3 {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}

.sk-cube-grid .sk-cube4 {
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s;
}

.sk-cube-grid .sk-cube5 {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

.sk-cube-grid .sk-cube6 {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}

.sk-cube-grid .sk-cube7 {
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}

.sk-cube-grid .sk-cube8 {
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s;
}

.sk-cube-grid .sk-cube9 {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

@-webkit-keyframes sk-cubeGridScaleDelay {
  0%,
  70%,
  100% {
    -webkit-transform: scale3D(1, 1, 1);
    transform: scale3D(1, 1, 1);
  }

  35% {
    -webkit-transform: scale3D(0, 0, 1);
    transform: scale3D(0, 0, 1);
  }
}

@keyframes sk-cubeGridScaleDelay {
  0%,
  70%,
  100% {
    -webkit-transform: scale3D(1, 1, 1);
    transform: scale3D(1, 1, 1);
  }

  35% {
    -webkit-transform: scale3D(0, 0, 1);
    transform: scale3D(0, 0, 1);
  }
}

/*spinner ends_________________________*/

#logo-group {
  background-repeat: no-repeat;
  background-size: contain;
  margin: 0 20px;
}

.bbt-none {
  border-bottom: none !important;
}

.txt-black {
  color: black !important;
}

.txt-blue {
  color: #3276b1 !important;
}

.txt-light-blue {
  color: #3b9ff3 !important;
}

.txt-red {
  color: #a90329 !important;
}

.txt-white {
  color: white !important;
}

.txt-green {
  color: green !important;
}

.menu-on-top aside#left-panel nav > ul > li > a > i {
  display: inline-block !important;
  line-height: inherit;
  font-size: 16px;
  margin-bottom: 2px;
  width: 20px !important;
}

.menu-on-top .fa-lg {
  vertical-align: 5px !important;
}

.menu-on-top aside#left-panel nav > ul > li > a {
  height: initial !important;
}

.menu-on-top #main {
  /* margin-top: 60px!important; */
}

.btn-outline {
  background-color: transparent !important;
  transition: all 0.1s;
  background-image: none;
  text-shadow: none;
  pointer-events: none;
  border: 1px solid grey;
  padding: 2px;
}

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

.w-90 {
  width: 90% !important;
}

.w-95 {
  width: 95% !important;
}

.w-400px {
  width: 400px !important;
}

.w-20 {
  width: 20% !important;
}

.w-maxcon {
  width: max-content;
}

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

.stats-head {
  font-size: 3rem;
  color: #4d4f53;
}

.w-45 {
  width: 45% !important;
}

.w-16vw {
  width: 16vw !important;
}

.w-50px {
  width: 50px !important;
}

.cells-1-4 {
  width: 20% !important;
  margin-right: 5%;
}

.cells-1-3 {
  width: 30% !important;
  margin-right: 3%;
}

.cells-1-2 {
  width: 45% !important;
  margin-right: 5%;
}

.w-40 {
  width: 40% !important;
}

.z-ind1 {
  z-index: 1 !important;
}

.z-ind0 {
  z-index: 0 !important;
}

.w-30 {
  width: 30% !important;
}

.d-box {
  display: -webkit-box;
}

.d-flex {
  display: flex !important;
}

.display-none {
  display: none;
}

.inline-disp {
  display: inline !important;
}

.zero-auto {
  margin: 0 auto !important;
}

.float-left {
  float: left !important;
}

.float-right {
  float: right !important;
}

.modal-scroll {
  overflow: auto !important;
  height: 350px;
  border: none !important;
}

.customRow {
  margin-left: 1rem;
  margin-right: 1rem;
}

.filterIcon {
  padding: 1rem;
  padding-left: 2rem;
}

.p-0-2rem {
  padding-top: 2rem !important;
}

.p-0 {
  padding: 0 !important;
}

.p-1-5rem {
  padding: 1.5rem !important;
}

.p-2rem {
  padding-top: 2rem !important;
  padding-bottom: 2rem !important;
}

.p-0-4 {
  padding: 0.4rem !important;
}

.p-1vw {
  padding: 1vw !important;
}

.p-2vw {
  padding: 2vw !important;
}

.p-16 {
  padding: 16px !important;
}

.ml-0px {
  margin-left: 0px !important;
}

.ml-20px {
  margin-left: 20px !important;
}

.ml-5 {
  margin-left: 5%;
}

.ml-2 {
  margin-left: 2%;
}

.ml-5px {
  margin-left: 5px;
}

.ml-8rem {
  margin-left: 8rem !important;
}

@media (min-width: 767px) {
  .nav-menu-btn {
    display: none;
  }
}

.ml-1rem {
  margin-left: 1rem !important;
}

.ml-10px {
  margin-left: 10px;
}

.ml-0-5vw {
  margin-left: 0.5vw !important;
}

.clr-primary {
  color: #0275d8 !important;
}

.ml-40px {
  margin-left: 40px;
}

.mr-5 {
  margin-right: 5% !important;
}

.mr-10px {
  margin-right: 10px !important;
}

.mr-5px {
  margin-right: 5px !important;
}

.mr-0-5vw {
  margin-right: 0.5vw !important;
}

.mr-1vw {
  margin-right: 1vw !important;
}

.mr-8 {
  margin-right: 8% !important;
}

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

.pb-5vw {
  padding-bottom: 5vw !important;
}

.pb-3vw {
  padding-bottom: 3vw !important;
}

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

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

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

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

.fullscreen-mode-widget {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
}

.pad-05 {
  padding: 0 5px !important;
}

.padding-top-2rem {
  padding-top: 2rem !important;
  min-height: 0px !important;
}

.pr-1vw {
  padding-right: 1vw !important;
}

.btn-none {
  background: transparent !important;
  background-color: transparent !important;
  border: none !important;
}

.itm-select {
  border: 1px solid #9e9e9e;
  list-style-type: none;
  height: 25px;
  line-height: 25px;
  text-indent: 5px;
}

.itm-trash {
  float: right;
  padding-right: 5px;
  line-height: 25px;
  color: #a90329;
}

.txt-right {
  text-align: right;
}

.txt-left {
  text-align: left !important;
}

.line-3vw {
  line-height: 3vw !important;
}

.btn-sadmin {
  padding: 2% !important;
  color: green;
  font-weight: bold;
  text-transform: uppercase;
  border-color: green;
}

.loader {
  position: absolute !important;
  z-index: 1;
  background: transparent;
  width: 100% !important;
  margin: 10% auto !important;
}

.section-name {
  width: 90%;
  font-size: 3rem;
}

.label {
  color: #333 !important;
}

.bg-pending {
  background: #e5e5e5;
  color: #818181;
}

.bg-cancelled {
  background: #e5e5e5;
  color: #818181;
}

.bg-failed {
  background: #f79fa1;
  color: #94272b;
}

.bg-processing {
  background: #bfe2c4;
  color: #5d921e;
}

.bg-completed {
  background: #c4d6e2;
  color: #3f596a;
}

.bg-transparent {
  background: transparent !important;
}

.txt-role {
  font-size: 1.3rem;
  border: 1px solid #404040;
  margin: 2px;
  background: transparent;
  color: #404040;
}

.txt-role2 {
  font-size: 1.5rem;
  margin: 1rem;
  padding: 0.6rem;
  text-transform: capitalize;
  text-align: center;
}

.on-hover-role:hover {
  background: rgba(194, 1, 1, 0.692);
  color: #fff;
}

.on-hover-role:hover span {
  display: none;
}

.on-hover-role:hover:before {
  content: "Revoke?";
}

.btn-trans {
  background: transparent !important;
}

.btn-trans:hover,
.btn-trans:focus {
  color: white !important;
}

.d-inline {
  display: inline !important;
}

.cursor-select {
  cursor: pointer;
}

.cursor-not-allowed {
  cursor: not-allowed;
}

.z-9999 {
  z-index: 9999 !important;
}

.edit-modal {
  position: absolute;
  z-index: 99;
  top: 15%;
  right: 28%;
  left: 0;
  overflow-y: auto;
}

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

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

.w-100 {
  width: 100%;
}

.w-75 {
  width: 75%;
}

.mt-1-3vw {
  margin-top: 1.3vw;
}

.mt-1vw {
  margin-top: 1vw;
}

.mt-3vw {
  margin-top: 3vw;
}

.mt-5vw {
  margin-top: 5vw;
}

.mt-2vw {
  margin-top: 2vw;
}

.mt-2rem {
  margin-top: 2rem;
}

.mt-4rem {
  margin-top: 4rem;
}

.marginTop-4rem {
  margin-top: -4rem !important;
}

.marginRight-34rem {
  margin-right: -34rem !important;
}

.marginRight-72rem {
  margin-right: -72rem !important;
}

input:disabled {
  opacity: 0.8;
}

input:disabled:hover {
  cursor: not-allowed;
}

textarea:disabled:hover {
  cursor: not-allowed;
}

.font-bold {
  font-weight: bold;
}

.font-black {
  color: #000 !important;
  letter-spacing: 0.02rem !important;
}

.font-1rem {
  font-size: 1rem !important;
}

.font-1-2rem {
  font-size: 1.2rem !important;
}

.font-1-5rem {
  font-size: 1.5rem !important;
}

.font-1-7rem {
  font-size: 1.7rem !important;
}

.font-1-9rem {
  font-size: 1.9rem !important;
}

.font-2rem {
  font-size: 2rem !important;
}

.font-2-5rem {
  font-size: 2.5rem !important;
}

.font-3rem {
  font-size: 3rem !important;
}

.font-4rem {
  font-size: 4rem;
}

.font-6rem {
  font-size: 6rem;
}

.customFilter {
  float: right !important;
  font-size: xx-large !important;
}

.filterAlignment {
  position: absolute !important;
  top: 1rem !important;
  left: 1rem !important;
  color: white !important;
}

.customFont {
  size: 1.5rem !important;
  text-align: justify !important;
}

.dateCustomInput {
  margin: 1.4rem !important;
  border-radius: 0.3rem !important;
  color: black !important;
  text-align: center !important;
  height: 2.4rem !important;
}

.dateLableColor {
  color: white !important;
}

.font-color-black {
  color: black !important;
}

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

.chartFilterIcon {
  float: right !important;
  color: #dcac39eb !important;
  font-size: 4.5rem !important;
}

.chartCard {
  border: rgba(49, 45, 56, 1);
  border-width: thin;
  border-style: solid;
  padding: 1.2rem;
  background: rgba(49, 45, 56, 1);
  border-radius: 0.7rem;
  color: white;
}

.chartHeading {
  margin-left: 2rem;
  font-size: 18px;
}

.chartDiv {
  position: relative;
  margin-bottom: 2rem;
}

.chartIcon {
  position: absolute;
  right: 0rem;
  top: 0rem;
  opacity: 0.1;
  font-size: 5rem;
}

.chartBoxDesignGreen {
  position: absolute;
  height: 3rem;
  top: 0;
  left: -1.23rem;
  background: rgba(205, 220, 51, 1);
  width: 0.4rem;
}

.chartBoxDesignYellow {
  position: absolute;
  height: 3rem;
  top: 0;
  left: -1.23rem;
  background: rgba(252, 230, 109, 1);
  width: 0.4rem;
}

.chartBoxDesignOrange {
  position: absolute;
  height: 3rem;
  top: 0;
  left: -1.23rem;
  background: #ff9800;
  width: 0.4rem;
}

.analytics-filter-button {
  background: #ff9800 !important;
  border-radius: 2rem !important;
  border: none !important;
  height: 3.5rem !important;
  transition: all ease 0.5s !important;
}

.filterButtonAlignment {
  margin-bottom: 0.7rem !important;
  right: 4rem !important;
  top: -0.3rem !important;
}

.txt-yellow {
  color: #fce66d !important;
}

.-pageJump > input {
  background: transparent !important;
}

.label-dark {
  display: block;
  margin-bottom: 6px;
  line-height: 19px;
  font-weight: 400;
  font-size: 13px;
  color: #fff;
  text-align: left;
  white-space: normal;
}

.select-dark {
  background: #312d38 !important;
  color: white !important;
}

.chartBoxDesignNeon {
  position: absolute;
  height: 3rem;
  top: 0;
  left: -1.23rem;
  background: rgba(78, 230, 109, 1);
  width: 0.4rem;
}

.ticketBoxWidth {
  width: 60%;
}

.listType {
  height: 500px;
  overflow: auto;
}

.nullCount {
  color: rgba(205, 220, 51, 1);
}

.chatFooter {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  background: rgba(248, 248, 248, 0.9);
  position: relative;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

.liMessage {
  font-size: 1.4rem;
  padding: 1.5rem;
  text-align: justify;
  width: 70%;
  height: auto;
  border-radius: 0rem 1rem 1rem 1rem;
  position: relative;
  margin-top: 2rem;
}

.customTextArea {
  overflow: auto;
  width: 100%;
  height: 100px;
}

.customTime {
  text-align: right;
  font-size: 1.1rem;
  width: 100%;
  opacity: 0.8;
  margin-top: 1rem;
}

.user-chat-avtar {
  position: absolute;
  top: -1.5rem;
  left: 0.5rem;
}

.myButton {
  background: #3276b1;
  color: whitesmoke;
  height: 40px;
  width: 70px;
  float: right;
  font-family: monospace;
  margin: 5px;
}

.iconBellColor {
  color: red;
}

.unreadText {
  margin: 2rem;
  color: lightgrey;
}

.kiot-chat-avtar {
  height: 1.5rem;
  margin-right: 0.5rem;
}

.kiot-chat-avtar-container {
  position: absolute;
  top: -2rem;
  left: 0rem;
  color: black;
}

.cright {
  margin-left: 27%;
  background: grey;
  color: whitesmoke;
}

.cleft {
  background: lightgray;
  color: black;
}

.full-width {
  width: 100% !important;
}

.on-hover-role:hover {
  cursor: pointer;
  content: "Delete";
}

.react-autosuggest__suggestions-list li {
  list-style-type: none;
  text-indent: 10px;
}

.auto-sug {
  line-height: 2.5 !important;
}

.auto-sug:hover {
  background: #5d98cc;
  color: #fff;
}

.btn-padding {
  padding: 6px 12px !important;
}

.btn-custom {
  margin: 0 8px;
}

.btn-none:active {
  color: white !important;
}

.full-mode {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  height: 100%;
}

.right-abs-btn {
  position: absolute !important;
  top: 0vw;
  width: 150px;
  right: 0vw !important;
}

.right-abs-btn:active {
  position: absolute !important;
  top: 0vw;
  width: 150px;
  right: 0vw !important;
}

.invoice-frame {
  height: 0px;
  width: 0px;
  position: absolute;
}

.bdr-000 {
  border: 1px solid #000 !important;
}

.bdr-eee {
  border: 1px solid #eee !important;
}

.tkt-box {
  border: 2px solid #eee;
  background: #fff !important;
  margin-bottom: 28px;
}

.tkt-box-content {
  position: relative;
  margin-top: -1px;
  padding: 10px;
  background: #fff !important;
}

.tkt-delete {
  position: absolute;
  right: 3%;
  z-index: 100;
  margin: 4px;
  font-size: 1.7rem;
}

section.qafooter {
  font-weight: bold;
}

.right-0 {
  right: 0 !important;
}

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

.m-1vw {
  margin: 1vw !important;
}

.my-btn {
  margin: 1rem;
  padding: 0.7rem;
}

.sticker {
  height: 50mm;
  width: 75mm;
  margin: 6.5mm;
  font-family: arial;
}

/*.m-tl{
  margin: 10px 100px !important;
}*/

@media print {
  /* @page sticker{
    size: 75mm 50mm;
  } */
  /* @page {
    size: 50mm 75mm;
  } */
  .sticker-form{
    display: none;
  }
  /* .sticker{
    page-break-after: always;
  }
  .box{
    page-break-after: always;
  }
  .warranty{
    page-break-after: always;
  } */
  /* .sticker {
    height: 50mm;
    width: 75mm;
    margin: 0;
    font-family: arial;
  } */
  .col-sm-1,
  .col-sm-2,
  .col-sm-3,
  .col-sm-4,
  .col-sm-5,
  .col-sm-6,
  .col-sm-7,
  .col-sm-8,
  .col-sm-9,
  .col-sm-10,
  .col-sm-11,
  .col-sm-12 {
    float: left;
  }

  .col-sm-12 {
    width: 100%;
  }

  .col-sm-11 {
    width: 91.66666666666666%;
  }

  .col-sm-10 {
    width: 83.33333333333334%;
  }

  .col-sm-9 {
    width: 75%;
  }

  .col-sm-8 {
    width: 66.66666666666666%;
  }

  .col-sm-7 {
    width: 58.333333333333336%;
  }

  .col-sm-6 {
    width: 50%;
  }

  .col-sm-5 {
    width: 41.66666666666667%;
  }

  .col-sm-4 {
    width: 33.33333333333333%;
  }

  .col-sm-3 {
    width: 25%;
  }

  .col-sm-2 {
    width: 16.666666666666664%;
  }

  .col-sm-1 {
    width: 8.333333333333332%;
  }
}

.today-piece {
  border-radius: 0.25rem;
  padding: 1.6rem;
  font-size: 1.25em;
  text-align: center;
  background: white;
}

.top {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.middle {
  border-radius: 0;
}

.bottom {
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}

.day,
.year {
  font-size: 0.85em;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: white;
  background: steelblue;
}

.month {
  padding-top: 1.75rem;
  padding-bottom: 0;
  font-size: 1.5em;
  font-weight: 200;
}

.date {
  padding-top: 0;
  padding-bottom: 1.75rem;
  font-size: 3em;
  font-weight: 100;
}

.canvas1 {
  width: 326px !important;
  height: 240px !important;
}

.bom,
.bom-data {
  border: 1px solid black;
}

.bom {
  border-collapse: collapse;
  width: 100%;
}

.bom-head {
  height: 50px;
  text-align: left;
  border: 1px solid black;
}

.menu-on-top aside#left-panel nav > ul > li > a {
  line-height: 1.55em;
  display: inline-block;
}

body.smart-style-6.menu-on-top aside#left-panel nav > ul > li.active > a > span > span {
  border-bottom: 1px solid white;
  padding-bottom: 3px;
}

body {
  /* zoom: 0.85; 
  -moz-transform: scale(0.85);
  -moz-transform-origin: 0 0; */
}

#extr-page #main {
  background: #f1f1f1 !important;
}

#logo {
  margin-top: 6px !important;
}

.smart-style-1 #logo-group {
  background: transparent !important;
}

.smart-style-1 .btn-header > :first-child > a {
  background: transparent !important;
  border: none !important;
}

div.rt-td {
  align-self: center !important;
}

.search-input::placeholder {
  text-align: center;
}

.page-center {
  position: absolute;
  top: -6.9vw;
  /* height: 119px; */
  /* width: 194px; */
  border-radius: 2vw;
  /* left: 47vw; */
  /* background: rgba(0, 0, 0, 0.3); */
  /* padding-top: 1vw; */
  color: #2c3742;
  text-align: center;
}

.highlight-text {
  font-size: 2.3rem;
  color: #36aecc;
}

.appl-box {
  text-align: center;
  border: 1px solid rgba(59, 159, 243, 0.5);
  padding: 1vw;
  color: #2c3742;
  margin-bottom: 1vw;
  -moz-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.sens-box {
  text-align: center;
  border: 1px solid rgba(59, 159, 243, 0.5);
  padding: 1vw;
  color: #2c3742;
  margin: 10px;
  -moz-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.appl-box2 {
  text-align: center;
  background: rgba(59, 159, 243, 0.8) !important;
  padding: 1vw;
  color: white;
  -moz-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  float: left;
  margin: 0.6vw;
}

.appl-box:hover {
  -moz-transform: scale(1.1);
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.appl-box2:hover {
  -moz-transform: scale(1.1);
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.selected {
  background: rgba(59, 159, 243, 0.4) !important;
  border: none !important;
}

.err-details {
  padding: 2vw;
  background: #010101;
  color: #d4ed23;
  line-height: 3rem;
  font-size: 1.5rem;
}

/* .label {
    position: absolute;
    bottom: 0.4rem;
    left: 0;
    z-index: 11;
    font-size: 1.5rem;
    opacity: 0.7;
    transition: all ease 0.4s;
} */

input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
input[type="date"],
input[type="datetime-local"] {
  border-left: none !important;
  border-right: none !important;
  border-top: none !important;
  margin-bottom: 1rem !important;
}

.login-info img {
  border-left: none !important;
}

.login-info {
  display: inline-block;
}

#logo {
  margin-left: 0px !important;
}

.header-search {
  width: 31rem !important;
}

.logo-group {
  margin-right: 0 !important;
}

@media only screen and (max-width: 479px) and (min-width: 320px) {
  #logo {
    width: 147px !important;
  }
}

.app-title {
  line-height: 39px;
  color: #9cb1c7;
  font-size: 2rem;
}

/* @media (min-width: 767px) {
    #logo-group {
        position: fixed !important;
    }
} */

.header-search {
  /* left: 220px; */
}

.show-stat-microcharts > div {
  border: none !important;
}

.no-data-banner {
  position: absolute;
  top: 45%;
  left: 48%;
  font-size: 1.8rem;
  opacity: 0.5;
}

.customSelect {
  height: 2rem !important;
  padding-left: 0.9rem !important;
  width: 100%;
  border-radius: 0rem !important;
}

.customSelectLabel {
  max-width: 100%;
  margin-bottom: 5px;
  display: block !important;
}

.select2-selection__rendered {
  margin-left: 0.5rem !important;
  color: black !important;
}

.ticket-user-avatar {
  font-size: 5.5rem;
  margin-top: 1.8rem;
  margin: 1rem;
  opacity: 0.9;
  cursor: pointer;
}

.ticket-user-avatar-img {
  height: 5.5rem;
  margin-top: 1.8rem;
  margin: 1rem;
  cursor: pointer;
}

.txt-capitalize {
  text-transform: capitalize;
}

.ticket-user-name:hover {
  color: #3276b1;
  text-decoration: underline;
}

.ticket-user-name {
  transition: all ease 0.3s;
  cursor: pointer;
}

.ticket-search-label {
  width: 100%;
  padding: 0 2rem;
  height: 6rem;
}

.ticket-search-input {
  font-size: 2.2rem;
  margin: 1.5rem 0;
}

.head-device-analytics {
  margin-left: 1.8rem;
  font-size: 1.5rem;
  text-transform: uppercase;
}

/* input[type=text]:focus+.label,
input[type="email"]:focus+.label,
input[type="password"]:focus+.label {
    opacity: 1;
    bottom: 1rem;
    font-size: 1rem;
} */

/* 
.ui-autocomplete {
    height: 3rem !important;
    font-size: 1.7rem !important;
    line-height: 3rem !important;
} */

.fake-link {
  cursor: pointer !important;
  transition: all ease 0.4s;
}

.fake-link:hover {
  color: #36aecc;
}

/* SWAL STYLES  */

.swal2-title {
  left: -25% !important;
  font-size: 2.7rem !important;
}

#swal2-content {
  text-align: left !important;
  padding-left: 22% !important;
  font-size: 1.6rem !important;
}

.swal2-actions {
  justify-content: flex-end !important;
  margin: 1.25em 4rem 0 0 !important;
  font-size: 1.3rem !important;
}

.myEventButton {
  background: #3276b1;
  color: whitesmoke;
  height: 40px;
  float: right;
  margin: 5px;
}

.myEventLabel {
  display: inline;
  padding: 0.2em 0.6em 0.3em;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 0.25em;
}

.chat-textarea {
  width: 100%;
  border: 1px solid #353d4b59;
  border-radius: 1rem;
  height: 4rem;
  padding: 1rem;
}

.no-messages {
  text-align: center;
  margin-top: 50%;
  color: #adadad;
  font-size: 1.7rem;
}

.tkt-box {
  border-radius: 3rem;
  box-shadow: 0px 7px 8px -3px rgba(0, 0, 0, 0.09);
}

.tkt-box-content {
  background: transparent !important;
}

/* NEW STYLES */
.smart-style-1 .jarviswidget-color-blueDark > header {
  box-shadow: 0px 15px 16px -1px rgba(0, 0, 0, 0.52);
  border-radius: 2rem;
  margin-bottom: 0.6rem;
}

.jarviswidget > header {
  box-shadow: 0px 15px 16px -1px rgba(0, 0, 0, 0.22);
  border-radius: 2rem;
  margin-bottom: 0.2rem;
}

.clearfix,
.inner-spacer:after,
.jarviswidget,
.jarviswidget-editbox,
.jarviswidget > div {
  border-radius: 1rem;
  /* padding: 2rem; */
}

.smart-form footer {
  background: transparent !important;
}

.btn.btn-primary,
.btn.btn-success {
  border-radius: 2rem !important;
  background: #51668a;
  border: none !important;
  box-shadow: 0px 6px 8px -3px rgba(0, 0, 0, 0.52);
  height: 3.5rem !important;
  transition: all ease 0.5s !important;
}

.btn {
  padding: 6px 20px !important;
}
.inline {
  display: inline-block;
}
 .mleft {
   margin-left: 30px;
 }

.btn.btn-danger {
  border-radius: 2rem !important;
  border: none !important;
  box-shadow: 0px 6px 8px -3px rgba(0, 0, 0, 0.52);
  height: 3.5rem !important;
  transition: all ease 0.5s !important;
}

.btn.btn-resetFilters {
  border-radius: 2rem !important;
  border: none !important;
  box-shadow: 0px 6px 8px -3px rgba(0, 0, 0, 0.52);
  height: 3.5rem !important;
  transition: all ease 0.5s !important;
  color: white !important;
}

.btn.btn-resetFilters {
  background: #353d4a;
}

.fab {
  border-radius: 50%;
  height: 60px;
  width: 60px;
  font-size: 2rem;
  background: #353d4b;
  color: white;
  box-shadow: 5px 10px 18px -11px rgba(0, 0, 0, 0.92);
  border: none;
  top: 10.5rem;
  position: fixed;
  right: 3rem;
}

.btn.btn-resetFilters:hover {
  background: #353d4a;
  box-shadow: -1px 11px 13px -3px rgba(0, 0, 0, 0.52) !important;
}

.btn.btn-success {
  background: #308a1a !important;
}

.btn.btn-success:hover {
  background: #297416 !important;
}

.btn.btn-primary:hover,
.btn.btn-success:hover {
  background: #415371;
  box-shadow: -1px 11px 13px -3px rgba(0, 0, 0, 0.52) !important;
}

.ReactTable {
  border: none !important;
}
.ReactTable .rt-thead .rt-resizable-header-content{
  overflow: visible !important;
}

.ReactTable .rt-thead .rt-resizable-header:last-child{
  overflow: visible !important;
}

.fuelux .wizard {
  border-radius: 1rem !important;
}

.ReactModal__Content.ReactModal__Content--after-open {
  box-shadow: 0px 12px 16px -3px rgba(0, 0, 0, 0.47) !important;
  border: none !important;
}

select {
  height: 3.5rem !important;
  border-radius: 0.5rem !important;
  padding-left: 0.9rem !important;
}

.select > i {
  top: 14px !important;
}

.row .box {
  border-radius: 0.7rem;
  border-style: solid;
  border-width: thin;
  overflow: hidden;
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.3) !important;
  border: none !important;
  transition: all ease 0.5s;
}

.displayCounts {
  font-size: 2.6rem;
  margin-bottom: 2.5rem;
  font-weight: bolder;
  padding-left: 1rem;
  /* text-shadow: 1px 2px 2px rgba(0, 0, 0, 0.15); */
}

.displayTitle {
  font-size: 1.2rem;
  padding-left: 1rem;
  padding-top: 1.2rem;
}

.displayDetails {
  font-size: 1rem;
  padding: 0.9rem;
  text-transform: uppercase;
}

.displayBorder {
  border-top-style: solid;
  border-top-width: thin;
  border-top-color: whitesmoke;
  width: 93%;
  opacity: 0.4;
  margin-top: 1.9rem;
}

.borderAlign {
  padding-left: 1rem;
}

.iconClass {
  float: right;
  padding-right: 1.7rem;
  margin-top: -0.7rem;
  font-size: 3rem;
  text-shadow: 1px 2px 2px rgba(0, 0, 0, 0.35);
}

.iconClass2 {
  position: absolute;
  font-size: 7rem;
  opacity: 0.1;
  bottom: -0.7rem;
  left: 0.1rem;
}

.box-inner {
  transition: all ease 0.6s;
  background-size: 150% !important;
  z-index: 1;
  position: relative;
}

.box-inner::before {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(to bottom, rgba(81, 102, 138, 1) 0%, rgba(27, 31, 36, 1) 100%);
  z-index: -1;
  transition: opacity 0.5s linear;
  opacity: 0;
}

.box-inner:hover::before {
  opacity: 1;
}

.box:hover {
  box-shadow: 0px 0px 11px 5px rgba(0, 0, 0, 0.2) !important;
  transform: scale(1.06);
}

.home-box-main-container {
  background: #1b1d24;
  margin-top: -2rem;
  padding: 3rem !important;
  padding-bottom: 5rem !important;
}

.dash-head {
  font-size: 3rem;
  margin-bottom: 0rem;
  color: #fff;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 4px;
}

.dash-head-line {
  margin: 0.5rem 0rem 2rem 0;
  height: 1px;
  background: white;
}

.shimmerWrapper {
  width: 0px;
  height: 310px;
  animation: fullView 0.5s forwards cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@keyframes fullView {
  100% {
    width: 100%;
  }
}

.animate-shimmer {
  animation: shimmer 2s infinite linear;
  background: linear-gradient(to right, #eff1f3 4%, #e2e2e2 25%, #eff1f3 36%);
  background-size: 1000px 100%;
}

@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }

  100% {
    background-position: 1000px 0;
  }
}

.comment {
  height: 111%;
  background: #777;
  border-radius: 0.7rem;
}

.shimmer-background {
  -webkit-animation-duration: 1.5s;
  -webkit-animation-fill-mode: forwards;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-name: placeHolderShimmer;
  -webkit-animation-timing-function: ease;
  background: #312d38;
  background-image: linear-gradient(to right, #312d38 0%, #3f384a 20%, #4e4c52 40%, #312d38 100%);
  background-repeat: no-repeat;
  background-size: 100%;
  height: 100%;
  position: relative;
}

.shimmer-container {
  /* padding: 12px; */
  /* max-width: 476px; */
  height: 300px;
  /* margin: 4rem auto; */
  background-color: #312d38;
  border: 1px solid;
  border-radius: 3px;
}

.shimmer-background div {
  background: #fff;
  height: 100%;
  left: 0;
  position: absolute;
  right: 0;
}

.shimmer-a {
  height: 100%;
  left: 40px;
  right: auto;
  top: 0;
  /*     width: 100%; */
}

@keyframes placeHolderShimmer {
  0% {
    background-position: -1268px 0;
  }

  100% {
    background-position: 1268px 0;
  }
}

.transition-smooth {
  transition: all ease 0.3s;
}

.rotate-180deg {
  transform: rotate(180deg);
}

.tkt-box-dark {
  background: rgba(49, 45, 56, 1) !important;
  border: none;
  color: white;
}

.dev-hl-hr {
  margin-top: 0.7rem;
  width: 9%;
  height: 1px;
  background: white;
}

.customSelectWidth {
  width: 99% !important;
}

.ls-0-7px {
  letter-spacing: 0.7px !important;
}

.float-right {
  float: right !important;
}

.dark-t > .pagination-bottom > .-pagination > .-previous,
.dark-t > .pagination-bottom > .-pagination > .-next {
  background: #2a272f;
}
.dark-t > .pagination-bottom > .-pagination > .-previous > .-btn,
.dark-t > .pagination-bottom > .-pagination > .-next > .-btn {
  color: #fff;
}



.editor-container {
  display: grid;
  grid-template-columns: 70% 30%;
  gap: 24px;
  padding: 24px;
  min-height: 100vh;
  background-color: var(--body-bg);
}

.editor-panel {
  background-color: var(--item-bg);
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 16px;
  width: 50vw;
}


.editor-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.editor-group {
  display: flex;
  position: relative;
  flex-direction: column;
  gap: 8px;
}

.editor-label {
  font-size: 14px;
  font-weight: 500;
}

.editor-textarea {
  width: 100%;
  height: 600px;
  padding: 16px;
  border-radius: 8px;
  border: 1px solid #e2e2e2;
  font-family: monospace;
  font-size: 14px;
  resize: none;
  box-sizing: border-box;
}

.editor-textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 2px rgba(255, 107, 53, 0.2);
}

.preview-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.preview-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
}

.preview-header h2 {
  font-size: 20px;
  font-weight: 600;
  margin: 0;
}

.mobile-preview {
  margin: 0 auto;
  background-color: var(--item-bg);
  border-radius: 32px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 16px;
  width: 320px;
  height: 640px;
  border: 8px solid #2d3748;
  box-sizing: border-box;
}

.preview-frame {
  width: 100%;
  height: 100%;
  background: white;
  border-radius: 8px;
  overflow: auto;
  border: none;
}

@media (min-width: 1024px) {
  .editor-container {
    grid-template-columns: 1fr 1fr;
  }
}

.color-section {
  margin-bottom: 24px;
}

.color-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.color-header h3 {
  font-size: 14px;
  font-weight: 500;
  margin: 0;
}

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

.color-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid #e2e2e2;
}

.color-item:last-child {
  border-bottom: none;
}

.color-circle {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid #e2e2e2;
  cursor: pointer;
  padding: 0;
  transition: transform 0.2s;
}

.color-circle:hover {
  transform: scale(1.1);
}

.color-name {
  flex: 1;
  font-family: monospace;
  font-size: 14px;
}

.format-button {
  padding: 4px 12px;
  border-radius: 4px;
  border: 1px solid #e2e2e2;
  cursor: pointer;
  font-size: 12px;
  transition: all 0.2s;
  max-width: 10vw;
  position: absolute;
  right: 0;
}