:root {
    --primary-color: #ecf0f1;
    --secondary-color: #ecf0f1;
    --font-color: #000;
    --bg-color: #fff;
    --heading-color: #01a439;
    --bg-cardcolor : #01a439;
    --bg-btncolor : #01a439;
    --bg-btnhover : #01a439;
}

body {
    background-color: var(--bg-color);
    color: var(--font-color);
}

a {
  color: var(--font-color)!important;
}
a:hover {
  color: var(--bg-btnhover)!important;
}

.btn-primary {
  background-color: var(--bg-btncolor)!important;
  border-radius: 25px!important;
  color: #fff!important;
  border: 0!important;
  height: 40px!important;
  line-height: 23px;
}

.btn-primary:hover {
  background-color: var(--bg-btnhover)!important;
  border-radius: 25px!important;
  color: #fff!important;
  border: 0!important;
  height: 40px!important;
  line-height: 23px;
}

.btn-danger {
  border-radius: 25px!important;
  color: #fff!important;
  border: 0!important;
  height: 40px!important;
  line-height: 23px;
}

.btn-danger:hover {
  border-radius: 25px!important;
  color: #fff!important;
  border: 0!important;
  height: 40px!important;
  line-height: 23px;
}

.form-control {
  border: 1px solid #9c9c9c!important;
  border-radius: 10px;
  background-color: #fff!important;
  color: #495057 !important;
  height: 30px!important;
  margin-bottom: 15px;
  font-size: 12px;
}

.form-control:focus{
  border: 1px solid var(--bg-btnhover)!important;
  border-radius: 10px;
  background-color: #fff!important;
  color: #495057 !important;
}

input::placeholder {
  color: #9c9c9c !important;
  font-size: 12px;
}


h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  letter-spacing: 1px;
}

/* Header */
header div.navigasi {
  background-color: var(--primary-color)!important;
}

header nav div.dropdown-menu {
  background-color: var(--primary-color)!important;
}

/* Body */
.row {
  margin-right: -12.5px;
  margin-left: -12.5px;
}

.game {
  justify-content: center;
  width: auto;
}

.zoom {
  transition: transform .5s; /* Animation */
}

.zoom:hover {
  transform: scale(1.05);
}

.box_content {
  display: none;
  transition: transform .5s;
}

.box_image {
  height: 225px!important;
}

.box_hover:hover .box_content {
  display: block;
  width: 100%;
  height: 225px!important;
  border-radius: 10px;
  border: 2px solid var(--bg-btnhover)!important;
}

ul.nav-tabs {
  border-bottom: 2px solid #eee!important;
}

ul.nav-tabs li.nav-item a.nav-link {
  border-bottom: 2px solid #eee!important;
  border-radius: 0px!important;
  margin-right: 5px;
  color: var(--font-color)!important;
}

ul.nav-tabs li.nav-item a.nav-link:hover {
  background: none!important;
  border-bottom: 2px solid var(--bg-btnhover)!important;
  border-radius: 0px!important;
  margin-right: 5px;
  color: var(--bg-btnhover)!important;
}

ul.nav-tabs li.nav-item a.nav-link.active {
  background: none!important;
  border-bottom: 2px solid var(--bg-btnhover)!important;
  border-radius: 0px!important;
  margin-right: 5px;
  color: var(--bg-btnhover)!important;
}

.card {
  background-color: #fff!important;
  color: var(--font-color)!important;
}

.img_product {
  width: 150px;
  height: 150px;
  border-radius: 10px;
  margin-top: -100px;
}

.circle-primary {
  background-color: none;
  border : 2px solid var(--bg-btnhover)!important;
  border-radius: 50%;
  height: 35px;
  width: 35px;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  font-size: 21px;
  font-weight: 600;
  color: #fff!important;
}

.card-img-top {
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-radius: 10px!important;
}

.card-img-top img {
  width: 100%;
  height: 200px;
}

/* Footer */

footer {
  position: fixed;
  bottom: 0;
  width: 100%;
  z-index: 9999;
}

/* Sidebar */

.sticky-left {
    position: fixed;
    top: 180px;
}

.sidenav {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  background: var(--primary-color)!important;
  overflow-x: hidden;
  transition: 0.5s;
  padding-top: 100px;
}

.sidenav ul.flex-column li.nav-item a.nav-link {
  color: var(--font-color)!important;
  font-size: 16px;
  font-weight: 500;
  -webkit-transition: line-height 0.3s ease-in-out;
  transition: line-height 0.3s ease-in-out;
}

.sidenav ul.flex-column li.nav-item a.nav-link:hover {
  color: var(--bg-btnhover)!important;
}

.sidenav .closebtn {
  position: absolute;
  top: 0;
  right: 15px;
  font-size: 36px;
  margin-left: 50px;
  color: #000;
}

@media screen and (max-width: 778px){
  .navbar-collapse {
    background:var(--bg-color);
  }
}

@media screen and (max-width: 480px){
  .img_product {
    width: 6rem;
    height: 6rem;
    border-radius: 10px;
    margin-top: -70px;
  }

  .box_image {
    height: 150px!important;
  }

  .box_hover:hover .box_content {
    height: 150px!important;
  }

  .card-img-top {
    width: 100%;
    height: 150px;
    overflow: hidden;
    border-radius: 10px!important;
  }

  .card-img-top img {
    width: 100%;
    height: 150px;
  }
}

@media screen and (max-height: 450px) {
  .sidenav {padding-top: 15px;}
  .sidenav a {font-size: 14px;}

}