@charset "UTF-8";  /* Set the encoding of file to UTF-8 */

/* 
This is a working develeopment file for human readability.
Use the CSS optimizer to reduce file size for published websites or apps.

-++ LTS Flex CSS Theme websites and HTML apps.  +++-
--- Original author :: Nik K. linkedin.com/in/nik--k---/   (19.April.2020). 
--- Code adoption   :: YourName    (date).
--- License         :: GNU General Public License v 3.0.
--- Latest version  :: github.com/Dorson/LTS-flex-css-style-theme-generator

Global color, size and style settings first, then we can overwrite them in
exceptional cases below. Computers use the last mentioned CSS setting. 
 */


/* Set default color variables.  */

:root , :root.snow-white {

--color-html: #eee ;
--color-body: #eee ;
--color-text: #111 ;
--color-link: #ff9d08 ;
--color-selected-text: #000 ;
--color-selected-bg: #ff9d08 ;
--color-bg: #eee;
--a-hover:rgba(0,0,0,0.1);

}


/* If "dark" is set as preferred color in user app settings. */

@media screen and (prefers-color-scheme: dark) {

 html:not(.snow-white) {
  --color-html: #000 ;
  --color-body: #000 ;
  --color-text: #eee ;
  --color-link: #ff9d08 ;
  --color-selected-text: #000 ;
  --color-selected-bg: #ff9d08 ;
  --color-bg: #000;
  --a-hover:rgba(0,0,0,0.1);
  }
}

/* Dark mode color variables, if "dark" is set as HTML tag's CSS class */

html.dark { 

--color-html: #000 ;
--color-body: #000 ;
--color-text: #eee ;
--color-link: #ff9d08 ;
--color-selected-text: #000 ;
--color-selected-bg: #ff9d08 ;
--color-bg: #000;
--a-hover:rgba(255,255,255,0.1);

}

/*
body width is set to 99% to avoid screen overflow on all devices.
Font-size 115% in the html tag = 1rem unit = 17-20px, if 16px was user default,
then we reference that everywhere as global unit of global text line-hight.
It is the calculation in line heights, where size can be 0.7rem = 70% of
text-line height.
*/

/*
html box-sizing will include border margins,
all the rest use the size of their parent box
*/

html {box-sizing: border-box;}
html *, *:before, *:after {box-sizing: inherit;}

html {background:var(--color-html);}
html, body {margin: 0px;}

body {
  background: var(--color-body) ; color: var(--color-text) ;
}

/*
Materialize color:
red         indigo      teal        yellow      brown     black
pink        blue        green       amber       grey      white
purple      light-blue  light-green orange      blue-grey transparent
deep-purple cyan        lime        deep-orange   
*/
@font-face {
  font-family: 'AzeretMono-SemiBold';
  font-style: normal;
  font-weight: 400;
  src: url(../fonts/AzeretMono-SemiBold.ttf) format('truetype');
}
@font-face {
  font-family: 'Material Icons';
  font-style: normal;
  font-weight: 400;
  src: url(../fonts/MaterialIcons-Regular.eot); /* For IE6-8 */
  src: local('Material Icons'),
       local('MaterialIcons-Regular'),
       url(../fonts/MaterialIcons-Medium.woff2) format('woff2'),
       url(../fonts/MaterialIcons-Regular.woff) format('woff'),
       url(../fonts/MaterialIcons-Regular.ttf) format('truetype');
}
.material-icons {
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  font-size: 24px; 
  display: inline-block;
  width: 1em;
  height: 1em;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: 'liga';
}
html, body {
  height: 100%;
}
html, p, h1,h2,h3,h4,h5,h6, nav a, input, #formSearch button, #formSearch input, .slider a, .card-title, .btn, .side-menu li a, .caption, .sidenav li a, .profile-name, .profile-place, .profile-poin{
  font-family: 'AzeretMono-SemiBold';
/*  text-transform: lowercase;  */
}
.btn, .btn-large, .btn-small, .btn-flat{
  text-transform: lowercase;
}
.p10{
  padding:10px;
}
.p20{
  padding:20px;
}
.pb50{
  padding-bottom: 50px;
}
.pt50{
  padding-top: 50px!important;
}
.pt100{
  padding-top: 100px;
}
.m10{
  margin:10px;
}
.m20{
  margin:20px;
}
.mt20{
  margin-top:20px;
}
.mt100{
  margin-top: 100px;
}
.small-text{
  font-size: 10px;
}
.no-border{
  border:none;
}
.container{width: 90%}
.no-margin{margin:0;}
.no-padding{padding:0;}
.mb0{margin-bottom: 0px;}
.mt0{margin-bottom: 0px;}
#slide-out{
  overflow: hidden;
}
.slider .slides li .caption, .slider .slides li .caption p{
  color:var(--color-text);
  margin:3px 0;
}
.slider .slides li .caption{
  top:20%;
}
@media only screen and (max-width : 992px) {
  .slider .slides li .caption{
/*    top:5px;*/
  }
}
.btn{
  border-radius: 5px;
  box-shadow: none;
  border: 1.2px solid var(--color-text);
}
.btn:hover{
  box-shadow: none;
  border-top: none;
  border-bottom: 3px solid var(--color-text);
  transition:color 0.2s ease-out, background-color 0.2s ease-out, border-color 0.2s ease-out;  
}
nav{
  box-shadow: none;
  height:90px;
  line-height: 90px;
}
.slider .slides{
  box-shadow: none;
  background-color: var(--color-bg);
}
.img-logo-slide {
   width: 200px!important;
   height: 200px!important;
   transform: translatey(0px);
   animation: float 6s ease-in-out infinite;
   background-size: cover!important;
}
.credit{
  position: absolute;
  bottom:1%;
  right:6%;
  font-size: 0.7em;
  color:var(--color-text);
}

nav ul a{
  color:var(--color-text);
}
nav ul a:hover{
  background-color: var(--a-hover);
}
nav ul a.btn, nav ul a.btn-large, nav ul a.btn-small, nav ul a.btn-large, nav ul a.btn-flat, nav ul a.btn-floating{
  margin-left:5px;
  margin-right:5px;
}
.transparent{
  background: rgba(0,0,0,0) !important;
  box-shadow:none !important;
  transition: all 0.5s ease-in-out;
  padding:20px 0;
}
.solid{
/*  background-color: rgba(0,151,167,1) !important;*/
/*  background-color: rgba(0,0,0,0) !important;*/
  background: linear-gradient(-45deg, #ff9800 50%, #ffb74d);
  box-shadow:none !important;
  transition: all 0.5s ease-in-out;
  padding:0;
}
.sidenav li > a {padding: 0 16px;color:#000;}
.sidenav li > a > i, .sidenav li > a > [class^="mdi-"], .sidenav li > a li > a > [class*="mdi-"], .sidenav li > a > i.material-icons {
  margin :0 10px 0 0 !important;
}
.sidenav li > a > i.material-icons.right {
  margin :0 0 0 10px !important;
}
.sidenav {
  -webkit-transform: translateX(-105%);
  transform: translateX(-105%);
}
.sidenav.sidenav-fixed{
  overflow:hidden;
  top:0;
}
.brand-logo{
/*  padding:10px 0!important;*/
}
.brand-logo img{
  height:80px;
}
.side-menu{
  position: relative;
  overflow: hidden;
  background-color: #fff;
}
.side-menu .user-view {
  padding: 32px 32px 0;
  margin-bottom: 8px;
  background: url("../img/bg.jpg");
  background-size: cover;
  margin:-32px -32px 20px -32px;
}
.side-menu .user-view a {
  height: auto;
}
.user-view .user-text{
  line-height: 24px;
  display: block;
}
.side-menu .user-view a:hover {
  background-color: transparent;
}
.side-menu .user-view .circle,.side-menu .user-view .name,.side-menu .user-view .email {
  display: block;
}
.side-menu .user-view .background {
  overflow: hidden;
  position: absolute;
  top: -40px;
  right: -20px;
  bottom: 0;
  left: -20px;
  z-index: -1;
}
.side-menu .user-view .circle {
  margin-top: 32px;
  height: 64px;
  width: 64px;
}
.side-menu .user-view .name,.sidenav .user-view .email {
  font-size: 14px;
  line-height: 10px;
}
.side-menu .user-view .name {
  margin-top: 16px;
  font-weight: 500;
}
.side-menu .user-view .email {
  padding-bottom: 16px;
  font-weight: 400;
}
.side-menu li a:hover {
  background-color: rgba(0,0,0,0.05);
}
.side-menu li a {
  color: rgba(0,0,0,0.87);
  display: block;
  font-size: 14px;
  font-weight: 500;
  height: 48px;
  line-height: 48px;
  padding: 0 32px;
}
.side-menu i {
  margin-right:20px;
  vertical-align: middle;
}
.side-menu li .badge{
  margin-top:12px;
}
@media only screen and (max-width : 992px) {
  .brand-logo img{
    height:70px;
  }
  nav .brand-logo{
    left:0;
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
  nav{
    height: 80px;
    line-height: 80px;
  }
}
@media only screen and (max-width : 600px) {
  .brand-logo img{;padding-top:0px;height:60px;}
  nav .brand-logo{
    left:0;
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
  nav{
    height: 70px;
    line-height: 70px;
  }
}
.collapsible-body ul li, .collapsible-body ul li a,  .collapsible-body ul li a i.material-icons {
  height:30px;
  line-height:30px;
}
input:not([type]), input[type=text]:not(.browser-default), input[type=password]:not(.browser-default), input[type=email]:not(.browser-default), input[type=url]:not(.browser-default), input[type=time]:not(.browser-default), input[type=date]:not(.browser-default), input[type=datetime]:not(.browser-default), input[type=datetime-local]:not(.browser-default), input[type=tel]:not(.browser-default), input[type=number]:not(.browser-default), input[type=search]:not(.browser-default), textarea.materialize-textarea{
  color:#444;
  background-color: #transparent;
  font-size:0.8rem;
}
@keyframes float {
  0% {
    transform: translatey(0px);
  }
  50% {
    transform: translatey(-20px);
  }
  100% {
    transform: translatey(0px);
  }
}
.curve{
  border-radius: 20px;
}
.w100{
  width:100%;
}
.buled{
  border-radius: 50px;
}
.navbar-fixed{
  position: fixed;
  z-index:998;
}
.icon-menu img{
  width: 30px;
  margin-top: 20px;
}
.icon-menu li a i{
  margin:0 auto;
  line-height: 30px;
}
.icon-menu li a{
  border-radius: 50%;
  line-height: 0;
  padding:0;
  margin: 0 4px;
  width:30px;
  height:30px;
}
.icon-menu li a img.circle{
  width:30px;
  height: auto;
  line-height: 0;
}
.icon-menu li a img:hover, .menu_utama img{
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
  -webkit-transition: .3s ease-in-out;
  transition: .5s ease-in-out;
}
.chip{
  height:24px;
  font-size:10px;
  line-height:24px;
  padding:0 8px;
  margin-bottom:1px;
  margin-right: 1px;
  margin-left:-8px;
}
.chip:after{
  content: '';
  margin:1px!important;
  padding:1px!important;
  line-height: 24px!important;
}
.chip>img{
  height:24px;
  width:24px;
}
.card{
  box-shadow: none;
  border-radius: 10px;
  border:1px solid #eee;
}
.card .card-content .card-title, .card .card-content p{
  padding:5px 0;
}
.card .card-content a{
/*  margin-right:10px;*/
}
.card .card-content a:hover{
/*  color:var(--blue);*/
}
.card-image{
  max-height: 200px;
  overflow-y: hidden;
  border-radius: 10px  10px 0 0;
}
.pinned{
  top:60px!important;
  width:314.75px;
  z-index: 999;
}
span.badge, span.badge.new{
  border-radius: 20px!important;
  font-size:10px;
  min-width: 1.4rem;
}
/*=============================*/
/*Cek Resi*/
/*=============================*/
.cek-resi{
  border: 1px solid #ff9d08;
  border-radius: 10px;
  background-color: #eee;
  padding: 0 10px;
}

/*=============================*/
/*Login Page*/
/*=============================*/
.bgfull{
/*  background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(../img/bg.jpg);*/
  background-image: url("../img/bg.jpg");
  background-size: cover;
  background-position: center;
  height: auto;
  background-attachment: fixed;  
  background-repeat: no-repeat;  
  background-color: #cef401;
}
.bglogin{  
  display: flex;
  min-height: 100vh;
  flex-direction: column;
}
.bglogin_container {
  flex: 1 0 auto;
}
.bglogin_box{
  display: inline-block; 
  padding: 32px 48px 0px 48px; 
  border: 1px solid #EEE;  
  border-radius: 20px;
}

input:not([type]):focus:not([readonly]), input[type=text]:not(.browser-default):focus:not([readonly]), input[type=password]:not(.browser-default):focus:not([readonly]), input[type=email]:not(.browser-default):focus:not([readonly]), input[type=url]:not(.browser-default):focus:not([readonly]), input[type=time]:not(.browser-default):focus:not([readonly]), input[type=date]:not(.browser-default):focus:not([readonly]), input[type=datetime]:not(.browser-default):focus:not([readonly]), input[type=datetime-local]:not(.browser-default):focus:not([readonly]), input[type=tel]:not(.browser-default):focus:not([readonly]), input[type=number]:not(.browser-default):focus:not([readonly]), input[type=search]:not(.browser-default):focus:not([readonly]), textarea.materialize-textarea:focus:not([readonly]) {
  color: #ffb74d;
}

input:not([type]):focus:not([readonly]), input[type=text]:not(.browser-default):focus:not([readonly]), input[type=password]:not(.browser-default):focus:not([readonly]), input[type=email]:not(.browser-default):focus:not([readonly]), input[type=url]:not(.browser-default):focus:not([readonly]), input[type=time]:not(.browser-default):focus:not([readonly]), input[type=date]:not(.browser-default):focus:not([readonly]), input[type=datetime]:not(.browser-default):focus:not([readonly]), input[type=datetime-local]:not(.browser-default):focus:not([readonly]), input[type=tel]:not(.browser-default):focus:not([readonly]), input[type=number]:not(.browser-default):focus:not([readonly]), input[type=search]:not(.browser-default):focus:not([readonly]), textarea.materialize-textarea:focus:not([readonly]) {
  border-bottom: 2px solid #ffb74d;
  box-shadow: none;
}
input:not([type]):focus:not([readonly])+label, input[type=text]:not(.browser-default):focus:not([readonly])+label, input[type=password]:not(.browser-default):focus:not([readonly])+label, input[type=email]:not(.browser-default):focus:not([readonly])+label, input[type=url]:not(.browser-default):focus:not([readonly])+label, input[type=time]:not(.browser-default):focus:not([readonly])+label, input[type=date]:not(.browser-default):focus:not([readonly])+label, input[type=datetime]:not(.browser-default):focus:not([readonly])+label, input[type=datetime-local]:not(.browser-default):focus:not([readonly])+label, input[type=tel]:not(.browser-default):focus:not([readonly])+label, input[type=number]:not(.browser-default):focus:not([readonly])+label, input[type=search]:not(.browser-default):focus:not([readonly])+label, textarea.materialize-textarea:focus:not([readonly])+label {
  color: #ffb74d;  
}
/*=============================*/
/*Daftar Page*/
/*=============================*/
.daftar_box{
  width:600px;
}
/*=============================*/
/*Dashboard Page*/
/*=============================*/
main, footer {
  padding-left: 300px;
}
main{
  padding-top: 100px;
}
@media only screen and (max-width : 992px) {
  header, main, footer {
    padding-left: 0;
  }
  main{
    padding-top: 42px;
  }
}
.logo-container{
  padding: 0px;
  height: 120px;
  line-height: 120px;
  font-size: 24px;
}
.logo-container a:hover{
  background-color: rgba(0,0,0,0)!important;
}
.logo-container img{
  height:100px;
  padding:10px;
}
.no-shadow{
  box-shadow: none;
}
.menu_utama{
  background: url("../img/bg.jpg") no-repeat top center ;
}
.menu_utama img{
  width:50px;
}
.card .card-action:last-child{
  border-radius: 0px 0px 20px 20px;
}
.menu_bawah{
  display: flex; 
  list-style-type: none;
}
.menu_bawah li{
  padding-right: 10px;
}
footer img{
  height:100px;
}
/*=============================*/
/*Profil Page*/
/*=============================*/
.profile-pic{
  width: 200px;
  height: 200px;
  position: absolute;
  top:80px;
}
.profile-name{
  padding-top: 40px;
}
.profile-poin-num{
  font-size:40px;
  padding-top: 0;
  line-height: 0px;
}
@media only screen and (max-width : 599px) {
  .profile-pic{
    left:22%;
  }
}

/*=============================*/
/*TABS*/
/*=============================*/
.tabs{
  background-color: transparent;
}
.tabs .tab a, .tabs .tab a.active{
  color:#006633;
}
.tabs .tab a:hover, .tabs .tab a.active {
  background-color: transparent;
  color: #002a15;
}
.tabs .tab a:focus, .tabs .tab a:focus.active{
  background-color: rgb(0,102,51,0.1);
}
.tabs .indicator{
  background-color:#006633;
}

.dt-buttons, .dataTables_filter{display:none}
div.dt-buttons>.dt-button, div.dt-buttons>div.dt-button-split .dt-button{
  background-color: #eee;
  background:transparent;
  border:2px solid #002a15;
  border-radius:10px;
}
div.dt-buttons>.dt-button:hover:not(.disabled), div.dt-buttons>div.dt-button-split .dt-button:hover:not(.disabled){
  border:2px solid #002a15;
  background:#fff;  
}
.dataTables_filter input{
  border-radius:10px!important;
  border:2px solid #002a15 !important;
  background:#fff!important;  
  font-size: 1rem!important;
  padding: 0 5px!important;

}
div.dataTables_wrapper{
  padding-bottom:50px;
}
table{
  width:100%;
}

.cupdate{
  position: relative;
}
.iupdate, .iclose{
  position: absolute;
  right:0;
  cursor:pointer;
}
