/* Index */
body {
    background-color: #00b300;
}

h1 {
  color: white;
}

img.logo {
  height: 150px;
  margin-bottom: 30px;
}

p.description {
  color: grey;
}

p.error {
  font-style: italic;
  color: rgb(255, 113, 113);
}

/* Member */

body.memberpage{
    background-color: #ffffff;
}

/* kartu sampai expire date */

div.top-banner {
  background-color: #00b300;
  height: 100%;
  padding-top: 30px;
  padding-bottom: 30px;
  margin : 0px;

}

div.img-row {
    margin-top: 50px;
    margin-bottom: 20px;
}

img.member-card {
    height: 100px;
}
p.level-expire {
    color: white;
    margin-bottom: 0;
}

/* Progress bar dan detailnya */

div.progress-bar-row {
  margin-bottom: 12px;
}

div.progress-wrapper {
  overflow: auto;
}

div.progress{
  width: 95%;
  float: right;
  height: 10px;
}

div.progress > svg {
  height: 100%;
  display: block;
}

div.point-wrapper{
  padding: 0;
}

#point-left {
  margin-bottom: 0px;
  color: white;
  font-size: 10pt;
}

p.retain-level-text{
  color: white;
  margin-bottom: 20px;
  font-size: 10pt;
}

/* Member poin/koin summary */

h2.member {
  color: white;
}

div.member-summary {
  background-color: white;
  border-radius: 40px;
  margin-bottom: 25px;
}

div.total-point {
  border-right: 1px solid rgba(65, 65, 65, 0.349);
}

p.total-point {
  margin-top: 10px;
  margin-bottom: 10px;
}

p.total-koin {
    margin-top: 10px;
    margin-bottom: 10px;
}

/* Member Details */

div.divider-shadow{
    box-shadow: 0px -5px 5px 0px rgba(0, 0, 0, 0.25);
    background-color: white;
    height: 100%;
}

div.member-detail {
    padding-top: 20px;
}

table, th, td {
    border: 1px solid black;
}

/* tnc */

/* cara kerja */
body.white {
  background-color: #26f126;
}




/* Magic land, do not touch */
/* index loading animation libs */

.loader {
    font-size: 10px;
    margin: 50px auto;
    text-indent: -9999em;
    width: 11em;
    height: 11em;
    border-radius: 50%;
    background: #0ee231;
    background: -moz-linear-gradient(left, #0ee231 10%, rgba(255, 255, 255, 0) 42%);
    background: -webkit-linear-gradient(left, #0ee231 10%, rgba(255, 255, 255, 0) 42%);
    background: -o-linear-gradient(left, #0ee231 10%, rgba(255, 255, 255, 0) 42%);
    background: -ms-linear-gradient(left, #0ee231 10%, rgba(255, 255, 255, 0) 42%);
    background: linear-gradient(to right, #0ee231 10%, rgba(255, 255, 255, 0) 42%);
    position: relative;
    -webkit-animation: load3 1.4s infinite linear;
    animation: load3 1.4s infinite linear;
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
  }
  .loader:before {
    width: 50%;
    height: 50%;
    background: #0ee231;
    border-radius: 100% 0 0 0;
    position: absolute;
    top: 0;
    left: 0;
    content: '';
  }
  .loader:after {
    background: #f8f9fa;
    width: 75%;
    height: 75%;
    border-radius: 50%;
    content: '';
    margin: auto;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
  }
  @-webkit-keyframes load3 {
    0% {
      -webkit-transform: rotate(0deg);
      transform: rotate(0deg);
    }
    100% {
      -webkit-transform: rotate(360deg);
      transform: rotate(360deg);
    }
  }
  @keyframes load3 {
    0% {
      -webkit-transform: rotate(0deg);
      transform: rotate(0deg);
    }
    100% {
      -webkit-transform: rotate(360deg);
      transform: rotate(360deg);
    }
  }
  
/* Member - Arrow animation */
.arrow {
  width: 1.25rem;
  height: 1.25rem;
  display: inline-block;
  position: relative;
  margin: 0 1rem;
}
.arrow span {
  top: 0.5rem;
  position: absolute;
  width: 0.75rem;
  height: 0.1rem;
  background-color: #000000;
  display: inline-block;
  transition: all 0.2s ease;
}
.arrow span:first-of-type {
  left: 0;
  transform: rotate(45deg);
}
.arrow span:last-of-type {
  right: 0;
  transform: rotate(-45deg);
}
.arrow.active span:first-of-type {
  transform: rotate(-45deg);
}
.arrow.active span:last-of-type {
  transform: rotate(45deg);
}