/* === Import template variables === */
/* === SCSS Compass Functions === */
/* === Template mixins === */
.bg-primary {
  background: #009BD8 !important;
}

.text-primary {
  color: #009BD8 !important;
}

.bg-secondary {
  background: #ff420f !important;
}

.text-secondary {
  color: #ff420f !important;
}

.bg-info {
  background: #00bbdd !important;
}

.text-info {
  color: #00bbdd !important;
}

.bg-success {
  background: #00b67a !important;
}

.text-success {
  color: #00b67a !important;
}

.bg-warning {
  background: #ffc107 !important;
}

.text-warning {
  color: #ffc107 !important;
}

.bg-danger {
  background: #ff420f !important;
}

.text-danger {
  color: #ff420f !important;
}

.bg-light {
  background: #f0f1f1 !important;
}

.text-light {
  color: #f0f1f1 !important;
}

.bg-dark {
  background: #3e4b5b !important;
}

.text-dark {
  color: #3e4b5b !important;
}

.bg-white {
  background: #fff !important;
}

.text-white {
  color: #fff !important;
}

/* === Core Styles === */
/* Utilities */
.font-weight-normal {
  font-weight: normal;
}

.font-weight-light {
  font-weight: 300;
}

.font-weight-medium {
  font-weight: 500;
}

.font-weight-600 {
  font-weight: 600;
}

.font-weight-bold {
  font-weight: bold;
}

.font-size-16 {
  font-size: 16px;
}

.font-size-26 {
  font-size: 26px;
}

.text-center {
  text-align: center !important;
}

.text-left {
  text-align: left !important;
}

.text-right {
  text-align: right !important;
}

.text-small {
  font-size: 0.75rem;
}

.height-34 {
  height: 34px !important;
}

.height-30 {
  height: 30px !important;
}

.height-22 {
  height: 22px !important;
}

.icon-lg {
  font-size: 2.5rem;
}

.icon-md {
  font-size: 1.875rem;
}

.icon-sm {
  font-size: 1rem !important;
}

.card-padding {
  padding: 32px 28px;
}

.stretch-card {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: stretch;
  align-items: stretch;
  -webkit-justify-content: stretch;
  justify-content: stretch;
  flex-direction: column;
}
.stretch-card .mdc-card {
  width: 100%;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

.stretch-card-border {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: stretch;
  align-items: stretch;
  -webkit-justify-content: stretch;
  justify-content: stretch;
  width: 100%;
  border: 1px solid #CED4DC;
}

.section-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border: 1px solid #CED4DC;
  width: 100%;
  border-radius: 6px;
  padding: 10px;
}

.d-none {
  display: none !important;
}

.d-inline {
  display: inline !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-block {
  display: block !important;
}

@media (min-width: 768px) {
  .d-md-block {
    display: block !important;
  }
}

@media (min-width: 992px) {
  .d-lg-block {
    display: block !important;
  }
}

@media (min-width: 14200px) {
  .d-xl-block {
    display: block !important;
  }
}

@media (max-width: 767px) {
  .d-phone-block {
    display: block !important;
  }
}

@media (max-width: 767px) {
  .d-phone-block-w100 {
    display: block !important;
    width: 100%;
  }
}

@media (min-width: 768px) {
  .d-md-block-w50 {
    display: block !important;
    width: 50%;
  }
}

@media (min-width: 768px) {
  .d-md-block-w60 {
    display: block !important;
    width: 60%;
  }
}

@media (min-width: 576px) {
  .d-sm-block {
    display: block !important;
  }
}

@media (min-width: 768px) {
  .d-md-block {
    display: block !important;
  }
}

@media (min-width: 992px) {
  .d-lg-block {
    display: block !important;
  }
}

@media (min-width: 1200px) {
  .d-xl-block {
    display: block !important;
  }
}

.d-flex {
  display: -webkit-flex;
  display: flex;
}

@media (min-width: 576px) {
  .d-sm-flex {
    display: flex !important;
  }
}

@media (min-width: 768px) {
  .d-md-flex {
    display: flex !important;
  }
}

@media (min-width: 992px) {
  .d-lg-flex {
    display: flex !important;
  }
}

@media (min-width: 1200px) {
  .d-xl-flex {
    display: flex !important;
  }
}

.align-items-start {
  -webkit-align-items: flex-start;
  align-items: flex-start;
}

.align-items-center {
  -webkit-align-items: center;
  align-items: center;
}

.align-items-end {
  -webkit-align-items: flex-end;
  align-items: flex-end;
}

.justify-content-start {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

.justify-content-center {
  -webkit-justify-content: center;
  justify-content: center;
}

.justify-content-end {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}

.justify-content-between {
  -webkit-justify-content: space-between;
  justify-content: space-between;
}

.flex-grow-1 {
  -webkit-flex-grow: 1;
  flex-grow: 1;
}

.flex-row {
  -webkit-flex-direction: row;
  flex-direction: row;
}

.flex-column {
  -webkit-flex-direction: column;
  flex-direction: column;
}

.flex-wrap {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}

.w-100 {
  width: 100%;
  min-width: 100%;
}

.w-75 {
  width: 75%;
  min-width: 75%;
}

.w-50 {
  width: 50%;
  min-width: 50%;
}

.bg-white {
  background: #fff;
}

.bg-white-antique {
  background: #f5f9fa;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.ml-auto {
  margin-left: auto;
}

.mr-auto {
  margin-right: auto;
}

.text-white {
  color: #fff !important;
}

.text-muted {
  color: #bababa !important;
}

.text-green {
  color: green !important;
}

.text-primary {
  color: #009BD8 !important;
}

.cursor-auto {
  cursor: auto;
}

.cursor-default {
  cursor: default;
}

.cursor-pointer {
  cursor: pointer;
}

.my-auto {
  margin-top: auto;
  margin-bottom: auto;
}

.mt-auto {
  margin-top: auto;
}

.mb-auto {
  margin-bottom: auto;
}

.p-0 {
  padding: 0 !important;
}

.p-1 {
  padding: 0.25rem !important;
}

.p-2 {
  padding: 0.5rem !important;
}

.p-3 {
  padding: 1rem !important;
}

.p-4 {
  padding: 1.5rem !important;
}

.p-5 {
  padding: 3rem !important;
}

.m-0 {
  margin: 0 !important;
}

.m-1 {
  margin: 0.25rem !important;
}

.m-2 {
  margin: 0.5rem !important;
}

.m-3 {
  margin: 1rem !important;
}

.m-4 {
  margin: 1.5rem !important;
}

.m-5 {
  margin: 3rem !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-1 {
  margin-bottom: 0.25rem !important;
}

.mb-2 {
  margin-bottom: 0.5rem !important;
}

.mb-3 {
  margin-bottom: 1rem !important;
}

.mb-4 {
  margin-bottom: 1.5rem !important;
}

.mb-5 {
  margin-bottom: 3rem !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.mt-1 {
  margin-top: 0.25rem !important;
}

.mt-2 {
  margin-top: 0.5rem !important;
}

.mt-3 {
  margin-top: 1rem !important;
}

.mt-4 {
  margin-top: 1.5rem !important;
}

.mt-5 {
  margin-top: 3rem !important;
}

.mr-0 {
  margin-right: 0 !important;
}

.mr-1 {
  margin-right: 0.25rem !important;
}

.mr-2 {
  margin-right: 0.5rem !important;
}

.mr-3 {
  margin-right: 1rem !important;
}

.mr-4 {
  margin-right: 1.5rem !important;
}

.mr-5 {
  margin-right: 3rem !important;
}

.ml-0 {
  margin-left: 0 !important;
}

.ml-1 {
  margin-left: 0.25rem !important;
}

.ml-2 {
  margin-left: 0.5rem !important;
}

.ml-3 {
  margin-left: 1rem !important;
}

.ml-4 {
  margin-left: 1.5rem !important;
}

.ml-5 {
  margin-left: 3rem !important;
}

.my-0 {
  margin-bottom: 0 !important;
  margin-top: 0 !important;
}

.my-1 {
  margin-bottom: 0.25rem !important;
  margin-top: 0.25rem !important;
}

.my-2 {
  margin-bottom: 0.5rem !important;
  margin-top: 0.5rem !important;
}

.my-3 {
  margin-bottom: 1rem !important;
  margin-top: 1rem !important;
}

.my-4 {
  margin-bottom: 1.5rem !important;
  margin-top: 1.5rem !important;
}

.my-5 {
  margin-bottom: 3rem !important;
  margin-top: 3rem !important;
}

.py-0 {
  padding-bottom: 0 !important;
  padding-top: 0 !important;
}

.py-1 {
  padding-bottom: 0.25rem !important;
  padding-top: 0.25rem !important;
}

.py-2 {
  padding-bottom: 0.5rem !important;
  padding-top: 0.5rem !important;
}

.py-3 {
  padding-bottom: 1rem !important;
  padding-top: 1rem !important;
}

.py-4 {
  padding-bottom: 1.5rem !important;
  padding-top: 1.5rem !important;
}

.py-5 {
  padding-bottom: 3rem !important;
  padding-top: 3rem !important;
}

.mx-0 {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.mx-1 {
  margin-left: 0.25rem !important;
  margin-right: 0.25rem !important;
}

.mx-2 {
  margin-left: 0.5rem !important;
  margin-right: 0.5rem !important;
}

.mx-3 {
  margin-left: 1rem !important;
  margin-right: 1rem !important;
}

.mx-4 {
  margin-left: 1.5rem !important;
  margin-right: 1.5rem !important;
}

.mx-5 {
  margin-left: 3rem !important;
  margin-right: 3rem !important;
}

@media (min-width: 768px) {
  .mx-md-5 {
    margin-left: 3rem !important;
    margin-right: 3rem !important;
  }
}

.px-0 {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.px-1 {
  padding-left: 0.25rem !important;
  padding-right: 0.25rem !important;
}

.px-2 {
  padding-left: 0.5rem !important;
  padding-right: 0.5rem !important;
}

.px-3 {
  padding-left: 1rem !important;
  padding-right: 1rem !important;
}

.px-4 {
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
}

.px-5 {
  padding-left: 3rem !important;
  padding-right: 3rem !important;
}

@media (min-width: 768px) {
  .px-md-5 {
    padding-left: 3rem !important;
    padding-right: 3rem !important;
  }
}

.pl-1 {
  padding-left: 0.25rem !important;
}

.pl-2 {
  padding-left: 0.5rem !important;
}

.pl-3 {
  padding-left: 1rem !important;
}

.pl-4 {
  padding-left: 1.5rem !important;
}

.pl-5 {
  padding-left: 3rem !important;
}

.pr-1 {
  padding-right: 0.25rem !important;
}

.pr-2 {
  padding-right: 0.5rem !important;
}

.pr-3 {
  padding-right: 1rem !important;
}

.pr-4 {
  padding-right: 1.5rem !important;
}

.pr-5 {
  padding-right: 3rem !important;
}

.pt-1 {
  padding-top: 0.25rem !important;
}

.pt-2 {
  padding-top: 0.5rem !important;
}

.pt-3 {
  padding-top: 1rem !important;
}

.pt-4 {
  padding-top: 1.5rem !important;
}

.pt-5 {
  padding-top: 3rem !important;
}

.pb-0 {
  padding-bottom: 0rem !important;
}

.pb-1 {
  padding-bottom: 0.25rem !important;
}

.pb-2 {
  padding-bottom: 0.5rem !important;
}

.pb-3 {
  padding-bottom: 1rem !important;
}

.pb-4 {
  padding-bottom: 1.5rem !important;
}

.pb-5 {
  padding-bottom: 3rem !important;
}

@media (min-width: 576px) {
  .mb-sm-0 {
    margin-bottom: 0 !important;
  }
}

@media (min-width: 768px) {
  .ml-md-4 {
    margin-left: 1.5rem !important;
  }
}

@media (min-width: 992px) {
  .ml-lg-4 {
    margin-left: 1.5rem !important;
  }
}

@media (min-width: 992px) {
  .w-lg-50 {
    width: 50%;
    min-width: 50%;
  }
}

.overflow-visible {
  overflow: visible;
}

.bg-blue {
  background: #0057ff;
}

.bg-red {
  background: #ec3432;
}

.bg-dark {
  background: #303338;
}

.bg-gray-dark {
  background: #555A60;
}

.bg-charcoal {
  background: #36393e;
}

.text-red {
  color: #ec3432;
}

.text-blue {
  color: #0057ff;
}

.text-yellow {
  color: #feab00;
}

.border-bottom {
  border-bottom: 1px solid #CED4DC;
}

.border-radius {
  border-radius: 6px;
}

.border-bottom-dark {
  border-bottom: 1px solid #303338;
}

.border-gray {
  border: 1px solid #CED4DC;
}

.border-white {
  border: 1px solid #fff !important;
}

.border-danger--radius {
  border: 1px solid #ff420f !important;
  border-radius: 6px;
}

.border-primary {
  border: 1px solid #009BD8 !important;
  border-radius: 6px;
}

.border-white--radius {
  border: 1px solid #fff !important;
  border-radius: 6px;
}

.border-left--gray {
  border-left: 1px solid #CED4DC;
}

.border-bottom--gray {
  border-bottom: 1px solid #CED4DC;
}

.border-right {
  border-right: 1px solid #CED4DC;
}

.border-top {
  border-top: 1px solid #CED4DC;
}

.rounded {
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
}

.tx-8 {
  font-size: 8px;
}

.tx-9 {
  font-size: 9px;
}

.tx-10 {
  font-size: 10px;
}

.tx-11 {
  font-size: 11px;
}

.tx-12 {
  font-size: 12px;
}

.tx-13 {
  font-size: 13px;
}

.tx-14 {
  font-size: 14px;
}

.tx-15 {
  font-size: 15px;
}

.tx-16 {
  font-size: 16px;
}

.grid-gap-0 {
  grid-gap: unset;
}

.box-shadow-none {
  box-shadow: none !important;
}

.button-box-shadow {
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.09);
}

.text-black {
  color: #000000;
}

.text-danger, a.text-danger {
  color: #ff420f !important;
}

.rounded-0 {
  border-radius: 0 !important;
}

.border-0 {
  border: none !important;
}

a.page-link {
  color: #009BD8;
}

/* === Core Styles === */
.template-site > .mdc-switch {
  margin-top: 30px;
  margin-right: 60px;
}
.template-site > .mdc-button {
  margin-top: 15px;
  margin-right: 10px;
}
.template-site > .menu-button-container {
  margin-top: 10px;
  margin-right: 10px;
}
.template-site > .mdc-select,
.template-site > .mdc-form-field {
  vertical-align: middle;
  margin-top: 15px;
  margin-right: 45px;
}
.template-site .mdc-text-field {
  margin-top: 15px;
}
.template-site > .mdc-slider + .card-sub-title {
  margin-top: 30px;
  margin-bottom: 0;
}
.template-site.typography-site p,
.template-site.typography-site h1,
.template-site.typography-site h2,
.template-site.typography-site h3,
.template-site.typography-site h4,
.template-site.typography-site h5,
.template-site.typography-site h6,
.template-site.typography-site .mdc-typography--button,
.template-site.typography-site .mdc-typography--caption,
.template-site.typography-site .mdc-typography--overline {
  margin-bottom: 20px;
  margin-top: 20px;
}
.template-site > [role=progressbar] {
  margin: 20px 0 10px;
}

.icon-site i {
  margin: 1rem;
}

.loader-wrapper {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999;
  background: #e9eaef;
  opacity: 0.8;
  display: flex;
  align-items: center;
  justify-content: center;
}
.loaded .loader-wrapper {
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.8s ease-out;
  transition: all 0.8s ease-out;
}
.loader-wrapper .loader {
  font-size: 12px;
  margin: 50px auto;
  text-indent: -9999em;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #009BD8;
  background: -moz-linear-gradient(left, #009BD8 10%, rgba(0, 0, 0, 0) 42%);
  background: -webkit-linear-gradient(left, #009BD8 10%, rgba(0, 0, 0, 0) 42%);
  background: -o-linear-gradient(left, #009BD8 10%, rgba(0, 0, 0, 0) 42%);
  background: -ms-linear-gradient(left, #009BD8 10%, rgba(0, 0, 0, 0) 42%);
  background: linear-gradient(to right, #009BD8 10%, rgba(0, 0, 0, 0) 42%);
  -webkit-animation: loading 1.4s infinite linear;
  animation: loading 1.4s infinite linear;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
}
.loader-wrapper .loader.loader:before {
  width: 50%;
  height: 50%;
  background: #009BD8;
  border-radius: 100% 0 0 0;
  position: absolute;
  top: 0;
  left: 0;
  content: "";
}
.loader-wrapper .loader.loader:after {
  background: #e9eaef;
  width: 75%;
  height: 75%;
  border-radius: 50%;
  content: "";
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

@-webkit-keyframes loading {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes loading {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
/* === Sample screens === */
/* === Plugin Overides === */
.mdc-card.info-card {
  position: relative;
  padding: 17px 25px;
}
.mdc-card.info-card .card-inner {
  margin-right: 25%;
}
.mdc-card.info-card .card-inner .card-title {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 9px;
}
.mdc-card.info-card .card-inner .card-icon-wrapper {
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
  width: 57px;
  height: 57px;
  border-radius: 2px;
  background-color: #00b67a;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  box-shadow: 0 0 10px 5px rgba(0, 182, 122, 0.35);
}
@media (max-width: 992px) {
  .mdc-card.info-card .card-inner .card-icon-wrapper {
    right: 20px;
  }
}
.mdc-card.info-card .card-inner .card-icon-wrapper i {
  color: #fff;
  font-size: 30px;
}
.mdc-card.info-card.info-card--primary .card-inner .card-icon-wrapper {
  background-color: #009BD8;
  box-shadow: 0 0 10px 5px rgba(0, 155, 216, 0.35);
}
.mdc-card.info-card.info-card--secondary .card-inner .card-icon-wrapper {
  background-color: #ff420f;
  box-shadow: 0 0 10px 5px rgba(255, 66, 15, 0.35);
}
.mdc-card.info-card.info-card--info .card-inner .card-icon-wrapper {
  background-color: #00bbdd;
  box-shadow: 0 0 10px 5px rgba(0, 187, 221, 0.35);
}
.mdc-card.info-card.info-card--success .card-inner .card-icon-wrapper {
  background-color: #00b67a;
  box-shadow: 0 0 10px 5px rgba(0, 182, 122, 0.35);
}
.mdc-card.info-card.info-card--warning .card-inner .card-icon-wrapper {
  background-color: #ffc107;
  box-shadow: 0 0 10px 5px rgba(255, 193, 7, 0.35);
}
.mdc-card.info-card.info-card--danger .card-inner .card-icon-wrapper {
  background-color: #ff420f;
  box-shadow: 0 0 10px 5px rgba(255, 66, 15, 0.35);
}
.mdc-card.info-card.info-card--light .card-inner .card-icon-wrapper {
  background-color: #f0f1f1;
  box-shadow: 0 0 10px 5px rgba(240, 241, 241, 0.35);
}
.mdc-card.info-card.info-card--dark .card-inner .card-icon-wrapper {
  background-color: #3e4b5b;
  box-shadow: 0 0 10px 5px rgba(62, 75, 91, 0.35);
}
.mdc-card.info-card.info-card--white .card-inner .card-icon-wrapper {
  background-color: #fff;
  box-shadow: 0 0 10px 5px rgba(255, 255, 255, 0.35);
}
.mdc-card .options-icon,
.mdc-card .refresh-icon {
  font-size: 20px;
  color: #bbbbbb;
  cursor: pointer;
}

.statitics-card {
  border-right: 1px solid #CED4DC;
}
@media (max-width: 767px) {
  .statitics-card {
    border-right: none;
  }
}
@media (max-width: 991px) {
  .statitics-card {
    border-bottom: 1px solid #CED4DC;
  }
}
.statitics-card .statitics-card-header i {
  font-size: 18px;
  color: #a9a7a7;
}
.statitics-card .statitics-card-content i {
  font-size: 40px;
}

.revenue-tab .mdc-tab-bar .mdc-tab-indicator .mdc-tab-indicator__content--underline {
  border: none;
}
.revenue-tab.mdc-tab-wrapper .content {
  padding: 0;
}

.bullet-rounded {
  content: "";
  width: 6px;
  height: 6px;
  border-width: 1px;
  border-style: solid;
  border-radius: 100px;
}

.product-card .product-box {
  position: relative;
  padding: 0px 31px 25px 31px;
  display: flex;
  justify-content: center;
}
.product-card .product-box .product-name-box {
  position: absolute;
  width: 83%;
  color: #ffffff;
  transform: translateY(-50%);
}
.product-card .product-box .product-name-box .product-name-box-primary {
  height: 75px;
  box-shadow: 0 0 10px 5px rgba(0, 155, 216, 0.35);
  background: #009BD8;
  transition: all 0.25s ease-in-out;
}
.product-card .product-box .product-name-box .product-name-box-primary:hover {
  cursor: pointer;
  transform: scale(1.03);
}
.product-card .product-box .product-name-box .product-name-box-secondary {
  height: 75px;
  box-shadow: 0 0 10px 5px rgba(255, 66, 15, 0.35);
  background: #ff420f;
  transition: all 0.25s ease-in-out;
}
.product-card .product-box .product-name-box .product-name-box-secondary:hover {
  cursor: pointer;
  transform: scale(1.03);
}
.product-card .product-box .product-name-box .product-name-box-info {
  height: 75px;
  box-shadow: 0 0 10px 5px rgba(0, 187, 221, 0.35);
  background: #00bbdd;
  transition: all 0.25s ease-in-out;
}
.product-card .product-box .product-name-box .product-name-box-info:hover {
  cursor: pointer;
  transform: scale(1.03);
}
.product-card .product-box .product-name-box .product-name-box-success {
  height: 75px;
  box-shadow: 0 0 10px 5px rgba(0, 182, 122, 0.35);
  background: #00b67a;
  transition: all 0.25s ease-in-out;
}
.product-card .product-box .product-name-box .product-name-box-success:hover {
  cursor: pointer;
  transform: scale(1.03);
}
.product-card .product-box .product-name-box .product-name-box-warning {
  height: 75px;
  box-shadow: 0 0 10px 5px rgba(255, 193, 7, 0.35);
  background: #ffc107;
  transition: all 0.25s ease-in-out;
}
.product-card .product-box .product-name-box .product-name-box-warning:hover {
  cursor: pointer;
  transform: scale(1.03);
}
.product-card .product-box .product-name-box .product-name-box-danger {
  height: 75px;
  box-shadow: 0 0 10px 5px rgba(255, 66, 15, 0.35);
  background: #ff420f;
  transition: all 0.25s ease-in-out;
}
.product-card .product-box .product-name-box .product-name-box-danger:hover {
  cursor: pointer;
  transform: scale(1.03);
}
.product-card .product-box .product-name-box .product-name-box-light {
  height: 75px;
  box-shadow: 0 0 10px 5px rgba(240, 241, 241, 0.35);
  background: #f0f1f1;
  transition: all 0.25s ease-in-out;
}
.product-card .product-box .product-name-box .product-name-box-light:hover {
  cursor: pointer;
  transform: scale(1.03);
}
.product-card .product-box .product-name-box .product-name-box-dark {
  height: 75px;
  box-shadow: 0 0 10px 5px rgba(62, 75, 91, 0.35);
  background: #3e4b5b;
  transition: all 0.25s ease-in-out;
}
.product-card .product-box .product-name-box .product-name-box-dark:hover {
  cursor: pointer;
  transform: scale(1.03);
}
.product-card .product-box .product-name-box .product-name-box-white {
  height: 75px;
  box-shadow: 0 0 10px 5px rgba(255, 255, 255, 0.35);
  background: #fff;
  transition: all 0.25s ease-in-out;
}
.product-card .product-box .product-name-box .product-name-box-white:hover {
  cursor: pointer;
  transform: scale(1.03);
}
.product-card .product-box .product-name-box .add-product-button {
  position: absolute;
  right: -17px;
  top: 25%;
}
.product-card .product-box .product-description-box {
  margin-top: 60px;
}
.product-card .product-box .product-description-box .product-description-box-text {
  color: #3c4858;
}

.earning-flot-chart {
  height: 237px;
}

.revenue-world-map {
  width: 100%;
  height: 200px;
}

.flag-icon-container {
  display: inline-block;
}
.flag-icon-container .flag-icon {
  width: 20px;
  height: 20px;
  border-radius: 100%;
  background-size: cover;
}

.dashboard-table.sales-table,
.mdc-data-table__table.sales-table {
  border: 1px solid #e7e7e7;
  border-radius: 4px;
}
.dashboard-table.sales-table.table thead tr th,
.dashboard-table.sales-table.table thead tr td,
.dashboard-table.sales-table.table tbody tr th,
.dashboard-table.sales-table.table tbody tr td,
.mdc-data-table__table.sales-table.table thead tr th,
.mdc-data-table__table.sales-table.table thead tr td,
.mdc-data-table__table.sales-table.table tbody tr th,
.mdc-data-table__table.sales-table.table tbody tr td {
  color: inherit;
  padding: 10px 10px;
  font-weight: normal;
}
.dashboard-table.sales-table.table thead tr:hover,
.dashboard-table.sales-table.table tbody tr:hover,
.mdc-data-table__table.sales-table.table thead tr:hover,
.mdc-data-table__table.sales-table.table tbody tr:hover {
  background: #f8f6ff;
}

.product-list .product-list-header {
  padding: 1.5rem 1.5rem 1rem 1.5rem;
}
.product-list .product-list-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #CED4DC;
  padding: 1rem 1.5rem;
}
.product-list .product-list-item .options-icon {
  font-size: 16px;
  cursor: pointer;
}

.dashboard-inline-datepicker.mdc-card {
  background: #f9f9fa;
  position: relative;
  min-height: 400px;
}
.dashboard-inline-datepicker .datepicker-box-top {
  display: flex;
  justify-content: space-between;
  background: #00bbdd;
  height: 70px;
  padding: 1.5rem;
}
.dashboard-inline-datepicker .datepicker-box-top .mdc-button {
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.25);
}

.to-do-list .to-do-list-header {
  padding: 1.5rem 1.5rem 1rem 1.5rem;
}
.to-do-list .to-do-list-header i {
  font-size: 20px;
  cursor: pointer;
}
.to-do-list .mdc-tab-bar {
  box-shadow: 0 3px 4px 0 rgba(0, 0, 0, 0.17);
}
.to-do-list .mdc-tab-indicator .mdc-tab-indicator__content--underline {
  border-color: #ffffff;
}
.to-do-list .to-do-list-content {
  padding: 10px 30px;
  background: #ffffff;
}
.to-do-list .to-do-list-content .to-do-list-item {
  border: 1px solid #eeeeee;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.09);
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.to-do-list .to-do-list-content .to-do-list-item:last-child {
  margin-bottom: 0px;
}
.to-do-list .to-do-list-content .to-do-list-item:before {
  content: "";
  width: 4px;
  height: 60px;
  background: #ffcd00;
}
.to-do-list .to-do-list-content .delete-icon {
  color: #bababa;
  font-size: 16px;
  cursor: pointer;
}

.box-placeholder {
  display: inline-block;
  vertical-align: top;
  width: 100%;
}

.box-placeholder .text {
  display: inline-block;
  background-color: #444;
  height: 10px;
  border-radius: 2px;
  margin: 5px 0;
  opacity: 0.1;
  animation: fading 1.5s infinite;
}
.box-placeholder .text:first-child {
  margin-top: 0;
}
.box-placeholder .text:last-child {
  margin-bottom: 0;
}
.box-placeholder .text.link {
  background-color: var(--blue);
  opacity: 0.4;
}
.box-placeholder .text.line {
  width: 100%;
}
.box-placeholder .text.category {
  width: 100px;
  margin-bottom: 10px;
}
.box-placeholder .image {
  background-color: #f9f9f9;
}

@keyframes fading {
  0% {
    opacity: 0.1;
  }
  50% {
    opacity: 0.2;
  }
  100% {
    opacity: 0.1;
  }
}
.search-filters a {
  color: var(--mdc-theme-primary) !important;
}

.mdc-data-table {
  border-radius: 0px;
}

.mdc-data-table__cell,
.mdc-data-table__header-cell {
  padding-right: 1px;
  padding-left: 1px;
}

.mdc-data-table__cell {
  height: inherit;
  line-height: inherit;
  font-family: inherit;
  font-size: inherit;
}

table.gridview tbody,
table.gridview,
table.mdc-data-table__table tbody,
table.mdc-data-table__table {
  width: 100%;
  min-width: 990px;
}
table.gridview tbody tr,
table.gridview tr,
table.mdc-data-table__table tbody tr,
table.mdc-data-table__table tr {
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: rgba(0, 0, 0, 0.12);
  background-color: inherit;
  height: 26px !important;
}
table.gridview tbody tr td,
table.gridview tr td,
table.mdc-data-table__table tbody tr td,
table.mdc-data-table__table tr td {
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
  letter-spacing: 0.01786em;
  text-decoration: inherit;
  text-transform: inherit;
  box-sizing: border-box;
  text-overflow: ellipsis;
  overflow: hidden;
  height: 26px !important;
}
table.gridview tbody tr th,
table.gridview tbody tr td,
table.gridview tr th,
table.gridview tr td,
table.mdc-data-table__table tbody tr th,
table.mdc-data-table__table tbody tr td,
table.mdc-data-table__table tr th,
table.mdc-data-table__table tr td {
  text-align: left;
  padding: 1px 5px;
}
table.gridview tbody tr th:first-child,
table.gridview tbody tr td:first-child,
table.gridview tr th:first-child,
table.gridview tr td:first-child,
table.mdc-data-table__table tbody tr th:first-child,
table.mdc-data-table__table tbody tr td:first-child,
table.mdc-data-table__table tr th:first-child,
table.mdc-data-table__table tr td:first-child {
  padding-left: 2px;
}
table.gridview tbody tr th:last-child,
table.gridview tbody tr td:last-child,
table.gridview tr th:last-child,
table.gridview tr td:last-child,
table.mdc-data-table__table tbody tr th:last-child,
table.mdc-data-table__table tbody tr td:last-child,
table.mdc-data-table__table tr th:last-child,
table.mdc-data-table__table tr td:last-child {
  padding-right: 2px;
}
table.gridview tbody tr:not(.row--selected):hover,
table.gridview tr:not(.row--selected):hover,
table.mdc-data-table__table tbody tr:not(.row--selected):hover,
table.mdc-data-table__table tr:not(.row--selected):hover {
  background-color: #f5f5f5;
}

.modal-popup .mdc-data-table__table {
  min-width: 400px !important;
}

.modal-background {
  background-color: gray;
  filter: alpha(opacity=70);
  opacity: 0.7;
}

.modal-popup {
  background-color: white;
  border-width: 1px;
  border-style: solid;
  border-color: Gray;
  padding: 3px;
  width: 800px;
  overflow-y: auto;
  height: auto;
  max-height: 800px;
}
.modal-popup .modal-popup--content-two-col {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-items: center;
  width: 799px;
}
.modal-popup .modal-popup--content-two-col > div {
  padding: 0.375rem 0;
  display: inline-flex;
  justify-content: flex-start;
  align-items: center;
}
@media (max-width: 767px) {
  .modal-popup .modal-popup--content-two-col > div:not(.w-100) {
    width: 100%;
  }
}
@media (min-width: 768px) {
  .modal-popup .modal-popup--content-two-col > div:not(.w-100) {
    width: calc(50% - 20px);
    margin-right: 16px;
  }
}
.modal-popup .modal-popup--content-two-col > div.w-100 {
  width: 100% !important;
}
.modal-popup .modal-popup--content-two-col > div.w-100 textarea {
  width: calc(100% - 80px - 40px) !important;
  margin-left: 16px;
}
.modal-popup .modal-popup--content-two-col > div.w-100 input[type=text] {
  width: 30px !important;
  margin-bottom: auto;
}
.modal-popup .modal-popup--content-two-col > div > label,
.modal-popup .modal-popup--content-two-col > div > span {
  width: 120px;
  font-weight: 600;
}
.modal-popup .modal-popup--content-two-col > div input[type=text],
.modal-popup .modal-popup--content-two-col > div select {
  width: calc(380px - 120px - 16px - 16px) !important;
  margin-left: 16px;
}
.modal-popup .modal-popup--content-two-col.space-between > div {
  justify-content: space-between !important;
}
.modal-popup .modal-popup--content-two-col.border-bottom > div:not(.border-none) {
  border-bottom: 1px solid #CED4DC;
}

.modal-popup--drag {
  cursor: move;
}

.modal-popup--header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-bottom: 4px;
  align-items: center;
  border-bottom: 1px solid #CED4DC;
}

.modal-popup--close {
  cursor: pointer;
  color: #000;
  font-size: 2rem;
  padding: 0.125rem;
}

.report-filters-bg {
  background-color: #E2EFF7;
}

.search-filters-box {
  background-color: #E2EFF7;
  margin-bottom: 1rem !important;
  padding: 0.5rem !important;
}

.search-filters-toggle {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  align-items: center;
  justify-content: end;
  font-weight: 600;
  font-size: 0.69rem;
  color: #009BD8;
}
.search-filters-toggle > label {
  cursor: pointer;
}
.search-filters-toggle > i {
  cursor: pointer;
}

.collapsible {
  font-weight: 600;
  font-size: 0.69rem;
  color: #009BD8;
}
.collapsible > label {
  cursor: pointer;
}
.collapsible > i {
  cursor: pointer;
}

.help-text {
  background: #fff6de;
  font-size: 0.69rem;
}

input[type=text],
input[type=password],
input {
  border-radius: 4px;
  background: #ffffff;
  border: 1px solid #9AA1AC;
  box-sizing: border-box;
  height: 26px;
  padding: 6px 6px 6px;
}

textarea {
  border-radius: 4px;
  background: #ffffff;
  border: 1px solid #9AA1AC;
  box-sizing: border-box;
  padding: 6px 6px 6px;
}

select {
  border: 1px solid #9AA1AC;
  background: #ffffff;
  border-radius: 4px;
  height: 26px;
  padding: 2px;
}

input[type=submit] {
  padding: 0 16px 0 16px;
  text-transform: none;
  white-space: nowrap;
}

fieldset {
  border: 1px solid #CED4DC;
}
fieldset legend {
  font-size: 0.875rem;
}

.d-flex-row-wrap {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-items: flex-start;
}
.d-flex-row-wrap > label,
.d-flex-row-wrap > select,
.d-flex-row-wrap > input {
  margin: 0 3px;
}
.d-flex-row-wrap > div {
  display: inline-flex;
  flex-direction: row;
  justify-content: space-between;
  align-self: flex-start;
  margin-right: 20px;
  padding: 2px;
  align-items: center;
  width: 320px;
}
.d-flex-row-wrap > div input[type=text],
.d-flex-row-wrap > div select {
  width: 240px;
}
.d-flex-row-wrap > div label,
.d-flex-row-wrap > div select,
.d-flex-row-wrap > div input {
  margin: 0 3px;
}
.d-flex-row-wrap > div > div {
  display: inline-flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 320px;
}
.d-flex-row-wrap > div > div input[type=text],
.d-flex-row-wrap > div > div select {
  width: 240px;
}
.d-flex-row-wrap select.sort-field {
  width: 200px;
}
.d-flex-row-wrap select.sort-option {
  width: 60px;
}
.d-flex-row-wrap select.year-field {
  width: 100px;
}

.d-flex-cols-1 {
  max-width: 325px;
}

.d-flex-cols-2 {
  max-width: 700px;
}

.d-flex-cols-3 {
  max-width: 1040px;
}

.d-flex-cols-4 {
  max-width: 1380px;
}

.d-flex-cols-5 {
  max-width: 1280px;
}

.d-flex--multi-cols {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-items: flex-start;
}
.d-flex--multi-cols > div {
  display: inline-flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  margin-right: 10px;
  padding: 2px;
  width: 360px;
}
.d-flex--multi-cols > div input[type=text],
.d-flex--multi-cols > div select {
  width: 240px;
}
.d-flex--multi-cols > div input[type=date] {
  width: 128px;
}
.d-flex--multi-cols > div label,
.d-flex--multi-cols > div select, .d-flex--multi-cols > div span,
.d-flex--multi-cols > div input {
  margin: 0px;
}
.d-flex--multi-cols > div > label:first-child, .d-flex--multi-cols > div > span:first-child {
  width: 100px;
  font-weight: 600;
}
.d-flex--multi-cols > div > div {
  display: inline-flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  font-weight: 400;
}
.d-flex--multi-cols > div.width-sm {
  width: 160px !important;
}
.d-flex--multi-cols > div.width-md {
  width: 200px !important;
}
.d-flex--multi-cols select.width-md,
.d-flex--multi-cols input[type=text].width-md {
  width: 160px;
}
.d-flex--multi-cols select.width-sm {
  width: 100px;
}
.d-flex--multi-cols select.width-xs {
  width: 80px;
}

.d-flex-row-wrap--space-between {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: center;
  padding: 0 5px;
}
.d-flex-row-wrap--space-between > div {
  display: inline-flex;
  flex-flow: row wrap;
  justify-content: start;
  align-items: center;
}

.search-filters, .d-flex--multi-cols {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-items: center;
}
.search-filters > label,
.search-filters > select,
.search-filters > input, .d-flex--multi-cols > label,
.d-flex--multi-cols > select,
.d-flex--multi-cols > input {
  margin: 0px;
}
.search-filters > div, .d-flex--multi-cols > div {
  display: inline-flex;
  flex-direction: row;
  justify-content: flex-start;
  margin-right: 10px;
  padding: 2px;
  align-items: center;
  width: 360px;
}
.search-filters > div input[type=text],
.search-filters > div select, .d-flex--multi-cols > div input[type=text],
.d-flex--multi-cols > div select {
  width: 240px;
}
.search-filters > div input[type=date], .d-flex--multi-cols > div input[type=date] {
  width: 128px;
}
.search-filters > div label,
.search-filters > div select,
.search-filters > div input, .d-flex--multi-cols > div label,
.d-flex--multi-cols > div select,
.d-flex--multi-cols > div input {
  margin: 0px;
}
.search-filters > div > label, .d-flex--multi-cols > div > label {
  width: 80px;
  font-weight: 400;
}
.search-filters > div > div, .d-flex--multi-cols > div > div {
  display: inline-flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}
.search-filters > div.width-sm, .d-flex--multi-cols > div.width-sm {
  width: 160px !important;
}
.search-filters > div.width-md, .d-flex--multi-cols > div.width-md {
  width: 200px !important;
}
.search-filters select.width-md,
.search-filters input[type=text].width-md, .d-flex--multi-cols select.width-md,
.d-flex--multi-cols input[type=text].width-md {
  width: 160px;
}
.search-filters select.width-sm, .d-flex--multi-cols select.width-sm {
  width: 100px;
}
.search-filters select.width-xs, .d-flex--multi-cols select.width-xs {
  width: 80px;
}

.report-filters {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-items: center;
}
.report-filters > label,
.report-filters > select,
.report-filters > input {
  margin: 0px;
}
.report-filters > div {
  display: flex;
  flex-direction: column;
  margin-right: 10px;
  padding: 2px;
  align-items: flex-start;
  width: 250px;
}
.report-filters > div input[type=text],
.report-filters > div select {
  width: 240px;
}
.report-filters > div input[type=date] {
  width: 128px;
}
.report-filters > div label,
.report-filters > div select,
.report-filters > div input {
  margin: 0px;
}
.report-filters > div.width-sm {
  width: 160px !important;
}
.report-filters > div.width-md {
  width: 200px !important;
}
.report-filters select.width-sm {
  width: 100px;
}

.page-wrapper .login-bg {
  background: url("../../login-vehicle-bg.jpg") no-repeat;
  height: 100%;
  background-color: #d8dede;
}

.login-section {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.login-section label {
  font-size: 0.75rem;
  font-weight: 600;
  color: #000000;
}
.login-section .mdc-text-field__input,
.login-section .mdc-button {
  height: 42px !important;
}
.login-section .mdc-button {
  font-size: 14px !important;
}
.login-section .title--blue {
  color: var(--mdc-theme-primary);
  font-weight: bold;
  font-size: 2rem;
}
.login-section .title--black {
  color: #000;
  font-weight: bold;
  font-size: 2rem;
}
.login-section input[type=checkbox] {
  height: 16px;
  width: 16px;
  border-radius: 4px;
  background: var(--mdc-theme-primary);
  color: var(--mdc-theme-primary);
}
.login-section .mdc-checkbox {
  height: inherit;
  width: inherit;
  padding: 1px;
}
.login-section .mdc-form-field {
  font-size: inherit;
  font-family: inherit;
}
.login-section .mdc-form-field > label {
  padding-left: 0px;
}

::placeholder {
  text-transform: none;
  /* Modern browsers */
}

.mdc-data-table__content {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

.mdc-data-table {
  max-width: 100%;
  overflow: auto;
  min-width: 359px;
}

div.mdc-data-table {
  margin-bottom: 0.25rem;
}

.mdc-data-table__table .material-icons {
  width: 18px;
  height: 18px;
}

.WordCounter {
  font-size: 11px;
  padding: 3px !important;
}

/*#region Details page*/
.section-header {
  background: #EDF1F5;
  height: 40px;
  padding: 0 0.5rem;
  margin-bottom: 4px;
  font-size: 1rem;
  font-weight: bold;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.section-header > div {
  display: flex;
  flex-direction: row;
}
.section-header > div > a {
  display: flex;
  flex-direction: row;
  font-size: 0.75rem;
  align-items: center;
  font-weight: 600;
}
.section-header > div > a:not(.text-white) {
  color: #009BD8 !important;
}
.section-header > div :not(:first-child) {
  border-left: 1px solid #CED4DC;
}
.section-header > div > * {
  padding: 0 0.5rem;
}

.section-border {
  border: 1px solid #CED4DC;
}
.section-border .mdc-button:last-child {
  margin-bottom: 0.25rem;
}
.section-border a {
  color: #009BD8;
  font-weight: 600;
}

.bg-dark a {
  color: #009BD8;
}

.section-body {
  padding: 0 0.5rem;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: start;
  align-items: flex-start;
}
.section-body > :not(:last-child) > :not(.mdc-data-table),
.section-body > :not(:only-child) > :not(.mdc-data-table) {
  margin-right: 1.5rem;
}
.section-body .section-body--content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  width: 340px;
}
.section-body .section-body--content.content-stretch {
  width: 680px !important;
}
.section-body .section-body--content > div {
  padding: 0.375rem 0;
  display: inline-flex;
  justify-content: space-between;
}
.section-body .section-body--content > div > label,
.section-body .section-body--content > div > span {
  font-weight: 600;
  padding-right: 4px;
}
.section-body .section-body--content > div > div {
  display: inline-flex;
  flex-direction: row;
  justify-content: flex-start;
}
.section-body .section-body--content > div > div :not(:first-child) {
  margin-left: 2px;
}
.section-body .section-body--content > div:not(:last-child) {
  border-bottom: 1px solid #CED4DC;
}
.section-body .section-body--content .content-title {
  color: #e9684c;
  font-size: 0.88rem;
  font-weight: bold;
}
.section-body .section-body--content label.content-title {
  padding: 0.375rem 0;
}
.section-body .section-body--content div.content-title {
  border-bottom: 0px !important;
}
.section-body .section-body--content-row {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-items: center;
  border-bottom: 1px solid #CED4DC;
}
.section-body .section-body--content-row > div {
  padding: 0.375rem 0;
  display: inline-flex;
  justify-content: flex-start;
  width: 10.25rem;
}
.section-body .section-body--content-row > div > label,
.section-body .section-body--content-row > div > span {
  width: 120px;
  font-weight: 600;
}
.section-body .section-body--content-row.content-cols-2 {
  width: 42rem;
}
.section-body .section-body--content-one-col {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.section-body .section-body--content-one-col > div {
  padding: 0.375rem 0;
  display: inline-flex;
  justify-content: flex-start;
}
.section-body .section-body--content-one-col > div > div:not(:last-child) {
  border-bottom: 1px solid #CED4DC;
}
.section-body .section-body--content-one-col > div > label,
.section-body .section-body--content-one-col > div > span {
  width: 120px;
  font-weight: 600;
}
.section-body .section-body--content-one-col-lg {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.section-body .section-body--content-one-col-lg > div {
  padding: 0.375rem 0;
  display: inline-flex;
  justify-content: flex-start;
}
.section-body .section-body--content-one-col-lg > div > div:not(:last-child) {
  border-bottom: 1px solid #CED4DC;
}
.section-body .section-body--content-one-col-lg > div > label,
.section-body .section-body--content-one-col-lg > div > span {
  width: 300px;
  font-weight: 600;
}
.section-body .section-body--content-two-col {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-items: center;
  width: 799px;
  border-bottom: 0px;
}
.section-body .section-body--content-two-col > div {
  padding: 0.375rem 0;
  display: inline-flex;
  justify-content: flex-start;
  align-items: center;
}
@media (max-width: 767px) {
  .section-body .section-body--content-two-col > div:not(.w-100) {
    width: 100%;
  }
}
@media (min-width: 768px) {
  .section-body .section-body--content-two-col > div:not(.w-100) {
    width: calc(50% - 20px);
    margin-right: 16px;
  }
}
.section-body .section-body--content-two-col > div.w-100 {
  width: 100% !important;
}
.section-body .section-body--content-two-col > div.w-100 textarea {
  width: calc(100% - 80px - 40px) !important;
  margin-left: 16px;
}
.section-body .section-body--content-two-col > div.w-100 input[type=text] {
  width: 30px !important;
  margin-bottom: auto;
}
.section-body .section-body--content-two-col > div > label,
.section-body .section-body--content-two-col > div > span {
  width: 120px;
  font-weight: 600;
}
.section-body .section-body--content-two-col > div input[type=text],
.section-body .section-body--content-two-col > div select {
  width: calc(380px - 120px - 16px - 16px) !important;
  margin-left: 16px;
}
.section-body .section-body--content-two-col.space-between > div {
  justify-content: space-between !important;
}
.section-body .section-body--content-two-col.border-bottom > div:not(.border-none) {
  border-bottom: 1px solid #CED4DC;
}

.section-footer {
  padding: 0 0.5rem;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  background: #f5f9fa;
  font-size: 0.69rem;
  margin-top: 0.25rem;
}
.section-footer > div {
  padding: 0.375rem 0;
}

.form-edit .section-body--content > div {
  justify-content: flex-start !important;
  border-bottom: 0px !important;
}
.form-edit .section-body--content > div > label,
.form-edit .section-body--content > div > span {
  font-weight: 400 !important;
  padding-right: 4px !important;
  width: 80px !important;
}
.form-edit .section-body--content > div input[type=text],
.form-edit .section-body--content > div select {
  width: calc(340px - 120px - 16px - 16px) !important;
}
.form-edit .section-body--content > div input[type=text].WordCounter {
  width: 30px !important;
}

.side-panel {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
}
.side-panel > div {
  margin-top: 1rem;
}
.side-panel > div:first-child {
  margin-top: 1px;
}
.side-panel .card-header {
  background: #303338;
  border: 1px solid #303338;
  height: 36px;
  color: #fff;
  font-weight: 600;
  padding: 6px;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.side-panel .card-content {
  padding: 6px;
  background: #edf1f5;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.details-page .tabs {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: start;
  font-weight: 600;
  border-bottom: 1px solid #CED4DC;
}
.details-page .tabs > div {
  padding: 0.875rem 1.5rem;
  color: #555A60 !important;
}
.details-page .tabs > div a:active,
.details-page .tabs > div a:focus,
.details-page .tabs > div a:visited {
  color: #555A60 !important;
}
.details-page .tabs > div.active {
  border-bottom: 3px solid #009BD8;
  color: #009BD8 !important;
}
.details-page .tabs > div.active a:active,
.details-page .tabs > div.active a:focus,
.details-page .tabs > div.active a:visited {
  color: #009BD8 !important;
}
.details-page .tabs .tab-item {
  color: #555A60;
}

.mdc-list-item .mdc-button {
  justify-content: start;
  padding: 0 5px;
}

.form-field--col-1 {
  min-width: 240px;
  margin-right: 0.5rem;
}
.form-field--col-1 > label {
  margin: 0 3px;
}

/*#endregion Details page*/
.gridview-paging a:hover {
  background-color: #303338;
  color: #fff;
}
.gridview-paging td {
  padding-left: 5px !important;
  background-color: #303338;
}
.gridview-paging span {
  color: #fff;
}

.mdc-dialog {
  color: #000 !important;
}
.mdc-dialog .mdc-dialog__content {
  color: #000 !important;
}

/* Navbar */
.mdc-top-app-bar {
  background-color: #fff;
  color: rgba(0, 0, 0, 0.87);
  padding: 7px 4px;
  z-index: 9;
  position: static;
}
.mdc-top-app-bar .mdc-top-app-bar__action-item,
.mdc-top-app-bar .mdc-top-app-bar__navigation-icon {
  color: #000;
}
.mdc-top-app-bar .mdc-top-app-bar__action-item::before, .mdc-top-app-bar .mdc-top-app-bar__action-item::after,
.mdc-top-app-bar .mdc-top-app-bar__navigation-icon::before,
.mdc-top-app-bar .mdc-top-app-bar__navigation-icon::after {
  background-color: #000;
}
.mdc-top-app-bar .mdc-top-app-bar__action-item:hover::before,
.mdc-top-app-bar .mdc-top-app-bar__navigation-icon:hover::before {
  opacity: 0.04;
}
.mdc-top-app-bar .mdc-top-app-bar__action-item.mdc-ripple-upgraded--background-focused::before, .mdc-top-app-bar .mdc-top-app-bar__action-item:not(.mdc-ripple-upgraded):focus::before,
.mdc-top-app-bar .mdc-top-app-bar__navigation-icon.mdc-ripple-upgraded--background-focused::before,
.mdc-top-app-bar .mdc-top-app-bar__navigation-icon:not(.mdc-ripple-upgraded):focus::before {
  transition-duration: 75ms;
  opacity: 0.12;
}
.mdc-top-app-bar .mdc-top-app-bar__action-item:not(.mdc-ripple-upgraded)::after,
.mdc-top-app-bar .mdc-top-app-bar__navigation-icon:not(.mdc-ripple-upgraded)::after {
  transition: opacity 150ms linear;
}
.mdc-top-app-bar .mdc-top-app-bar__action-item:not(.mdc-ripple-upgraded):active::after,
.mdc-top-app-bar .mdc-top-app-bar__navigation-icon:not(.mdc-ripple-upgraded):active::after {
  transition-duration: 75ms;
  opacity: 0.12;
}
.mdc-top-app-bar .mdc-top-app-bar__action-item.mdc-ripple-upgraded,
.mdc-top-app-bar .mdc-top-app-bar__navigation-icon.mdc-ripple-upgraded {
  --mdc-ripple-fg-opacity: 0.12;
}
@media (max-width: 320px) {
  .mdc-top-app-bar {
    padding: 7px 10px;
  }
}
.mdc-top-app-bar .mdc-top-app-bar__section .mdc-top-app-bar__title {
  font-weight: 400;
  margin-right: 36px;
}
.mdc-top-app-bar .mdc-top-app-bar__section .mdc-button {
  background-color: #303338;
}
.mdc-top-app-bar .mdc-top-app-bar__section input[type=text] {
  text-transform: uppercase;
}
.mdc-top-app-bar .mdc-top-app-bar__section-right button {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.mdc-top-app-bar .mdc-top-app-bar__section-right button.material-icons {
  font-size: 20px;
}
.mdc-top-app-bar .mdc-top-app-bar__section-right button i {
  font-size: 20px;
}
.mdc-top-app-bar .mdc-top-app-bar__section-right button:hover::before, .mdc-top-app-bar .mdc-top-app-bar__section-right button:focus::before, .mdc-top-app-bar .mdc-top-app-bar__section-right button:active::before {
  opacity: 0;
}
.mdc-top-app-bar .mdc-top-app-bar__section-right button::after {
  background-color: transparent;
}
.mdc-top-app-bar .mdc-top-app-bar__section-right button button,
.mdc-top-app-bar .mdc-top-app-bar__section-right .menu-button-container button {
  width: 35px;
  min-width: 35px;
  color: #000;
}
.mdc-top-app-bar .mdc-top-app-bar__section-right button button .count-indicator,
.mdc-top-app-bar .mdc-top-app-bar__section-right .menu-button-container button .count-indicator {
  width: 13px;
  height: 13px;
  border-radius: 13px;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  position: absolute;
  top: 5px;
  left: 18px;
  background: #ff420f;
}
.mdc-top-app-bar .mdc-top-app-bar__section-right button button .count-indicator .count,
.mdc-top-app-bar .mdc-top-app-bar__section-right .menu-button-container button .count-indicator .count {
  font-size: 7px;
  color: #fff;
}
.mdc-top-app-bar .mdc-top-app-bar__section-right .menu-button-container .mdc-menu {
  min-width: 190px;
}
.mdc-top-app-bar .mdc-top-app-bar__section-right .menu-button-container .mdc-menu .title {
  padding: 18px 36px;
  margin-bottom: 0;
  border-bottom: 1px solid #CED4DC;
  font-weight: normal;
}
.mdc-top-app-bar .mdc-top-app-bar__section-right .menu-button-container .mdc-menu .title + .mdc-list {
  padding-top: 0;
}
.mdc-top-app-bar .mdc-top-app-bar__section-right .menu-button-container .mdc-menu .mdc-list .mdc-list-item {
  white-space: nowrap;
  padding: 10px 10px;
  height: auto;
  border-bottom: 1px solid #CED4DC;
}
.mdc-top-app-bar .mdc-top-app-bar__section-right .menu-button-container .mdc-menu .mdc-list .mdc-list-item:last-child {
  border-bottom: none;
}
.mdc-top-app-bar .mdc-top-app-bar__section-right .menu-button-container .mdc-menu .mdc-list .mdc-list-item:nth-child(1n+0) .item-thumbnail-icon {
  background-color: rgba(0, 155, 216, 0.1);
}
.mdc-top-app-bar .mdc-top-app-bar__section-right .menu-button-container .mdc-menu .mdc-list .mdc-list-item:nth-child(1n+0) .item-thumbnail-icon i {
  color: #009BD8;
}
.mdc-top-app-bar .mdc-top-app-bar__section-right .menu-button-container .mdc-menu .mdc-list .mdc-list-item:nth-child(2n+0) .item-thumbnail-icon {
  background-color: rgba(255, 66, 15, 0.1);
}
.mdc-top-app-bar .mdc-top-app-bar__section-right .menu-button-container .mdc-menu .mdc-list .mdc-list-item:nth-child(2n+0) .item-thumbnail-icon i {
  color: #ff420f;
}
.mdc-top-app-bar .mdc-top-app-bar__section-right .menu-button-container .mdc-menu .mdc-list .mdc-list-item:nth-child(3n+0) .item-thumbnail-icon {
  background-color: rgba(0, 187, 221, 0.1);
}
.mdc-top-app-bar .mdc-top-app-bar__section-right .menu-button-container .mdc-menu .mdc-list .mdc-list-item:nth-child(3n+0) .item-thumbnail-icon i {
  color: #00bbdd;
}
.mdc-top-app-bar .mdc-top-app-bar__section-right .menu-button-container .mdc-menu .mdc-list .mdc-list-item:nth-child(4n+0) .item-thumbnail-icon {
  background-color: rgba(255, 193, 7, 0.1);
}
.mdc-top-app-bar .mdc-top-app-bar__section-right .menu-button-container .mdc-menu .mdc-list .mdc-list-item:nth-child(4n+0) .item-thumbnail-icon i {
  color: #ffc107;
}
.mdc-top-app-bar .mdc-top-app-bar__section-right .menu-button-container .mdc-menu .mdc-list .mdc-list-item:nth-child(5n+0) .item-thumbnail-icon {
  background-color: rgba(62, 75, 91, 0.1);
}
.mdc-top-app-bar .mdc-top-app-bar__section-right .menu-button-container .mdc-menu .mdc-list .mdc-list-item:nth-child(5n+0) .item-thumbnail-icon i {
  color: #3e4b5b;
}
.mdc-top-app-bar .mdc-top-app-bar__section-right .menu-button-container .mdc-menu .mdc-list .mdc-list-item .item-content .item-subject {
  margin-bottom: 0;
}
.mdc-top-app-bar .mdc-top-app-bar__section-right .menu-button-container .mdc-menu .mdc-list .mdc-list-item .item-thumbnail {
  width: 36px;
  height: 36px;
  margin-right: 15px;
}
.mdc-top-app-bar .mdc-top-app-bar__section-right .menu-button-container .mdc-menu .mdc-list .mdc-list-item .item-thumbnail img {
  height: 36px;
  border-radius: 36px;
  display: block;
}
.mdc-top-app-bar .mdc-top-app-bar__section-right .menu-button-container .mdc-menu .mdc-list .mdc-list-item .item-thumbnail.item-thumbnail-icon {
  height: 40px;
  width: 40px;
  border-radius: 36px;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.mdc-top-app-bar .mdc-top-app-bar__section-right .menu-button-container .mdc-menu .mdc-list .mdc-list-item .item-thumbnail.item-thumbnail-icon i {
  font-size: 18px;
  display: block;
}
.mdc-top-app-bar .mdc-top-app-bar__section-right .menu-button-container .mdc-menu .mdc-list .mdc-list-item .item-thumbnail.item-thumbnail-icon-only {
  width: auto;
  height: auto;
  font-size: 19px;
}
.mdc-top-app-bar .mdc-top-app-bar__section-right .divider {
  width: 1px;
  height: 25px;
  background: #d6d7da;
  margin-right: 15px;
  margin-left: 15px;
}
@media (max-width: 991px) {
  .mdc-top-app-bar .mdc-top-app-bar__section-right .divider {
    margin-right: 0;
    margin-left: 0;
  }
}
.mdc-top-app-bar .mdc-top-app-bar__section-right .menu-profile button {
  width: auto;
  letter-spacing: normal;
}
.mdc-top-app-bar .mdc-top-app-bar__section-right .menu-profile button .figure {
  overflow: hidden;
  margin: 0;
  height: 25px;
}
.mdc-top-app-bar .mdc-top-app-bar__section-right .menu-profile button .figure img {
  height: 100%;
  border-radius: 25px;
  margin-right: 10px;
}
.mdc-top-app-bar .mdc-top-app-bar__section-right .menu-profile button .user-name {
  font-size: 14px;
  color: #000;
  font-weight: normal;
}

/* Sidebar */
.mdc-drawer {
  background: #303338;
  font-weight: 600;
  position: fixed;
}
.mdc-drawer--open, .mdc-drawer__drawer {
  width: 256px;
}
.mdc-drawer .mdc-drawer-menu > .mdc-drawer-item > .mdc-drawer-link, .mdc-drawer .mdc-drawer-menu > .mdc-drawer-item > .mdc-expansion-panel-link {
  padding-left: 4px !important;
}
.mdc-drawer .mdc-drawer__header {
  padding: 0;
  margin: 7px 10px 7px 10px;
  margin-top: 0;
  margin-bottom: 0;
}
.mdc-drawer .mdc-drawer__header .brand-logo {
  display: block;
  padding: 28px 0;
}
.mdc-drawer .mdc-drawer__content .user-info {
  color: #fff;
  margin: 7px 10px 7px 10px;
  margin-bottom: 22px;
  font-weight: 300;
}
.mdc-drawer .mdc-drawer__content .user-info .name {
  font-weight: 500;
}
.mdc-drawer .mdc-drawer__content .user-info p {
  margin-bottom: 6px;
}
.mdc-drawer .mdc-drawer__content .mdc-drawer-menu .mdc-drawer-item {
  cursor: pointer;
  display: block;
  height: auto;
  padding: 0;
  font-weight: 600;
  border-bottom: 1px solid #44474C;
  margin: 7px 10px 7px 10px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  -o-border-radius: 2px;
  border-radius: 2px;
}
.mdc-drawer .mdc-drawer__content .mdc-drawer-menu .mdc-drawer-item:before {
  z-index: -1;
}
.mdc-drawer .mdc-drawer__content .mdc-drawer-menu .mdc-drawer-item:active:before {
  opacity: 0;
}
.mdc-drawer .mdc-drawer__content .mdc-drawer-menu .mdc-drawer-item .mdc-expansion-panel-link,
.mdc-drawer .mdc-drawer__content .mdc-drawer-menu .mdc-drawer-item .mdc-drawer-link {
  height: 32px;
  line-height: 0.85rem;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  font-weight: 600;
  text-decoration: none;
  color: #fff;
}
.mdc-drawer .mdc-drawer__content .mdc-drawer-menu .mdc-drawer-item .mdc-expansion-panel-link i,
.mdc-drawer .mdc-drawer__content .mdc-drawer-menu .mdc-drawer-item .mdc-drawer-link i {
  color: inherit;
}
.mdc-drawer .mdc-drawer__content .mdc-drawer-menu .mdc-drawer-item .mdc-expansion-panel-link i.mdc-drawer-item-icon,
.mdc-drawer .mdc-drawer__content .mdc-drawer-menu .mdc-drawer-item .mdc-drawer-link i.mdc-drawer-item-icon {
  font-size: 1.25rem;
  margin-right: 0.562rem;
}
.mdc-drawer .mdc-drawer__content .mdc-drawer-menu .mdc-drawer-item .mdc-expansion-panel-link .mdc-drawer-arrow,
.mdc-drawer .mdc-drawer__content .mdc-drawer-menu .mdc-drawer-item .mdc-drawer-link .mdc-drawer-arrow {
  margin-left: auto;
  font-size: 1.25rem;
  transition: all 0.3s ease;
}
.mdc-drawer .mdc-drawer__content .mdc-drawer-menu .mdc-drawer-item .mdc-expansion-panel-link .mdc-drawer-arrow.expanded,
.mdc-drawer .mdc-drawer__content .mdc-drawer-menu .mdc-drawer-item .mdc-drawer-link .mdc-drawer-arrow.expanded {
  transform: rotate(90deg);
}
.mdc-drawer .mdc-drawer__content .mdc-drawer-menu .mdc-drawer-item .mdc-expansion-panel-link.expanded .mdc-drawer-arrow,
.mdc-drawer .mdc-drawer__content .mdc-drawer-menu .mdc-drawer-item .mdc-drawer-link.expanded .mdc-drawer-arrow {
  transform: rotate(90deg);
}
.mdc-drawer .mdc-drawer__content .mdc-drawer-menu .mdc-drawer-item .mdc-expansion-panel-link.active,
.mdc-drawer .mdc-drawer__content .mdc-drawer-menu .mdc-drawer-item .mdc-drawer-link.active {
  background: #009BD8;
  color: #000;
}
.mdc-drawer .mdc-drawer__content .mdc-drawer-menu .mdc-drawer-item .mdc-expansion-panel {
  display: none;
}
.mdc-drawer .mdc-drawer__content .mdc-drawer-menu .mdc-drawer-submenu .mdc-drawer-item {
  border-bottom: 0px;
  margin-left: 22px;
}
.mdc-drawer .mdc-drawer__content .profile-actions {
  display: -webkit-flex;
  display: flex;
  margin: 7px 10px 7px 10px;
  margin-top: 20px;
  margin-bottom: 38px;
  padding: 0 0.75rem;
}
.mdc-drawer .mdc-drawer__content .profile-actions a {
  font-weight: 500;
  font-size: 12px;
  color: #bababa;
  padding: 0 10px;
}
.mdc-drawer .mdc-drawer__content .profile-actions a:first-child {
  padding-left: 0;
}
.mdc-drawer .mdc-drawer__content .profile-actions a:last-child {
  padding-right: 0;
}
.mdc-drawer .mdc-drawer__content .profile-actions .divider {
  width: 1px;
  height: 5px;
  margin-top: 1px;
  background: #bababa;
}
.mdc-drawer .mdc-drawer__content .mdc-expansion-panel {
  background-color: #36393e;
  margin-left: 0px;
  margin-right: 0px;
  margin-bottom: 4px;
}
.mdc-drawer .mdc-drawer__content .mdc-expansion-panel div .text-primary {
  letter-spacing: 0.2rem;
  text-transform: uppercase;
  font-size: 0.6875rem;
}
.mdc-drawer .mdc-drawer__content .mdc-expansion-panel .mdc-drawer-item .mdc-drawer-link {
  padding-left: 12px;
}
.mdc-drawer .mdc-drawer__content .mdc-expansion-panel .mdc-drawer-item div {
  padding-left: 12px;
}
.mdc-drawer .change-system {
  margin-top: 0;
  margin-bottom: 0px;
  padding: 7px 10px 7px 10px;
  background-color: #4D5056;
  padding-top: 5px;
  padding-bottom: 0px;
}
.mdc-drawer .change-system select, .mdc-drawer .change-system .mdc-select__selected-text {
  background-color: #4D5056;
  color: #fff;
  border: 0px;
  padding-left: 0px;
}
.mdc-drawer .change-system .mdc-select__anchor {
  border: 0px;
  height: 28px;
  width: 100%;
  border-radius: 0px;
  padding-left: 0px;
  background-color: #4D5056 !important;
}
.mdc-drawer .change-system .mdc-select__dropdown-icon {
  background-color: #4D5056;
  color: #fff;
  margin: 0px;
  padding: 0px;
}
.mdc-drawer .change-system .mdc-select {
  background-color: #4D5056 !important;
  height: 32px;
}
.mdc-drawer .change-system .select__dropdown-icon {
  filter: grayscale(1);
}
.mdc-drawer .logout {
  height: 51px;
  margin-top: 0;
  margin-bottom: 0;
  padding: 7px 10px 7px 10px;
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #44474C;
  color: #E9ECF0;
}
.mdc-drawer .logout i {
  color: inherit;
}
.mdc-drawer .logout i.mdc-drawer-item-icon {
  font-size: 1.25rem;
}
.mdc-drawer .logout a {
  font-weight: 600;
  display: flex;
  color: #fff;
}
.mdc-drawer .last-login {
  font-size: 10px;
  color: #9AA1AC;
}
.mdc-drawer .mdc-drawer .mdc-drawer__content .mdc-drawer-menu .mdc-drawer-item .mdc-expansion-panel-link {
  padding-top: 8px;
  padding-bottom: 8px;
}
.mdc-drawer .ps .ps__rail-y:hover {
  background: transparent;
}
.mdc-drawer .ps .ps__rail-y:hover .ps__thumb-y {
  width: 6px;
}
.mdc-drawer .ps .ps__rail-y .ps__thumb-y {
  background-color: #6d6386;
  width: 4px;
}

#more-menu {
  width: 234px;
  margin-bottom: 15px;
}
#more-menu li:not(:last-child) {
  border-bottom: 1px solid #CED4DC;
}
#more-menu li {
  padding: 2px;
}

.avatar {
  width: 28px;
  height: 28px;
  border-radius: 14px;
  /* Secondary/$malibu */
  background: #59B4E7;
  text-transform: capitalize;
  font-style: normal;
  font-weight: 500;
  font-size: 1rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  /* Grays/$white */
  color: #FFFFFF;
}

.connect-ok {
  color: #5ABE8E;
}

.connect-init {
  /* Grays/$gray */
  color: #777C84;
}

footer {
  padding: 0 30px 16px;
}
footer a {
  color: #000;
}
footer .vertical-divider {
  width: 1px;
  height: 60%;
  background: #000;
  margin: 0 18px;
}

.mdc-drawer.mdc-drawer--open + .mdc-drawer-app-content .mdc-top-app-bar .mdc-top-app-bar__row .search-text-field {
  display: none;
}
.mdc-drawer.mdc-drawer--open + .mdc-drawer-app-content .mdc-top-app-bar .mdc-top-app-bar__row .menu-profile + .divider {
  display: none;
}
@media (max-width: 767px) {
  .mdc-drawer.mdc-drawer--open + .mdc-drawer-app-content .mdc-top-app-bar .mdc-top-app-bar__row .mdc-top-app-bar__title {
    display: none;
  }
  .mdc-drawer.mdc-drawer--open + .mdc-drawer-app-content .mdc-top-app-bar .mdc-top-app-bar__row .top-app-bar-search {
    display: none;
  }
}
@media (max-width: 991px) {
  .mdc-drawer.mdc-drawer--open + .mdc-drawer-app-content .mdc-top-app-bar .mdc-top-app-bar__row .mdc-top-app-bar__section-right {
    display: none;
  }
}
@media (max-width: 991px) {
  .mdc-drawer + .mdc-drawer-app-content .mdc-top-app-bar .mdc-top-app-bar__row .menu-profile + .divider {
    display: none;
  }
}

.body-wrapper .main-wrapper {
  min-height: 100vh;
}
.body-wrapper .main-wrapper .page-wrapper {
  background: #fff;
}
.body-wrapper .main-wrapper .page-wrapper .content-wrapper {
  min-height: calc(100vh - 78px - 20px);
  padding: 10px 24px;
}
@media (max-width: 991px) {
  .body-wrapper .main-wrapper .page-wrapper .content-wrapper {
    padding: 8px;
  }
}
@media (max-width: 767px) {
  .body-wrapper .main-wrapper .page-wrapper .content-wrapper {
    padding: 5px;
  }
}
.body-wrapper .main-wrapper .page-wrapper.full-page-wrapper {
  padding-top: 0;
  min-height: 100vh;
}

.mdc-drawer + .mdc-drawer-app-content {
  transition: margin-left 0.2s linear;
}
.mdc-drawer + .mdc-drawer-app-content .mdc-top-app-bar {
  transition: margin-left 0.2s linear;
  right: 0;
  background-color: #f5f9fa;
}
@media (max-width: 991px) {
  .mdc-drawer + .mdc-drawer-app-content .mdc-top-app-bar {
    transition: none;
  }
}
@media (max-width: 991px) {
  .mdc-drawer.mdc-drawer--open:not(.mdc-drawer--closing) + .mdc-drawer-app-content {
    margin-left: 0;
  }
  .mdc-drawer.mdc-drawer--open:not(.mdc-drawer--closing) + .mdc-drawer-app-content .mdc-top-app-bar {
    margin-left: 256px;
    width: calc(100% - 256px);
  }
}
/*# sourceMappingURL=../maps/site/mdc-web.custom.css.map */
