/* font bawaan */
/* @font-face {
  font-family: 'Nunito';
  src: url('../font/Nunito-Regular.ttf');
  src: url('../font/Nunito-Regular.ttf') format('ttf'),
    url('../font/Nunito-Regular.ttf') format('truetype');
} */

/* Montserrat Font */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600&display=swap');

/* Bootstrap Icons  */
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.9.1/font/bootstrap-icons.css");


html {
  position: relative;
  min-height: 100%;
  font-family: 'Montserrat';
}

:root {
  --bg-color: #f3f7ff !important;
  --bg-navbar: #f3f7ff !important;
  --font-color: #180A0A !important;
  --font-color2: #180A0A !important;
  --bg-card: #fff !important;
  --bg-form: #F7F7F7 !important;
  --form-solid: #D5E4ED !important;
  --bg-mns: #379392 !important;
  --bg-yellow: #ffa426 !important;
  --gray: #9CA3AE !important;
  --bg-color-navbar: #fff !important;
  --border: #ebecee !important;
  --border-hr: rgba(0, 0, 0, 0.1) !important;
  --logo: url("../../base/img/mnslogo/mns-logo-text-right-379392.svg") no-repeat;
}

[data-theme="dark"] {
  --bg-color: #283039 !important;
  --bg-navbar: #283039 !important;
  --font-color: #fff !important;
  --t-color: #000 !important;
  --font-color2: #e0e0e0 !important;
  --bg-card: #303841 !important;
  --bg-form: #4A5561 !important;
  --form-solid: #404953 !important;
  --gray: #9CA3AE !important;
  --border: #363f49 !important;
  --border-hr: rgba(209, 209, 209, 0.301) !important;
  --bg-color-navbar: #303841 !important;
  --logo: url("../../base/img/mnslogo/mns-logo-text-right-379392-font-white.svg") no-repeat;
}

body::-webkit-scrollbar-track {
  /* -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3); */
  background-color: var(--bg-color);
}

body::-webkit-scrollbar {
  width: 10px;
  background-color: var(--bg-color);
}

body::-webkit-scrollbar-thumb {
  background-color: #3f9291;
  border: 2px solid #3f9291;
}

textarea.invite::-webkit-scrollbar-track {
  /* -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3); */
  background-color: var(--bg-color);
}

textarea.invite::-webkit-scrollbar {
  width: 10px;
  background-color: var(--bg-color);
}

textarea.invite::-webkit-scrollbar-thumb {
  background-color: #3f9291;
  border: 2px solid #3f9291;
}

textarea.invite:read-only {
  color: var(--font-color);
}

.input-group-text {
  background-color: var(--bg-card) !important;
  border: 1px solid #379392 !important;
}

.bs-canvas-overlay {
  opacity: 0;
  z-index: -1;
}

.bs-canvas-overlay.show {
  opacity: 0.85;
  z-index: 1100;
}

.bs-canvas-overlay,
.bs-canvas {
  transition: all .4s ease-out;
  -webkit-transition: all .4s ease-out;
  -moz-transition: all .4s ease-out;
  -ms-transition: all .4s ease-out;
}

.bs-canvas {
  top: 0;
  z-index: 1110;
  overflow-x: hidden;
  overflow-y: auto;
  width: 330px;
  background-color: var(--bg-card);
}

.bs-canvas::-webkit-scrollbar-track {
  /* -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3); */
  background-color: var(--bg-color);
}

.bs-canvas::-webkit-scrollbar {
  width: 10px;
  background-color: var(--bg-color);
}

.bs-canvas::-webkit-scrollbar-thumb {
  background-color: #3f9291;
  border: 2px solid #3f9291;
}

.textarea-container {
  position: relative;
}

.textarea-container textarea {
  width: 100%;
  height: 100%;
  box-sizing: border-box;
}

.textarea-container button {
  position: absolute;
  top: 0;
  right: 12px;
}

.textarea-hint {
  background-color: #4fb8b8;
  color: #fff;
}

.bs-canvas-left {
  left: 0;
  margin-left: -330px;
}

.bs-canvas-right {
  right: 0;
  margin-right: -330px;
}

.bs-canvas-content {
  background-color: var(--bg-card);
  font-size: small;
}

th,
td {
  color: var(--font-color);
}

.logo {
  background: var(--logo);
  background-size: 70px;
  height: 30px;
  padding-left: 100px;
}

.mns-border {
  border-color: #379393;
}

.popover-header {
  color: #fff;
  background-color: #379392;
  font-size: 13px;
}

.popover-body {
  color: rgb(0, 0, 0);
  font-size: 12px;
}

.popover {
  margin-left: 55px;
  margin-right: -15px;
}

.text-yellow {
  color: var(--bg-yellow) !important;
}

.text-yellow:hover {
  color: #b97412 !important;
}

.font-gray {
  color: var(--gray) !important;
}

a {
  text-decoration: none !important;
  color: #48aac2;
}

a:hover {
  text-decoration: none !important;
  color: #0e6175;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  color: var(--font-color);
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 600;
}

.form-control,
.bg-gray2 {
  background-color: var(--bg-form);
  border: 1px solid var(--border);
  color: var(--font-color);
}

.thead-light th {
  background-color: var(--bg-form) !important;
  color: var(--font-color) !important;
  border: 1px solid var(--border) !important;
}

p,
.p,
span,
label,
.text-primary {
  color: var(--font-color) !important;
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  font-size: 0.7200em;
}

.t-color {
  color: var(--font-color) !important;
}

.bg-color {
  background-color: var(--bg-color);
}

.font-color2 {
  color: var(--font-color2);
}

b,
.b {
  color: var(--font-color) !important;
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 600;
  font-size: 0.9200em;
}

.bg-white,
.card,
.card-header {
  background-color: var(--bg-card) !important;
  border: 1px solid var(--border) !important;
}

.bg-white:focus {
  border: 1px solid #48aac2 !important;
  background-color: #fff !important;
}

.bg-mns {
  background-color: var(--bg-mns) !important;
}

.bg-yellow {
  background-color: var(--bg-yellow) !important;
}

.text-white {
  color: var(--font-color) !important;
}

.space-bottom {
  margin-bottom: 6rem;
}

.icon-mini {
  height: 1.3rem;
  width: 1.3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-mini-bi {
  font-size: 0.7rem;
}

body {
  height: 100%;
  background-color: var(--bg-color) !important;
}

a:focus {
  outline: none;
}

hr {
  border-top: 1px solid var(--border-hr) !important;
}


/* mobile */
@media only screen and (max-width: 600px) {
  .hideonmobile {
    display: none !important;
  }

  /* .dtr-title {
                display: none !important;
            } */
  .aksi {
    padding: 0.61rem !important;
  }

  .dataTables_length {
    display: none !important;
  }

  /* .dataTables_length label{
                display: none !important;
            } */

}

/* pc */
@media only screen and (min-width: 601px) {
  .aksi {
    padding: 0.68rem !important;
  }

  .onmobile {
    display: none !important;
  }
}

.table>tbody>tr>th {
  vertical-align: middle !important;
  color: var(--font-color) !important;
}

.table>tbody>tr>td {
  vertical-align: middle !important;
  color: var(--font-color) !important;
}

table.dataTable.dtr-inline.collapsed>tbody>tr>td.dtr-control:before,
table.dataTable.dtr-inline.collapsed>tbody>tr>th.dtr-control:before {
  left: 10px !important;
  background-color: #2368a2 !important;
}

.table>tbody>tr>td {
  vertical-align: middle !important;
}


#map {
  height: 270px;
  margin-top: 10px;
}

.mapboxgl-ctrl-geocoder {
  min-width: 100%;
}

/*COLLOR PALATE MNS*/
.mns-bg {
  background: #379393;
}

.mns-text {
  color: #379393;
}

.mns-text:hover {
  color: #216b6a;
}

.grup {
  border: 0px;
  padding: 5px;
  width: 100%;
  background: rgb(255, 255, 255);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(55, 147, 147, 0.7146171693735499) 50%, rgba(255, 255, 255, 0) 100%);
}

.w-30 {
  width: 30%;
}


/* KEHADIRAN */
.Akan.Hadir {
  background: #304058;
  color: #fff;
}

.Berhalangan.Hadir {
  background: #304058;
  color: #ECD662;
}

/* END KEHADIRAN */
/* VALIDASI */
.isidulu {
  box-shadow: 0 0 5px rgba(240, 52, 52, 1);
  border: 1px solid rgba(240, 52, 52, 1);
}

label.isidulu {
  box-shadow: 0 0 0px rgba(240, 52, 52, 0.0);
  border: 0px;
  color: red;
}

/* END VALIDASI */
.croppie-container .cr-boundary {
  width: 100%;
  height: 100%;
}



.bg-parallax {
  background-image: url("/assets/landing/images/background.jpg");

  /* Set a specific height */
  min-height: 500px;

  /* Create the parallax scrolling effect */
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

#wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#wrapper #content-wrapper {
  background-color: var(--bg-color);
  width: 100%;
  overflow-x: hidden;
  max-width: 768px;
  margin: 0 auto;
}

#wrapper #content-wrapper #content {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
}


.container,
.container-fluid {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.container-login {
  display: flex;
  width: 100vw;
  height: 100vh;
  justify-content: center;
  align-items: center;
}

.scroll-to-top {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  text-align: center;
  color: #fff;
  background: rgba(90, 92, 105, 0.5);
  line-height: 46px;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
}

.scroll-to-top:focus,
.scroll-to-top:hover {
  color: white;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
}

.scroll-to-top:hover {
  background: #5a5c69;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
}

.scroll-to-top i {
  font-weight: 800;
}

@-webkit-keyframes growIn {
  0% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
    opacity: 0;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes growIn {
  0% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
    opacity: 0;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}

.animated--grow-in,
.sidebar .nav-item .collapse {
  -webkit-animation-name: growIn;
  animation-name: growIn;
  -webkit-animation-duration: 200ms;
  animation-duration: 200ms;
  -webkit-animation-timing-function: transform cubic-bezier(0.18, 1.25, 0.4, 1), opacity cubic-bezier(0, 1, 0.4, 1);
  animation-timing-function: transform cubic-bezier(0.18, 1.25, 0.4, 1), opacity cubic-bezier(0, 1, 0.4, 1);
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.animated--fade-in {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
  -webkit-animation-duration: 200ms;
  animation-duration: 200ms;
  -webkit-animation-timing-function: opacity cubic-bezier(0, 1, 0.4, 1);
  animation-timing-function: opacity cubic-bezier(0, 1, 0.4, 1);
}


.bg-gradient-primary {
  background-color: #005CAA;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #005CAA), to(#00c6f9));
  background-image: linear-gradient(180deg, #005CAA 10%, #00c6f9 100%);
  background-size: cover;
}

.bg-gradient-secondary {
  background-color: #757575;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #757575), to(#60616f));
  background-image: linear-gradient(180deg, #757575 10%, #60616f 100%);
  background-size: cover;
}

.bg-gradient-success {
  background-color: #66bb6a;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #66bb6a), to(#13855c));
  background-image: linear-gradient(180deg, #66bb6a 10%, #13855c 100%);
  background-size: cover;
}

.bg-gradient-info {
  background-color: #3abaf4;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #3abaf4), to(#258391));
  background-image: linear-gradient(180deg, #3abaf4 10%, #258391 100%);
  background-size: cover;
}

.bg-gradient-warning {
  background-color: #ffa426;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #ffa426), to(#dda20a));
  background-image: linear-gradient(180deg, #f6c23e 10%, #ffa426 100%);
  background-size: cover;
}

.bg-gradient-danger {
  background-color: #fc544b;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #fc544b), to(#be2617));
  background-image: linear-gradient(180deg, #fc544b 10%, #be2617 100%);
  background-size: cover;
}

.bg-gradient-light {
  background-color: #e3eaef;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #e3eaef), to(#c2cbe5));
  background-image: linear-gradient(180deg, #e3eaef 10%, #c2cbe5 100%);
  background-size: cover;
}

.bg-gradient-dark {
  background-color: #212121;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #212121), to(#373840));
  background-image: linear-gradient(180deg, #212121 10%, #373840 100%);
  background-size: cover;
}

.bg-gradient-default {
  background: linear-gradient(87deg, #172b4d 0, #1a174d 100%) !important;
}

.bg-gradient-login {
  background-image: url('../../base/img/blue.svg');
  background-size: cover;
}

.bg-gray-100 {
  background-color: #f8f9fc !important;
}

.bg-gray-200 {
  background-color: #eaecf4 !important;
}

.bg-gray-300 {
  background-color: #dddfeb !important;
}

.bg-gray-400 {
  background-color: #d1d3e2 !important;
}

.bg-gray-500 {
  background-color: #b7b9cc !important;
}

.bg-gray-600 {
  background-color: #858796 !important;
}

.bg-gray-700 {
  background-color: #6e707e !important;
}

.bg-gray-800 {
  background-color: #5a5c69 !important;
}

.bg-gray-900 {
  background-color: #3a3b45 !important;
}

.o-hidden {
  overflow: hidden !important;
}

.text-xs {
  font-size: .7rem;
}

.text-lg {
  font-size: 1.2rem;
}

.text-gray-100 {
  color: #f8f9fc !important;
}

.text-gray-200 {
  color: #eaecf4 !important;
}

.text-gray-300 {
  color: #dddfeb !important;
}

.text-gray-400 {
  color: #d1d3e2 !important;
}

.text-gray-500 {
  color: #b7b9cc !important;
}

.text-gray-600 {
  color: #858796 !important;
}

.text-gray-700 {
  color: #6e707e !important;
}

.text-gray-800 {
  color: #5a5c69 !important;
}

.text-gray-900 {
  color: #3a3b45 !important;
}



.icon-circle {
  height: 2.5rem;
  width: 2.5rem;
  border-radius: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.border-left-primary {
  border-left: 0.25rem solid #005CAA !important;
}

.border-bottom-primary {
  border-bottom: 0.25rem solid #005CAA !important;
}

.border-left-secondary {
  border-left: 0.25rem solid #757575 !important;
}

.border-bottom-secondary {
  border-bottom: 0.25rem solid #757575 !important;
}

.border-left-success {
  border-left: 0.25rem solid #66bb6a !important;
}

.border-bottom-success {
  border-bottom: 0.25rem solid #66bb6a !important;
}

.border-left-info {
  border-left: 0.25rem solid #4dd0e1 !important;
}

.border-bottom-info {
  border-bottom: 0.25rem solid #4dd0e1 !important;
}

.border-left-warning {
  border-left: 0.25rem solid #ffeb3b !important;
}

.border-bottom-warning {
  border-bottom: 0.25rem solid #ffeb3b !important;
}

.border-left-danger {
  border-left: 0.25rem solid #ef5350 !important;
}

.border-bottom-danger {
  border-bottom: 0.25rem solid #ef5350 !important;
}

.border-left-light {
  border-left: 0.25rem solid #f8f9fc !important;
}

.border-bottom-light {
  border-bottom: 0.25rem solid #f8f9fc !important;
}

.border-left-dark {
  border-left: 0.25rem solid #5a5c69 !important;
}

.border-bottom-dark {
  border-bottom: 0.25rem solid #5a5c69 !important;
}

.progress-sm {
  height: .5rem;
}

.rotate-15 {
  -webkit-transform: rotate(15deg);
  transform: rotate(15deg);
}

.rotate-n-15 {
  -webkit-transform: rotate(-15deg);
  transform: rotate(-15deg);
}

.dropdown .dropdown-menu {
  font-size: 0.85rem;
  /* -webkit-box-shadow: 0 0.15rem 1.75rem 0 rgba(58, 59, 69, 0.15) !important;
  box-shadow: 0 0.15rem 1.75rem 0 rgba(58, 59, 69, 0.15) !important; */
}

.dropdown .dropdown-menu .dropdown-header {
  font-weight: 800;
  font-size: 0.65rem;
  color: #b7b9cc;
}

.dropdown.no-arrow .dropdown-toggle::after {
  display: none;
}

.sidebar .nav-item.dropdown .dropdown-toggle::after,
.topbar .nav-item.dropdown .dropdown-toggle::after {
  width: 1rem;
  text-align: center;
  float: right;
  vertical-align: 0;
  border: 0;
  font-weight: 900;
  content: '\f105';
  font-family: 'Font Awesome 5 Free';
}

.sidebar .nav-item.dropdown.show .dropdown-toggle::after,
.topbar .nav-item.dropdown.show .dropdown-toggle::after {
  content: '\f107';
}

.sidebar .nav-item .nav-link,
.topbar .nav-item .nav-link {
  position: relative;
}

.sidebar .nav-item .nav-link .badge-counter,
.topbar .nav-item .nav-link .badge-counter {
  position: absolute;
  -webkit-transform: scale(0.7);
  transform: scale(0.7);
  -webkit-transform-origin: top right;
  transform-origin: top right;
  right: .25rem;
  margin-top: -.25rem;
}

.sidebar .nav-item .nav-link .img-profile,
.topbar .nav-item .nav-link .img-profile {
  height: 2rem;
  width: 2rem;
  border: 1px solid #fafafa;
}

.topbar {
  height: 4.375rem;
  z-index: 2;
  /* -webkit-box-shadow: 0 0.15rem 1.75rem 0 rgba(58, 59, 69, 0.15) !important;
  box-shadow: 0 0.15rem 1.75rem 0 rgba(58, 59, 69, 0.15) !important; */
}

.topbar #sidebarToggleTop {
  height: 2.5rem;
  width: 2.5rem;
  -webkit-box-shadow: 0 0 0 0 !important;
  box-shadow: 0 0 0 0 !important;
}

.topbar #sidebarToggleTop:hover {
  background-color: #fafafa;
}

.topbar #sidebarToggleTop:active {
  background-color: #dddfeb;
}

.topbar .navbar-search {
  width: 25rem;
}

.topbar .navbar-search input {
  font-size: 0.85rem;
}

.topbar .topbar-divider {
  width: 0;
  border-right: 1px solid #e3e6f0;
  height: calc(4.375rem - 2rem);
  margin: auto 1rem;
}

.topbar .nav-item .nav-link {
  height: 4.375rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 0.75rem;
}

.topbar .nav-item .nav-link:focus {
  outline: none;
}

.topbar .nav-item:focus {
  outline: none;
}

.topbar .dropdown {
  position: static;
}

.topbar .dropdown .dropdown-menu {
  width: calc(50% - 1.5rem);
  right: 0.75rem;
  background-color: var(--bg-card);
}

.topbar .dropdown-list {
  padding: 0;
  border: none;
  overflow: hidden;
}

.topbar .dropdown-list .dropdown-header {
  background-color: #005CAA;
  border: 1px solid #005CAA;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  color: #fff;
}

.topbar .dropdown-list .dropdown-item {
  white-space: normal;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  border-left: 1px solid #e3e6f0;
  border-right: 1px solid #e3e6f0;
  border-bottom: 1px solid #e3e6f0;
  line-height: 1.3rem;
}

.topbar .dropdown-list .dropdown-item .dropdown-list-image {
  position: relative;
  height: 2.5rem;
  width: 2.5rem;
}

.topbar .dropdown-list .dropdown-item .dropdown-list-image img {
  height: 2.5rem;
  width: 2.5rem;
}

.topbar .dropdown-list .dropdown-item .dropdown-list-image .status-indicator {
  background-color: #eaecf4;
  height: 0.75rem;
  width: 0.75rem;
  border-radius: 100%;
  position: absolute;
  bottom: 0;
  right: 0;
  border: 0.125rem solid #fff;
}

.topbar .dropdown-list .dropdown-item .text-truncate {
  max-width: 10rem;
}

.topbar .dropdown-list .dropdown-item:active {
  background-color: #eaecf4;
  color: #3a3b45;
}

@media (min-width: 576px) {
  .topbar .dropdown {
    position: relative;
  }

  .topbar .dropdown .dropdown-menu {
    width: auto;
    right: 0;
  }

  .topbar .dropdown-list {
    width: 20rem !important;
  }

  .topbar .dropdown-list .dropdown-item .text-truncate {
    max-width: 13.375rem;
  }

}

.topbar.navbar-light .navbar-nav .nav-item .nav-link {
  color: #fafafa;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
}

.topbar.navbar-light .navbar-nav .nav-item .nav-link:hover {
  color: #e0e0e0;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
}

.topbar.navbar-light .navbar-nav .nav-item .nav-link:active {
  color: #858796;
}

.bg-navbar {
  background-color: var(--bg-navbar);
}

.breadcrumb {
  background-color: transparent;
  font-size: 12px;
  font-weight: bold;
}

.sidebar-light .sidebar-brand {
  color: #3e393c;
  background-color: #f2f2f2;
}

.sidebar-light hr.sidebar-divider {
  border-top: 1px solid #eaecf4;
}

.sidebar-light .sidebar-heading {
  color: #b7b9cc;
}

.sidebar-light .nav-item .nav-link {
  color: #858796;
}

.sidebar-light .nav-item .nav-link i {
  color: #9e9e9e;
}

.sidebar-light .nav-item .nav-link:active,
.sidebar-light .nav-item .nav-link:focus,
.sidebar-light .nav-item .nav-link:hover {
  color: #6e707e;
  background-color: #eeeeee;
}

.sidebar-light .nav-item .nav-link:active i,
.sidebar-light .nav-item .nav-link:focus i,
.sidebar-light .nav-item .nav-link:hover i {
  color: #6e707e;
}

.sidebar-light .nav-item .nav-link[data-toggle="collapse"]::after {
  color: #b7b9cc;
}

.sidebar-light .nav-item.active .nav-link {
  color: #6e707e;
}

.sidebar-light .nav-item.active .nav-link i {
  color: #6e707e;
}

.sidebar-light #sidebarToggle {
  background-color: #eaecf4;
}

.sidebar-light #sidebarToggle::after {
  color: #b7b9cc;
}

.sidebar-light #sidebarToggle:hover {
  background-color: #dddfeb;
}

.sidebar-dark .sidebar-brand {
  color: #fff;
}

.sidebar-dark hr.sidebar-divider {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.sidebar-dark .sidebar-heading {
  color: rgba(255, 255, 255, 0.4);
}

.sidebar-dark .nav-item .nav-link {
  color: rgba(255, 255, 255, 0.8);
}

.sidebar-dark .nav-item .nav-link i {
  /* color: rgba(255, 255, 255, 0.3); */
  color: #d1d3e2;
}

.sidebar-dark .nav-item .nav-link:active,
.sidebar-dark .nav-item .nav-link:focus,
.sidebar-dark .nav-item .nav-link:hover {
  color: #fff;
}

.sidebar-dark .nav-item .nav-link:active i,
.sidebar-dark .nav-item .nav-link:focus i,
.sidebar-dark .nav-item .nav-link:hover i {
  color: #fff;
}

.sidebar-dark .nav-item .nav-link[data-toggle="collapse"]::after {
  color: rgba(255, 255, 255, 0.5);
}

.sidebar-dark .nav-item.active .nav-link {
  color: #fff;
}

.sidebar-dark .nav-item.active .nav-link i {
  color: #fff;
}

.sidebar-dark #sidebarToggle {
  background-color: rgba(255, 255, 255, 0.2);
}

.sidebar-dark #sidebarToggle::after {
  color: rgba(255, 255, 255, 0.5);
}

.sidebar-dark #sidebarToggle:hover {
  background-color: rgba(255, 255, 255, 0.25);
}

.sidebar-dark.toggled #sidebarToggle::after {
  color: rgba(255, 255, 255, 0.5);
}

.btn-icon-split {
  padding: 0;
  overflow: hidden;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.btn-icon-split .icon {
  background: rgba(0, 0, 0, 0.15);
  display: inline-block;
  padding: 0.375rem 0.75rem;
}

.btn-icon-split .text {
  display: inline-block;
  padding: 0.375rem 0.75rem;
}

.btn-icon-split.btn-sm .icon,
.btn-group-sm>.btn-icon-split.btn .icon {
  padding: 0.25rem 0.5rem;
}

.btn-icon-split.btn-sm .text,
.btn-group-sm>.btn-icon-split.btn .text {
  padding: 0.25rem 0.5rem;
}

.btn-icon-split.btn-lg .icon,
.btn-group-lg>.btn-icon-split.btn .icon {
  padding: 0.5rem 1rem;
}

.btn-icon-split.btn-lg .text,
.btn-group-lg>.btn-icon-split.btn .text {
  padding: 0.5rem 1rem;
}

.card .card-header .dropdown {
  line-height: 1;
}

.card .card-header .dropdown .dropdown-menu {
  line-height: 1.5;
}

.card .card-header[data-toggle="collapse"] {
  text-decoration: none;
  position: relative;
  padding: 0.75rem 3.25rem 0.75rem 1.25rem;
}

.card .card-header[data-toggle="collapse"]::after {
  position: absolute;
  right: 0;
  top: 0;
  padding-right: 1.725rem;
  line-height: 51px;
  font-weight: 900;
  content: '\f107';
  font-family: 'Font Awesome 5 Free';
}

.card .card-header[data-toggle="collapse"].collapsed {
  border-radius: 0.35rem;
}

.card .card-header[data-toggle="collapse"].collapsed::after {
  content: '\f105';
}

.chart-area {
  position: relative;
  height: 10rem;
  width: 100%;
}

@media (min-width: 768px) {
  .chart-area {
    height: 20rem;
  }
}

.chart-bar {
  position: relative;
  height: 10rem;
  width: 100%;
}

@media (min-width: 768px) {
  .chart-bar {
    height: 20rem;
  }
}

.chart-pie {
  position: relative;
  height: 15rem;
  width: 100%;
}

@media (min-width: 768px) {
  .chart-pie {
    height: calc(20rem - 43px) !important;
  }
}

.bg-login-image {
  background-position: center;
  background-size: cover;
}

.bg-register-image {
  background-position: center;
  background-size: cover;
}

.bg-password-image {
  background-position: center;
  background-size: cover;
}

.btn-google {
  color: #434334;
  background-color: #ffffff;
  border-color: #bdbdbd;
  -webkit-box-shadow: 0 0.125rem 0.25rem 0 rgba(58, 59, 69, 0.2) !important;
  box-shadow: 0 0.125rem 0.25rem 0 rgba(58, 59, 69, 0.2) !important;
  border-radius: 0.25rem;
}

.btn-google:hover {
  color: #434343;
  background-color: #f5f5f5;
  border-color: #434343;
}

.btn-google:focus,
.btn-google.focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.5);
  box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.5);
}

.btn-google.disabled,
.btn-google:disabled {
  color: #434343;
  background-color: #eeeeee;
  border-color: #434334;
}

.btn-google:not(:disabled):not(.disabled):active,
.btn-google:not(:disabled):not(.disabled).active,
.show>.btn-google.dropdown-toggle {
  color: #434334;
  background-color: #eeeeee;
  border-color: #434343;
}

.btn-google:not(:disabled):not(.disabled):active:focus,
.btn-google:not(:disabled):not(.disabled).active:focus,
.show>.btn-google.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.5);
  box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.5);
}

.btn-facebook {
  color: #fff;
  background-color: #3b5998;
  border-color: #fff;
  -webkit-box-shadow: 0 0.125rem 0.25rem 0 rgba(58, 59, 69, 0.2) !important;
  box-shadow: 0 0.125rem 0.25rem 0 rgba(58, 59, 69, 0.2) !important;
  border-radius: 0.25rem;
}

.btn-facebook:hover {
  color: #fff;
  background-color: #30497c;
  border-color: #e6e6e6;
}

.btn-facebook:focus,
.btn-facebook.focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.5);
  box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.5);
}

.btn-facebook.disabled,
.btn-facebook:disabled {
  color: #fff;
  background-color: #3b5998;
  border-color: #fff;
}

.btn-facebook:not(:disabled):not(.disabled):active,
.btn-facebook:not(:disabled):not(.disabled).active,
.show>.btn-facebook.dropdown-toggle {
  color: #fff;
  background-color: #2d4373;
  border-color: #dfdfdf;
}

.btn-facebook:not(:disabled):not(.disabled):active:focus,
.btn-facebook:not(:disabled):not(.disabled).active:focus,
.show>.btn-facebook.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.5);
  box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.5);
}

.error {
  color: #5a5c69;
  font-size: 7rem;
  position: relative;
  line-height: 1;
  width: 12.5rem;
}

@-webkit-keyframes noise-anim {
  0% {
    clip: rect(31px, 9999px, 91px, 0);
  }

  5% {
    clip: rect(70px, 9999px, 29px, 0);
  }

  10% {
    clip: rect(3px, 9999px, 56px, 0);
  }

  15% {
    clip: rect(7px, 9999px, 78px, 0);
  }

  20% {
    clip: rect(97px, 9999px, 4px, 0);
  }

  25% {
    clip: rect(24px, 9999px, 60px, 0);
  }

  30% {
    clip: rect(80px, 9999px, 41px, 0);
  }

  35% {
    clip: rect(78px, 9999px, 14px, 0);
  }

  40% {
    clip: rect(20px, 9999px, 23px, 0);
  }

  45% {
    clip: rect(70px, 9999px, 61px, 0);
  }

  50% {
    clip: rect(65px, 9999px, 89px, 0);
  }

  55% {
    clip: rect(74px, 9999px, 25px, 0);
  }

  60% {
    clip: rect(76px, 9999px, 84px, 0);
  }

  65% {
    clip: rect(56px, 9999px, 10px, 0);
  }

  70% {
    clip: rect(85px, 9999px, 58px, 0);
  }

  75% {
    clip: rect(46px, 9999px, 71px, 0);
  }

  80% {
    clip: rect(6px, 9999px, 64px, 0);
  }

  85% {
    clip: rect(20px, 9999px, 84px, 0);
  }

  90% {
    clip: rect(57px, 9999px, 26px, 0);
  }

  95% {
    clip: rect(36px, 9999px, 92px, 0);
  }

  100% {
    clip: rect(12px, 9999px, 53px, 0);
  }
}

@keyframes noise-anim {
  0% {
    clip: rect(31px, 9999px, 91px, 0);
  }

  5% {
    clip: rect(70px, 9999px, 29px, 0);
  }

  10% {
    clip: rect(3px, 9999px, 56px, 0);
  }

  15% {
    clip: rect(7px, 9999px, 78px, 0);
  }

  20% {
    clip: rect(97px, 9999px, 4px, 0);
  }

  25% {
    clip: rect(24px, 9999px, 60px, 0);
  }

  30% {
    clip: rect(80px, 9999px, 41px, 0);
  }

  35% {
    clip: rect(78px, 9999px, 14px, 0);
  }

  40% {
    clip: rect(20px, 9999px, 23px, 0);
  }

  45% {
    clip: rect(70px, 9999px, 61px, 0);
  }

  50% {
    clip: rect(65px, 9999px, 89px, 0);
  }

  55% {
    clip: rect(74px, 9999px, 25px, 0);
  }

  60% {
    clip: rect(76px, 9999px, 84px, 0);
  }

  65% {
    clip: rect(56px, 9999px, 10px, 0);
  }

  70% {
    clip: rect(85px, 9999px, 58px, 0);
  }

  75% {
    clip: rect(46px, 9999px, 71px, 0);
  }

  80% {
    clip: rect(6px, 9999px, 64px, 0);
  }

  85% {
    clip: rect(20px, 9999px, 84px, 0);
  }

  90% {
    clip: rect(57px, 9999px, 26px, 0);
  }

  95% {
    clip: rect(36px, 9999px, 92px, 0);
  }

  100% {
    clip: rect(12px, 9999px, 53px, 0);
  }
}

.error:after {
  content: attr(data-text);
  position: absolute;
  left: 2px;
  text-shadow: -1px 0 #e74a3b;
  top: 0;
  color: #5a5c69;
  background: #f8f9fc;
  overflow: hidden;
  clip: rect(0, 900px, 0, 0);
  animation: noise-anim 2s infinite linear alternate-reverse;
}

@-webkit-keyframes noise-anim-2 {
  0% {
    clip: rect(68px, 9999px, 1px, 0);
  }

  5% {
    clip: rect(44px, 9999px, 53px, 0);
  }

  10% {
    clip: rect(72px, 9999px, 43px, 0);
  }

  15% {
    clip: rect(18px, 9999px, 16px, 0);
  }

  20% {
    clip: rect(6px, 9999px, 72px, 0);
  }

  25% {
    clip: rect(18px, 9999px, 16px, 0);
  }

  30% {
    clip: rect(93px, 9999px, 46px, 0);
  }

  35% {
    clip: rect(100px, 9999px, 33px, 0);
  }

  40% {
    clip: rect(27px, 9999px, 29px, 0);
  }

  45% {
    clip: rect(5px, 9999px, 64px, 0);
  }

  50% {
    clip: rect(40px, 9999px, 65px, 0);
  }

  55% {
    clip: rect(72px, 9999px, 49px, 0);
  }

  60% {
    clip: rect(44px, 9999px, 39px, 0);
  }

  65% {
    clip: rect(84px, 9999px, 45px, 0);
  }

  70% {
    clip: rect(99px, 9999px, 56px, 0);
  }

  75% {
    clip: rect(87px, 9999px, 20px, 0);
  }

  80% {
    clip: rect(52px, 9999px, 8px, 0);
  }

  85% {
    clip: rect(64px, 9999px, 22px, 0);
  }

  90% {
    clip: rect(51px, 9999px, 69px, 0);
  }

  95% {
    clip: rect(2px, 9999px, 11px, 0);
  }

  100% {
    clip: rect(19px, 9999px, 40px, 0);
  }
}

@keyframes noise-anim-2 {
  0% {
    clip: rect(68px, 9999px, 1px, 0);
  }

  5% {
    clip: rect(44px, 9999px, 53px, 0);
  }

  10% {
    clip: rect(72px, 9999px, 43px, 0);
  }

  15% {
    clip: rect(18px, 9999px, 16px, 0);
  }

  20% {
    clip: rect(6px, 9999px, 72px, 0);
  }

  25% {
    clip: rect(18px, 9999px, 16px, 0);
  }

  30% {
    clip: rect(93px, 9999px, 46px, 0);
  }

  35% {
    clip: rect(100px, 9999px, 33px, 0);
  }

  40% {
    clip: rect(27px, 9999px, 29px, 0);
  }

  45% {
    clip: rect(5px, 9999px, 64px, 0);
  }

  50% {
    clip: rect(40px, 9999px, 65px, 0);
  }

  55% {
    clip: rect(72px, 9999px, 49px, 0);
  }

  60% {
    clip: rect(44px, 9999px, 39px, 0);
  }

  65% {
    clip: rect(84px, 9999px, 45px, 0);
  }

  70% {
    clip: rect(99px, 9999px, 56px, 0);
  }

  75% {
    clip: rect(87px, 9999px, 20px, 0);
  }

  80% {
    clip: rect(52px, 9999px, 8px, 0);
  }

  85% {
    clip: rect(64px, 9999px, 22px, 0);
  }

  90% {
    clip: rect(51px, 9999px, 69px, 0);
  }

  95% {
    clip: rect(2px, 9999px, 11px, 0);
  }

  100% {
    clip: rect(19px, 9999px, 40px, 0);
  }
}

.error:before {
  content: attr(data-text);
  position: absolute;
  left: -2px;
  text-shadow: 1px 0 #005CAA;
  top: 0;
  color: #5a5c69;
  background: #f8f9fc;
  overflow: hidden;
  clip: rect(0, 900px, 0, 0);
  animation: noise-anim-2 3s infinite linear alternate-reverse;
}

footer.sticky-footer {
  padding: 2rem 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-shadow: 0 0.15rem 1.75rem 0 rgba(58, 59, 69, 0.15);
  box-shadow: 0 0.15rem 1.75rem 0 rgba(58, 59, 69, 0.15);
}

footer.sticky-footer .copyright {
  line-height: 1;
  font-size: 0.8rem;
}

footer.sticky-footer .copyright a {
  color: #455a64;

}

footer.sticky-footer .copyright a:hover {
  text-decoration: none;
}

body.sidebar-toggled footer.sticky-footer {
  width: 100%;
}

.bg-blue {
  background-color: #e8eaf6 !important;
}

.table-flush td,
.table-flush th {
  border-right: 0;
  border-left: 0;
}

.table-flush tbody tr:first-child td,
.table-flush tbody tr:first-child th {
  border-top: 0;
}

.table-flush tbody tr:last-child td,
.table-flush tbody tr:last-child th {
  border-bottom: 0;
}

.card .table {
  margin-bottom: 0;
}

.card .table td,
.card .table th {
  padding-right: 1rem;
  padding-left: 1rem;
}

.customer-message {
  border-bottom: 1px solid #e3e6f0;
  padding-bottom: 10px;
  padding-top: 10px;
}

.customer-message:hover {
  background-color: #F8F9FC
}

.customer-message a .message-title {
  padding-right: 1.3rem;
  padding-left: 1.3rem;
}

.customer-message a .message-time {
  padding-right: 1.3rem;
  padding-left: 1.3rem;
}

.customer-message a:hover {
  text-decoration: none;
}

.btn-outline-light {
  color: #373840;
}

.card {
  background-color: var(--bg-card);
  /* -webkit-box-shadow: 0 0.15rem 1.75rem 0 rgba(58, 59, 69, 0.15) !important;
  box-shadow: 0 0.15rem 1.75rem 0 rgba(58, 59, 69, 0.15) !important; */
}

/* input group floating placeholder */
.input-group-bi {
  position: relative;
}

.input-bi {
  padding: 6px;
  background: var(--bg-form);
  border-radius: 0.2rem;
  outline: none;
  color: var(--font-color);
  border: 1px solid #379392;
  width: 100%;
}

.input-bi:focus {
  background-color: var(--bg-color);
}

.placeholder-bi {
  position: absolute;
  top: 8px;
  left: 8px;
  font-size: 12px;
  padding: 0px 5px;
  color: #0da2ff;
  transition: 0.3s;
  pointer-events: none;
}

.input-bi:focus+.placeholder-bi,
.input-bi:not(:placeholder-shown)+.placeholder-bi {
  top: -10px;
  background-color: var(--bg-color);
}

.border-pass {
  border-radius: 0.2rem 0rem 0rem 0.2rem !important;
}

.pass-hide {
  color: var(--font-color);
  padding: 6px;
  background: var(--bg-form);
  border-radius: 0rem 0.2rem 0.2rem 0rem;
  outline: none;
  border: 1px solid #379392;
}

.pass-hide:hover {
  color: #0e6175;
  background: #abdbe7;
  border: 1px solid #379392;
}

.input-tautan {
  background-color: #abdbe7 !important;
  color: #0e6175 !important;
  border: 1px solid #379392 !important;
}

.form-control {
  border: 1px solid #379392 !important;
}

/* input group sebelumnya */
/* .input-group-append .btn {
  color: var(--gray);
  background-color: var(--bg-form);
  border-color: var(--border);
}

.input-group-append .btn:hover {
  color: var(--font-color);
  background-color: var(--border);
  border-color: var(--border);
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

.form-control:focus {
  border: 1px solid #005CAA;
}

.input-group-append span {
  -webkit-box-shadow: 0 0.125rem 0.25rem 0 rgba(58, 59, 69, 0.2) !important;
  box-shadow: 0 0.125rem 0.25rem 0 rgba(58, 59, 69, 0.2) !important;
  color: #fff;
  background-color: #005CAA;
  border-color: #005CAA;
}

.input-group-prepend span {
  color: var(--font-color2) !important;
  background-color: var(--bg-form);
  border-color: var(--border);
} */

.file-upload {
  width: 100%;
  padding: 10px 0px;
  position: absolute;
  left: 0;
  opacity: 0;
  cursor: pointer;
}

/*//upload area*/
.upload-area-bg {
  display: block;
  width: 100%;
  padding: 16px;
  margin: 16px 0;
  background: var(--bg-form) !important;
  border-radius: 6px;
}

.upload-area {
  display: block;
  padding: 60px 0;
  background-color: var(--bg-form);
  border: 2px dashed #c2cdda;
  border-radius: 14px;
  text-align: center;
}

.upload-area-inner {
  box-sizing: border-box;
}

.upload-area-caption {
  font-size: 18px;
  font-weight: bold;
  color: #5B5B7B;
  white-space: normal;
}

.upload-area-icon-main {
  font-size: 40px;
  color: #005CAA;
}

.upload-area-button {
  background-image: linear-gradient(to top left, #005CAA, #00c6f9);
  border-radius: 5px;
  padding: 10px;
  margin-top: 10px;
  text-transform: none;

}

.upload-area-button:hover {
  background: #005CAA;
}

.preview-uploads {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 5px;
}

.preview-uploads-img {
  height: 50px;
  width: 50px;
}

.preview-uploads-name {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding-left: 16px;
  padding-right: 16px;
  color: #74809d;
  overflow: hidden;
}

.preview-upload-name p {
  line-height: revert;
  font-size: 12px;
}

.preview-uploads-delete {
  height: 30px;
  width: auto;
}

.btnhehe {
  padding: 10px;
  border-radius: 5px;
  font-size: 11px;
  width: auto;
  height: auto;
  font-weight: bolder;
}

.btnhehe:hover {
  background: #fd7e14;
}

/* Float Button User Guide */
.float {
  position: fixed;
  width: 75px;
  height: 25px;
  bottom: 65px;
  left: 40px;
  background-color: #0a5f54;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  box-shadow: 2px 2px 3px #999;
  z-index: 9999;
}

.my-float {
  margin-top: 6px;
}

a:hover {
  background-color: none;
}

/* toggle switch online offline */
.switch-onf {
  position: relative;
  display: inline-block;
  width: 31px;
  height: 12px;
}

.switch-onf input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider-onf .bi-wifi {
  color: #FFFFFF;
  position: absolute;
  left: 5px;
  font-size: 12px;
  display: none;
}

.slider-onf .bi-wifi-off {
  color: #FFFFFF;
  position: absolute;
  font-size: 12px;
  right: 5px;
}

.slider-onf {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--bg-yellow);
  -webkit-transition: .4s;
  transition: .4s;
}

.slider-onf:before {
  position: absolute;
  content: "";
  height: 8px;
  width: 8px;
  left: 2px;
  bottom: 2px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

.switch-onf input:checked+.slider-onf .bi-wifi {
  display: block;
}

.switch-onf input:checked+.slider-onf .bi-wifi-off {
  display: none;
}

input:checked+.slider-onf {
  background-color: var(--bg-mns);
}

input:focus+.slider-onf {
  box-shadow: 0 0 1px var(--bg-mns);
}

input:checked+.slider-onf:before {
  -webkit-transform: translateX(19px);
  -ms-transform: translateX(19px);
  transform: translateX(19px);
}

/* Rounded sliders */
.slider-onf.round-onf {
  border-radius: 34px;
}

.slider-onf.round-onf:before {
  border-radius: 50%;
}

/*slider switch css light to dark*/
.theme-switch-wrapper {
  display: flex;
  /* align-items: center; */
}

.theme-switch {
  display: inline-block;
  /* height: 10px; */
  position: relative;
  /* width: 10px; */
}

.theme-switch input {
  display: none;
}

/* light */
.mode {
  cursor: pointer;
  transition: .4s;
  margin-top: 3px;
}

/* Brightness \F1D2 */
.mode:before {
  color: var(--bg-mns);
  font-family: "Bootstrap-icons";
  content: "\F1D2";
  font-size: 15px;
}

input:checked+.mode {
  transition: .4s;
}

/* dark \F495 */
input:checked+.mode:before {
  color: var(--bg-mns);
  font-family: "Bootstrap-icons";
  content: "\F495";
  font-size: 15px;
}

.text-white {
  color: #FFF !important;
}

.toggle-handle {
  position: relative;
  margin: 3px !important;
  padding: 6px !important;
  height: 75% !important;
  width: 0;
  border-width: 0 12px !important;
  border-radius: 20px !important;
  background-color: #285a5a !important;
  border-color: #285a5a !important;
}

.rounded-new {
  border-radius: 20px;
}

/* mobile navbar */
.em_main_footer {
  padding-top: 1px;
  background-color: var(--bg-card);
}

.em_main_footer .em_body_navigation {
  background-color: var(--bg-color-navbar);
  min-height: 56px;
  position: fixed;
  width: 100%;
  max-width: 768px;
  margin: 0 auto;
  bottom: 0px;
  left: 0;
  right: 0;
  z-index: 99;
  display: flex;
  align-items: center;
  padding: 0 10px;
  padding-bottom: env(safe-area-inset-bottom);
}

.em_main_footer.with__text .em_body_navigation .item_link {
  height: 60px;
}

.em_main_footer .em_body_navigation .item_link {
  width: calc(100% / 5);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 56px;
}

.em_main_footer.with__text .em_body_navigation .item_link .btn_navLink {
  display: grid;
}

.em_main_footer .em_body_navigation .item_link .btn_navLink {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  padding: 0;
}

.em_main_footer.with__text .em_body_navigation .item_link .btn_navLink .txt__tile {
  font-size: 0.6200em;
  font-weight: 400;
  display: block;
  padding-top: 3px;
  color: var(--font-color);
  font-family: 'Montserrat';
}

.em_main_footer .em_body_navigation .item_link .btn_navLink .btnCircle_default._lg {
  width: 60px;
  height: 60px;
  margin-top: -22px;
}

.em_main_footer .em_body_navigation .item_link .btn_navLink .btnCircle_default {
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--bg-mns);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 0;
}

.item_link:hover,
.btn_navLink:hover {
  box-shadow: none !important;
  background-color: var(--bg-color);
  border-radius: 2rem;
}

button,
input,
textarea {
  outline: 0 !important;
  box-shadow: none !important;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  -o-box-shadow: none;
  -ms-box-shadow: none;
  box-shadow: none;
}

.em_main_footer.with__text .em_body_navigation .item_link .btn_navLink .items_basket_circle {
  top: 0px;
  margin-left: -4px;
}

.em_main_footer .em_body_navigation .item_link .btn_navLink .items_basket_circle {
  position: absolute;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: var(--bg-yellow);
  font-size: 11px;
  border: 2px solid var(--bg-card);
  color: #fff;
  top: 0px;
  margin-left: -4px;
}

.em_main_footer .em_body_navigation .item_link .btn_navLink .btnCircle_default._lg i {
  font-size: 26px;
  margin-top: 10px;
}

.card-fitur {
  width: auto;
  height: 7.225rem;
  border-radius: 20%;
  background-color: var(--bg-card);
}

.card-fitur-v2 {
  width: auto;
  border-radius: 20%;
  background-color: var(--bg-card);
}

.rounded-card {
  border-radius: 1.35rem !important;
}

/* custom switch pengaturan fitur */
.custom-control-input:checked~.custom-control-label::before {
  color: #fff;
  border-color: var(--bg-mns) !important;
  background-color: var(--bg-mns) !important;
}

.custom-control-input:disabled~.custom-control-label::before {
  opacity: 0.4;
}

.custom-switch .custom-control-input:checked~.custom-control-label::after {
  background-color: #fff !important;
  width: 15px !important;
  height: 15px !important;
  border-radius: 50% !important;
  left: -37px !important;
}

.custom-switch .custom-control-input:disabled~.custom-control-label::after {
  opacity: 0.4;
}

.custom-switch .custom-control-label::before {
  left: -2.25rem !important;
  width: 1.75rem !important;
  height: 1.2rem !important;
  pointer-events: all;
  border-radius: 282.5rem !important;
}

.custom-switch .custom-control-label::after {
  width: 15px !important;
  height: 15px !important;
  background-color: var(--gray);
}

.form-control:disabled,
.form-control[readonly] {
  background-color: var(--bg-form) !important;
  opacity: 1;
}

.form-control:disabled,
.form-control[readonly] {
  /* background-color: #eaecf4; */
  opacity: 1;
}

/*
 * Switcher Styles
 */

.toggleContainer {
  text-align: left;
}

/*  Toggle Switch  */

.toggleSwitch span span {
  display: none;
}

.toggleSwitch {
  display: inline-block;
  height: 18px;
  position: relative;
  overflow: visible;
  padding: 0;
  cursor: pointer;
  width: 130px;
  background-color: var(--bg-card);
  border: 0.5px solid var(--border);
  border-radius: 16px;
  height: 27px;
  user-select: none;
}

.toggleSwitch * {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.toggleSwitch label,
.toggleSwitch>span {
  line-height: 20px;
  height: 20px;
  vertical-align: middle;
}

.toggleSwitch input:focus~a,
.toggleSwitch input:focus+label {
  outline: none;
}

.toggleSwitch label {
  position: relative;
  z-index: 3;
  display: block;
  width: 100%;
}

.toggleSwitch input {
  position: absolute;
  opacity: 0;
  z-index: 5;
}

.toggleSwitch>span {
  position: absolute;
  left: 0;
  width: calc(100% - 6px);
  margin: 0;
  text-align: left;
  white-space: nowrap;
  margin: 0 3px;
}

.toggleSwitch>span span {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
  display: block;
  width: 50%;
  margin-left: 50px;
  text-align: left;
  font-size: 1.3em;
  font-weight: 500;
  width: auto;
  left: 0;
  top: -1px;
  opacity: 1;
  width: 40%;
  text-align: center;
  line-height: 28px;
}

.toggleSwitch a {
  position: absolute;
  right: 50%;
  z-index: 4;
  display: block;
  top: 3px;
  bottom: 3px;
  padding: 0;
  left: 3px;
  width: 50%;
  background-color: #ffa426;
  border-radius: 14px;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.toggleSwitch>span span:first-of-type {
  color: #FFF;
  opacity: 1;
  left: 0;
  margin: 0;
  width: 50%;
}

.toggleSwitch>span span:last-of-type {
  left: auto;
  right: 0;
  color: #999;
  margin: 0;
  width: 50%;
}

.toggleSwitch>span:before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: -2px;

  /* background-color: #fafafa;
border: 1px solid #ccc; */
  border-radius: 30px;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}

.toggleSwitch input:checked~a {
  left: calc(50% - 3px);
  background-color: #216b6a;
}

.toggleSwitch input:checked~span span:first-of-type {
  left: 0;
  color: #999;
}

.toggleSwitch input:checked~span span:last-of-type {
  /* opacity: 1;
color: #fff;	 */
  color: #FFF !important;
}

/* Switch Sizes */
.toggleSwitch.large {
  width: 60px;
  height: 27px;
}

.toggleSwitch.large a {
  width: 27px;
}

.toggleSwitch.large>span {
  height: 29px;
  line-height: 28px;
}

.toggleSwitch.large input:checked~a {
  left: 41px;
}

.toggleSwitch.large>span span {
  font-size: 1.1em;
}

.toggleSwitch.large>span span:first-of-type {
  left: 50%;
}

.toggleSwitch.xlarge {
  width: 80px;
  height: 36px;
}

.toggleSwitch.xlarge a {
  width: 36px;
}

.toggleSwitch.xlarge>span {
  height: 38px;
  line-height: 37px;
}

.toggleSwitch.xlarge input:checked~a {
  left: 52px;
}

.toggleSwitch.xlarge>span span {
  font-size: 1.4em;
}

.toggleSwitch.xlarge>span span:first-of-type {
  left: 50%;
}

/*  End Toggle Switch  */

/* custom button browse file */
.custom-file-label::after {
  background-color: #17A2B8 !important;
  color: #fff !important;
}

/* custom button */
.tombol-masuk {
  background-color: #abdbe7;
  border: 0.5px solid #48aac2 !important;
  color: #0e6175 !important;
  border-radius: 0.2rem;
}

.tombol-masuk:hover {
  background-color: #48aac2;
  border: 0.5px solid #48aac2 !important;
  color: #fff !important;
  border-radius: 0.2rem;
}

.tombol-berhasil {
  background-color: #ccecd3;
  border: 0.5px solid #007a08 !important;
  color: #005f06 !important;
  border-radius: 0.2rem;
}

.tombol-proses {
  background-color: #abdbe7;
  border: 0.5px solid #48aac2 !important;
  color: #0e6175 !important;
  border-radius: 0.2rem;
}

.tombol-danger {
  background-color: #ebc1cb;
  border: 0.5px solid #e7859d !important;
  color: #F02456 !important;
  border-radius: 0.2rem;
}

.tombol-warning {
  background-color: #edd7b7;
  border: 0.5px solid #d6a055 !important;
  color: #9c6211 !important;
  border-radius: 0.2rem;
}

.tombol-hapus {
  border: 0.5px solid #F02456 !important;
  color: #F02456 !important;
  border-radius: 0.2rem;
  padding: 0.25rem !important;
}

.tombol-hapus:hover {
  background-color: #F02456;
  border: 0.5px solid #F02456 !important;
  color: #fff !important;
  border-radius: 0.2rem;
  padding: 0.25rem !important;
}

/*tabel kirim hadiah langsung*/
.tabrek {
  background-color: #abdbe7;
  border-collapse: collapse;
  border-radius: 0.3rem;
  overflow: hidden;
  font-weight: bold;
}
td, th {
  padding: 5px;
  color: #06393f !important;
}
tr:nth-child(odd) {
  background-color: #7cbdcd;
}

/* data table */
.dataTables_filter input,
.dataTables_length select {
  color: var(--font-color) !important;
  background-color: var(--bg-form) !important;
}

.dataTables_filter input::placeholder {
  color: var(--font-color) !important;
  background-color: var(--bg-form) !important;
}

.pagination>li>a,
.pagination>li>span {
  color: var(--font-color2) !important;
  background-color: var(--bg-form) !important;
  border: 0 !important;
}

.pagination>.next>a,
.pagination>.previous>a {
  color: var(--font-color2) !important;
  background-color: var(--bg-form) !important;
  border: 0 !important;
}

.pagination>li.active>a,
.pagination>li.active>span {
  background-color: var(--bg-color-navbar) !important
}

/* carousel control */
.bagan-slider {
  border: 2px solid var(--bg-mns);
  border-radius: 15px;
  width: 100%;
}

.carousel-control-prev,
.carousel-control-next {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 1;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  width: 15%;
  color: #fff;
  text-align: center;
  opacity: 0;
  -webkit-transition: opacity 0.15s ease;
  transition: opacity 0.15s ease;
}

.carousel-control-prev {
  background: rgb(55, 147, 146);
  background: linear-gradient(90deg, rgba(55, 147, 146, 0.5018382352941176) 0%, rgba(55, 147, 146, 0) 100%);
  border: none !important;
  border-radius: 15px 0px 0px 15px;
}

.carousel-control-prev:hover {
  background: rgb(108, 212, 211);
  background: linear-gradient(90deg, rgba(55, 147, 146, 0.5018382352941176) 0%, rgba(55, 147, 146, 0) 100%);
}

.carousel-control-next {
  background: rgb(55, 147, 146);
  background: linear-gradient(270deg, rgba(55, 147, 146, 0.5018382352941176) 0%, rgba(55, 147, 146, 0) 100%);
  border: none !important;
  border-radius: 0px 15px 15px 0px;
}

/* user guide css extention */
.introjs-button {
  text-shadow: none !important;
  background-image: none !important;
}

.introjs-tooltip,
.introjs-helperLayer {
  background-color: var(--bg-form) !important;
  color: var(--font-color) !important;
}

.introjs-skipbutton {
  background-color: #e0a0af !important;
  border: 0.5px solid #e7859d !important;
  color: #F02456 !important;
}

.introjs-skipbutton:hover {
  background-color: #F02456 !important;
  border: 0.5px solid #e7859d !important;
  color: #fff !important;
}

.introjs-prevbutton,
.introjs-nextbutton {
  background-color: #abdbe7 !important;
  border: 0.5px solid #48aac2 !important;
  color: #0e6175 !important;
  border-radius: 0.2rem;
}

.introjs-prevbutton:hover,
.introjs-nextbutton:hover {
  background-color: #48aac2 !important;
  border: 0.5px solid #48aac2 !important;
  color: #fff !important;
  border-radius: 0.2rem;
}


.introjs-disabled,
.introjs-disabled:hover,
.introjs-disabled:focus {
  color: #69bbcf !important;
  box-shadow: none;
  cursor: default;
  background-color: #deecf0 !important;
  background-image: none;
  text-decoration: none;
}