/* HEADER */
/* ------------------------------- */

/* top-bar */
.jj-user-balance {
      display: flex;
      position: relative;
      top: 30px;
      bottom: 30px;
      width: 96%;
      margin: auto;
  }

  .jj-user-balance-content {
      padding: 8px 10px;
        width: 100%;
        font-size: 14px;
        color: #000;
        border-radius: 16px;
        background-color: #fff;
  }
  body.night-mode .jj-user-balance-content {
     background-color: var(--card-dark-color);
    color: #fff;
  }
 .jj-user-balance-content .saldo {
    color: var(--link-color);
    text-shadow: 0 0 1px rgba(0, 0, 0, 0.9);
    font-size: 20px;
    font-weight: 600;
  }
  body.night-mode .jj-user-balance-content .saldo {
    color: #fff;
  }
  
  a.jj-box-store {
  display: flex;
}
/* bottom bar links */
.menu-fitur {
  gap: 5px;
  display: grid;
 
}
.menu-fitur.style-1 {
   grid-template-columns: repeat(4, 1fr);
   width: 100%;
 
}

.menu-fitur>li {
  flex: 1;
  text-align: center;
  height: 90px;
   
}

.menu-fitur>li>a {
  position: relative;
  display: block;
  text-align: center;
  padding: 5px 1px 5px 1px;
  margin: 2px 0;
  
}

.menu-fitur>li>a:hover {
  background-color: rgb(160 160 160 / 10%);
   border-radius: 5%;
}


.menu-fitur>li>a>.icon, .menu-fitur>li>a>.icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
  /*background: #fff;*/
  height: 45px;
  width: 45px;
  margin: 0 auto;
  border-radius: 50%;
  color: #000;
  background-color: rgb(160 160 160 / 10%);
}
.menu-fitur>li>a>.icon>i, .menu-fitur>li>a>.icon-box>i {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 2px auto;
  border-radius: 50%;
  font-size: 23px;
  color: var(--link-color);
}
.menu-fitur li>a>.title {
  font-size: 12px;
  line-height: 14px;
  border-bottom: 0;
}

body.night-mode .menu-fitur>li>a:hover {
  background-color: rgb(234 234 234 / 10%);
}
body.night-mode .menu-fitur>li>a>.icon, body.night-mode .menu-fitur>li>a>.icon-box {
  color: #c1d4e3;
  background-color: #fff;
}
body.night-mode .menu-fitur li>a>.title {
  color: #c1d4e3;
}

.menu-fitur>li.active>a>.title,
body.night-mode .menu-fitur>.li.active>a>.title {
  color: var(--link-color);
  font-weight: bold;
}

.menu-fitur .dropdown-widget {
  box-shadow: none;
  border-radius: 8px 8px 0 0;
  
}





/* main-header */
.main-header-pop-up {
  position: relative;
  width: 100%;
  height: 55px;
  background: var(--header-bg-color);
}

body.night-mode .main-header-pop-up {
  background: var(--header-bg-color-dark);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}
/* logo-wrapper */
.main-header-pop-up .logo-wrapper {
  position: relative;
  padding-left: 48px;
  height: 50px;
  overflow: hidden;
  word-break: break-all;
}


.main-header-pop-up .logo {
  display: block;
  font-size: 32px;
  font-weight: 600;
  line-height: 70px;
  opacity: 1;
}

.main-header-pop-up img.logo-light {
  display: inline-block;
}

body.night-mode .main-header-pop-up img.logo-light {
  display: none;
}

.main-header-pop-up img.logo-dark {
  display: none;
}

body.night-mode .main-header-pop-up img.logo-dark {
  display: inline-block;
}

.main-header-pop-up .logo:hover {
  opacity: 0.8;
  text-decoration: none;
}

.main-header-pop-up .logo img {
  max-height: 10px;
}

.main-header-pop-up .menu-icon {
  position: absolute;
  top: 5px;
  left: 0;
  display: block;
  text-align: center;
  color: #fff;
  height: 40px;
   padding: 10px 9px;
  line-height: 100%;
  border-radius: 4px;
  
 
}

.main-header-pop-up .menu-icon:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* -- */

/* search-wrapper */
.main-header-pop-up .search-wrapper {
  position: relative;
  padding-left: 20px;
}
.main-header-pop-up .search-input-icon-left {
  position: absolute;
  top: 7px;
  left: 28px;
}
.main-header-pop-up .search-input-icon {
  position: absolute;
  top: 7px;
  right: 10px;
}

.main-header-pop-up .search-wrapper .form-control {
  height: 40px;
  margin-top: 7px;
  margin-bottom: 8px;
  
  padding-left: 32px;
  padding-right: 32px;
  
  box-shadow: none;
  background: #f2f2f2;
  border: 0 none;
  border-radius: 8px;
  color: #222;
  font-size: 14px;
}

body.night-mode .main-header-pop-up .search-wrapper .form-control {
  background: var(--body-bg-color-dark);
  color: var(--body-color-dark);
}

.main-header-pop-up .search-wrapper .form-control::placeholder {
  color: #999999;
}

.main-header-pop-up .search-wrapper .form-control::-webkit-input-placeholder {
  color: #999999;
}

.main-header-pop-up .search-wrapper .form-control:-moz-placeholder {
  color: #999999;
  opacity: 1;
}

body.night-mode .main-header-pop-up .search-wrapper .form-control::placeholder {
  color: #72879a;
}

body.night-mode .main-header-pop-up .search-wrapper .form-control::-webkit-input-placeholder {
  color: #72879a;
}

body.night-mode .main-header-pop-up .search-wrapper .form-control:-moz-placeholder {
  color: #72879a;
  opacity: 1;
}
/* navbar-wrapper */
.main-header-pop-up .navbar-wrapper>ul {
  display: flex;
}

.main-header-pop-up .navbar-wrapper>ul>li {
  flex: 1;
  text-align: center;
  margin: 0 2px;
}

.main-header-pop-up .navbar-wrapper>ul>li.mini-search {
  flex: 4;
}

.main-header-pop-up .navbar-wrapper>ul>li>a {
  position: relative;
  display: block;
  text-align: center;
  height: 40px;
  margin-top: 7px;
  padding: 0 10px;
  line-height: 35px;
  border-radius: 8px;
}

.main-header-pop-up .navbar-wrapper>ul>li>a:hover {
  background-color: rgb(160 160 160 / 10%);
}

body.night-mode .main-header-pop-up .navbar-wrapper>ul>li>a:hover {
  background-color: rgb(234 234 234 / 10%);
}

.main-header-pop-up .navbar-wrapper>ul>li.dropdown.show>a {
  background-color: rgba(255, 255, 255, 0.1);
}

body.night-mode .main-header-pop-up .navbar-wrapper>ul>li.dropdown.show>a {
  background-color: #494c62;
}

.main-header-pop-up .navbar-wrapper .counter {
  position: absolute;
  top: 5px;
  right: 0;
  padding: 2px 4px;
  color: #fff;
  font-size: 10px;
  line-height: 14px;
  font-weight: 600;
  border-radius: 3px;
}

.main-header-pop-up .navbar-wrapper .counter.red {
  background: #ff5e3a;
}

.main-header-pop-up .navbar-wrapper .counter.blue {
  background: #38a9ff;
}

.main-header-pop-up .navbar-wrapper .counter.purple {
  background: #7c5ac2;
}
/* -- */
/* -- SLICK BOX */
.slick-box-wrapper {
  height: 100px;
}

.slick-box-wrapper .slick-prev,
.slick-box-wrapper .slick-next {
  width: 40px;
  height: 40px;
  z-index: 2;
}

.slick-box-wrapper .slick-prev {
  left: 10px;
}

.slick-box-wrapper .slick-next {
  right: 10px;
}

.slick-box-wrapper .slick-prev:before,
.slick-box-wrapper .slick-next:before {
  font-size: 40px;
  color: #fff;
  text-shadow: 1px 1px #000000;
}

.slick-box {
  background-color: #000;
  position: relative;
  display: block;
  border-radius: 16px;
  margin-right: 20px;
  width: 260px;
  height: 100px !important;
  overflow: hidden;
}

.slick-box video {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  object-fit: cover;
  width: 100%;
  height: auto;
  max-height: 400px;
  border-radius: 16px;
}

.slick-box .views {
  position: absolute;
  bottom: 10px;
  left: 15px;
  color: #fff;
  text-shadow: 1px 1px #000000;
  z-index: 2;
}

/* -- */




@media (max-width:768px){
  /*** Start Preloader CSS ***/
.loader-mask {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #0D1722;
  z-index: 99999;
}

.loader-mask .pre-loader {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 50px;
  height: 50px;
  font-size: 0;
  color: #00c9d0;
  display: inline-block;
  margin: -25px 0 0 -25px;
  text-indent: -9999em;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
}

.lead {
  font-size: 13px;
}

.loader-mask .pre-loader div {
  background-color: #2DBB54;
  display: inline-block;
  float: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 50px;
  height: 50px;
  opacity: .5;
  border-radius: 50%;
  -webkit-animation: ballPulseDouble 2s ease-in-out infinite;
  animation: ballPulseDouble 2s ease-in-out infinite;
}

.loader-mask .pre-loader div:last-child {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}

@-webkit-keyframes ballPulseDouble {

  0%,
  100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }

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

@keyframes ballPulseDouble {

  0%,
  100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }

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

/*** End Preloader CSS ***/
  
body {
  font-family: "Metropolis", sans-serif;
  background-color: rgba(var(--white), 1);
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
  height: 100vh;
  overflow-y: auto;
}
body::-webkit-scrollbar {
  scrollbar-width: none;
  scrollbar-color: #000000;
  width: 1px;
}
body::-webkit-scrollbar-track {
  background: #ffffff;
}
body::-webkit-scrollbar-thumb {
  background-color: #000000;
  border-radius: 0px;
  border: 3px solid #ffffff;
}
  
 
/* main-header */
.top-main-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 50px;
  background: var(--header-bg-color);
  z-index: 1001;
}

body.night-mode .top-main-header {
  background: var(--header-bg-color-dark);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.top-main-header .logo-wrapper {
  position: relative;
  padding-left: 12px;
  height: 50px;
  overflow: hidden;
  word-break: break-all;
}

.top-main-header .logo {
  display: block;
  font-size: 30px;
  font-weight: 600;
  line-height: 50px;
  opacity: 1;
}


.top-main-header .logo img {
  max-height: 40px;
}

.top-main-header .menu-icon {
  position: absolute;
  top: 6px;
  left: 0;
  display: block;
  text-align: center;
  color: #fff;
  height: 40px;
  padding: 15px 14px;
  line-height: 100%;
  border-radius: 4px;
}






.main-header-mini {
  height: 50px;
  background: var(--header-bg-color);
  z-index: 1001;
  
}

/* logo-wrapper */
.main-header-mini .logo-wrapper {
  position: relative;
  padding-left: 48px;
  height: 50px;
  overflow: hidden;
  word-break: break-all;
}


.main-header-mini .logo {
  display: block;
  font-size: 28px;
  font-weight: 600;
  line-height: 50px;
  opacity: 1;
}



.main-header-mini .logo img {
  max-height: 40px;
}

.main-header-mini .menu-icon {
  position: absolute;
  top: 10px;
  left: 0;
  display: block;
  text-align: center;
  color: #fff;
  height: 50px;
  padding: 15px 14px;
  line-height: 100%;
  border-radius: 4px;
}

.main-header-mini .menu-icon:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* -- */

/* search-wrapper */
.main-header-mini .search-wrapper {
  position: relative;
}

.main-header-mini .search-input-icon {
  position: absolute;
  top: 10px;
  right: 12px;
}
.main-header-mini .search-wrapper input:valid ~ .icon-clear-search {
  display: block;
}
.main-header-mini .search-wrapper .icon-clear-search {
  position: absolute !important;
  top: 10px;
  font-size: 18px;
  right: 12px;
}
.main-header-mini .search-wrapper .form-control {
  height: 44px;
  margin-top: 13px;
  margin-bottom: 8px;
  padding-right: 34px;
  box-shadow: none;
  background: #f2f2f2;
  border: 0 none;
  border-radius: 8px;
  color: #222;
  font-size: 16px;
}

.main-header-mini .logo-wrapper {
    padding-left: 0;
  }
.main-header-mini .menu-icon {
  position: absolute;
  top: 5px;
  left: 0;
  display: block;
  text-align: center;
  color: #fff;
  height: 40px;
  padding: 13px 12px;
  line-height: 100%;
  border-radius: 4px;
}
  .main-header-mini .search-input-icon {
    position: absolute;
    top: 4px;
    right: 2px;
  }
.main-header-mini .search-wrapper input:valid ~ .icon-clear-search {
  display: block;
}
.main-header-mini .search-wrapper .icon-clear-search {
  position: absolute !important;
  top: 7px;
  font-size: 18px;
  right: 2px;
}
  .main-header-mini .search-wrapper .form-control {
    height: 34px;
    margin-left: 10px;
    margin-top: 10px;
    margin-bottom: 8px;
    box-shadow: none;
    background: #f2f2f2;
    border: 0 none;
    border-radius: 8px;
    color: #222;
    font-size: 16px;
  }


/* -- */
 

/* main-header */
.main-header {
  /*top :42px;*/
  top: 0;
  left: 0;
  right: 0;
  height: 50px;
  background: var(--header-bg-color);
  z-index: 1001;
}

.footer-bottom-bar {
  height: 62px;
}
 
body.n_top-bar .main-header{
  top: 49px;
  /* for top bar */
}
body.n_activated.n_top-bar .main-header{
  top: 49px;
  /* for top bar */
}



    
    .top-bar {
        height: 50px;
        font-size: 12px;
        line-height: 40px;
     }
    
    /* ** fix bootstrap modal padding-right for hiding scroll */
    body.modal-open .main-header,
    body.modal-open .top-bar {
      padding-right: 17px !important;
    }
    
    .main-wrapper,
    .top-bar,
    .main-header {
      padding-right: 0;
    }

   body.n_activated .main-header,
    body.n_live .main-header {
      top: 50px;
      /* for top bar */
    }
    
/* logo-wrapper */
.main-header .logo-wrapper {
  padding-left: 38px;
  height: 50px;
}
.main-header .logo {
    font-size: 27px;
    font-weight: 600;
    line-height: 60px;
}
.main-header .logo img {
    max-height: 40px;
}
.main-header .menu-icon {
    top: 6px;
    left: 0;
    height: 40px;
    padding: 10px 9px;
    line-height: 100%;
    border-radius: 4px;
}

    
.main-header .search-input-icon-left {
  position: absolute;
  top: 6px;
  left: 18px;
}

.main-header .search-wrapper input:valid ~ .search-input-icon {
  display: block;
}
.main-header .search-wrapper .search-input-icon {
  position: absolute ;
  top: 7px;
  font-size: 8px !important;
  right: -6px;
   display: none;
}
.main-header .search-wrapper .form-control {
  height: 36px;
  margin-top: 8px;
  margin-bottom: 8px;
  margin-left: 14px;
  
  padding-left: 32px;
  padding-right: 32px;
  box-shadow: none;
  background: #f2f2f2;
  border: 0 none;
  border-radius: 8px;
  color: #222;
  font-size: 16px;
}
    
    /* navbar-wrapper */

.navbar-wrapper>ul>li {
  margin: 0 1px;
}


.navbar-wrapper>ul>li>a {
  height: 40px;
  margin-top: 5px;
  padding: 0 5px;
  line-height: 40px;
  border-radius: 6px;
}
.header-icon-mobile {
  
}


.navbar-wrapper .counter {
  top: 5px;
  right: 5px;
  padding: 3px 6px;
  font-size: 10px;
  line-height: 14px;
  font-weight: 600;
  border-radius: 4px;
}

/* -- user-menu */
.user-menu>img {
}


/* -- dropdown-widget */
.dropdown-widget {
  width: 100%;
  padding-bottom: 0;
  padding-top: 0;
  margin-top: 8px !important;
}

.dropdown-widget-header {
  padding: 12px;
  font-size: 11px;
}


.dropdown-widget-header .title {
  font-size: 16px;
  line-height: 22px;
  font-weight: 500;
}


.dropdown-widget-body {
  font-size: 12px;
}

.dropdown-widget-body .title {
  padding: 8px;
  font-size: 11px;
  font-weight: 600;
  line-height: 16px;
}


.dropdown-widget-footer {
  padding: 10px 0;
  font-size: 13px;
}


  
    
  .sg-offcanvas {
    margin-top: -25px !important;
  }  
    
  .js_sticky-sidebar {
      
  }
div[class^="col-"], div[class*=" col-"] {
    padding: 0 5px;
    padding-bottom: 0;
}

/* == Alert == */
.alert {
  padding: 8px 16px;
  border-radius: 16px;
}


.alert-dismissible {
  padding-right: 52px;
}

/* -- Custom Alerts */
.alert-post {
  background: #f8f9fa;
  color: var(--link-color);
  font-weight: 600;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
}

.alert-chat {
  background: #f4f4f4;
  width: 75%;
  padding: 5px 15px !important;
  margin: 0 auto !important;
  color: #555;
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
}


.alert .title {
  padding-bottom: 4px;
  margin-bottom: 5px;
  font-weight: 600;
  border-bottom: 1px solid #00000012;
}

.alert .icon {
  display: table-cell;
  vertical-align: middle;
  padding-right: 10px;
}

/* == */



 /* == Buttons == */
.btn {
  font-size: 13px;
  font-weight: 600;
  padding: 0.7rem 1.8rem;
  white-space: nowrap;
  box-shadow: none !important;
}

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

.btn.disabled,
.btn:disabled {
  box-shadow: none;
}

.btn-lg,
.btn-group-lg>.btn {
  font-size: 14px;
  padding: 16px 96px;
}

.btn-md,
.btn-group-md>.btn {
  font-size: 12px;
  padding: 0.75rem 1.85rem;
}

.btn-sm,
.btn-group-sm>.btn {
  font-size: 11px;
  padding: 8px 26px;
}

.btn-icon {
  padding: 12px 14px;
}

.btn-lg.btn-icon {
  padding: 19px 22px;
}

.btn-md.btn-icon {
  padding: 20px;
}

.btn-sm.btn-icon {
  padding: 5px 8px;
}


.btn-link {
  font-weight: 400;
  color: var(--link-color);
  background-color: transparent;
}
.btn-outline-dark.focus,
.btn-outline-dark:focus {
  box-shadow: 0 0 0 0 rgba(33, 37, 41, 0.5);
}

.btn-outline-dark:not(:disabled):not(.disabled).active:focus,
.btn-outline-dark:not(:disabled):not(.disabled):active:focus,
.show>.btn-outline-dark.dropdown-toggle:focus {
  box-shadow: 0 0 0 0 rgba(33, 37, 41, 0.5);
}

/* -- Custom Buttons */
.btn-rounded {
  border: 0 !important;
  border-radius: 50%;
}

.btn-voice-start,
.btn-voice-stop {
  display: inline-block;
  padding: 4px 14px;
  background: #007bff;
  color: #fff;
  cursor: pointer;
  border-radius: 18px;
}


.btn-chat {
  background: #fff;
  padding: 15px;
}



.btn-icon-social {
  display: inline-block;
  background: #fbfbfb;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
}



.btn-social {
  border-radius: 14px;
  border: 2px solid #EFEFEF;
  padding: 10px 18px;
  gap: 14px;
  font-size: 14px;
  font-weight: 500;
  transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}


/* == */

/* == Inputs == */
.form-group {
  margin-bottom: 8px;
}

.form-control,
.form-select,
.input-group-text {
  padding: .5rem 0.8rem;
}


.form-label {
  font-weight: 600;
}

.input-group .btn {
  padding-top: 7px;
  padding-bottom: 7px;
}

.form-check-label {
  padding-top: 2px;
}

/* -- Custom Inputs */
.form-table-row {
  display: flex;
  margin-bottom: 5px;
  margin-left: -5px;
}
.form-table-row>div .form-label{
  margin-top: 8px;
}
.form-table-row>div.text-end{
  margin-top: 8px;
}
.form-table-row>div:last-child {
  flex-basis: auto;
  flex-grow: 0;
  margin-left: 8px;
}

.form-table-row>div.avatar {
  margin-right: 8px;
}
.form-table-row>div.avatar .main-icon {
  width: 30px !important;
}

.input-money span {
  font-size: 20px;
  position: absolute;
  top: 15px;
  left: 0;
  width: 45px;
  text-align: center;
}

.input-money.right span {
  left: auto;
  right: 0;
}

.input-money input {
  font-size: 40px;
  line-height: 40px;
  font-family: opensanslight;
  margin: 0;
  padding: 10px;
  padding-left: 45px;
  height: 60px;
  outline: 0;
}

.input-money.right input {
  padding-left: 10px;
  padding-right: 45px;
}

/* == */ 

/* ON/OFF TOGGLE */
/* ------------------------------- */

.switch {
  width: 48px;
  height: 28px;
}

.switch.sm {
  width: 25px;
  height: 15px;
}


.switch .slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 4px;
  bottom: 4px;
}

.switch.sm .slider:before {
  height: 11px;
  width: 11px;
  left: 2px;
  bottom: 2px;
}


.switch input:checked+.slider:before {
  -webkit-transform: translateX(20px);
  -ms-transform: translateX(20px);
  transform: translateX(20px);
}

.switch.sm input:checked+.slider:before {
  -webkit-transform: translateX(11px);
  -ms-transform: translateX(11px);
  transform: translateX(11px);
}

.switch .slider.round {
  border-radius: 28px;
}

.switch .slider.round:before {
  border-radius: 50%;
}

/* -- */



/* == Card == */
 .card {
  border-radius: 6px;
  margin-bottom: 10px;
}

.card-header {
  padding: 15px;
  border-radius: 6px 6px 0 0 !important;
}

.card-footer {
  border-radius: 0 0 6px 6px !important;
  border: 0 none;
}

/* -- Custom Cards */
.card-header.with-icon {
  padding: 10px;
}

.card-header.with-nav {
  padding-bottom: 0;
  border-bottom: 0;
}
   
 .card-header.with-icon {
    font-size: 14px;
    font-weight: 400;
  }


.card-header.block-title {
  font-size: 9px;
  font-weight: 400;
  text-transform: uppercase;
  padding: 5px 15px;
  background: transparent;
}

.card-body.with-nav,
.card-body.with-list,
.card-body.with-form {
  padding: 10px;
}

.card-body .divider,
.modal-body .divider, .main-content .divider {
  border-top: 1px solid #e6ecf5;
  margin: 5px 0;
}


/* Modal */
.modal .modal-header {
    border: 0;
    border-radius: 0;
}
.modal .modal-header .modal-title .modal-header-icon {
  
  color: #c1d4e3 ! important;
  fill: #c1d4e3 ! important;
  
}
.modal-content {
    
    border: 0;border-radius: 0;
    box-shadow: 0px 4px 8px 3px rgb(0 0 0 / 15%), 0px 1px 3px rgb(0 0 0 / 30%);}
.modal-content:before {
    content: '';
    position: absolute;
        top: 0px;
        right: 0px;
        bottom: 0px;
        left: 0px;
        background: var(--main-btn);
        border-radius: 1.8rem;opacity: 0.03;}
.modal-content .modal-header, .modal-content .modal-body, .modal-content .modal-footer {
    position: relative;z-index: 1;
}
.modal-body {
    
     overflow-y: auto;
     max-height: calc(100vh - 135px);
     max-height: calc(var(--vh, 1vh) * 100 - 135px);       
            /*padding: 2px 1.5rem 1.5rem; overflow-y: auto;max-height: calc(100vh - 200px);max-height: calc(var(--vh, 1vh) * 100 - 200px);*/}

.modal-backdrop {background: rgba(0, 0, 0, 0.6);z-index: 1048;}
.modal-backdrop.show {opacity: 1;}
.modal.fade {
      padding: 0 !important;
      width: 100%;       
      background: transparent;
      transition: opacity 0.2s,visibility 0s 0.2s;
      text-align: center;
}
.modal.fade.show {
    transition: opacity 0.2s,visibility 0s;
    overflow-y: auto;
    overscroll-behavior: contain;
    display: flex !important;
}
.modal.fade:before { 
    content: ''; 
    display: inline-block; 
    height: 100%; 
    vertical-align: middle; 
} 
.modal.fade .modal-dialog {
    display: inline-flex;
    text-align: left;
    vertical-align:  bottom;
    margin: auto;
    transform: scale(.95);
    transform: translate(0, 100%);
    width: 100%;
    height: 100%;
}
.modal.fade.show .modal-dialog {transform: scale(1);}



/* offcanvas */

.offcanvas {
    border-radius: 14px 14px 0 0 !important;
    border: 0 !important;
    
}
.offcanvas .offcanvas-header {
    border: 0 !important;
    border-radius: 0 !important;
    padding: 14px 14px !important;
}
.offcanvas .offcanvas-header .offcanvas-title {
    font-size: 16px !important;
  font-weight: 600 !important;
}

.offcanvas-content {
    border: 0;border-radius: 0;
    box-shadow: 0px 4px 8px 3px rgb(0 0 0 / 15%), 0px 1px 3px rgb(0 0 0 / 30%);
}
.offcanvas-content:before {
    content: '';
    position: absolute;
        top: 0px;
        right: 0px;
        bottom: 0px;
        left: 0px;
        background: var(--main-btn);
        border-radius: 1.8rem;opacity: 0.03;}
.offcanvas-content .offcanvas-header, .offcanvas-content .offcanvas-body, .offcanvas-content .offcanvas-footer {
    position: relative;z-index: 1;
}
.offcanvas-body {
     overflow-y: auto;
     max-height: calc(100vh - 135px);
     max-height: calc(var(--vh, 1vh) * 100 - 135px);     
     min-height: 30vh;
}


/* LIGHTBOX */
/* ------------------------------- */

.lightbox {
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
  height: 100vh;
  overflow-y: none;
  left: 0;
  right: 0;
}
.lightbox::-webkit-scrollbar {
  width: 0;
}

.lightbox-container {
  display: table;
  width: 100%;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.6);
  padding-right: 0;
  padding-left: 0;
  background: #fff;
}


.lightbox-preview {
  position: relative;
  display: block;
  width: 100%;
  vertical-align: middle;
  background: #000;
  text-align: center;
}

.lightbox-preview.nodata {
  width: 100%;
}

.lightbox-preview.with-live {
  padding: 25px;
}

.lightbox-preview.with-live video {
  top: 0 !important;
  left: 0 !important;
}

.lightbox-exit {
  position: absolute;
  top: 4%;
  right: 2%;
  opacity: 0.5;
  color: #fff;
}

.lightbox-next,
.lightbox-prev {
  position: absolute;
  top: 50%;
  opacity: 0.5;
}

.lightbox-next {
  right: 2%;
}

.lightbox-prev {
  left: 2%;
}

.lightbox-download {
  position: absolute;
  bottom: 4%;
  left: 2%;
}

.lightbox-download a {
  color: #fff;
  opacity: 0.5;
}

.lightbox-download a:hover {
  opacity: 0.75;
}

.lightbox-preview img {
  margin: 0 auto;
  max-width: 100%;
  max-height: calc(100vh - 92px);
  /* 92px = 46*2 (header) */
}


.lightbox-data {
  background-color: rgba(var(--white), 1);
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
  height: 100vh;
  overflow-y: auto;
}
.lightbox-data::-webkit-scrollbar {
  scrollbar-width: none;
  scrollbar-color: #000000;
  width: 1px;
}
.lightbox-data::-webkit-scrollbar-track {
  background: #ffffff;
}
.lightbox-data::-webkit-scrollbar-thumb {
  background-color: #000000;
  border-radius: 0px;
  border: 3px solid #ffffff;
}



.lightbox-data .title {
  padding-bottom: 8px;
  margin-bottom: 10px;
  font-weight: 600;
  border-bottom: 1px solid #00000012;
}

.lightbox-data .icon {
  display: table-cell;
  vertical-align: middle;
  padding-left: 10px;
}

.lightbox-data .header {
  border: 0 none;
  padding: 14px;
  font-weight: 600;
}
.lightbox-data .header .btn-close {
   
    margin-top: -5px !important;
     color: var(--body-color-dark);
  border-color: var(--card-dark-divider);
  background-color: var(--card-dark-divider);
}
.lightbox-data .footer {
  border-radius: 0 0 16px 16px !important;
  border: 0 none;
}

/* -- Custom Cards */
.lightbox-data .header.with-icon {
  padding: 30px;
}

.lightbox-data .header.with-nav {
  padding-bottom: 0;
  border-bottom: 0;
}


.lightbox-post {
    
  /* height: calc(100vh - 113px);113px = 46*2 (header) + 21px (close btn) */
}
.lightbox-post .card-footer {
  position: fixed;
  background: #fff;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
}
/* -- */


/* feeds-item */

/* -- */

/* data-container */
.data-container {
  display: block;
  width: 100%;
  padding: 8px;
  min-height: 56px;
  /* 40px avatar + 16px padding */
}

.data-container.small {
  min-height: 46px;
  /* 30px avatar + 16px padding */
}

.data-avatar img {
  width: 40px;
  height: 40px;
  text-align: center;
  border-radius: 50%;
}

.data-reaction {
  position: absolute;
  bottom: -4px;
  right: -6px;
}

.data-content {
  padding-left: 48px;
  color: #555;
  font-size: 14px;
}




/* POST */
/* ------------------------------- */

.post {
  margin-bottom: 5px;
  border-radius: 5px;
  box-shadow: 0px 0px 30px 0px rgb(82 63 105 / 5%);
}
.post .pending-icon,
.blog .pending-icon {
  position: absolute;
  right: 18px;
  top: -12px;
  width: auto;
  font-size: 18px;
  color: #f9b340;
}
.post-header-header {
    
    padding-bottom: 5px;
    border-bottom: 1px solid #f4f4f4;
}
/* -- */

.post-meta {
  display: table-cell;
  vertical-align: top;
  width: 100%;
  word-break: break-word;
  word-wrap: break-word;
}

.post-meta .dropdown .dropdown-toggle {
  color: #888;
  padding: 4px 6px;
  border-radius: 10px;
}
.post-meta .title {
  font-size: 14px;
  font-weight: 600;
}


.post-actions {
  display: flex;
  padding: 3px 8px 3px 8px;
  border-top: 0;
}
.post-actions .data-info {
  flex: 1;
  padding: none;
  color: #555;
  font-size: 12px;
  font-weight: 600;
  text-align: center;
  border-radius: 12px;
  transition: all 0.1s ease-in-out;
}
.data-info .data {
}
.post-actions .title{
    text-decoration: none;
    border-bottom: 0;
    padding: none;
}
.post-actions .action-btn {
  flex: 1;
  padding: 5px;
  color: #555;
  font-size: 12px;
  font-weight: 600;
  line-height: 12px;
  text-align: center;
  border-radius: 12px;
  transition: all 0.1s ease-in-out;
}











.add-auto-connect-node {
  background: #f7f7f7;
  margin: 5px 0;
  padding: 5px 5px;
  font-weight: 500;
  text-align: center;
  border: 1px solid #ddd;
  border-radius: 16px;
  cursor: pointer;
}
.continer-node {
  margin: 1px 0;
  padding: 12px 20px 0;
  border: 1px solid #ddd;
  border-radius: 16px;
}
.continer-node .title {
  padding: 10px 0 10px 0;
  border-bottom: 1px solid #00000012;
}
.main-title {
  padding: 10px 0 10px 0;
  border-bottom: 1px solid #00000012;
}
/* payments plans */
.payment-plans {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.payment-plan {
  padding: 14px 30px;
  border-radius: 16px;
}



/* text sizes */
.text-sm {
  font-size: 0.6em;
  line-height: 0.9;
}

.text-md {
  font-size: 1em;
  line-height: 1.2;
}

.text-lg {
  font-size: 1em;
  line-height: 1.2;
}

.text-xlg {
  font-size: 1.2em;
  line-height: 1.7em;
}

.text-xxlg {
  font-size: 1.5em;
  font-weight: 600;
}

/* -- */


/* -- Custom Nav */
.nav-pills.nav-search .nav-item,
.nav-pills.nav-started .nav-item {
  margin-right: 4px;
  margin-bottom: 4px;
  font-weight: 600;
}


.nav-pills.nav-started .nav-link {
  padding-top: 5px;
  padding-bottom: 5px;
}

/* == */

.profile-header {
    
  margin-top: -20px !important;
  margin-bottom: 10px;
}








.width-content {
  margin: auto !important;
  width: 100% !important;
}
.lightbox-up {
  position: absolute;
  width: 100%;
  top: 100%;
  bottom: 0;
  border-radius: 16px 16px 0 0;
  pointer-events: auto;
  margin: auto;
  /**/
   /*overflow: hidden;*/
}

.lightbox-up .lightbox-data {
 
  display: block;
  width: 100%;
  vertical-align: top;
  background-color: #fff;
  
}
.lightbox-up.full {
   width: 100%;
  height: 100%;
  overflow: auto;
  /**/
   /*overflow: hidden;*/
}
.lightbox-up .lightbox-header {
  border-radius: 18px 18px 0 0;
  width: 100%;
  color: #fff;
  background-color: #fff;
  height: 20px;
}
.lightbox-up.full .lightbox-header {
  border-radius: 0;
  border: 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 30px;
  z-index: 1002;
}
.lightbox-up .close-slide {
    
  border: 2px solid var(--line);
  border-radius: 4px;
    width: 61px;
    height: 1px;
    position: absolute;
    margin-top: 10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1003; 
}
body.night-mode .lightbox-header {
  background-color: var(--card-dark-color);
}




.jadijaya-open {
  overflow: hidden;
  /* hide the page scroll */
}

.box-lightbox {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  z-index: 1008;
  overflow-y: scroll;
}

.lightbox-jadijaya {
  position: absolute;
  width: 100%;
  top: 10%;
  bottom: 0;
  border-radius: 16px 16px 0 0;
  pointer-events: auto;
  margin: auto;
  /**/
   /*overflow: hidden;*/
}

.lightbox-jadijaya .lightbox-data {
 
  display: block;
  width: 100%;
  vertical-align: top;
  background-color: #fff;
  
}
.lightbox-jadijaya.full {
   width: 100%;
  height: 100%;
  overflow: auto;
  /**/
   /*overflow: hidden;*/
}
.lightbox-jadijaya .lightbox-header {
  border-radius: 18px 18px 0 0;
  width: 100%;
  color: #fff;
  background-color: #fff;
  height: 20px;
}
.lightbox-jadijaya.full .lightbox-header {
  border-radius: 0;
  border: 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 30px;
  z-index: 1002;
}
.lightbox-jadijaya .close-slide {
    
  border: 2px solid var(--line);
  border-radius: 4px;
    width: 61px;
    height: 1px;
    position: absolute;
    margin-top: 10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1003; 
}


/*.lightbox-full {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--white);
  z-index: 1002;
  overflow-y: scroll;
}
.lightbox .lightbox-post.full {
    height: 100vh !important;
    padding: 0 8px;
}
.lightbox .lightbox-post.full .app-content{
    max-width: 1024px !important;
    width: 100%;
}

*/
 .footer-up {
  width: 100%;
  background: var(--white);
}
.footer-up .top {
  padding: 16px 16px !important;
}
.footer-up .top .inner {
  max-width: 1024px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-up .top .inner .icon-close1 {
  font-size: 24px;
  color: var(--secondary);
  font-weight: 600;
}
.footer-up .app-content {
  padding-bottom: 16px !important;
  padding-top: 16px !important;
}
.footer-up .content {
  padding-bottom: 16px !important;
  padding-top: 16px !important;
   padding-left: 0 !important;
  padding-right: 16px !important;
}
.footer-up.full {
  width: 100%;
  background: var(--white);
  
}
.footer-up.full .top {
 position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900000;
}

.footer-up.full .top .inner {
  max-width: 1024px;
  margin: auto;
}
.footer-up.full .top .header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: transparent;
  padding: 0 12px !important;
}
.footer-up.full .top .header .title {
  font-family: "Inter Tight", sans-serif;
  margin: 0;
}
.footer-up.full .top .inner .icon-close1 {
  font-size: 24px;
  color: var(--secondary);
  font-weight: 600;
}
.footer-up.full .app-content {
  padding-top: 80px !important;
  height: 100vh;
  overflow: auto;
}
.footer-up.full .content {
  padding-top: 90px !important;
  height: 100vh;
  overflow: auto;
}







.footer-bottom-fixed {
  z-index: 5000;
}
.bottom-up {
  background: var(--white);
  pointer-events: auto;
  width: 100%;
  /*
  height: 80vh;
  overflow: auto;*/
}

.bottom-up .top {
  padding: 16px 0;
}
.bottom-up .top .inner {
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.bottom-up .top .inner .icon-close1 {
  font-size: 24px;
  color: var(--secondary);
  font-weight: 600;
}
.bottom-up .content {
  height: 50vh ;
}
.bottom-up.full {
  height: 100vh;
  overflow: auto;
}
.bottom-up.full .top {
  position: fixed;
  top: 0;
  left: 12px;
  right: 12px;
  z-index: 10;
  background-color: var(--white);
}
.bottom-up.full .content {
    padding-top: 190px;
    height: 100vh;
    overflow: auto;
}














}



@media (max-width: 930px) {
.x_content_row>.col-lg-8, .x_content_row>.col-lg-4, .search-wrapper {
    width: 100%;
}
.x_content_row>.col-lg-8, .x_content_row>.col-lg-12 {
    min-height: calc(100dvh - 54px);
}
.x_content_row>.col-lg-8.order-1 {
	border: 0;
}
.x_content_row>.col-lg-4 {
	padding: 1rem;
}
.x_sidebar_order {
	order: 1 !important;
}
.x_sidebar_order footer {
	display: none;
}
body .search-wrapper-prnt {
	margin: 0;border-right: 1px solid var(--border-divider);
	display: block !important;position: relative;
}

.no_hide_settings {
	flex-direction: column;
}
.x_menu_sidebar:not(.no_hide) {
	display: none !important;
}
.x_menu_sidebar, .x_menu_sidebar_content {
    min-height: calc(100dvh - 54px);
	width: 100%;
}
body.show_menu_sidebar .x_menu_sidebar {
	display: flex !important;
	flex-direction: column
}
.no_hide_settings .x_menu_sidebar, .no_hide_settings .x_menu_sidebar_content {
	min-height: auto;
	border: 0;
}
.x_menu_sidebar_back {
	display: block;
}

.x_message_empty_height {
    max-height: calc(100dvh - 110px);
}
}

@media (max-width: 690px) {
.x-sidebar-width, .x-sidebar-fixed {
	width: 73px;
}
.x-content-width {
    width: calc(100% - 73px);
}
.search-wrapper-prnt {
    padding-left: 73px;
}
.x-sidebar {
    padding-left: 0 !important;
}

}


@media (max-width: 520px) {

.x_content_row>.col-lg-8, .x_content_row>.col-lg-12 {
    min-height: calc(100dvh - 99px);
	border: 0;
}
body .search-wrapper-prnt {
	padding: 8px 10px;
	border: 0;
	display: flex !important;
	gap: 10px;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1002;transition: all 0.2s;
}

.x_mobi_search {
	display: flex !important;
}
body.search_open .x_mobi_search .srch_ico {
	display: none;
}
body.search_open .x_mobi_search .srch_close_ico {
	display: block !important;
}

.x-sidebar-width, .x-sidebar-fixed {
	width: 100%;
}
.x-sidebar-fixed {
	height: calc(3rem + 1px) !important;
	top: auto;
	bottom: 0;
}
.x-sidebar {
	padding: 0 !important;
	overflow: hidden;
}

.x_sidebar_links {
	display: flex;
	align-items: center;
	background: var(--header-background);
	border-top: 1px solid var(--border-divider);
	justify-content: space-between;
	padding: 0 0.6rem;
}
.x_side_links>div {
    padding: 7.5px;
}
.x_side_links>div svg {
	width: 25px;
	height: auto;
}
.x_hide_mobi_side_link {
	display: none !important;
}
.x_show_market_link, .x_show_pages_link, .x_show_groups_link, .x_show_saved_link, .x_show_pro_link {
	display: flex !important;
}
.x_side_create {
	position: fixed;
	right: 1rem;
	bottom: 4rem;
	width: 52px;
	margin: 0 !important;
}
.x_side_create>.btn {
	box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.1) 0px 2px 4px -2px;
}
.x_user_mobi_menu {
	padding: 0 !important;
	position: fixed;
	top: 8px;
	left: 10px;
	transition: all 0.2s;
}
.x_user_mobi_menu > .dropup {
	margin: 0 !important;
}
.x_user_mobi_menu .x_user_info {
	padding: 0;
}
.x_user_mobi_menu img:not(.attch_img) {
	width: 34px;
	height: 34px;
}
body.user_menu_open, body.search_open, body.more_menu_open {
	overflow: hidden;
}
body.user_menu_open .x_user_menu_backdrop {
	display: block !important;
	z-index: 1001;
}
.x_mobi_user_menu {
	position: fixed !important;
	transform: translateX(-110%) !important;
	border-radius: 0;
	inset: 0 auto 0 0 !important;
	transition: all 0.2s;
	display: block;
}
body.user_menu_open .x_mobi_user_menu {
	transform: translateX(0) !important;
}
.x_side_more_menu {
	transform: none !important;
	border-radius: 0;
	inset: 0 0 48px 0 !important;
	position: fixed !important;
	max-height: none;
	box-shadow: none;
}
.x-content-width {
	width: 100%;
}
.x_top_posts {
    top: 50px;
	transition: all 0.2s;
}
.x_top_posts:before {
    opacity: 1;
}
.x_page_scroll .scroll-btns {
	display: none !important;
}

body.scroll_down .x_top_posts {
	top: 0;
}
.x_message_empty_height {
    max-height: calc(100dvh - 56px);
}
.emoji-menu .item>img {
    width: calc(100vw / 5 - 13px);
    height: auto;
    aspect-ratio: 1;
}
.x_cf_p {
	padding: 0;
}
.pg_1x img {
    max-height: 350px;
    width: 100%;
}

}


@media (min-width: 520px) and (max-height: 892px) {
.x_hide_market_link {
	display: none !important;
}
.x_show_market_link {
	display: flex !important;
}
}

@media (min-width: 520px) and (max-height: 835px) {
.x_hide_pages_link {
	display: none !important;
}
.x_show_pages_link {
	display: flex !important;
}
}

@media (min-width: 520px) and (max-height: 770px) {
.x_hide_groups_link {
	display: none !important;
}
.x_show_groups_link {
	display: flex !important;
}
.x_side_create_menu {
	max-height: 370px;
    overflow-y: auto;
}
}

@media (min-width: 520px) and (max-height: 710px) {
.x_hide_saved_link {
	display: none !important;
}
.x_show_saved_link {
	display: flex !important;
}
.x_side_more_menu {
    max-height: 410px;
}
}

/*Top Posts Filter*/

.x_top_posts {
	top: 0;
	z-index: 9;
	border-bottom: 1px solid var(--border-divider);line-height: 20px;font-size: 15px;
}
.x_top_posts:before, .x_top_posts:after {
	content: '';
	position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}
.x_top_posts:before {
	background-color: var(--body-bg);opacity: 0.85;
}
.x_top_posts:after {
	backdrop-filter: blur(12px);
}
.x_top_posts div:not(.dropdown-menu) {
	position: relative;z-index: 1;flex: 1 1 auto;
}
.x_top_posts.home div:not(.dropdown-menu) > a.side_item_hover {
	padding: 0 12px;
}
.x_top_posts div.active span:before {
	content: '';
	position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
	height: 4px;
	background: var(--main-btn);border-radius: 2em 2em 0 0;
}
.x_top_posts div.side_widget_title {
	z-index: 2;
}
.x_top_posts .side_widget_title .my2 {
	margin: 2px 0;
}
.x_top_posts div.d-flex.align-items-center.justify-content-center {
	white-space: nowrap;
    overflow-x: auto;
    justify-content: flex-start !important;
}
.x_top_posts div.d-flex.align-items-center.justify-content-center a {
	padding: 0 20px;
}

/*nnjjjj*/
.j_menu {
	
	border-bottom: 1px solid var(--border-divider);line-height: 20px;font-size: 15px;
}

.j_menu:before {
	background-color: var(--body-bg);opacity: 0.85;
}
.j_menu:after {
	backdrop-filter: blur(12px);
}
.j_menu div:not(.dropdown-menu) {
	position: relative;z-index: 1;flex: 1 1 auto;
}
.j_menu.home div:not(.dropdown-menu) > a.side_item_hover {
	padding: 0 12px;
}

.j_menu div.side_widget_title {
}
.j_menu .side_widget_title .my2 {
	margin: 2px 0;
}
.j_menu div.d-flex.align-items-center.justify-content-center {
	white-space: nowrap;
    overflow-x: auto;
    justify-content: flex-start !important;
}
.j_menu div.d-flex.align-items-center.justify-content-center a {
	padding: 0 20px;
}

/*Sidebar Widgets*/
.side_widget_title {
    font-size: 18px;
    padding: 12px 16px 10px;
    border-bottom: 1px solid #00000012;
}
.side_item_hover {
	transition: all 0.2s;
}
.side_item_hover:hover {
	background: rgb(0 0 0 / 3%);
}
.side_item_hover.active {
    background: rgb(0 0 0 / 3%);
}


body.night-mode .side_item_hover:hover {
	background: rgb(255 255 255 / 5%);
}
.side_item_list {
    padding-top: 12px;
    padding-bottom: 12px;
    line-height: 20px;
}



