/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700;800;900&display=swap');

:root {
  --color-red: 250, 4, 5;
  --color-darkred: 182, 0, 1;
  --color-red-100: 255, 234, 237;
  --color-red2: 237, 105, 104;
  --color-black: 0, 0, 0;
  --color-blue: 4, 132, 250;
  --color-lightblue: 4, 161, 250;
  --color-grey-900: 29, 29, 31;
  --color-grey-700: 62, 62, 64;
  --color-grey-500: 153, 153, 155;
  --color-grey-300: 220, 220, 223;
  --color-grey-100: 220, 220, 223;
  --color-dark-red: 210, 4, 4;
  --color-white: 255, 255, 255;
  --color-yellow: 226, 223, 63;
  --color-green: 50, 223, 62;
  --color-dark-green: 6, 162, 87;
  --color-pastelgreen: 30, 183, 110;
  --color-purple: 223, 85, 220;
  --color-purple2: 155, 83, 247;
  --color-darkpurple: 123, 97, 255;
  --color-brown: 139, 68, 23;
  --color-darkblue: 0, 30, 218;
  --color-orange: 250, 122, 4;
  --color-pink: 250, 4, 122;
}

html {
  color: #434343;
  font-size: 16px;
  line-height: 1.4;
}

::-moz-selection {
  background: #b3d4fc;
  text-shadow: none;
}

::selection {
  background: #b3d4fc;
  text-shadow: none;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  background-color: transparent;
  border-top: 1px solid #F3F3F6;
  margin: 1em 0;
  padding: 0;
  opacity: 1;
}

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

textarea {
  resize: vertical;
}

a {
  color: rgb(var(--color-red));
  text-decoration: none;
  transition: all 100ms ease-in-out;
}

a:hover,
a:focus {
  text-decoration: none;
  color: rgb(var(--color-darkred));
}

/* ==========================================================================
   Author's custom styles
   ========================================================================== */

body {
  font-family: 'Poppins', Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 400;
  padding: 30px;
  color: rgb(var(--color-grey-700));
  background-color: #F7F7F8;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ========== Typography ========== */

h1 {
  font-weight: 600;
  font-size: 40px;
  line-height: 46px;
}

h2 {
  font-weight: 600;
  font-size: 32px;
  line-height: 48px;
}

h4 {
  font-weight: 600;
  font-size: 28px;
  line-height: 42px;
}

h5 {
  font-weight: 600;
  font-size: 24px;
  line-height: 28px;
}

h6 {
  font-size: 20px;
  line-height: 24px;
}

.body-1 {
  font-size: 18px;
}

.body-2 {
  font-size: 16px;
}

.body-3 {
  font-size: 14px;
  line-height: 24px;
}

.body-4 {
  font-size: 12px;
}

.body-5 {
  font-size: 10px;
}

.body-6 {
  font-size: 8px;
}

.inspira-p {
  font-size: 14px;
  line-height: 24px;
}

/* ========== Colors ========== */

.color-red {
  color: rgb(var(--color-red)) !important;
}

.color-darkred {
  color: rgb(var(--color-darkred));
}

.color-red-100 {
  color: rgb(var(--color-red-100));
}

.color-red2 {
  color: rgb(var(--color-red2));
}

.color-black {
  color: rgb(var(--color-black));
}

.color-blue {
  color: rgb(var(--color-blue));
}

.color-darkblue {
  color: rgb(var(--color-darkblue));
}

.color-lightblue {
  color: rgb(var(--color-lightblue));
}

.color-grey-900 {
  color: rgb(var(--color-grey-900));
}

.color-grey-700 {
  color: rgb(var(--color-grey-700)) !important;
}

.color-grey-500 {
  color: rgb(var(--color-grey-500));
}

.color-grey-300 {
  color: rgb(var(--color-grey-300));
}

.color-grey-100 {
  color: rgb(var(--color-grey-100));
}

.color-orange {
  color: rgb(var(--color-orange));
}

.color-white {
  color: rgb(var(--color-white));
}

.color-dark-green {
  color: rgb(var(--color-dark-green));
}

.color-yellow {
  color: #F5C628;
}

.background-orange {
  background-color: rgb(var(--color-orange));
}

.background-blue {
  background-color: rgb(var(--color-blue));
}

.background-darkblue {
  background-color: rgb(var(--color-darkblue));
}

.background-lightblue {
  background-color: rgb(var(--color-lightblue));
}

.background-red {
  background-color: rgb(var(--color-red));
}

.background-red-100 {
  background-color: rgb(var(--color-red-100));
}

.background-purple {
  background-color: rgb(var(--color-purple));
}

.background-purple2 {
  background-color: rgb(var(--color-purple2));
}

.background-darkpurple {
  background-color: rgb(var(--color-darkpurple));
}

.background-pastelgreen {
  background-color: rgb(var(--color-pastelgreen));
}


/* ========== Forms & Input ========== */

.form-control,
.form-select {
  padding: 15px 16px 15px 0;
  font-size: 14px;
  font-weight: 400;
  color: rgb(var(--color-grey-900));
  background-color: transparent;
  background-clip: padding-box;
  border-top: 0;
  border-left: 0;
  border-right: 0;
  border-bottom: 1px solid #DCDCDF;
  border-radius: 0;
}

.form-control:focus,
.form-select:focus {
  color: rgb(var(--color-black));
  background-color: transparent;
  border-color: rgb(var(--color-red));
  outline: 0;
  box-shadow: none;
}

.form-select.filter {
  padding: 7px 15px;
  font-size: 14px;
  font-weight: 400;
  color: rgb(var(--color-grey-900));
  background-color: transparent;
  background-clip: padding-box;
  border: 1px solid #DCDCDF;
  border-radius: 4px;
}

.form-control::-moz-placeholder {
  color: rgb(var(--color-grey-300));
}

.form-control::placeholder {
  color: rgb(var(--color-grey-300));
}

.form-check-input:checked {
  background-color: rgb(var(--color-red));
  border-color: rgb(var(--color-red));
}

.form-check label {
  cursor: pointer;
}

.form-check-input:focus {
  border-color: rgb(var(--color-red));
  box-shadow: none;
}

.form-code .form-control {
  font-weight: 600;
  font-size: 56px;
  line-height: 64px;
  text-align: center;
  border-width: 2px;
  color: rgb(var(--color-red));
}

.form-control.full-border {
  border: 1px solid #DCDCDF;
  padding: 15px;
}

.search-top .form-control {
  background: rgba(243, 243, 246, 0.46);
  border: 1px solid #F3F3F6;
  border-radius: 8px;
  padding: 12px 40px;
}

.search-icon {
  position: absolute;
  left: 15px;
  top: 15px;
  color: #DCDCDF;
}


/* ========== Button ========== */

.btn {
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  padding: 14px 24px;
  border-radius: 4px;
}

.btn:focus,
.btn:hover {
  outline: 0;
  box-shadow: none;
}

.btn-primary {
  color: #fff;
  background-color: rgb(var(--color-red));
  border-color: rgb(var(--color-red));
}

.btn-primary.sm {
  padding: 8px 14px;
}

.btn-primary:hover {
  color: #fff;
  background-color: rgb(var(--color-dark-red));
  border-color: rgb(var(--color-dark-red));
}

.btn-check:focus+.btn-primary,
.btn-primary:focus {
  color: #fff;
  background-color: rgb(var(--color-red));
  border-color: rgb(var(--color-red));
  box-shadow: 0 0 0 0.15rem rgba(var(--color-red), 0.25);
}

.btn-check:checked+.btn-primary,
.btn-check:active+.btn-primary,
.btn-primary:active,
.btn-primary.active,
.show>.btn-primary.dropdown-toggle {
  color: #fff;
  background-color: rgb(var(--color-red));
  border-color: rgb(var(--color-red));
}

.btn-check:checked+.btn-primary:focus,
.btn-check:active+.btn-primary:focus,
.btn-primary:active:focus,
.btn-primary.active:focus,
.show>.btn-primary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.15rem rgba(var(--color-red), 0.25);
}

.btn-border-red {
  border: 1px solid rgb(var(--color-red));
  border-radius: 4px;
  color: rgb(var(--color-red));
}

.btn-border-red:hover {
  border: 1px solid rgb(var(--color-red));
  background-color: rgb(var(--color-red));
  color: rgb(var(--color-white));
}

.btn-border-grey {
  border: 1px solid rgb(var(--color-grey-300));
  border-radius: 4px;
  color: rgb(var(--color-grey-300));
}

.btn-border-grey.sm {
  padding: 7px 0;
  font-weight: 600;
  font-size: 14px;
  line-height: 24px;
  color: #1F5AD6;
}

.btn-border-grey:hover {
  border: 1px solid rgb(var(--color-grey-300));
  background-color: rgb(var(--color-grey-300));
  color: rgb(var(--color-white));
}

.btn-border-grey.sm:hover {
  color: #1F5AD6;
}

.btn-primary.disabled,
.btn-primary:disabled {
  color: #fff;
  background-color: rgb(var(--color-grey-300));
  border-color: rgb(var(--color-grey-300));
}

.btn-delete {
  color: rgb(var(--color-grey-500));
  font-size: 18px;
}

.btn-delete:hover {
  color: rgb(var(--color-red));
}

/* ========== Header ========== */

.main-header {
  display: flex;
  position: relative;
  justify-content: space-between;
  align-items: center;
}

.top-header {
  background-color: rgb(var(--color-white));
  padding: 15px 0;
  border-bottom: 1px solid #E8E8E8;
}

.home-header {
  background-color: #fff;
  padding: 15px 0;
}

.home-header .container-fluid {
  padding: 0px 80px;
}

/* ========== Content ========== */

.main-wrapper {
  display: flex;
}

.main-navigation {
  width: 280px;
  transition: all 100ms ease-in-out;
}

.main-navigation .box-white {
  position: sticky;
  top: 30px;
  z-index: 10;
}

.main-navigation.tablet-mode {
  width: 80px;
}

.main-navigation.tablet-mode .ml-name {
  display: none;
}

.main-navigation.tablet-mode .main-nav .menu-link {
  justify-content: center;
}

.main-content {
  width: calc(100% - 280px);
  padding-left: 30px;
}

.box-white {
  background-color: rgb(var(--color-white));
}

.box-red {
  background: rgba(255, 234, 237, 0.3);
  border: 1px solid rgba(250, 4, 5, 0.3)
}

.box-grey {
  background-color: #FAFAFB;
}

.box-border {
  background: #FFFFFF;
  border: 1px solid #F3F3F6;
}

.with-shadow {
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.03);
}

.darker-shadow {
  box-shadow: 0px 2px 16px rgba(0, 0, 0, 0.08);
}

.logo-nav {
  text-align: center;
  padding: 20px 10px;
}

.main-navigation.tablet-mode .img-logo {
  display: none;
}

.logo-dashbord {
  width: 140px;
  height: 25px;
}

.logo-dashbord img {
  mix-blend-mode: multiply;
}

.main-nav {
  padding-left: 0;
  margin-bottom: 40px;
  list-style: none;
}

.main-nav .menu-link {
  padding: 20px;
  display: flex;
  align-items: center;
  color: rgb(var(--color-grey-500));
  border-radius: 10px;
}

.main-nav .menu-link:hover,
.main-nav .menu-link.active {
  background-color: rgb(var(--color-red));
  color: rgb(var(--color-white));
}

.main-nav .menu-link .ml-name {
  padding-left: 15px;
}

.main-nav .menu-link span[class^="icon-"],
.main-nav .menu-link span[class*=" icon-"] {
  font-size: 20px;
  color: rgb(var(--color-grey-300));
}

.main-nav .menu-link:hover span[class^="icon-"],
.main-nav .menu-link:hover span[class*=" icon-"],
.main-nav .menu-link.active span[class^="icon-"],
.main-nav .menu-link.active span[class*=" icon-"] {
  color: rgb(var(--color-white));
}

.right-nav {
  padding-left: 0;
  display: flex;
  margin-bottom: 0;
  list-style: none;
  position: relative;
}

.right-nav li {
  margin: 0 15px;
}

.right-nav .link-right-nav {
  color: rgb(var(--color-grey-500));
  position: relative;
}

.right-nav .link-right-nav.new-item::before {
  content: '\e905';
  font-family: 'icomoon';
  color: rgb(var(--color-red));
  position: absolute;
  right: -12px;
  top: -5px;
  font-size: 15px;
}

.right-nav .link-right-nav:hover,
.right-nav .link-right-nav.active {
  color: rgb(var(--color-red));
}

.profile-img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: transparent;
  padding: 4px;
  display: inline-block;
  border: 1px solid rgb(var(--color-red));
}

.profile-img img {
  border-radius: 50%;
}

.link-slider {
  display: block;
  overflow: hidden;
  border-radius: 10px;
}

.sliderHero .swiper-slide {
  width: 70%;
}

.slider-nav {
  height: 20px;
  position: relative;
}

.nav-slide {
  width: 70px;
}

.content-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  color: rgb(var(--color-white));
  line-height: 48px;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
}

.content-circle.big {
  width: 80px;
  height: 80px;
  line-height: 80px;
  font-size: 16px;
}

.content-circle.sm {
  width: 32px;
  height: 32px;
  line-height: 32px;
  font-weight: 400;
}

.content-circle.md {
  width: 38px;
  height: 38px;
  line-height: 38px;
  font-weight: 400;
  font-size: 10px;
}

.content-card {
  padding-left: 10px;
}

.status {
  border-radius: 2px;
  padding: 4px 8px;
  font-weight: 500;
}

.status.red {
  background-color: rgb(var(--color-red-100));
  color: rgb(var(--color-red));
}

.status.blue {
  background-color: #EAF7FF;
  color: rgb(var(--color-blue));
}

.status.yellow {
  background: #FEF8E8;
  color: #FBBA15;
}

.status.purple {
  background: #F2EFFF;
  color: #7B61FF;
}

.status.green {
  background: #E4FFE3;
  color: #009B22;
}

.status.orange {
  background: rgba(250, 122, 4, 0.2);
  color: #FA7A04;
}

.status.grey {
  background: #F3F3F6;
  border: 1px solid #F3F3F6;
  color: rgb(var(--color-grey-500));
}

.progress {
  height: 2px;
  background-color: rgb(var(--color-grey-300));
}

.progress-bar {
  background-color: rgb(var(--color-red));
}

.w-status-1 {
  max-width: 35px;
  width: 100%;
}

.w-status-2 {
  max-width: 75%;
  width: 100%;
}

.impact-item {
  max-width: 145px;
  width: 100%;
  text-align: center;
}

.banner-kelon {
  background-image: url(../img/bg-kelon.jpg);
  background-size: cover;
  background-position: center;
  padding: 30px;
  text-align: center;
  position: relative;
}

.box-white-border {
  border: 0.5px solid #FFFFFF;
  border-radius: 80px;
  padding: 7px 20px;
  color: rgb(var(--color-white));
}

.status-kelon {
  border-radius: 2px;
  padding: 5px 15px;
  position: absolute;
  top: 15px;
  left: 15px;
  z-index: 1;
  font-size: 12px;
  color: rgb(var(--color-white));
}

.status-kelon.green {
  background: #099A20;
}

.status-kelon.yellow {
  background: #FBBA15;
}

.item-kelon {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding-left: 0;
  list-style: none;
}

.kelon-info {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding-left: 0;
  list-style: none;
}

.item-kelon li {
  margin-right: 10px;
  color: rgb(var(--color-red2));
  font-size: 12px;
  display: flex;
  align-items: center;
}

.item-kelon li::after,
.kelon-info li::after {
  content: '\e905';
  font-family: 'icomoon';
  font-size: 8px;
  padding-left: 5px;
}

.kelon-info li {
  margin-right: 5px;
  font-size: 12px;
  line-height: 20px;
  color: rgb(var(--color-grey-500));
}

.item-kelon li:last-child::after,
.kelon-info li:last-child::after {
  display: none;
}

.banner-inner {
  background-image: url(../img/banner-inner.jpg);
  background-position: center;
  background-size: cover;
  overflow: hidden;
}

.add-link,
.filter-link {
  display: flex;
  align-items: center;
}

.add-link::before {
  content: '\e900';
  font-family: 'icomoon';
  width: 20px;
  height: 20px;
  line-height: 20px;
  text-align: center;
  background: rgb(var(--color-red));
  color: rgb(var(--color-white));
  border-radius: 2px;
}

.filter-link::before {
  content: '\e91b';
  font-family: 'icomoon';
  color: rgb(var(--color-red));
  margin-right: 10px;
}

.link-back {
  font-weight: 600;
  font-size: 14px;
  line-height: 21px;
  color: rgb(var(--color-grey-700));
}

.link-back::before {
  content: '\e904';
  font-family: 'icomoon';
  color: rgb(var(--color-grey-700));
  margin-right: 10px;
}

.form-group {
  position: relative;
  margin-bottom: 30px;
}

label.required::after {
  content: '*';
  color: rgb(var(--color-red));
  padding-left: 3px;
}

.tool-tip {
  cursor: pointer;
  position: relative;
}

.tool-tip-content {
  position: absolute;
  min-width: 300px;
  left: -800%;
  visibility: hidden;
  opacity: 0;
  z-index: 100;
}

.tool-tip-content.lg {
  position: absolute;
  min-width: 500px;
  left: -800%;
}

.tool-tip-content.more {
  left: -220px;
}

.tool-tip:hover .tool-tip-content,
.tool-tip:focus .tool-tip-content {
  visibility: visible;
  opacity: 1;
}

.upload-logo input {
  display: none;
}

.upload-logo label {
  cursor: pointer;
}

.img-upload {
  width: 56px;
  height: 56px;
  border-radius: 10px;
  line-height: 56px;
  border: 1px dashed rgb(var(--color-red));
  text-align: center;
  color: rgb(var(--color-red));
}

.browse-file {
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: rgb(var(--color-red));
}

.info-item {
  background: rgb(var(--color-red-100));
  border: 1px dashed rgb(var(--color-red));
  border-radius: 4px;
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
  color: rgb(var(--color-red));
}

.box-choose {
  position: absolute;
  z-index: 100;
  width: 100%;
  top: 100%;
}

.ico-right {
  color: rgb(var(--color-red));
  position: absolute;
  z-index: 3;
  top: 15px;
  right: 5px;
  height: 100%;
  -webkit-transition: .2s;
  transition: .2s;
}

.ico-left {
  color: rgb(var(--color-red));
  position: absolute;
  z-index: 3;
  top: 15px;
  left: 5px;
  height: 100%;
  -webkit-transition: .2s;
  transition: .2s;
}

.ico-left.more {
  left: 15px;
}

.separator {
  height: 16px;
  background: #FAFAFB;
  border-top: 1px solid #F3F3F6;
  border-bottom: 1px solid #F3F3F6;
}

.step {
  padding-left: 0;
  list-style: none;
  position: relative;
}

.step li {
  width: 100%;
  padding-left: 35px;
  position: relative;
  padding-bottom: 20px;
}

.step li::before {
  content: '';
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background-color: rgb(var(--color-white));
  border: 0.75px solid rgb(var(--color-red));
  color: rgb(var(--color-red));
  position: absolute;
  left: 0;
  z-index: 3;
  display: flex;
  justify-content: center;
  align-items: center;
}

.step.empty li::before {
  border: 0.75px solid rgb(var(--color-grey-300));
}

.step li::after {
  content: '';
  width: 1px;
  height: 100%;
  border-radius: 50%;
  border: 0.75px dashed rgb(var(--color-red));
  position: absolute;
  left: 12px;
  top: 5px;
  bottom: 0;
  z-index: 1;
}

.step.empty li::after {
  border: 0.75px dashed rgb(var(--color-grey-300));
}

.step li:last-child::after {
  display: none;
}

.center-circle {
  width: 19px;
  height: 19px;
  margin: 3px;
  border-radius: 50%;
  background-color: rgb(var(--color-red));
  color: rgb(var(--color-white));
  text-align: center;
  line-height: 19px;
  font-size: 10px;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 5;
}

.empty .center-circle {
  background-color: rgb(var(--color-grey-300));
  color: rgb(var(--color-white));
}

.box-product-sm {
  width: 15%;
  overflow: hidden;
  border-radius: 5px;
}

.overlay-img {
  position: absolute;
  background-color: rgba(0, 0, 0, 0.48);
  color: rgb(var(--color-white));
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

#tab-wl.nav-tabs .nav-item .nav-link,
#tab-wl.nav-tabs .nav-link {
  padding: 10px 0;
  font-size: 14px;
  border-radius: 0;
  border-left: 0;
  border-right: 0;
  border-top: 0;
  border-bottom: 2px solid transparent;
  background-color: transparent;
  color: var(--color-grey-500);
  position: relative;
}

#tab-wl .nav-item.show .nav-link,
#tab-wl .nav-link.active {
  color: rgb(var(--color-red)) !important;
  background-color: transparent;
  border-color: rgb(var(--color-red)) !important;
}

#tab-wl.nav-tabs .nav-link.new::after {
  content: '\e905';
  font-family: 'icomoon';
  top: 5px;
  right: -10px;
  position: absolute;
  font-size: 10px;
  color: rgb(var(--color-red));
}

.ico-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  padding: 3px;
  background-color: rgb(var(--color-white));
  border: 1px dashed rgb(var(--color-red));
  display: flex;
  justify-content: center;
  align-items: center;
}

.ico-number-inner {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  line-height: 30px;
  color: rgb(var(--color-white));
  text-align: center;
  font-size: 14px;
  background-color: rgb(var(--color-red));
}

.btn-play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  padding: 0;
}

.list-product {
  margin-right: 15px;
}

.img-list-product {
  height: 48px;
  width: 48px;
  border-radius: 5px;
  margin-top: 10px;
}

.del-produk {
  position: absolute;
  top: -10px;
  right: -10px;
}

.del-prod {
  background: rgb(var(--color-white));
  border: 1px solid rgb(var(--color-red));
  width: 16px;
  height: 16px;
  line-height: 16px;
  border-radius: 50%;
  color: rgb(var(--color-red));
}

.img-display {
  overflow: hidden;
  border-radius: 5px;
  width: 56px;
  height: 56px;
}

.maps {
  height: 345px;
  width: 100%;
  background-image: url(../img/maps.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 10px;
}

.maps.lg {
  height: 455px;
}

.verified {
  width: 22px;
  line-height: 23px;
  height: 22px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0px 0px 2px rgba(3, 89, 47, 0.18);
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  color: rgb(var(--color-dark-green));
}

.pin {
  cursor: pointer;
}

.pin-inner {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 30px;
  width: 210px;
}

.pin-inner.lg {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 30px;
  width: 330px;
}

.pin-hover {
  transition: all 100ms ease-in-out;
  opacity: 0;
  visibility: hidden;
}

.pin:hover>.pin-hover {
  opacity: 1;
  visibility: visible;
}

.ad {
  background: #FFF000;
  border-radius: 32px;
  display: inline-block;
  color: rgb(var(--color-red));
  font-weight: 600;
  font-size: 12px;
  padding: 2px 5px;
  margin-top: 10px;
}

.link-action {
  display: inline-block;
  box-shadow: 0px 0px 2px rgba(3, 89, 47, 0.18);
  width: 26px;
  height: 26px;
  border-radius: 50%;
  line-height: 26px;
  text-align: center;
  background-color: rgb(var(--color-white));
}

.link-action.lg {
  width: 40px;
  height: 40px;
  line-height: 40px;
  font-size: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.inspira-info {
  padding-left: 0;
  display: flex;
  margin-bottom: 0;
}

.inspira-info li {
  color: rgb(var(--color-grey-500));
  font-size: 12px;
  margin-right: 25px;
}

.inspira-info li:first-child {
  list-style: none;
}

.inspira-info li:last-child {
  margin-right: 0;
}

.inspira-info.red li {
  color: rgb(var(--color-red2));
}

.upload-materi input,
.box-certificate input {
  display: none;
}

.upload-materi label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  background: #FDF6F7;
  border: 1px dashed rgb(var(--color-red));
  border-radius: 4px;
  cursor: pointer;
}

.box-certificate label {
  border: 1px solid #DCDCDF;
  border-radius: 6px;
  padding: 5px;
  overflow: hidden;
  cursor: pointer;
}

.box-certificate input:checked+label {
  border: 1px solid rgb(var(--color-red));
}

.box-certificate label img {
  height: 120px;
  object-fit: cover;
  object-position: center;
}

#detail-tab .nav-item {
  width: 50%;
}

#detail-tab .nav-link {
  width: 100%;
  border-radius: 0;
  color: rgb(var(--color-grey-500));
  background-color: #FAFAFA;
  padding: 15px 0;
  font-size: 14px;
  font-weight: 500;
}

#detail-tab .nav-link.active {
  background-color: rgb(var(--color-red));
  color: rgb(var(--color-white));
}

.group-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 10px;
  overflow: hidden;
}

.certificate-box::before {
  content: '';
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.7);
}

.dropdown-produk input {
  display: none;
}

.dropdown-produk label {
  cursor: pointer;
}

.menu-dropdown {
  position: absolute;
  visibility: hidden;
  width: 245px;
  right: 0;
}

.dropdown-produk input:checked~.menu-dropdown {
  visibility: visible;
  opacity: 1;
}

.box-group {
  padding: 11px 0;
  border-bottom: 1px solid #DCDCDF;
}

.popup-choose input,
.group-choose input {
  display: none;
}

.popup-choose label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: transparent;
  cursor: pointer;
}

.popup-choose input:checked+label {
  background-color: #FFF7F8;
}

.popup-choose input:checked+label::after {
  content: "\e90a";
  font-family: 'icomoon';
  color: rgb(var(--color-red));
}

.group-choose {
  border-bottom: 1px solid #F3F3F6;
}

.group-choose label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: transparent;
  cursor: pointer;
  padding: 20px 0
}

.group-choose label::before {
  content: '';
  width: 18px;
  height: 18px;
  line-height: 18px;
  background: #FFFFFF;
  border: 1px solid #99999B;
  border-radius: 4px;
  position: absolute;
  right: 0;
}

.group-choose label::after {
  content: "\e90a";
  color: rgb(var(--color-white));
  font-family: 'icomoon';
  border-radius: 4px;
  position: absolute;
  right: 1px;
}

.group-choose input:checked+label::before {
  background: rgb(var(--color-red));
  border: 1px solid rgb(var(--color-red));
}

.group-choose input:checked+label::after {
  color: rgb(var(--color-white));
}

.choosed-item {
  display: inline-block;
  background: #FFEAED;
  border: 1px solid #FA0405;
  border-radius: 4px;
  color: rgb(var(--color-red));
  padding: 3px 8px;
  font-size: 14px;
}

.letter-spacing {
  letter-spacing: 0.2em;
}

.img-mentor {
  border: 2px solid #FFFFFF;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  overflow: hidden;
  filter: drop-shadow(0px 2px 14px rgba(0, 0, 0, 0.12));
}

.open-certificate {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}

.open-certificate img {
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.open-cer {
  background-color: rgba(0, 0, 0, 0.7);
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.usaha-choose input {
  display: none;
}

.usaha-choose label {
  background: #FFFFFF;
  border: 1px solid #F3F3F6;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.03);
  border-radius: 10px;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  position: relative;
}

.usaha-choose input:checked+label {
  border: 1px solid rgb(var(--color-red));
}

.usaha-choose input:checked+label::after {
  content: '';
  background: #FFF7F8;
  border: 1px solid #FA0405;
  width: 16px;
  height: 16px;
  border-radius: 50%;
}

.usaha-choose input:checked+label::before {
  content: "\e90a";
  font-family: 'icomoon';
  position: absolute;
  right: 22px;
  color: rgb(var(--color-red));
  font-size: 12px;
}

.box-profile {
  background-size: cover;
  background-position: center;
}

.img-profile-change {
  border: 2px solid #FFFFFF;
  box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.06);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  margin-top: -40px;
  background: #fff;
  position: relative;
}

.update-img {
  position: absolute;
  right: -5px;
  bottom: 0px;
}

.update-img input {
  display: none;
}

.update-img label {
  display: inline-block;
  background: #fff;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  line-height: 24px;
  color: rgb(var(--color-red));
  text-align: center;
  cursor: pointer;
  font-size: 12px;
}

.img-profile-change img {
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  height: 100%;
}

.accordion-item {
  background-color: #fff;
  border: 1px solid #F3F3F6;
}

.accordion-button:not(.collapsed) {
  color: rgb(var(--color-grey-700));
  font-weight: 500;
  background-color: #fff;
  box-shadow: none;
}

.accordion-button::after {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  margin-left: auto;
  content: "\e90b";
  font-family: 'icomoon';
  background-image: none;
  color: rgb(var(--color-red));
  background-repeat: no-repeat;
  background-size: 1.25rem;
  transition: transform .2s ease-in-out;
}

.accordion-button:not(.collapsed)::after {
  background-image: none;
  transform: rotate(-180deg);
}

.accordion-item:not(:first-of-type) {
  border-top: 1px solid #F3F3F6;
}

#tabs-tab .nav-item.show .nav-link,
#tabs-tab .nav-link.active {
  color: rgb(var(--color-red));
  background-color: transparent;
  border-color: transparent transparent rgb(var(--color-red));
}

#tabs-tab .nav-link {
  margin-bottom: 0;
  background: 0 0;
  border-bottom: 2px solid transparent;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  font-size: 14px;
  color: rgb(var(--color-grey-500));
}

#tabs-tab .nav-link:focus,
#tabs-tab .nav-link:hover {
  border-color: transparent transparent rgb(var(--color-red));
  isolation: isolate;
  color: rgb(var(--color-red));
}

#AllTab .nav-link {
  margin-bottom: 0;
  background: 0 0;
  border: 1px solid #99999B;
  border-radius: 40px;
  color: #99999B;
  font-size: 14px;
}

#AllTab .nav-item.show .nav-link,
#AllTab .nav-link.active {
  color: rgb(var(--color-red));
  background-color: transparent;
  border-color: rgb(var(--color-red));
}

.logo-t {
  width: 40%;
}

.list-support {
  list-style: none;
  display: flex;
  align-items: center;
  font-size: 12px;
  padding-left: 0;
}

.list-support li {
  display: flex;
  align-items: center;
  font-size: 12px;
  color: rgb(var(--color-grey-500));
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.list-support li::after {
  content: '|';
  display: inline-block;
  padding-left: 10px;
}

.list-support li:last-child::after {
  display: none;
}

.placeholder {
  height: 30px;
}

.h-grup {
  height: 50px;
  text-overflow: ellipsis;
  padding-right: 10px;
}

.link-download {
  position: absolute;
  left: 50%;
  top: 50%;
  bottom: auto;
  right: auto;
  font-size: 30px;
  color: #fff;
  z-index: 30;
  transform: translate(-50%, -50%);
}

.img-inspira {
  height: 130px;
  overflow: hidden;
}

.pagi {
  height: 40px;
  width: 70px;
}

.rb-list {
  list-style: none;
  padding-left: 0;
}

.rb-list li {
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
}

.rb-list li::before {
  content: "\e905";
  font-family: 'icomoon';
  color: rgb(var(--color-red));
  padding-right: 12px;
}

.selectric-new-home .selectric-items {
  padding: 0;
}

.selectric-new-home .selectric {
  border-bottom: 0;
}

.selectric-new-home .selectric .button {
  color: rgb(var(--color-black));
}

/* ========== Web Dashboard Style ========== */
.box-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 20px;
}

.dashed {
  border-style: dashed;
}

.pagination li {
  text-align: center;
  margin: 0 10px;
}

.pagination li a,
.pagination-table li a {
  display: block;
  color: rgb(var(--color-grey-500));
  font-weight: 500px;
}

.pagination li a:hover,
.pagination li a.active {
  color: rgb(var(--color-red));
}

.pagination li:first-child {
  margin-right: 10px;
  margin-left: 0;
}

.pagination li:last-child {
  margin-left: 10px;
  margin-right: 0;
}

.pagination-table li a {
  display: block;
  color: rgb(var(--color-grey-500));
  font-weight: 500px;
  border: 0;
  height: 32px;
}

.page-item:hover .page-link,
.page-item.active .page-link {
  z-index: 3;
  color: rgb(var(--color-red));
  background-color: rgb(var(--color-white));
  border-color: rgb(var(--color-white));
}

.page-item.disabled .page-link {
  color: rgb(var(--color-grey-500));
  pointer-events: none;
  background-color: #E9E9E9;
  border-color: #E9E9E9;
}

.pagination li:first-child a,
.pagination li:last-child a,
.pagination-table li:first-child a,
.pagination-table li:last-child a {
  display: inline-block;
  width: 32px;
  height: 32px;
  background-color: rgb(var(--color-red));
  color: rgb(var(--color-white));
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  font-size: 14px;
}

.pagination li:first-child a.disabled,
.pagination li:last-child a.disabled {
  background-color: #E9E9E9;
  color: rgb(var(--color-grey-500));
}


.up {
  transform: rotate(90deg);
}

.down {
  transform: rotate(-90deg);
}

.dataTables_filter,
.dataTables_info {
  display: none;
}

.pagination-table {
  display: flex;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 15px;
}

.dataTables_length {
  width: 300px;
}

.dataTables_length label {
  display: flex;
  align-items: center;
  font-size: 12px;
}

.data.form-select.filter {
  width: 80px;
  padding: 8px 12px;
  margin-left: 10px;
}

.table-main {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  overflow: hidden;
  font-size: 14px;
}

.table-main thead {
  background-color: rgb(var(--color-red));
  color: rgb(var(--color-white));
}

.table-main thead th,
.table-main tfoot th {
  font-weight: 500 !important;
}

.table-main thead th,
.table-main tbody td,
.table-main tfoot th {
  padding: 15px 25px;
}

.page-link:focus {
  z-index: 3;
  color: #0a58ca;
  background-color: #e9ecef;
  outline: 0;
  box-shadow: none;
}

.apexcharts-yaxistooltip,
.apexcharts-tooltip-marker {
  display: none;
}

.apexcharts-tooltip.apexcharts-theme-light {
  border: 1px solid #FA0405 !important;
  font-size: 10px !important;
  background: #FFEAED;
  color: rgb(var(--color-red)) !important;
}

.apexcharts-tooltip-series-group {
  padding: 0 5px !important;
}

.apexcharts-tooltip-y-group {
  padding: 3px 0 5px !important;
}

.apexcharts-legend-text {
  margin-left: 5px;
}

/* ========== Login & Forgot Style ========== */
.login-wrapper {
  display: flex;
  width: 100%;
  height: 100vh;
}

.left-items {
  width: 50%;
  background-image: url(../img/bg-login.jpg);
  background-position: center;
  background-size: cover;
}

.right-items {
  width: 50%;
}

.multply img {
  mix-blend-mode: multiply;
}

.btn-eye {
  position: absolute;
  padding: 10px;
  top: 0;
  right: 0;
  color: rgb(var(--color-red));
  font-size: 18px;
  cursor: pointer;
}

.btn-eye::before {
  content: '\e919';
  font-family: 'icomoon';
}

.btn-eye.toggled::before {
  content: '\e91a';
  font-family: 'icomoon';
}

.btn-google {
  background-color: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  color: rgb(var(--color-grey-700));
  font-weight: 600;
  border: 1px solid rgb(var(--color-grey-700));
}

.btn-google:hover {
  background-color: rgb(var(--color-grey-700));
  color: rgb(var(--color-white));
  border: 1px solid rgb(var(--color-grey-700));
}

.btn-google img {
  z-index: 1;
}

.logo-header {
  max-width: 135px;
}

.footer {
  background-color: rgb(var(--color-red));
  color: rgb(var(--color-white));
  padding: 15px 0;
}

.social {
  display: flex;
  align-items: center;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.social li {
  margin-left: 10px;
}

.center-content {
  height: calc(100vh - 125px);
  display: flex;
  justify-content: center;
  align-items: center;
}

.form-control:disabled,
.form-control[readonly] {
  background-color: #fff;
  opacity: 1;
}

/* ========== Home ========== */

.form-select.new-home {
  padding: 0px 16px 0px 0;
  border-bottom: 0;
}

.home-banner {
  background-size: cover;
  background-position: center center;
  text-align: center;
  padding: 30px;
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
  color: #fff;
}

.border-dotted {
  border-bottom: 1px dotted rgb(var(--color-grey-100));
}

.name-sobat {
  width: calc(100% - 32px);
  padding-left: 15px;
}

.content-feed {
  max-height: calc(100vh - 250px);
  overflow-y: auto;
  overflow-x: hidden;
}

.content-feed.search {
  max-height: 100%;
  height: calc(100vh - 250px);
  overflow-y: auto;
  overflow-x: hidden;
}

.feed-profile {
  width: 32px;
  height: 32px;
  overflow: hidden;
  border-radius: 50%;
}

.feed-profile-info {
  width: calc(100% - 32px);
  padding-left: 10px;
}

.list-info-profile {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 10px;
}

.list-info-profile li {
  font-size: 10px;
  line-height: 15px;
  letter-spacing: 0.01em;
  color: #99999B;
}

.list-info-profile li::after {
  content: "\e905";
  font-family: 'icomoon';
  font-size: 7px;
  color: #c5c5c5;
  margin: 0 5px;
}

.list-info-profile li:last-child:after {
  display: none;
}

.feed-image {
  display: grid;
  gap: 5px;
}

.feed-image.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.feed-image.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feed-image.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.image-items {
  height: 140px;
  overflow: hidden;
}

.image-items img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  object-position: center;
}

.image-items {
  position: relative;
}

.image-items.last-items::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.7);
}

.btn-play-video {
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  padding: 0;
  display: inline-block;
  width: 32px;
  height: 32px;
  transform: translate(-50%, -50%);
  opacity: 0.8;
}

.btn-play-video:hover {
  opacity: 1;
}

.btn-play-video img {
  max-width: 100%;
  width: 32px;
  height: 32px;
}

.count-image {
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  display: inline-block;
  transform: translate(-50%, -50%);
  color: #fff;
}

.feed-item {
  margin-bottom: 30px;
}

.add-button {
  position: fixed;
  z-index: 999;
  right: 9vw;
  bottom: 50px;
}

.add-button.notif {
  right: 3vw;
}

.btn-add-red,
.btn-notif {
  width: 48px;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgb(var(--color-red));
  color: #fff;
  border-radius: 50%;
  padding: 0;
  transition: all 200ms cubic-bezier(.47, 1.64, .41, .8);
}

.add-choose {
  max-width: 120px;
  transition: all 200ms cubic-bezier(.47, 1.64, .41, .8);
  opacity: 0;
  visibility: hidden;
}

.add-choose.show {
  opacity: 1;
  visibility: visible;
}

.btn-primary.body-4 {
  font-size: 12px !important;
  padding: 7px 8px !important;
  border-radius: 10px;
}

.btn-add-red.rotate {
  transform: rotate(45deg);
}

.popup-header {
  background-color: #fff;
  box-shadow: 0px 1px 12px rgba(29, 29, 31, 0.06);
  padding: 17px;
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
}

.btn-back {
  position: absolute;
  left: 15px;
  padding: 0;
}

.upload-items label {
  font-weight: 600;
  font-size: 14px;
  line-height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgb(var(--color-grey-300));
  cursor: pointer;
  border-radius: 4px;
  padding: 8px;
  color: #0B9D57;
}

.upload-items label:hover {
  border: 1px solid rgb(var(--color-grey-300));
  background: rgb(var(--color-grey-300));
}

.text-des .form-control {
  padding: 10px 0;
  border: 0;
}

.cari-usaha .form-control {
  padding: 10px 40px;
}

.btn-close-feed {
  position: absolute;
  z-index: 1;
  right: -15px;
  top: -15px;
  padding: 0;
}

.items-tag {
  max-width: 55px;
}

.btn-close-tag {
  padding: 0;
  position: absolute;
  right: 0;
  top: -5px;
  width: 25px;
}

.tag-items {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  margin: 5px 0;
}

.tag-items label {
  display: flex;
  align-items: center;
  width: calc(100% - 16px);
  cursor: pointer;
}

.btn-close-post {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  padding: 0;
  width: 30px;
  height: 30px;
}

.btn-close-post img {
  width: 30px;
  height: 30px;
}

.feed-empty {
  display: flex;
  justify-content: center;
  align-items: center;
  height: calc(100vh - 295px);
}

.notif {
  position: absolute;
  top: 100%;
  margin-top: 15px;
  right: 0;
  width: 360px;
  z-index: 88;
  border-radius: 5px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.03);
}

.notif-head {
  background: #FA0405;
  padding: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

.notif-head::before {
  position: absolute;
  display: block;
  content: '';
  top: -5px;
  right: 30px;
  width: 10px;
  height: 10px;
  margin-bottom: -7px;
  z-index: -1;
  border-top: 1px solid rgb(var(--color-red));
  border-left: 1px solid rgb(var(--color-red));
  background: rgb(var(--color-red));
  transform: rotate(45deg);
}

.btn-close-notif {
  padding: 0;
  color: #fff;
}

.notif-body {
  height: 550px;
  background-color: #fff;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-color: #f3f3f3 transparent;
  scrollbar-width: thin;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}

#tab-notif {
  gap: 25px;
  border-color: #F3F3F6;
}

#tab-notif .nav-link {
  font-weight: 400;
  font-size: 12px;
  line-height: 28px;
  color: #3E3E40;
  border-top: 0;
  border-left: 0;
  border-right: 0;
  padding: 10px 0;
  border-width: 2px;
}

#tab-notif .nav-link.active {
  color: rgb(var(--color-red));
  font-weight: 600;
  background-color: #fff;
  border-color: rgb(var(--color-red));
}

.list-notif {
  padding-left: 0;
  list-style: none;
  margin-bottom: 0;
}

.list-notif li {
  padding: 15px 20px;
  position: relative;
  margin: 0;
}

.title-notif {
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
  color: #3E3E40;
}

.date-notif {
  font-weight: 400;
  font-size: 12px;
  line-height: 24px;
  color: #99999B;
}

.notif-detail {
  padding: 15px 20px;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  background: #fff7f8;
  opacity: 0;
  transition: all 100ms ease-in-out;
}

.notif-detail:hover {
  opacity: 1;
}

.list-body {
  list-style: disc;
  padding-left: 15px;
  font-size: 14px;
}

.menu-home {
  margin-bottom: 0;
  padding-left: 0;
  list-style: none;
  display: flex;
  gap: 15px;
}

.menu-home li {
  font-size: 14px;
}

.dropdown-menu.profile {
  min-width: 252px;
  padding: 10px 0;
  font-size: 14px;
  color: #212529;
  text-align: left;
  list-style: none;
  background-color: #fff;
  border: 1px solid #DCDCDF;
  border-radius: 10px;
  margin-top: 10px !important;
}

.dropdown-menu.profile::before {
  position: absolute;
  display: block;
  content: '';
  top: 0;
  right: 15px;
  width: 15px;
  height: 15px;
  margin-top: -7px;
  z-index: -1;
  border-top: 1px solid #DCDCDF;
  border-left: 1px solid #DCDCDF;
  background: #fff;
  transform: rotate(45deg);
}

.profile-link {
  color: #3E3E40;
  display: flex;
  align-items: center;
  padding: 5px 20px;
}

.profile-link.out {
  color: #99999B;
}

/* ========== Scroll ========== */
.inner-scroll {
  height: calc(100vh - 261px);
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-color: #f3f3f3 transparent;
  scrollbar-width: thin;
}

.inner-choose {
  max-height: 270px;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-color: #f3f3f3 transparent;
  scrollbar-width: thin;
}

.inner-scroll::-webkit-scrollbar,
.inner-choose::-webkit-scrollbar,
.notif-body::-webkit-scrollbar {
  width: 5px;
  border-radius: 3px;
}

/* Track */
.inner-scroll::-webkit-scrollbar-track,
.inner-choose::-webkit-scrollbar-track,
.notif-body::-webkit-scrollbar-track {
  background: transparent;
}

/* Handle */
.inner-scroll::-webkit-scrollbar-thumb,
.inner-choose::-webkit-scrollbar-thumb,
.notif-body::-webkit-scrollbar-thumb {
  background: #f3f3f3;
}

/* Handle on hover */
.inner-scroll::-webkit-scrollbar-thumb:hover,
.inner-choose::-webkit-scrollbar-thumb:hover,
.notif-body::-webkit-scrollbar-thumb:hover {
  background: #f3f3f3;
}

.scroll-register {
  padding-top: 15vh;
  padding-bottom: 40px;
  padding-left: 15px;
  padding-right: 15px;
  height: 100vh;
  overflow-y: auto;
  overflow-x: hidden;
  -ms-overflow-style: none;
  /* IE 11 */
  scrollbar-width: none;
  /* Firefox 64 */
}

.scroll-register::-webkit-scrollbar {
  display: none;
}

.scroll-register::-webkit-scrollbar {
  display: none;
}

.popup-scroll {
  max-height: 50vh;
  overflow-y: auto;
  overflow-x: hidden;
  -ms-overflow-style: none;
  /* IE 11 */
  scrollbar-width: none;
  /* Firefox 64 */
}

.popup-scroll::-webkit-scrollbar,
.content-feed::-webkit-scrollbar {
  width: 5px;
  border-radius: 3px;
}

/* Track */
.popup-scroll::-webkit-scrollbar-track,
.content-feed::-webkit-scrollbar-track {
  background: transparent;
}

/* Handle */
.popup-scroll::-webkit-scrollbar-thumb,
.content-feed::-webkit-scrollbar-track {
  background: transparent;
}

/* Handle on hover */
.popup-scrolll::-webkit-scrollbar-thumb:hover,
.content-feed::-webkit-scrollbar-track {
  background: transparent;
}

/* ========== Swiper Override ========== */
.swiper-horizontal>.swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-horizontal,
.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite,
.swiper-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  height: 2px;
  top: 50%;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: rgb(var(--color-red));
}

.swiper-button-next,
.swiper-button-prev {
  position: absolute;
  top: 50%;
  width: 30px;
  height: 5px;
  margin-top: 0;
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgb(var(--color-red));
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-family: 'icomoon';
  font-size: 25px;
}

.swiper-button-next:after {
  content: '\e903';
}

.swiper-button-prev:after {
  content: '\e902';
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: 0;
  right: auto;
  padding-top: 2px;
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: 0;
  left: auto;
}

.sliderReseller .swiper-slide,
.sliderReseller2 .swiper-slide {
  width: 40%
}

.level.swiper-button-next,
.level.swiper-button-prev {
  position: absolute;
  top: 0;
  width: 20px;
  height: 100%;
  margin-top: 0;
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #F3F3F6;
  border-radius: 4px;
  color: rgb(var(--color-grey-500));
}

.level.swiper-button-next:after {
  content: '\e90d';
  font-size: 14px;
}

.level.swiper-button-prev:after {
  content: '\e90c';
  font-size: 14px;
}

.level.swiper-button-next.swiper-button-disabled,
.level.swiper-button-prev.swiper-button-disabled {
  opacity: 0;
  cursor: auto;
  pointer-events: none;
}

/* ========== Popup ========== */
.popup-overlay {
  background-color: rgba(0, 0, 0, 0.2);
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px;
  transition: all 100ms ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.popup-overlay.show {
  visibility: visible;
  opacity: 1;
}

.popup-xs {
  max-width: 360px;
  width: 100%;
}

.popup-sm {
  max-width: 445px;
  width: 100%;
}

.popup-md {
  max-width: 545px;
  width: 100%;
}

.popup-lg {
  max-width: 765px;
  width: 100%;
}

.btn-close-popup {
  font-size: 20px;
}

/* ========== Border Style ========== */

.border-yellow {
  border-left: 4px solid rgb(var(--color-yellow));
}

.border-green {
  border-left: 4px solid rgb(var(--color-green));
}

.border-blue {
  border-left: 4px solid #1AE3E2;
}

.border-purple {
  border-left: 4px solid rgb(var(--color-purple));
}

.border-darkblue {
  border-left: 4px solid rgb(var(--color-darkblue));
}

.border-brown {
  border-left: 4px solid rgb(var(--color-brown));
}

/* ==========================================================================
   Helper classes
   ========================================================================== */

.hidden,
[hidden] {
  display: none !important;
}

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

.text-italic {
  font-style: italic;
}

.text-hidden {
  text-overflow: ellipsis;
  white-space: nowrap;
}

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

.text-semi-bold {
  font-weight: 600;
}

.text-medium {
  font-weight: 500;
}

.text-normal {
  font-weight: 400;
}

.text-ultra-bold {
  font-weight: 900;
}

.link-grey {
  color: rgb(var(--color-grey-500));
}

.link-blue {
  color: #5D9EFF;
}

.h-100vh {
  height: 100vh;
}

.ps-6 {
  padding-left: 30px;
}

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

.r-8 {
  border-radius: 8px;
}

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

.r-50 {
  border-radius: 50px;
}

.mh-0 {
  min-height: 0;
}

.mh-200 {
  min-height: 200px;
}

.mw-0 {
  min-width: 0;
}

.no-border {
  border: 0;
}

.p-6 {
  padding: 15px;
}

.border-left {
  border-left: 1px solid #dee2e6 !important;
}

.border-right {
  border-right: 1px solid #dee2e6 !important;
}

.w-20 {
  width: 20%;
}

.w-80 {
  width: 80%;
}

.w-90 {
  width: 90%;
}


.mh-0 {
  min-height: 0;
}

.line-height {
  line-height: 0;
}

.sr-only {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
  /* 1 */
}

.sr-only.focusable:active,
.sr-only.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  white-space: inherit;
  width: auto;
}

.invisible {
  visibility: hidden;
}

.clearfix::before,
.clearfix::after {
  content: " ";
  display: table;
}

.clearfix::after {
  clear: both;
}

/* ==========================================================================
   Responsive Design.
   ========================================================================== */
@media (min-width: 1400px) {

  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl {
    max-width: 1200px;
  }

  .add-button {
    right: 10vw;
  }
}

@media (min-width: 1200px) {
  .container-xxl {
    max-width: 1300px;
  }
}

@media (min-width: 1280px) and (max-width: 1366px) {
  .text-hidden {
    overflow: -moz-hidden-unscrollable;
    overflow: hidden;
    max-width: 90%;
  }

  .text-hidden::-webkit-scrollbar {
    width: 1px;
  }

  /* Track */
  .text-hidden::-webkit-scrollbar-track {
    background: #f1f1f1;
  }

  /* Handle */
  .text-hidden::-webkit-scrollbar-thumb {
    background: #888;
  }

  /* Handle on hover */
  .text-hidden::-webkit-scrollbar-thumb:hover {
    background: #555;
  }

  .box-border.p-3 {
    padding: 10px !important;
  }

  .content-card {
    width: 75%;
  }

  .inner-nav {
    height: calc(100vh - 95px);
    overflow-y: auto;
    overflow-x: hidden;
    -ms-overflow-style: none;
    /* IE 11 */
    scrollbar-width: none;
    /* Firefox 64 */
    position: relative;
  }

  .inner-nav::-webkit-scrollbar {
    display: none;
  }

  .banner-kelon {
    padding: 30px 5px;
  }

  .home-header .container-fluid {
    padding: 0px 30px;
  }

  .add-button {
    right: 7vw;
  }

  .popup-scroll {
    max-height: 30vh;
  }
}

@media (min-width: 1280px) {}

@media (max-width: 1024px) {
  body {
    padding: 20px;
  }

  .main-content {
    width: 100%;
    padding-left: 100px;
  }

  .main-navigation {
    position: fixed;
    z-index: 100;
  }

  .toggle-mode {
    position: absolute;
    top: 10px;
    right: 18px;
  }

  .main-navigation.tablet-mode .main-nav {
    margin-top: 20px;
  }

  .border-lg-0 {
    border: 0 !important;
  }

  .inner-nav {
    height: calc(100vh - 65px);
    overflow-y: auto;
    overflow-x: hidden;
    -ms-overflow-style: none;
    scrollbar-width: none;
    position: relative;
  }

  .inner-nav::-webkit-scrollbar {
    display: none;
  }

  .banner-kelon {
    padding: 30px 5px;
  }

  .box-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .content-feed {
    max-height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
  }

  .popup-scroll {
    max-height: 30vh;
  }

  .home-header .container-fluid {
    padding: 0px 15px;
  }
}

@media (max-width: 991px) {
  .inner-scroll {
    height: 100%;
  }

  .left-items {
    display: none;
  }

  .right-items {
    width: 100%;
  }

  .inner-nav {
    height: auto;
    overflow-y: auto;
    overflow-x: hidden;
    -ms-overflow-style: none;
    /* IE 11 */
    scrollbar-width: none;
    /* Firefox 64 */
    position: relative;
  }

  .inner-nav::-webkit-scrollbar {
    display: none;
  }

  .box-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .table-main thead th:last-child {
    width: 15% !important;
  }

  .table-main thead th,
  .table-main tbody td,
  .table-main tfoot th {
    padding: 15px 20px;
  }

  .feed-image.four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feed-image.three {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feed-image.two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {}

@media (min-width: 1025px) {
  .toggle-mode {
    display: none;
  }
}

@media (min-width: 768px) {}

/* ========== Font Icon ========== */

@font-face {
  font-family: 'icomoon';
  src: url('../fonts/icomoon.eot?27st3a');
  src: url('../fonts/icomoon.eot?27st3a#iefix') format('embedded-opentype'),
    url('../fonts/icomoon.ttf?27st3a') format('truetype'),
    url('../fonts/icomoon.woff?27st3a') format('woff'),
    url('../fonts/icomoon.svg?27st3a#icomoon') format('svg');
  font-weight: normal;
  font-style: normal;
  font-display: block;
}


[class^="icon-"],
[class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'icomoon' !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;

  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-ico-card:before {
  content: "\e92e";
}

.icon-ico-category:before {
  content: "\e92f";
}

.icon-ico-cursor:before {
  content: "\e930";
}

.icon-ico-framework:before {
  content: "\e931";
}

.icon-ico-img:before {
  content: "\e932";
}

.icon-ico-member:before {
  content: "\e933";
}

.icon-ico-setting:before {
  content: "\e934";
}

.icon-ico-user:before {
  content: "\e935";
}

.icon-ico-add:before {
  content: "\e900";
}

.icon-ico-add-img:before {
  content: "\e901";
}

.icon-ico-arrow-left:before {
  content: "\e902";
}

.icon-ico-arrow-right:before {
  content: "\e903";
}

.icon-ico-back:before {
  content: "\e904";
}

.icon-ico-bullet:before {
  content: "\e905";
}

.icon-ico-bullets:before {
  content: "\e906";
}

.icon-ico-calendar:before {
  content: "\e907";
}

.icon-ico-call:before {
  content: "\e908";
}

.icon-ico-chat:before {
  content: "\e909";
}

.icon-ico-check:before {
  content: "\e90a";
}

.icon-ico-chev-down:before {
  content: "\e90b";
}

.icon-ico-chev-left:before {
  content: "\e90c";
}

.icon-ico-chev-right:before {
  content: "\e90d";
}

.icon-ico-chev-up:before {
  content: "\e90e";
}

.icon-ico-circle-check:before {
  content: "\e90f";
}

.icon-ico-circle-minus:before {
  content: "\e910";
}

.icon-ico-clock:before {
  content: "\e911";
}

.icon-ico-clock-fill:before {
  content: "\e912";
}

.icon-ico-close:before {
  content: "\e913";
}

.icon-ico-current-location:before {
  content: "\e914";
}

.icon-ico-dashboard:before {
  content: "\e915";
}

.icon-ico-delete:before {
  content: "\e916";
}

.icon-ico-download:before {
  content: "\e917";
}

.icon-ico-experience:before {
  content: "\e918";
}

.icon-ico-eye:before {
  content: "\e919";
}

.icon-ico-eye-close:before {
  content: "\e91a";
}

.icon-ico-filter:before {
  content: "\e91b";
}

.icon-ico-group:before {
  content: "\e91c";
}

.icon-ico-inbox:before {
  content: "\e91d";
}

.icon-ico-job:before {
  content: "\e91e";
}

.icon-ico-lock:before {
  content: "\e91f";
}

.icon-ico-play:before {
  content: "\e920";
}

.icon-ico-question:before {
  content: "\e921";
}

.icon-ico-search:before {
  content: "\e922";
}

.icon-ico-star:before {
  content: "\e923";
}

.icon-ico-teach:before {
  content: "\e924";
}

.icon-ico-transaksi:before {
  content: "\e925";
}

.icon-ico-wira-camp:before {
  content: "\e926";
}

.icon-ico-wira-inspira:before {
  content: "\e927";
}

.icon-ico-wira-kelon:before {
  content: "\e928";
}

.icon-ico-wira-leader:before {
  content: "\e929";
}

.icon-ico-wira-mentor:before {
  content: "\e92a";
}

.icon-ico-wira-reseller:before {
  content: "\e92b";
}

.icon-ico-wira-support:before {
  content: "\e92c";
}

.icon-ico-wira-usaha:before {
  content: "\e92d";
}


/* ==========================================================================
   Print styles.
   ========================================================================== */

@media print {

  *,
  *::before,
  *::after {
    background: #fff !important;
    color: #000 !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }

  a,
  a:visited {
    text-decoration: underline;
  }

  a[href^="#"]::after,
  a[href^="javascript:"]::after {
    content: "";
  }

  pre {
    white-space: pre-wrap !important;
  }

  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }

  thead {
    display: table-header-group;
  }

  tr,
  img {
    page-break-inside: avoid;
  }

  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }

  h2,
  h3 {
    page-break-after: avoid;
  }
}