@charset "utf-8";
input,div,textarea,select{box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;}
section{width:100%}
/* GRID */
.xcol-2,.mcol-2,.xcol-3,.mcol-3,.xcol-4,.mcol-4{display: grid}
.xcol-1-2,.mcol-1-2{
  display: grid;
  grid-template-columns: 1fr 2fr;
}
.xcol-2,.mcol-2{grid-template-columns: 1fr 1fr;}
.xcol-3,.mcol-3,.mcol-3-2{
  grid-template-columns: repeat(3, 1fr);}
.xcol-4,.mcol-4,.mcol-4-2{
  grid-template-columns: repeat(4, 1fr);}
.xcol-5,.mcol-5,.mcol-5-2,.mcol-5-3{grid-template-columns: repeat(5, 1fr);}
.xcol-6,.mcol-6,.mcol-6-2{grid-template-columns: repeat(6, 1fr);}
.xcol-2-1,.mcol-2-1{
  display: grid;
  grid-template-columns: 2fr 1fr;
}
.xcol-12,.mcol-12{grid-template-columns: repeat(12, 1fr)}

.xcol-1f-2f,.mcol-1f-2f{grid-template-columns: 1fr 2fr}
.xcol-2f-1f,.mcol-2f-1f{grid-template-columns: 2fr 1fr}
.xcol-6f-4f,.mcol-6f-4f{grid-template-columns: 6fr 4fr;}

/* FONT SIZE */
.fs-07{font-size: 0.7rem}
.fs-08{font-size: 0.8rem}
.fs-09{font-size: 0.9rem}
.fs-1{font-size: 1rem}
.fs-11{font-size: 1.1rem}
.fs-12{font-size: 1.2rem}
.fs-13{font-size: 1.3rem}
.fs-14{font-size: 1.4rem}
.fs-15{font-size: 1.5rem}
.fs-16{font-size: 1.6rem}
.fs-17{font-size: 1.7rem}
.fs-18{font-size: 1.8rem}
.fs-2{font-size: 2rem}
.fs-3{font-size: 3rem}

/* MOBILE */
.fs-m-14{font-size: 1.4rem}
.fs-m-15{font-size: 1.5rem}
.fs-m-16{font-size: 1.6rem}
.fs-m-17{font-size: 1.7rem}
.fs-m-18{font-size: 1.8rem}
.fs-m-2{font-size: 2rem}

/* WIDTH */
.mw-700{
  width: 100%;
  max-width: 700px;
}

.enter{
  padding: 10px 0;
}
.enter-2{padding: 20px 0;}
.enter-4{padding: 40px 0;}
.enter-6{padding: 60px 0;}
.enter-8{padding: 80px 0;}

/* BHVR */
.right{
  text-align: right;
  justify-content: end;
}

/* SECTION */
section{
  width: 100%;
}
.section-80{
  width: 80%;
  margin: auto;
}

/* BOX */
.xbox-shadow{
  margin: 40px 0;
  background: rgba( 255, 255, 255, 0.6 );
  box-shadow: 0 8px 32px 0 rgba( 31, 38, 135, 0.37 );
  backdrop-filter: blur( 4px );
  -webkit-backdrop-filter: blur( 4px );
  border-radius: 10px;
  border: 1px solid rgba( 255, 255, 255, 0.18 );
  padding: 30px;
}

/* FORM */
.xselect-transparent{
}
.xselect-transparent select{
  border: none;
  border-radius: 0;
  padding: 12.5px;
  background-color: #fff;
  border-bottom: solid 2px #f7f7f7;
  cursor: pointer;
}

/* FORM INPUT RP
<div class=xform-row>
  <label>Nominal</label>
  <div class=xinput-label-rp>
    <span>Rp.</span>
    <input class=xform-input data-xtype=rp>
  </div>
</div>
*/
.xinput-label-rp{
  position: relative;
}
.xinput-label-rp span{
  position: absolute;
  font-size: 0.75rem;
  font-weight: 500;
  padding: 12px 0;
  color: gray;
}
.xinput-label-rp input{
  border: none;
  border-bottom: solid 2px #f7f7f7;
  padding: 10px 5px;
  border-radius: 0;
  padding-left: 24px !important;
}

/* FORM INPUT SYMBOL IN RIGHT
<div class=xform-row>
  <label>Nominal</label>
  <div class=xinput-label-rp>
    <span>Rp.</span>
    <input class=xform-input data-xtype=rp>
  </div>
</div>
*/
.xinput-label-in-right{
  position: relative;
}
.xinput-label-in-right span{
  position: absolute;
  font-size: 0.75rem;
  font-weight: 500;
  padding: 12px 0;
  color: gray;
  right: 0;
  padding-right: 5px;
}
.xinput-label-in-right input{
  border: none;
  border-bottom: solid 2px #f7f7f7;
  padding: 10px 5px;
  border-radius: 0;
  padding-right: 24px !important;
}

/* TABEL */
.xtable{
  border-spacing: 0;
  border-collapse: collapse;
  width: 100%;
}
.xtable .td-nourut{
  width: 30px;
  border-right: dotted 1px #3ebbf0;
}
/* TABLE THEME DAX */
.xtable-theme-dax{

}
.xtable-theme-dax tr th{
  background-color: #fff;
  padding: 8px 0;
}
.xtable-theme-dax tr td{
  padding: 8px 10px;
}
.xtable-theme-dax tr:nth-child(odd){
  background-color: #fff;
}
.xtable-theme-dax tr:nth-child(even){
  background-color: #f4f9ff;
}
/* DATALIST THEME DEFAULT */
.xdatalist{
  position: relative;
  width: 100%;
}
.xdatalist .xform-input{
  padding-right: 30px;
}
.xdatalist-i{
  width: min-content;
  position: absolute;
  top: 0;
  right: 0;
  padding: 10px;
  font-size: 1rem;
  color: cadetblue;
}
.xdatalist-select{
  position: absolute;
  z-index: 1;
}
.xdatalist-option{
  background-color: #f7f7f7;
  padding: 10px 5px;
  border-bottom: solid 1px #ecebeb;
}
.xdatalist-option:hover{
  cursor: pointer;
  background-color: #e6e6e6;
}
.xdatalist-selected{
  display: none;
  position: absolute;
  top: 10px;
  left: 5px;
  padding: 5px 25px 5px 5px;
  border-radius: 5px;
}
.xdatalist-selected-text{
  color: #fff;
}
.xdatalist-selected i{
  position: absolute;
  right: 5px;
  font-size: 1rem;
  color: #fffdfd;
  cursor: pointer;
}
.xdatalist-selected i:hover{
  color: #b55;
}

/* LOGIN */
.xlogin-split{
  height: 100%;
  position: absolute;
  width: 100%;
  display: grid;
  gap: 0;
}
.xlogin-site-name{
  background-color: rgba(0,0,0,.8);
  color: #fff;
  padding: 20px;
  font-size: 1.4rem;
  width: max-content;
  margin: 50px;
  border-radius: 10px;
  font-family: Lexend;
}
/* ANIMATION */
.xreveal{
  opacity: 0;
  transition: 2s all ease;
}
.xreveal.active{
  transform: translateY(0);
  transform: translateX(0);
  opacity: 1;
}
.xreveal-to-up{
  transform: translateY(150px);
}
.xreveal-to-down{
  transform: translateY(-150px);
}
.xreveal-to-left{
  transform: translateX(150px);
}
.xreveal-to-right{
  transform: translateX(-150px);
}
/* SEARCH */
.xsearch{
  position: relative;
  padding-bottom: 1px;
  bottom: 0;
  right: 0;
}
.xsearch-icon{
  position: absolute;
  left: 0;
  padding: 10px;
}
.xsearch-icon i{
  color: grey;
  font-size: 0.9rem;
}
.xsearch-input{

}
.xsearch-input input{
  padding: 10px 0 10px 30px;
  border-radius: 3px;
  border: solid 1px #ccc;
}
.xsearch-input input:focus{
  outline: none;
}

/* IMAGE */
.xthumb{
  object-fit: cover;
}

/* IMAGE TEMPLATES */
/*
  <div class=ximg-image-text>
    <div class=ximg-image-text-img>
      <img src="" alt="">
    </div>
    <div class=ximg-image-text-txt>
      TEXT
    </div>
  </div>
*/
.ximg-image-text{
  display: grid;
  grid-template-columns: 50px 1fr;
}
  .ximg-image-text-img{
    justify-content: center;

  }
  .ximg-image-text-img img{
    max-width: 100%;
  }


@media only screen and (max-width : 480px) {
  .mcol-2,.mcol-2-1,.mcol-3,.mcol-4,.mcol-12,.mcol-1f-2f,.mcol-2f-1f,.mcol-6f-4f{
    grid-template-columns: 1fr;
  }
  .mcol-3-2,.mcol-4-2,.mcol-5-2,.mcol-6-2{grid-template-columns: repeat(2, 1fr);}
  .mcol-5-2{grid-template-columns: repeat(2, 1fr)}
  .mcol-5-3{grid-template-columns: repeat(3, 1fr)}

  /* FONT SIZE */
  .fs-m-14{font-size: 1.2rem}
  .fs-m-15{font-size: 1.3rem}
  .fs-m-16{font-size: 1.4rem}
  .fs-m-17{font-size: 1.5rem}
  .fs-m-18{font-size: 1.6rem}
  .fs-m-2{font-size: 1.8rem}
}
