 /*_fonts_*/
@import url(http://fonts.googleapis.com/earlyaccess/amiri.css);
@font-face {
  font-family: 'OverpassMono-Regular';
  src: url('../fonts/OverpassMono-Regular.ttf')  format('truetype')
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: LPMQ;
  src: url(../fonts/LPMQ.ttf) format('truetype');
  font-weight: 400;
  font-style: normal
}
/*_variables_*/
:root {
  --warna1: #000;
  --warna2: #fff;
  --warna3: #063;
  --warna-bg-btn: #eee;
  --warna-btn-hover: #e7e7e7;
  --warna-text-btn: #aaa;
}
/*_bad reset_*/
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: OverpassMono-Regular, monospace;
  transition: .4s;
}
button:focus {
  outline: none;
}
/*_style on mobile_*/
body {
  -webkit-touch-callout: none;
  -webkit-text-size-adjust: none;
  -webkit-user-select: none;
}

/*zx*/
.zx-p-fixed {
  position: fixed;
}

/*global*/
[data-visible="false"] {
  display: none;
}
.toast {
  background-color: var(--warna2);
  position: fixed;
  z-index: 9999;
  bottom: 20px;
  box-shadow: -8px 8px 0px var(--warna1);
  /*border: 10px solid var(--warna3);*/
  pointer-events: none;
  transform: translateX(-50%);
  border-radius: 10px;
  left: calc(50% + 5px);
  max-width: 300px;
  padding: 10px;
  opacity: 0;
}

.toast-show {
  opacity: 1;
}

textarea {
  width: 100%;
  height: calc(100vh - 320px);
  display: block;
  padding: 10px;
  font-size: 24px;
  border: none;
  background-color: var(--warna-bg-btn);
  border-radius: 5px;
  overflow: auto;
}

/*overlay*/
[class*="overlay"] {
  width: 100vw;
  height: 100vh;
  background-color: white;
  top: 0;
}
.overlay-rotate-screen {
  z-index: 16;
  background-color: var(--warna3);
}
.overlay-rotate-screen center {
  z-index: 17;
  background-color: var(--warna2);
}
.overlay-block {
  width: 100%;
  background-color: rgba(0, 0, 0, .5);
  z-index: 4;
}
center {
  position: absolute;
  top: 50%;
  width: 100vw;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%); 
}



/*sidebar*/
[class*="sidebar"] {
  /*position: absolute;*/
  z-index: 5;
  width: calc(100vw - 130px);
  top: 0;
  border-radius: 0 20px 20px 0;
}
[class*="sidebar"][data-visible="true"] {

}
[class*="sidebar"] .menu {
  position: absolute;
  top: 75px;
  width: 100%;
}
[class*="sidebar"] .menu ul {
  list-style-type: none;
}
.sb-button {
  padding: 10px;
  font-weight: bold;
  font-size: 1.25em;
  color: #666;
  text-decoration: none;
  width: calc(100% - 30px);
  text-align: left;
  padding-left: 30px;
  display: inline-block;
  box-sizing: border-box;
  margin-bottom: 11px;
  border: none;
  border-radius: 0px 10px 10px 0px;
  background-color: white;
}
.sb-button:hover {
  background-color: var(--warna-btn-hover);
}
.sb-button[data-active="true"] {
  background-color: var(--warna3);
  color: var(--warna2);
}
[class*="sidebar"] .copyright {
  left: 0;
  padding: 10px;
  box-sizing: border-box;
  font-size: .8em;
  width: 100%;
  text-align: center;
  position: absolute;
  bottom: 0;
  color: #555;
}
[class*="sidebar"] .copyright a {
  text-decoration: none;
  color: #555;
}
[class*="sidebar"] .copyright a:hover {
  font-weight: bold;
}
/*end sidebar*/



/*base*/
[class*="wrap"] {
  background-color: var(--warna3);
  padding: 15px;
  box-sizing: border-box;
}
.wrap {
  padding: 0;
  height: calc(100vh - 233px);
}
.wrap-top {
  z-index: 2;
  width: 100%;
  top: 0;
  padding-bottom: 8px;
}
.wrap-bottom {
  margin-top: 233px;
  padding-top: 0px;
}
.card {
  background-color: var(--warna2);
  border-radius: 7px;
  box-shadow: -8px 8px 0px var(--warna1);
  margin: 0px 0px 20px 8px;
  width: calc(100% - 8px);
  position: relative;
  box-sizing: border-box;
}



/*haeder*/
.header {
  height: 50px;
}
.header__menu {
  position: absolute;
  z-index: 2;
}
.header__fs {
  position: absolute;
  right: 0;
  z-index: 3;
}
.header__menu button {
  width: 40px;
  height: 40px;
  background: url(../img/menu.svg);
  border: none;
  margin: 5px 0px 0px 5px;
  background-position: 7px center;
  background-size: 70%;
  background-repeat: no-repeat;
  border-radius: 5px;
}
.header__fs button {
  width: 40px;
  height: 40px;
  border: none;
  margin: 5px 5px 0px 0px;
  background: url(../img/fs-in.svg);
  background-position: 2px center;
  background-size: 90%;
  background-repeat: no-repeat;
  border-radius: 5px;
}
.header__fs button:hover, .header__menu button:hover {
  background-color: var(--warna-btn-hover);
  cursor: pointer;
} 
.fs-out {
  background: url(../img/fs-out.svg) !important;
  background-position: 2px center !important;
  background-size: 90% !important;
  background-repeat: no-repeat !important;
}
.header__title {
  position: absolute;
  width: 100%;
  text-align: center;
  padding: 5px;
}
.header__title .title {
  line-height: 40px;
  font-weight: bold;
  font-size: 1.5em;
  display: inline-block;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  width: 100px;
  height: 40px;
  box-sizing: border-box;
  border: none;
  background-color: white;
  color: var(--warna1);
}
.header__title .title span img {
  height: 40px;
}
.header__title .title span {
  position: absolute;
  top: 0px;
  display: block;
  left: 0;
}
.tampil-logo {
  top: -40px !important;
}
/*end header*/



/*navbar*/
.navbar {
  height: 70px;
  padding: 15px;
}
.navbar-btn {
  border: none;
  padding: 7px;
  width: calc((100% - 20px) / 3);
  font-weight: bold;
  font-size: 1.1em;
  display: block;
  height: 35px;
  text-align: center;
  text-decoration: none;
  float: left;
  border-radius: 5px;
  margin-top: calc((70px - 35px) / 2 - 15px);
  /*line-height: 28px;*/
  color: var(--warna-text-btn);
  background-color: var(--warna-bg-btn);
  text-transform: uppercase;
}
.navbar-btn:nth-child(2) {
  margin-right:10px;
  margin-left:10px;
}
.navbar-btn[data-active="true"] {
  margin-top: calc((70px - 40px) / 2 - 15px);
  color: var(--warna2);
  /*line-height: 32px;*/
  font-size: 1.2em;
  height: 40px;
  background-color: var(--warna3);
}
.navbar-btn[data-active="false"]:hover {
  background-color: var(--warna-btn-hover);
}
/*end navbar*/



/*content-head*/
.page-head {
    margin-bottom: -7px;
    border-radius: 7px 7px 0px 0px;
}
.page__title {
  height: 50px;
  position: relative;
  padding-bottom: 10px;
}
.page__title::after {
    content: "";
    width: 100%;
    height: 12px;
    background-color: var(--warna3);
    background: -webkit-linear-gradient();
    background: -o-linear-gradient();
    background: linear-gradient(0deg, transparent, white);
    position: absolute;
    box-sizing: border-box;
    bottom: -20px;
}
.page__title::before {
    content: "";
    width: 100%;
    height: 10px;
    background-color: var(--warna2);
    position: absolute;box-sizing: border-box;
    box-sizing: border-box;
    bottom: -9px;
}
.page__title .title {
  position: absolute;
  font-size: 1.4em;
  box-sizing: border-box;
  border-bottom: 4px solid var(--warna3);
  font-weight: bold;
  width: 120px;
  height: 38px;
  top: 15px;
  left: 15px;
  padding-bottom: 10px;
}
/*end content-head*/



/*content-body*/
[class*="page-"]:not(.page-head) {
    border-radius: 0px 0px 7px 7px;
}
[class*="page-"]:not(.page-head)::before {
    content: "";
    width: 8px;
    height: 10px;
    background-color: var(--warna1);
    position: absolute;
    left: -8px;
}
[class*="page-"] {
    margin-bottom: 0px;
}
.page__content {
  height: calc(100% - 85px);
  padding: 10px 15px 15px 15px;
  box-sizing: border-box;
  overflow: auto;
  margin-bottom: 7px;
}
/*content*/
.page__content p {
  background-color: #efefef;
  color: var(--warna1);
  text-align: center;
  border-radius: 10px;
  font-family: "Arial";
  position: relative;
  overflow: hidden;
}
.page__content p x {
  display: block;
  position: absolute;
  padding: 7px;
  color: var(--warna2);
  font-weight: 700;
  border-radius: 10px 0 10px 0;
  background-color: var(--warna3);
}
x::before {
  content: "";
  display: block;
  position: absolute;
  width: 40px;
  height: 16px;
  right: -40px;
  background-color: #efefef;
  top: 0;
  border-radius: 10px 0 0 0;
  box-shadow: -10px -6px 0 0 var(--warna3);
}
x::after {
  content: "";
  display: block;
  position: absolute;
  width: 16px;
  height: 40px;
  left: 0;
  bottom: -40px;
  background-color: #efefef;
  border-radius: 10px 0 0 0;
  box-shadow: -6px -8px 0 0 var(--warna3);
}
.page__content p ar{
  text-align: right;
  direction: rtl;
  font-family: "LPMQ", "Amiri";
  margin: 0;
  letter-spacing: 0px;
  padding: 16px;
  display: block;
  font-size: 27px;
  line-height: 80px;
}
.page__content p:not(:last-child) {
 margin-bottom: 15px;
}

/*end content-body*/


/* 
  Content Page 2
 */
 [class*="tl-l"] {
  /*background-color: green;*/
  text-align: center;
 }
  [class*="tl-l"]:not(:last-child) {
    margin-bottom: 20px;
  }
 [class*="tl-l"]::after {
    content: "";
    clear: both;
    display: block;
 }
 [class*="tl-btn"] {
  display: inline-block;
  width: 40px;
  background-color: #ddd;
  color: #777;
  border: none;
  border-radius: 100%;
  height: 40px;
  font-weight: bold;
 }
 [class*="tbtn"]:not(:last-child) {
  /*margin-right: 10px;*/
 }
 [class*="tl-btn"][data-active="true"] {
  background-color: var(--warna3);                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
  color: var(--warna2);
  width: 45px;
  height: 45px;
 }
 [class*="tl-btn-"] {
  background-color: var(--warna3);
  color: var(--warna2);
  width: 30px;
  height: 30px;
 }
 .tl-divider {
  width: calc(100% - 100px);
    height: 3px;
    background-color: black;
    display: inline-block;
 }
 .tl-num {
  font-size: 90px;
  font-weight: bold;
  padding-bottom: 20px;
 }
 .tl-big-btn {
  width: 150px;
  height: 150px;
  background-color: var(--warna3);
box-shadow: -8px 8px 0px var(--warna1);
border: none;
border-radius: 100%;
 }
 .tl-l-bot {
  padding-top: 40px;
  padding-bottom: 20px;
 }
  .tl-big-btn[data-pressed="true"] {
    box-shadow: none;
    transform: translate(-8px, 8px);
  }

/* overlay Pages */
.overlay-pages {
  height: calc(100vh - 85px);
  bottom: 0;
  top: auto;
  width: 100%;
  background-color: var(--warna3);
  z-index: 3;
  padding: 0px 15px 15px 15px;
  box-sizing: border-box;
}

.overlay-pages .card-title {
  padding: 15px 15px 0px 15px;
  position: relative;
}
.overlay-pages .card-title::after {
  content: "";
  width: 100%;
  height: 10px;
  background-color: var(--warna3);
  background: -webkit-linear-gradient();
  background: -o-linear-gradient();
  background: linear-gradient(0deg, transparent, white);
  position: absolute;
  box-sizing: border-box;
  bottom: -15px;
  left: 0;
}
.overlay-pages .card-title::before {
  left: 0;
  content: "";
  width: 100%;
  height: 5px;
  background-color: var(--warna2);
  position: absolute;
  box-sizing: border-box;
  bottom: -5px;
}
.overlay-pages .card-body::after {
  content: "";
  width: 100%;
  height: 10px;
  background-color: var(--warna3);
  background: linear-gradient(180deg, transparent, white);
  position: absolute;
  box-sizing: border-box;
  bottom: 5px;
  left: 0;
}
.overlay-pages .card-body::before {
  left: 0;
  content: "";
  width: 100%;
  height: 5px;
  background-color: var(--warna2);
  position: absolute;
  box-sizing: border-box;
  bottom: 0px;
}
.overlay-pages .card {
  overflow: hidden;
}
.overlay-pages .card-body {
  padding: 15px;
  overflow: auto;
  max-height: calc(100vh - 235px);
}
.overlay-pages .title {
  /*position: absolute;*/
  font-size: 1.4em;
  box-sizing: border-box;
  border-bottom: 4px solid var(--warna3);
  font-weight: bold;
  /*width: 180px;*/
  /*height: 38px;*/
  padding-bottom: 7px;
}
.overlay-pages .card-title a span {
  /* width: 30px; */
  padding: 10px 15px;
  border-radius: 50%;
  margin-right: 10px;
  background-color: var(--warna-bg-btn);
}
.overlay-pages .card-title a {
  display: inline-block;
  border-radius: 20px;
  padding: 10px 11px 10px 0px;
  margin-bottom: 10px;
  cursor: pointer;
}
.overlay-pages .card-title a:hover {
  background-color: var(--warna-btn-hover);
}


.list {
  list-style-type: none;
  /*padding: 15px;*/
}

.list a {
  display: block;
  padding: 10px;
  position: relative;
  /*width: calc(100% - 20px);*/
  border-radius: 10px;
  text-decoration: none;
  color: var(--warna1);
  background-color: var(--warna-bg-btn);
}

.list a span {
  position: absolute;
  right: 15px;
}

.list a:hover {
  background-color: var(--warna-btn-hover);
}

.list li:not(:last-child) {
  margin-bottom:10px;
}
/* overlay pages content */
.overlay-pages .card-body p {
  padding: 15px;
  background-color: var(--warna-bg-btn);
  border-radius: 10px;
}

/* Pengaturan */
.input-group {
  width: 100%;
}
.input-group::after {
  content: "";
  clear: both;
  display: block;
}
.input-child {
  width: calc((100% - 30px) / 4);
  float: left;
  display: block;
  padding: 10px;
  border: none;
  background-color: var(--warna-bg-btn);
  border-radius: 5px;
  overflow: hidden;
}
.input-child:not(:last-child) {
  margin-right: 10px;
}
.btn-full {
  background-color: var(--warna3);
  display: block;
  padding: 10px;
  text-align: center;
  margin-top: 15px;
  border-radius: 10px;
  font-weight: bolder;
  color: var(--warna2);
}
.btn-full:hover {
  opacity: .9;
}

/*_style on tablet/desktop_*/
@media only screen and (min-width: 540px) {
  /*zx*/
  .zx-p-fixed {
    width: inherit;
  }

  /*base*/
  /*[class*="overlay"] {
    border-radius: 20px;
    top: 30px;
    height: calc(100vh - 60px);
  }*/
  .wrap {
    width: 360px;
    margin: auto;
    /*border-radius: 20px;*/
    position: relative;
    /*height: calc(100vh - 243px - 60px);*/
  }
  /*.wrap-top {
    border-radius: 20px 20px 0 0;
    top: 30px;
  }
  .wrap-bottom {
    border-radius: 20px;
    margin-bottom: 30px;
  }*/

  /*sidebar*/
  [class*="sidebar"] {
    width: calc(360px - 130px);
    /*top: calc(-243px + 30px);*/
  }

  /*.wrap-bottom::after {
    /*content: "";
    display: block;
    background-color: red;
    height: 30px;
    width: 360px;
    position: fixed;
    bottom: 0;
    z-index: 99;
  }*/

  /* overlay Pages */
  /*.overlay-pages {
    padding: 0px 15px 15px 15px;
  }*/
}