header {
  width: 100%;
  height: 68px;
  background-color: #ffbb00;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

header .navigation {
  width: 100%;
  height: 100%;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

header .navigation .nav-links {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

header .navigation .nav-links .logo {
  width: calc(100% / 3);
  height: 100%;
  padding-left: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

header .navigation .nav-links .logo img {
  width: 40px;
  height: 40px;
}

header .navigation .nav-links .logo p {
  margin-left: 10px;
  font-family: "Roboto Medium";
  font-size: 16px;
  font-weight: normal;
  color: #252525;
}

header .navigation .nav-links .nav-list {
  width: calc(100% / 3);
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

header .navigation .nav-links .nav-list .items {
  width: 100px;
  height: 100%;
  text-decoration: none;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  position: relative;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: "Roboto Medium";
  font-size: 16px;
  font-weight: normal;
  color: #252525;
}

header .navigation .nav-links .nav-list .items::after {
  content: "";
  width: 0;
  height: 2px;
  position: absolute;
  bottom: 0;
  z-index: 1;
  -webkit-transform: translate(0, -10px);
          transform: translate(0, -10px);
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  background-color: #252525;
}

header .navigation .nav-links .nav-list .items:hover::after {
  width: 100%;
}

header .navigation .nav-links .login-link {
  width: calc(100% / 3);
  height: 100%;
  padding-right: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

header .navigation .nav-links .login-link a {
  padding: 8px 20px;
  height: 36px;
  border-radius: 6px;
  text-decoration: none;
  background-color: #252525;
  position: relative;
  font-family: "Roboto Medium";
  font-size: 16px;
  font-weight: normal;
  color: #ffbb00;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

header .navigation .nav-links .login-link a p,
header .navigation .nav-links .login-link a .icon {
  z-index: 1;
}

header .navigation .nav-links .login-link a:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: #4b4a4a;
  -webkit-clip-path: circle(20px at -20px bottom);
          clip-path: circle(20px at -20px bottom);
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  border-radius: 6px;
}

header .navigation .nav-links .login-link a:hover:after {
  -webkit-clip-path: circle(100%);
          clip-path: circle(100%);
}

header .navigation .nav-links .hamburger-menu {
  width: calc(100% / 2);
  height: 100%;
  padding-right: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

header .navigation .nav-links .hamburger-menu .hero-img {
  width: 60px;
  height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

header .navigation .nav-links .hamburger-menu .hero-img img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
}

header .navigation .nav-links .hamburger-menu .cart,
header .navigation .nav-links .hamburger-menu .bars {
  width: 60px;
  height: 60px;
  font-size: 24px;
  margin-right: 20px;
  cursor: pointer;
  color: #252525;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

header .navigation .nav-links .hamburger-menu .cart:hover,
header .navigation .nav-links .hamburger-menu .bars:hover {
  color: dimgray;
}

header .navigation .nav-links .hamburger-menu .cart {
  position: relative;
}

header .navigation .nav-links .hamburger-menu .cart .count-cart {
  width: 24px;
  height: 24px;
  position: absolute;
  top: 8px;
  right: 6px;
  background: #f8f8f8;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: Roboto;
  font-size: 14px;
  font-weight: 600;
  color: #ff0062;
}

header .navigation .nav-links .hero-avatar {
  width: calc(100% / 2);
  height: 100%;
  padding-left: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: "Roboto Medium";
  font-size: 16px;
  font-weight: normal;
  color: #252525;
}

header .navigation .nav-links .hero-avatar img {
  width: 40px;
  height: 40px;
}

header .navigation .sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 300px;
  height: 100vh;
  background-color: #252525;
  overflow: hidden;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  z-index: 100;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

header .navigation .sidebar ul {
  width: 100%;
  height: 100%;
  list-style-type: none;
}

header .navigation .sidebar ul li {
  width: 100%;
  height: 48px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  position: relative;
  border-bottom: 1px solid dimgray;
  padding: 10px 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

header .navigation .sidebar ul li .icon {
  width: 30px;
}

header .navigation .sidebar ul li a {
  width: 100%;
  padding-left: 10px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  text-decoration: none;
  z-index: 1;
  font-family: "Roboto Medium";
  font-size: 16px;
  font-weight: normal;
  color: #f8f8f8;
}

header .navigation .sidebar ul li:first-child {
  height: 68px;
  padding-right: 20px;
  border-bottom: 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

header .navigation .sidebar ul li:first-child .close-btn {
  width: 24px;
  height: 24px;
  color: #f8f8f8;
  cursor: pointer;
  -webkit-transition: 1s ease-in-out;
  transition: 1s ease-in-out;
  border-radius: 6px;
  font-size: 20px;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

header .navigation .sidebar ul li:first-child .close-btn:hover {
  color: #ffbb00;
}

header .navigation .sidebar ul li:first-child:hover {
  background-color: #252525;
}

header .navigation .sidebar ul li:first-child:hover::before {
  width: 0px;
}

header .navigation .sidebar ul li::before {
  content: "";
  position: absolute;
  left: 0;
  width: 0px;
  height: 100%;
  background-color: #ffbb00;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}

header .navigation .sidebar ul li:hover::before {
  width: 4px;
}

header .navigation .sidebar ul li:hover a {
  color: #ffbb00;
}

header .navigation .sidebar.active {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

header .navigation .sidebar.close {
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
}

.sidenav {
  position: fixed;
  z-index: 1;
  width: 80px;
  height: 100vh;
  background-color: #252525;
  overflow: hidden;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.sidenav .logo {
  width: 100%;
  height: 60px;
  border-bottom: 1px solid #4b4a4a;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.sidenav .logo .img {
  width: 80px;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.sidenav .logo .img img {
  width: 40px;
  height: 40px;
}

.sidenav .logo .text {
  width: calc(100% - 80px);
}

.sidenav .logo .text p {
  opacity: 0;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
  word-spacing: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: "Rubik Black", "Roboto Black";
  font-size: 16px;
  font-weight: normal;
  color: #f8f8f8;
}

.sidenav .menu {
  width: 100%;
  height: auto;
}

.sidenav .menu .menu-item {
  width: 100%;
  height: 40px;
  color: #f8f8f8;
  cursor: pointer;
}

.sidenav .menu .menu-item a {
  width: 100%;
  height: 100%;
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: Roboto;
  font-size: 16px;
  font-weight: normal;
  color: #f8f8f8;
}

.sidenav .menu .menu-item a .icon {
  width: 80px;
}

.sidenav .menu .menu-item a p {
  width: calc(100% - 80px);
  opacity: 0;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.sidenav .menu .menu-item::before {
  content: "";
  width: 0px;
  height: 40px;
  position: absolute;
  left: 0;
  background-color: #0099ff;
  -webkit-transition: 0.1s ease-in-out;
  transition: 0.1s ease-in-out;
}

.sidenav .menu .menu-item:hover a {
  color: #0099ff;
}

.sidenav .menu .menu-item:hover::before {
  width: 4px;
}

.sidenav .menu .menu-item:hover .sub-menu {
  display: block;
  -webkit-animation: fade 0.25s ease-in;
          animation: fade 0.25s ease-in;
  -webkit-transform: translateX(300px);
          transform: translateX(300px);
}

.sidenav .menu .menu-item .sub-menu {
  padding: 20px 0px;
  width: 300px;
  height: 100vh;
  background-color: #0099ff;
  position: absolute;
  list-style-type: none;
  top: 0;
  right: 0;
  z-index: 1;
  display: none;
}

.sidenav .menu .menu-item .sub-menu li {
  width: 100%;
  height: 40px;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}

.sidenav .menu .menu-item .sub-menu li a {
  -webkit-transition: 0.4 ease-in-out;
  transition: 0.4 ease-in-out;
  padding-left: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: Roboto;
  font-size: 16px;
  font-weight: normal;
  color: #f8f8f8;
}

.sidenav .menu .menu-item .sub-menu li:hover {
  background-color: #252525;
}

.sidenav .menu .menu-item .sub-menu li:hover a {
  color: #0099ff;
}

.sidenav:hover {
  overflow: visible;
  width: 300px;
}

.sidenav:hover .logo .text p {
  opacity: 1;
}

.sidenav:hover .menu .menu-item a p {
  opacity: 1;
}

@-webkit-keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  background-color: #f8f8f8;
}

.container {
  width: 100%;
  height: auto;
}

.container .wrapper {
  width: 100%;
  height: auto;
  min-height: calc(100% - 68px);
}

.container .wrapper .jumbotron {
  width: 100%;
  height: calc(100vh - 68px);
  background: url("../img/bg.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
}

.container .wrapper .jumbotron .header-text {
  width: 100%;
  height: 100%;
  padding: 140px 40px 0px 100px;
  z-index: 1;
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.container .wrapper .jumbotron .header-text h2 {
  font-family: "Rubik Black", "Roboto Black";
  font-size: 48px;
  font-weight: 600;
  color: #f8f8f8;
  z-index: 1;
}

.container .wrapper .jumbotron .header-text a {
  color: #0099ff;
  text-decoration: none;
}

.container .wrapper .jumbotron .header-text a:hover {
  color: #29a9ff;
}

.container .wrapper .jumbotron .header-text p.paragraph {
  text-align: justify;
  width: 70%;
  line-height: 42px;
  font-family: Roboto;
  font-size: 20px;
  font-weight: normal;
  color: #f8f8f8;
  z-index: 1;
}

.container .wrapper .jumbotron .header-text .btn-cta {
  margin-top: 10px;
  z-index: 1;
  text-decoration: none;
  border-radius: 6px;
  position: relative;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 8px 20px;
  height: 48px;
  background-color: #ff0062;
  border: 0px;
  outline: none;
  font-family: Roboto;
  font-size: 18px;
  font-weight: 600;
  color: #252525;
}

.container .wrapper .jumbotron .header-text .btn-cta p,
.container .wrapper .jumbotron .header-text .btn-cta .icon {
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  z-index: 1;
  font-family: "Roboto Medium";
  font-size: 18px;
  font-weight: normal;
  color: #f8f8f8;
}

.container .wrapper .jumbotron .header-text .btn-cta::before {
  content: "";
  position: absolute;
  width: 0;
  height: 50%;
  top: 0;
  left: 0;
  background-color: #f8f8f8;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}

.container .wrapper .jumbotron .header-text .btn-cta::after {
  content: "";
  position: absolute;
  width: 0;
  height: 50%;
  bottom: 0;
  right: 0;
  background-color: #f8f8f8;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}

.container .wrapper .jumbotron .header-text .btn-cta:hover p,
.container .wrapper .jumbotron .header-text .btn-cta:hover .icon {
  color: #ff0062;
}

.container .wrapper .jumbotron .header-text .btn-cta:hover::before, .container .wrapper .jumbotron .header-text .btn-cta:hover::after {
  width: 100%;
}

.container .wrapper .jumbotron .info-card {
  width: 50%;
  height: 90px;
  background-color: black;
  position: absolute;
  z-index: 1;
  bottom: 0;
  right: 0;
  opacity: 0.8;
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.container .wrapper .jumbotron .info-card .info-text {
  width: calc(100% / 3);
  height: 60%;
  z-index: 1;
  font-family: "Roboto Medium";
  font-size: 16px;
  font-weight: normal;
  color: #ffbb00;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.container .wrapper .jumbotron .info-card .info-text:first-child {
  border-right: 1px solid #ffbb00;
}

.container .wrapper .jumbotron .info-card .info-text:last-child {
  border-left: 1px solid #ffbb00;
}

.container .wrapper .jumbotron .overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  background-color: black;
  opacity: 0.6;
}

.container .wrapper .section-about {
  padding: 40px 40px;
  position: relative;
  width: 100%;
  height: 100vh;
  background: #f8f8f8;
}

.container .wrapper .section-about .section-header {
  position: relative;
  width: 100%;
  height: 80px;
  font-family: "Rubik Black", "Roboto Black";
  font-size: 28px;
  font-weight: normal;
  color: #252525;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.container .wrapper .section-about .section-header::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 10%;
  height: 4px;
  background-color: #252525;
  border-radius: 2px;
}

.container .wrapper .section-about .card-box {
  width: 100%;
  height: calc(100% - 80px);
  padding: 60px 0px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto auto auto auto;
      grid-template-columns: auto auto auto auto;
  gap: 20px;
}

.container .wrapper .section-about .card-box .cards {
  width: 300px;
  overflow: hidden;
  background-color: #f8f8f8;
  border: 2px solid #d4d4d4;
  border-radius: 6px;
  position: relative;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.container .wrapper .section-about .card-box .cards .icons {
  width: 100%;
  height: 160px;
  font-size: 48px;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.container .wrapper .section-about .card-box .cards .icons span {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.container .wrapper .section-about .card-box .cards .text {
  width: 100%;
  height: calc(100% - 160px);
  padding: 40px 20px 0px 20px;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  line-height: 28px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  font-family: Roboto;
  font-size: 16px;
  font-weight: normal;
  color: dimgray;
}

.container .wrapper .section-about .card-box .cards .text h3 {
  font-family: "Roboto Medium";
  font-size: 18px;
  font-weight: 600;
  color: #252525;
}

.container .wrapper .section-about .card-box .cards .text p {
  text-align: justify;
}

.container .wrapper .section-about .card-box .cards::before {
  content: "";
  position: absolute;
  width: 40px;
  height: 40px;
  top: 0;
  left: 0;
  background-color: #f8f8f8;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: "Roboto Medium";
  font-size: 18px;
  font-weight: normal;
  color: #252525;
}

.container .wrapper .section-about .card-box .cards:hover {
  -webkit-transform: scale(1.15);
          transform: scale(1.15);
}

.container .wrapper .section-about .card-box .color1::before {
  content: "1";
  color: #ff9900;
}

.container .wrapper .section-about .card-box .color1 .icons {
  color: #ff9900;
}

.container .wrapper .section-about .card-box .color1 .icons span {
  background-color: #ffebcc;
}

.container .wrapper .section-about .card-box .color1 .text h3 {
  color: #ff9900;
}

.container .wrapper .section-about .card-box .color2::before {
  content: "2";
  color: #0099ff;
}

.container .wrapper .section-about .card-box .color2 .icons {
  color: #0099ff;
}

.container .wrapper .section-about .card-box .color2 .icons span {
  background-color: #ccebff;
}

.container .wrapper .section-about .card-box .color2 .text h3 {
  color: #0099ff;
}

.container .wrapper .section-about .card-box .color3::before {
  content: "3";
  color: #ff0062;
}

.container .wrapper .section-about .card-box .color3 .icons {
  color: #ff0062;
}

.container .wrapper .section-about .card-box .color3 .icons span {
  background-color: #ffcce0;
}

.container .wrapper .section-about .card-box .color3 .text h3 {
  color: #ff0062;
}

.container .wrapper .section-about .card-box .color4::before {
  content: "4";
  color: #7722ff;
}

.container .wrapper .section-about .card-box .color4 .icons {
  color: #7722ff;
}

.container .wrapper .section-about .card-box .color4 .icons span {
  background-color: #e0ccff;
}

.container .wrapper .section-about .card-box .color4 .text h3 {
  color: #7722ff;
}

.container .wrapper .section-login {
  width: 100%;
  height: 100vh;
  background: #f8f8f8;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.container .wrapper .section-login .login-img {
  width: 35%;
  height: 100%;
  background-color: #252525;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.container .wrapper .section-login .login-img .login-menu {
  width: 100%;
  height: 60px;
  padding-left: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.container .wrapper .section-login .login-img .login-menu .btn-back {
  text-decoration: none;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
  font-family: Roboto;
  font-size: 16px;
  font-weight: normal;
  color: #f8f8f8;
}

.container .wrapper .section-login .login-img .login-menu .btn-back .icon {
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}

.container .wrapper .section-login .login-img .login-menu .btn-back:hover {
  color: #ffbb00;
}

.container .wrapper .section-login .login-img .login-menu .btn-back:hover .icon {
  -webkit-transform: translateX(-4px);
          transform: translateX(-4px);
}

.container .wrapper .section-login .login-img .img {
  width: 100%;
  height: calc(100% - 60px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.container .wrapper .section-login .login-img .img img {
  width: 280px;
  height: 280px;
}

.container .wrapper .section-login .login-card {
  width: 65%;
  height: 100%;
  background-color: #f8f8f8;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.container .wrapper .section-login .login-card .login-header {
  width: 60%;
  height: 30%;
  padding-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.container .wrapper .section-login .login-card .login-header .divider {
  margin: 20px 0px;
  width: 100%;
  height: 2px;
  background-color: #e2e2e2;
}

.container .wrapper .section-login .login-card .login-header h2 {
  word-spacing: 8px;
  text-align: center;
  font-family: "Rubik Black", "Roboto Black";
  font-size: 28px;
  font-weight: normal;
  color: #252525;
}

.container .wrapper .section-login .login-card .login-header p {
  text-align: justify;
  line-height: 24px;
  font-family: Roboto;
  font-size: 16px;
  font-weight: normal;
  color: dimgray;
}

.container .wrapper .section-login .login-card .form {
  width: 60%;
  height: 70%;
  padding-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.container .wrapper .section-login .login-card .form .form-input {
  width: 100%;
  height: auto;
  margin-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.container .wrapper .section-login .login-card .form .form-input .input-label {
  font-family: Roboto;
  font-size: 16px;
  font-weight: 600;
  color: #252525;
}

.container .wrapper .section-login .login-card .form .form-input .input-field {
  margin-top: 10px;
  background-color: #e2e2e2;
  border-radius: 6px;
  width: 100%;
  height: 100%;
  padding: 8px 20px;
  outline: none;
  border: 0px;
  font-family: Roboto;
  font-size: 16px;
  font-weight: normal;
  color: #252525;
}

.container .wrapper .section-login .login-card .form .form-input .input-field option {
  background: #f8f8f8;
}

.container .wrapper .section-login .login-card .form .form-input textarea {
  resize: none;
}

.container .wrapper .section-login .login-card .form .btn-login {
  cursor: pointer;
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  font-family: Roboto;
  font-size: 16px;
  font-weight: normal;
  color: #f8f8f8;
  padding: 8px 20px;
  height: 40px;
  background-color: #252525;
  border: 0px;
  outline: none;
}

.container .wrapper .section-login .login-card .form .btn-login p {
  position: relative;
  z-index: 1;
}

.container .wrapper .section-login .login-card .form .btn-login:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: #4b4a4a;
  -webkit-clip-path: circle(20px at -20px bottom);
          clip-path: circle(20px at -20px bottom);
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  border-radius: 6px;
  left: 0;
  top: 0;
}

.container .wrapper .section-login .login-card .form .btn-login:hover:after {
  -webkit-clip-path: circle(100%);
          clip-path: circle(100%);
}

.container .wrapper .section-overview {
  padding: 80px;
  width: 100%;
  height: auto;
  background: #f8f8f8;
}

.container .wrapper .section-overview .welcome-text {
  width: 80%;
  height: auto;
  background-color: #f8f8f8;
  border-radius: 10px;
  padding-bottom: 40px;
  margin-bottom: 20px;
}

.container .wrapper .section-overview .welcome-text .title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 60px;
  font-family: "Rubik Black", "Roboto Black";
  font-size: 28px;
  font-weight: normal;
  color: #252525;
}

.container .wrapper .section-overview .welcome-text .paragraph {
  text-align: justify;
  line-height: 32px;
  font-family: Roboto;
  font-size: 18px;
  font-weight: normal;
  color: dimgray;
}

.container .wrapper .section-overview .welcome-text .paragraph a {
  color: #0099ff;
  text-decoration: none;
}

.container .wrapper .section-overview .welcome-text .paragraph a:hover {
  color: #29a9ff;
}

.container .wrapper .section-overview .book-cards .title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 100%;
  height: 80px;
  font-family: "Rubik Black", "Roboto Black";
  font-size: 28px;
  font-weight: normal;
  color: #252525;
  line-height: 36px;
}

.container .wrapper .section-overview .book-cards .title a {
  text-decoration: none;
  font-family: Roboto;
  font-size: 18px;
  font-weight: normal;
  color: dimgray;
}

.container .wrapper .section-overview .book-cards .title a .icon {
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}

.container .wrapper .section-overview .book-cards .title a:hover .icon {
  -webkit-transform: translateX(6px);
          transform: translateX(6px);
}

.container .wrapper .section-overview .book-cards .card-box {
  width: 100%;
  height: calc(100% - 40px);
  padding: 20px 0px;
  background-color: #f8f8f8;
}

.container .wrapper .section-overview .book-cards .card-box .card {
  height: 460px;
  border-radius: 10px;
  background: #f8f8f8;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.container .wrapper .section-overview .book-cards .card-box .card .book-image {
  width: 100%;
  height: calc(100% - 60px);
  position: relative;
}

.container .wrapper .section-overview .book-cards .card-box .card .book-image .empty {
  z-index: 1;
  position: absolute;
  background: #252525;
  opacity: 0.8;
  width: 100%;
  height: 100%;
  top: 0;
  border-radius: 10px;
  text-decoration: none;
  cursor: not-allowed;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: "Roboto Medium";
  font-size: 20px;
  font-weight: normal;
  color: #f8f8f8;
}

.container .wrapper .section-overview .book-cards .card-box .card .book-image .overlay {
  z-index: 1;
  position: absolute;
  background: #252525;
  opacity: 0;
  width: 100%;
  height: 100%;
  top: 0;
  border-radius: 10px;
  text-decoration: none;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: "Roboto Medium";
  font-size: 20px;
  font-weight: normal;
  color: #f8f8f8;
}

.container .wrapper .section-overview .book-cards .card-box .card .book-image img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

.container .wrapper .section-overview .book-cards .card-box .card .book-image:hover .overlay {
  opacity: 0.8;
}

.container .wrapper .section-overview .book-cards .card-box .card .book-title {
  width: 100%;
  height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: "Roboto Medium";
  font-size: 16px;
  font-weight: normal;
  color: #252525;
}

.container .wrapper .section-books {
  padding: 80px;
  width: 100%;
  height: auto;
  background: #f8f8f8;
}

.container .wrapper .section-books .search-form {
  width: 100%;
  height: auto;
  padding-bottom: 80px;
  margin-bottom: 20px;
  border-bottom: 1px solid #d4d4d4;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.container .wrapper .section-books .search-form .section-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 60px;
  font-family: "Rubik Black", "Roboto Black";
  font-size: 28px;
  font-weight: normal;
  color: #252525;
}

.container .wrapper .section-books .search-form .text {
  height: 40px;
  font-family: Roboto;
  font-size: 18px;
  font-weight: normal;
  color: dimgray;
}

.container .wrapper .section-books .search-form form {
  width: 60%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.container .wrapper .section-books .search-form form .input-field {
  background-color: #e2e2e2;
  border-radius: 6px;
  margin-right: 20px;
  width: 100%;
  height: 40px;
  padding: 8px 20px;
  outline: none;
  border: 0px;
  font-family: Roboto;
  font-size: 16px;
  font-weight: normal;
  color: #252525;
}

.container .wrapper .section-books .search-form form .input-field option {
  background: #f8f8f8;
}

.container .wrapper .section-books .search-form form .btn-search {
  border-radius: 6px;
  cursor: pointer;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: "Roboto Medium";
  font-size: 16px;
  font-weight: normal;
  color: #f8f8f8;
  padding: 8px 20px;
  height: 40px;
  background-color: #ff0062;
  border: 0px;
  outline: none;
}

.container .wrapper .section-books .search-form form .btn-search:hover {
  background-color: #ff2d7e;
}

.container .wrapper .section-books .recent {
  width: 100%;
  height: auto;
  border-bottom: 2px solid #d4d4d4;
  padding: 40px 0px;
}

.container .wrapper .section-books .recent .title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 60px;
  font-family: "Rubik Black", "Roboto Black";
  font-size: 28px;
  font-weight: normal;
  color: #252525;
}

.container .wrapper .section-books .recent .card-box {
  width: 100%;
  height: calc(100% - 40px);
  padding: 20px 0px;
  background-color: #f8f8f8;
}

.container .wrapper .section-books .recent .card-box .card {
  height: 460px;
  border-radius: 10px;
  background: #f8f8f8;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.container .wrapper .section-books .recent .card-box .card .book-image {
  width: 100%;
  height: calc(100% - 60px);
  position: relative;
}

.container .wrapper .section-books .recent .card-box .card .book-image .empty {
  z-index: 1;
  position: absolute;
  background: #252525;
  opacity: 0.8;
  width: 100%;
  height: 100%;
  top: 0;
  border-radius: 10px;
  text-decoration: none;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  cursor: not-allowed;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: "Roboto Medium";
  font-size: 20px;
  font-weight: normal;
  color: #f8f8f8;
}

.container .wrapper .section-books .recent .card-box .card .book-image .overlay {
  z-index: 1;
  position: absolute;
  background: #252525;
  opacity: 0;
  width: 100%;
  height: 100%;
  top: 0;
  border-radius: 10px;
  text-decoration: none;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: "Roboto Medium";
  font-size: 20px;
  font-weight: normal;
  color: #f8f8f8;
}

.container .wrapper .section-books .recent .card-box .card .book-image img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

.container .wrapper .section-books .recent .card-box .card .book-image:hover .overlay {
  opacity: 0.8;
}

.container .wrapper .section-books .recent .card-box .card .book-title {
  width: 100%;
  height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: "Roboto Medium";
  font-size: 16px;
  font-weight: normal;
  color: #252525;
}

.container .wrapper .section-books .all-books {
  width: 100%;
  height: auto;
  padding: 40px 0px;
}

.container .wrapper .section-books .all-books .title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 60px;
  font-family: "Rubik Black", "Roboto Black";
  font-size: 28px;
  font-weight: normal;
  color: #252525;
}

.container .wrapper .section-books .all-books .books-grid {
  width: 100%;
  height: auto;
  padding: 20px 0px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(0, calc(100% / 4)))[4];
      grid-template-columns: repeat(4, minmax(0, calc(100% / 4)));
  -webkit-column-gap: 20px;
          column-gap: 20px;
  row-gap: 20px;
}

.container .wrapper .section-books .all-books .books-grid .book-card {
  width: 100%;
  height: 460px;
}

.container .wrapper .section-books .all-books .books-grid .book-card .book-image {
  width: 100%;
  height: calc(100% - 60px);
  position: relative;
}

.container .wrapper .section-books .all-books .books-grid .book-card .book-image .empty {
  z-index: 1;
  position: absolute;
  background: #252525;
  opacity: 0.8;
  width: 100%;
  height: 100%;
  top: 0;
  border-radius: 10px;
  text-decoration: none;
  cursor: not-allowed;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: "Roboto Medium";
  font-size: 20px;
  font-weight: normal;
  color: #f8f8f8;
}

.container .wrapper .section-books .all-books .books-grid .book-card .book-image .overlay {
  z-index: 1;
  position: absolute;
  background: #252525;
  opacity: 0;
  width: 100%;
  height: 100%;
  top: 0;
  border-radius: 10px;
  text-decoration: none;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: "Roboto Medium";
  font-size: 20px;
  font-weight: normal;
  color: #f8f8f8;
}

.container .wrapper .section-books .all-books .books-grid .book-card .book-image img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

.container .wrapper .section-books .all-books .books-grid .book-card .book-image:hover .overlay {
  opacity: 0.8;
}

.container .wrapper .section-books .all-books .books-grid .book-card .book-title {
  width: 100%;
  height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: "Roboto Medium";
  font-size: 16px;
  font-weight: normal;
  color: #252525;
}

.container .wrapper .section-detail {
  padding: 80px;
  width: 100%;
  height: calc(100vh - 68px);
  background: #f8f8f8;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.container .wrapper .section-detail .detail-image {
  width: 500px;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.container .wrapper .section-detail .detail-image img {
  width: 300px;
  height: 100%;
  border-radius: 10px;
}

.container .wrapper .section-detail .detail-book {
  width: calc(100% - 500px);
  height: 100%;
  padding-left: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.container .wrapper .section-detail .detail-book .title {
  width: 100%;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  font-family: "Rubik Black", "Roboto Black";
  font-size: 24px;
  font-weight: normal;
  color: #252525;
}

.container .wrapper .section-detail .detail-book .detail-data {
  width: 100%;
  height: calc(100% - 40px);
}

.container .wrapper .section-detail .detail-book .detail-data ul {
  width: 100%;
  height: 100%;
  list-style-type: none;
}

.container .wrapper .section-detail .detail-book .detail-data ul li {
  width: 100%;
  height: calc(100% / 9);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: Roboto;
  font-size: 16px;
  font-weight: normal;
  color: #252525;
}

.container .wrapper .section-detail .detail-book .detail-data ul li .data-label {
  width: 100px;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.container .wrapper .section-detail .detail-book .detail-data ul li .separator {
  width: 20px;
  height: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.container .wrapper .section-detail .detail-book .detail-data ul li .btn-group {
  width: auto;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.container .wrapper .section-detail .detail-book .detail-data ul li .btn-group .btn-add,
.container .wrapper .section-detail .detail-book .detail-data ul li .btn-group .btn-back {
  border-radius: 6px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: "Roboto Medium";
  font-size: 16px;
  font-weight: normal;
  color: #f8f8f8;
}

.container .wrapper .section-detail .detail-book .detail-data ul li .btn-group .btn-add {
  margin-right: 10px;
  cursor: pointer;
  padding: 8px 20px;
  height: 40px;
  background-color: #0099ff;
  border: 0px;
  outline: none;
}

.container .wrapper .section-detail .detail-book .detail-data ul li .btn-group .btn-check {
  border-radius: 6px;
  margin-right: 10px;
  cursor: not-allowed;
  padding: 8px 20px;
  height: 40px;
  background-color: #cccccc;
  border: 0px;
  outline: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: "Roboto Medium";
  font-size: 16px;
  font-weight: normal;
  color: #252525;
}

.container .wrapper .section-detail .detail-book .detail-data ul li .btn-group .btn-back {
  padding: 8px 20px;
  height: 40px;
  background-color: #ff0062;
  border: 0px;
  outline: none;
}

.container .wrapper .section-category {
  padding: 80px;
  width: 100%;
  height: auto;
  background: #f8f8f8;
}

.container .wrapper .section-category .search-form {
  width: 100%;
  height: auto;
  padding-bottom: 80px;
  margin-bottom: 20px;
  border-bottom: 1px solid #d4d4d4;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.container .wrapper .section-category .search-form .section-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 60px;
  font-family: "Rubik Black", "Roboto Black";
  font-size: 28px;
  font-weight: normal;
  color: #252525;
}

.container .wrapper .section-category .search-form .text {
  height: 40px;
  font-family: Roboto;
  font-size: 18px;
  font-weight: normal;
  color: dimgray;
}

.container .wrapper .section-category .search-form form {
  width: 60%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.container .wrapper .section-category .search-form form .input-field {
  background-color: #e2e2e2;
  border-radius: 6px;
  margin-right: 20px;
  width: 100%;
  height: 40px;
  padding: 8px 20px;
  outline: none;
  border: 0px;
  font-family: Roboto;
  font-size: 16px;
  font-weight: normal;
  color: #252525;
}

.container .wrapper .section-category .search-form form .input-field option {
  background: #f8f8f8;
}

.container .wrapper .section-category .search-form form .btn-search {
  border-radius: 6px;
  cursor: pointer;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: "Roboto Medium";
  font-size: 16px;
  font-weight: normal;
  color: #f8f8f8;
  padding: 8px 20px;
  height: 40px;
  background-color: #ff0062;
  border: 0px;
  outline: none;
}

.container .wrapper .section-category .search-form form .btn-search:hover {
  background-color: #ff2d7e;
}

.container .wrapper .section-category .category {
  width: 100%;
  height: auto;
  padding: 30px 0px;
}

.container .wrapper .section-category .category .category-box {
  width: 100%;
  height: auto;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(0, calc(100% / 2)))[2];
      grid-template-columns: repeat(2, minmax(0, calc(100% / 2)));
  -webkit-column-gap: 40px;
          column-gap: 40px;
  row-gap: 40px;
}

.container .wrapper .section-category .category .category-box .category-card {
  width: 100%;
  height: 200px;
  border-radius: 6px;
  padding-left: 80px;
  position: relative;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: "Roboto Medium";
  font-size: 28px;
  font-weight: normal;
  color: #f8f8f8;
}

.container .wrapper .section-category .category .category-box .category-card .text {
  z-index: 1;
}

.container .wrapper .section-category .category .category-box .category-card .icons {
  position: absolute;
  width: 40%;
  height: 100%;
  top: 0;
  right: 0;
  font-size: 240px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.container .wrapper .section-category .category .category-box .category-card::before {
  content: "";
  width: 140px;
  height: 140px;
  position: absolute;
  left: 0;
  border-radius: 20px;
  -webkit-transform: rotate(45deg) translateX(-50%) translateY(50%);
          transform: rotate(45deg) translateX(-50%) translateY(50%);
  -webkit-transition: 0.75s ease-in-out;
  transition: 0.75s ease-in-out;
}

.container .wrapper .section-category .category .category-box .category-card:hover::before {
  -webkit-transform: scale(10);
          transform: scale(10);
}

.container .wrapper .section-category .category .category-box .category-card:nth-child(4n + 1) {
  background: #ff9900;
}

.container .wrapper .section-category .category .category-box .category-card:nth-child(4n + 1)::before {
  background: #ffab2c;
}

.container .wrapper .section-category .category .category-box .category-card:nth-child(4n + 2) {
  background: #0099ff;
}

.container .wrapper .section-category .category .category-box .category-card:nth-child(4n + 2)::before {
  background: #29a9ff;
}

.container .wrapper .section-category .category .category-box .category-card:nth-child(4n + 3) {
  background: #ff0062;
}

.container .wrapper .section-category .category .category-box .category-card:nth-child(4n + 3)::before {
  background: #ff2d7e;
}

.container .wrapper .section-category .category .category-box .category-card:nth-child(4n + 4) {
  background: #7722ff;
}

.container .wrapper .section-category .category .category-box .category-card:nth-child(4n + 4)::before {
  background: #8234ff;
}

.container .wrapper .section-cart {
  padding: 80px;
  width: 100%;
  height: auto;
  background: #f8f8f8;
}

.container .wrapper .section-cart .info-paragraph {
  width: 100%;
  height: auto;
  padding-bottom: 40px;
  border-bottom: 1px solid #d4d4d4;
}

.container .wrapper .section-cart .info-paragraph .title {
  width: 100%;
  height: 60px;
  font-family: "Rubik Black", "Roboto Black";
  font-size: 28px;
  font-weight: normal;
  color: #252525;
}

.container .wrapper .section-cart .info-paragraph .text {
  width: 80%;
  line-height: 36px;
  font-family: Roboto;
  font-size: 18px;
  font-weight: normal;
  color: dimgray;
}

.container .wrapper .section-cart .info-paragraph .text a {
  color: #29a9ff;
  text-decoration: none;
}

.container .wrapper .section-cart .data-table {
  padding: 40px 0px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.container .wrapper .section-cart .data-table .title {
  width: 100%;
  height: 40px;
  font-family: "Roboto Medium";
  font-size: 20px;
  font-weight: 600;
  color: #252525;
}

.container .wrapper .section-cart .data-table .text {
  width: 100%;
  height: 40px;
  font-family: Roboto;
  font-size: 16px;
  font-weight: normal;
  color: dimgray;
}

.container .wrapper .section-cart .data-table form {
  width: 100%;
}

.container .wrapper .section-cart .data-table form table {
  margin-bottom: 20px;
  table-layout: auto;
  width: 100%;
  border-collapse: collapse;
}

.container .wrapper .section-cart .data-table form table th {
  text-align: center;
  border-bottom: 2px solid #d4d4d4;
  padding: 8px 20px;
  font-family: Roboto;
  font-size: 16px;
  font-weight: 600;
  color: #252525;
}

.container .wrapper .section-cart .data-table form table td {
  text-align: center;
  padding: 20px;
  font-family: Roboto;
  font-size: 16px;
  font-weight: normal;
  color: #252525;
}

.container .wrapper .section-cart .data-table form table td .btn-card,
.container .wrapper .section-cart .data-table form table td .btn-delete,
.container .wrapper .section-cart .data-table form table td .btn-edit {
  cursor: pointer;
  border-radius: 4px;
  text-decoration: none;
  outline: none;
  font-family: Roboto;
  font-size: 16px;
  font-weight: normal;
  color: #f8f8f8;
}

.container .wrapper .section-cart .data-table form table td .btn-card {
  padding: 8px 20px;
  height: 32px;
  background-color: #ff9900;
  border: 0px;
  outline: none;
}

.container .wrapper .section-cart .data-table form table td .btn-card:hover {
  background-color: #ffab2c;
}

.container .wrapper .section-cart .data-table form table td .btn-edit {
  padding: 8px 20px;
  height: 32;
  background-color: #0099ff;
  border: 0px;
  outline: none;
}

.container .wrapper .section-cart .data-table form table td .btn-edit:hover {
  background-color: #29a9ff;
}

.container .wrapper .section-cart .data-table form table td .btn-delete {
  padding: 8px 20px;
  height: 32;
  background-color: #ff0062;
  border: 0px;
  outline: none;
}

.container .wrapper .section-cart .data-table form table td .btn-delete:hover {
  background-color: #ff2d7e;
}

.container .wrapper .section-cart .data-table form table td {
  border-bottom: 1px solid #d4d4d4;
}

.container .wrapper .section-cart .data-table form .btn-pinjam {
  border-radius: 6px;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: "Roboto Medium";
  font-size: 16px;
  font-weight: normal;
  color: #f8f8f8;
  padding: 8px 20px;
  height: 40px;
  background-color: #0099ff;
  border: 0px;
  outline: none;
}

.container .wrapper .section-history {
  padding: 80px;
  width: 100%;
  height: auto;
  background: #f8f8f8;
}

.container .wrapper .section-history .info-paragraph {
  width: 100%;
  height: auto;
  padding-bottom: 40px;
  border-bottom: 1px solid #d4d4d4;
}

.container .wrapper .section-history .info-paragraph .title {
  width: 100%;
  height: 60px;
  font-family: "Rubik Black", "Roboto Black";
  font-size: 28px;
  font-weight: normal;
  color: #252525;
}

.container .wrapper .section-history .info-paragraph .text {
  width: 80%;
  line-height: 36px;
  font-family: Roboto;
  font-size: 18px;
  font-weight: normal;
  color: dimgray;
}

.container .wrapper .section-history .info-paragraph .text a {
  color: #29a9ff;
  text-decoration: none;
}

.container .wrapper .section-history .tab-nav {
  padding: 40px;
  width: 100%;
  height: auto;
}

.container .wrapper .section-history .tab-nav .tabset > input[type="radio"] {
  position: absolute;
  left: -200vw;
}

.container .wrapper .section-history .tab-nav .tabset .tab-panel {
  display: none;
}

.container .wrapper .section-history .tab-nav .tabset
> input:first-child:checked
~ .tab-panels
> .tab-panel:first-child,
.container .wrapper .section-history .tab-nav .tabset
> input:nth-child(3):checked
~ .tab-panels
> .tab-panel:nth-child(2),
.container .wrapper .section-history .tab-nav .tabset
> input:nth-child(5):checked
~ .tab-panels
> .tab-panel:nth-child(3),
.container .wrapper .section-history .tab-nav .tabset
> input:nth-child(7):checked
~ .tab-panels
> .tab-panel:nth-child(4),
.container .wrapper .section-history .tab-nav .tabset
> input:nth-child(9):checked
~ .tab-panels
> .tab-panel:nth-child(5),
.container .wrapper .section-history .tab-nav .tabset
> input:nth-child(11):checked
~ .tab-panels
> .tab-panel:nth-child(6) {
  display: block;
}

.container .wrapper .section-history .tab-nav .tabset > label {
  position: relative;
  display: inline-block;
  padding: 15px 15px 25px;
  border: 1px solid transparent;
  border-bottom: 0;
  cursor: pointer;
  overflow: hidden;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  border-bottom-right-radius: 0px;
  border-bottom-left-radius: 0px;
  font-family: "Roboto Medium";
  font-size: 20px;
  font-weight: normal;
  color: #252525;
}

.container .wrapper .section-history .tab-nav .tabset > label::after {
  content: "";
  position: absolute;
  left: 15px;
  bottom: 10px;
  width: 50px;
  height: 4px;
  background: dimgray;
}

.container .wrapper .section-history .tab-nav .tabset > label:hover,
.container .wrapper .section-history .tab-nav .tabset > input:focus + label {
  color: #ff0062;
}

.container .wrapper .section-history .tab-nav .tabset > label:hover::after,
.container .wrapper .section-history .tab-nav .tabset > input:focus + label::after,
.container .wrapper .section-history .tab-nav .tabset > input:checked + label::after {
  background: #ff0062;
}

.container .wrapper .section-history .tab-nav .tabset > input:checked + label {
  border-color: #d4d4d4;
  border-bottom: 1px solid #f8f8f8;
  margin-bottom: -1px;
}

.container .wrapper .section-history .tab-nav .tab-panel {
  width: 100%;
  padding: 20px;
}

.container .wrapper .section-history .tab-nav .tab-panel table {
  table-layout: auto;
  width: 100%;
  border-collapse: collapse;
}

.container .wrapper .section-history .tab-nav .tab-panel table th {
  text-align: center;
  border-bottom: 2px solid #d4d4d4;
  padding: 8px 20px;
  font-family: Roboto;
  font-size: 16px;
  font-weight: 600;
  color: #252525;
}

.container .wrapper .section-history .tab-nav .tab-panel table td {
  text-align: center;
  padding: 20px;
  font-family: Roboto;
  font-size: 16px;
  font-weight: normal;
  color: #252525;
}

.container .wrapper .section-history .tab-nav .tab-panel table td .btn-card,
.container .wrapper .section-history .tab-nav .tab-panel table td .btn-delete,
.container .wrapper .section-history .tab-nav .tab-panel table td .btn-edit {
  cursor: pointer;
  border-radius: 4px;
  text-decoration: none;
  outline: none;
  font-family: Roboto;
  font-size: 16px;
  font-weight: normal;
  color: #f8f8f8;
}

.container .wrapper .section-history .tab-nav .tab-panel table td .btn-card {
  padding: 8px 20px;
  height: 32px;
  background-color: #ff9900;
  border: 0px;
  outline: none;
}

.container .wrapper .section-history .tab-nav .tab-panel table td .btn-card:hover {
  background-color: #ffab2c;
}

.container .wrapper .section-history .tab-nav .tab-panel table td .btn-edit {
  padding: 8px 20px;
  height: 32;
  background-color: #0099ff;
  border: 0px;
  outline: none;
}

.container .wrapper .section-history .tab-nav .tab-panel table td .btn-edit:hover {
  background-color: #29a9ff;
}

.container .wrapper .section-history .tab-nav .tab-panel table td .btn-delete {
  padding: 8px 20px;
  height: 32;
  background-color: #ff0062;
  border: 0px;
  outline: none;
}

.container .wrapper .section-history .tab-nav .tab-panel table td .btn-delete:hover {
  background-color: #ff2d7e;
}

.container .wrapper .section-history .tab-nav .tab-panel table span {
  background: #ff0062;
  padding: 4px 10px;
  color: #f8f8f8;
  border-radius: 4px;
}

.container .wrapper .section-history .tab-nav .tab-panel table img {
  border-radius: 4px;
}

.container .wrapper .section-helper {
  padding: 80px;
  width: 100%;
  height: 100vh;
  background: #f8f8f8;
}

.container .wrapper .section-helper .info-paragraph {
  width: 100%;
  height: auto;
  padding-bottom: 40px;
  border-bottom: 1px solid #d4d4d4;
}

.container .wrapper .section-helper .info-paragraph .title {
  width: 100%;
  height: 40px;
  font-family: "Rubik Black", "Roboto Black";
  font-size: 28px;
  font-weight: normal;
  color: #252525;
}

.container .wrapper .section-helper .info-paragraph .text {
  width: 80%;
  line-height: 36px;
  font-family: Roboto;
  font-size: 18px;
  font-weight: normal;
  color: dimgray;
}

.container .wrapper .section-helper .info-paragraph .text a {
  color: #29a9ff;
  text-decoration: none;
}

.container .wrapper .not-found {
  padding: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: auto;
  background: #f8f8f8;
}

.container .wrapper .not-found span {
  width: 300px;
  height: 300px;
  background-color: dimgray;
  margin-bottom: 20px;
  border-radius: 50%;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.container .wrapper .not-found span .icon {
  color: #f8f8f8;
  font-size: 150px;
}

.container .wrapper .not-found .title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 60px;
  font-family: "Rubik Black", "Roboto Black";
  font-size: 28px;
  font-weight: normal;
  color: #252525;
}

.container .wrapper .not-found .text {
  width: 100%;
  text-align: center;
  padding: 6px;
  font-family: "Roboto Medium";
  font-size: 18px;
  font-weight: normal;
  color: dimgray;
}

.container .wrapper .not-found .text a {
  color: #29a9ff;
}

.container .wrapper .not-found .text a:hover {
  color: #0099ff;
}

.dashboard {
  width: 100%;
  min-height: 100vh;
  height: auto;
  background-color: #cccccc;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.dashboard .dashboard-container {
  width: calc(100% - 80px);
  min-height: 100vh;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.dashboard .dashboard-container .dashboard-header {
  width: 100%;
  height: 60px;
  background-color: #f8f8f8;
  border-bottom: 1px solid #d4d4d4;
  padding-right: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.dashboard .dashboard-container .dashboard-header .hero {
  width: 200px;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: "Roboto Medium";
  font-size: 16px;
  font-weight: normal;
  color: black;
}

.dashboard .dashboard-container .dashboard-header .hero .avatar {
  width: 30px;
  height: 30px;
  background: #ff0062;
  border-radius: 50%;
  color: #f8f8f8;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.dashboard .dashboard-container .overview {
  width: 100%;
  height: calc(100vh - 60px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.dashboard .dashboard-container .overview .overview-title {
  width: 100%;
  height: 80px;
  padding: 0px 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.dashboard .dashboard-container .overview .overview-title h2 {
  font-family: "Rubik Black", "Roboto Black";
  font-size: 28px;
  font-weight: normal;
  color: #252525;
}

.dashboard .dashboard-container .overview .counter {
  width: 100%;
  height: 200px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0px 40px 20px 40px;
}

.dashboard .dashboard-container .overview .counter .counter-container {
  width: calc(100% / 3);
  height: 100%;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.dashboard .dashboard-container .overview .counter .counter-container .counter-card {
  width: 100%;
  height: 100%;
  border-radius: 6px;
  border: 1px solid #d4d4d4;
  background-color: #f8f8f8;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.dashboard .dashboard-container .overview .counter .counter-container .counter-card .counter-icon {
  width: 40%;
  height: 100%;
  font-size: 48px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.dashboard .dashboard-container .overview .counter .counter-container .counter-card .counter-icon:after {
  content: "";
  width: 1px;
  height: 80%;
  background-color: #d4d4d4;
  position: absolute;
  right: 0;
}

.dashboard .dashboard-container .overview .counter .counter-container .counter-card .color1 {
  color: #ff0062;
}

.dashboard .dashboard-container .overview .counter .counter-container .counter-card .color2 {
  color: #7722ff;
}

.dashboard .dashboard-container .overview .counter .counter-container .counter-card .color3 {
  color: #0099ff;
}

.dashboard .dashboard-container .overview .counter .counter-container .counter-card .counter-number {
  width: 60%;
  height: 100%;
  padding-left: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.dashboard .dashboard-container .overview .counter .counter-container .counter-card .counter-number .text {
  line-height: 28px;
}

.dashboard .dashboard-container .overview .counter .counter-container .counter-card .counter-number .text h2 {
  font-family: "Rubik Black", "Roboto Black";
  font-size: 28px;
  font-weight: normal;
  color: #252525;
}

.dashboard .dashboard-container .overview .counter .counter-container .counter-card .counter-number .text p {
  font-family: "Roboto Medium";
  font-size: 16px;
  font-weight: normal;
  color: #252525;
}

.dashboard .dashboard-container .overview .counter .counter-container .counter-card .counter-number .text p:last-child {
  font-family: Roboto;
  font-size: 16px;
  font-weight: normal;
  color: dimgray;
}

.dashboard .dashboard-container .overview .counter .counter-container .counter-card .btn-counter {
  top: 0;
  left: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #252525;
  border-radius: 6px;
  -webkit-transition: 0.8s ease-in-out;
  transition: 0.8s ease-in-out;
  opacity: 0;
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: Roboto;
  font-size: 16px;
  font-weight: 600;
  color: #f8f8f8;
}

.dashboard .dashboard-container .overview .counter .counter-container .counter-card:hover .btn-counter {
  opacity: 1;
}

.dashboard .dashboard-container .overview .counter .counter-container:first-child {
  margin-right: 10px;
}

.dashboard .dashboard-container .overview .counter .counter-container:last-child {
  margin-left: 10px;
}

.dashboard .dashboard-container .overview .counter .counter-container:nth-child(2) {
  margin: 0px 10px;
}

.dashboard .dashboard-container .overview .recent {
  width: 100%;
  height: calc(100% - 280px);
  padding: 0px 40px 20px 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.dashboard .dashboard-container .overview .recent .recent-card {
  width: 50%;
  height: 100%;
  background-color: #f8f8f8;
  border-radius: 10px;
  border: 1px solid #d4d4d4;
}

.dashboard .dashboard-container .overview .recent .recent-card h2 {
  width: 100%;
  height: 60px;
  padding-left: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: Roboto;
  font-size: 20px;
  font-weight: 600;
  color: #252525;
}

.dashboard .dashboard-container .overview .recent .recent-card .table {
  width: 100%;
  height: calc(100% - 60px);
  padding: 0px 20px;
}

.dashboard .dashboard-container .overview .recent .recent-card .table table {
  width: 100%;
  border-collapse: collapse;
}

.dashboard .dashboard-container .overview .recent .recent-card .table table th {
  height: 40px;
  text-align: center;
  font-family: Roboto;
  font-size: 16px;
  font-weight: 600;
  color: #252525;
}

.dashboard .dashboard-container .overview .recent .recent-card .table table td {
  height: 40px;
  text-align: center;
  border-bottom: 1px solid #d4d4d4;
  font-family: Roboto;
  font-size: 16px;
  font-weight: normal;
  color: #4b4a4a;
}

.dashboard .dashboard-container .overview .recent .recent-card:first-child {
  margin-right: 10px;
}

.dashboard .dashboard-container .overview .recent .recent-card:last-child {
  margin-left: 10px;
}

.dashboard .dashboard-container .data-title {
  width: 100%;
  height: 80px;
  padding: 0px 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.dashboard .dashboard-container .data-title .title {
  width: 50%;
  height: 100%;
  font-family: "Rubik Black", "Roboto Black";
  font-size: 20px;
  font-weight: normal;
  color: #252525;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.dashboard .dashboard-container .data-title .breadcumb {
  width: 50%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.dashboard .dashboard-container .data-title .breadcumb a {
  text-decoration: none;
  font-family: Roboto;
  font-size: 16px;
  font-weight: 600;
  color: #0099ff;
}

.dashboard .dashboard-container .data-title .breadcumb p {
  font-family: Roboto;
  font-size: 16px;
  font-weight: normal;
  color: #252525;
}

.dashboard .dashboard-container .data {
  width: 100%;
  height: calc(120vh - 140px);
  padding: 0px 40px 40px 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.dashboard .dashboard-container .data .data-card {
  width: 100%;
  height: 100%;
  background-color: #f8f8f8;
  border-radius: 10px;
  border: 1px solid #d4d4d4;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.dashboard .dashboard-container .data .data-card .search {
  width: 100%;
  height: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.dashboard .dashboard-container .data .data-card .search .form {
  width: 500px;
  height: 100%;
  padding: 0px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.dashboard .dashboard-container .data .data-card .search .form .search-field {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.dashboard .dashboard-container .data .data-card .search .form .search-field .label {
  width: 60px;
  height: 40px;
  color: #f8f8f8;
  background-color: #4b4a4a;
  border-top-left-radius: 6px;
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
  border-bottom-left-radius: 6px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.dashboard .dashboard-container .data .data-card .search .form .search-field .input-field {
  background-color: #e2e2e2;
  border-top-left-radius: 0x;
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
  border-bottom-left-radius: 0px;
  width: calc(100% - 60px);
  height: 40px;
  padding: 8px 20px;
  outline: none;
  border: 0px;
  font-family: Roboto;
  font-size: 16px;
  font-weight: normal;
  color: #252525;
}

.dashboard .dashboard-container .data .data-card .search .form .search-field .input-field option {
  background: #f8f8f8;
}

.dashboard .dashboard-container .data .data-card .btn-group {
  width: 100%;
  height: 60px;
  padding-left: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.dashboard .dashboard-container .data .data-card .btn-group .btn-tambah {
  text-decoration: none;
  border-radius: 6px;
  font-family: Roboto;
  font-size: 16px;
  font-weight: normal;
  color: #f8f8f8;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 8px 20px;
  height: 40px;
  background-color: #24c93f;
  border: 0px;
  outline: none;
}

.dashboard .dashboard-container .data .data-card .btn-group .btn-tambah:hover {
  background-color: #46d15d;
}

.dashboard .dashboard-container .data .data-card .btn-group .btn-export {
  text-decoration: none;
  border-radius: 6px;
  font-family: Roboto;
  font-size: 16px;
  font-weight: normal;
  color: #f8f8f8;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 8px 20px;
  height: 40px;
  background-color: #7722ff;
  border: 0px;
  outline: none;
  margin-left: 20px;
}

.dashboard .dashboard-container .data .data-card .btn-group .btn-export:hover {
  background-color: #8234ff;
}

.dashboard .dashboard-container .data .data-card .data-table {
  width: 100%;
  height: calc(100% - 140px);
  padding: 20px;
  border-top: 1px solid #d4d4d4;
}

.dashboard .dashboard-container .data .data-card .data-table table {
  table-layout: auto;
  width: 100%;
  border-collapse: collapse;
}

.dashboard .dashboard-container .data .data-card .data-table table th {
  text-align: center;
  border-bottom: 2px solid #d4d4d4;
  padding: 8px 20px;
  font-family: Roboto;
  font-size: 16px;
  font-weight: 600;
  color: #252525;
}

.dashboard .dashboard-container .data .data-card .data-table table td {
  text-align: center;
  padding: 20px;
  font-family: Roboto;
  font-size: 16px;
  font-weight: normal;
  color: #252525;
}

.dashboard .dashboard-container .data .data-card .data-table table td .btn-card,
.dashboard .dashboard-container .data .data-card .data-table table td .btn-delete,
.dashboard .dashboard-container .data .data-card .data-table table td .btn-edit {
  cursor: pointer;
  border-radius: 4px;
  text-decoration: none;
  outline: none;
  font-family: Roboto;
  font-size: 16px;
  font-weight: normal;
  color: #f8f8f8;
}

.dashboard .dashboard-container .data .data-card .data-table table td .btn-card {
  padding: 8px 20px;
  height: 32px;
  background-color: #ff9900;
  border: 0px;
  outline: none;
}

.dashboard .dashboard-container .data .data-card .data-table table td .btn-card:hover {
  background-color: #ffab2c;
}

.dashboard .dashboard-container .data .data-card .data-table table td .btn-edit {
  padding: 8px 20px;
  height: 32;
  background-color: #0099ff;
  border: 0px;
  outline: none;
}

.dashboard .dashboard-container .data .data-card .data-table table td .btn-edit:hover {
  background-color: #29a9ff;
}

.dashboard .dashboard-container .data .data-card .data-table table td .btn-delete {
  padding: 8px 20px;
  height: 32;
  background-color: #ff0062;
  border: 0px;
  outline: none;
}

.dashboard .dashboard-container .data .data-card .data-table table td .btn-delete:hover {
  background-color: #ff2d7e;
}

.dashboard .dashboard-container .data .data-card .data-table .data-total {
  font-family: Roboto;
  font-size: 16px;
  font-weight: normal;
  color: #252525;
}

.dashboard .dashboard-container .data .data-card .data-detail {
  width: 100%;
  height: 100%;
  padding: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.dashboard .dashboard-container .data .data-card .data-detail .image {
  max-width: 40%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.dashboard .dashboard-container .data .data-card .data-detail .image img {
  width: 70%;
  height: 100%;
}

.dashboard .dashboard-container .data .data-card .data-detail .detail {
  width: 60%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.dashboard .dashboard-container .data .data-card .data-detail .detail h2 {
  font-family: "Rubik Black", "Roboto Black";
  font-size: 28px;
  font-weight: normal;
  color: #252525;
}

.dashboard .dashboard-container .data .data-card .data-detail .detail .detail-list {
  width: 100%;
  height: 20px;
  margin-bottom: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  font-family: Roboto;
  font-size: 18px;
  font-weight: normal;
  color: #252525;
}

.dashboard .dashboard-container .data .data-card .data-detail .detail .detail-list .label {
  width: 140px;
}

.dashboard .dashboard-container .data .data-card .data-detail .detail .detail-list .separator {
  width: 10px;
}

.dashboard .dashboard-container .data .data-card .data-detail .detail .button-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.dashboard .dashboard-container .data .data-card .data-detail .detail .button-group .btn-edit,
.dashboard .dashboard-container .data .data-card .data-detail .detail .button-group .btn-back {
  width: 100px;
  border-radius: 6px;
  font-family: Roboto;
  font-size: 16px;
  font-weight: 600;
  color: #f8f8f8;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.dashboard .dashboard-container .data .data-card .data-detail .detail .button-group .btn-edit {
  padding: 8px 20px;
  height: 40px;
  background-color: #0099ff;
  border: 0px;
  outline: none;
}

.dashboard .dashboard-container .data .data-card .data-detail .detail .button-group .btn-edit:hover {
  background-color: #29a9ff;
}

.dashboard .dashboard-container .data .data-card .data-detail .detail .button-group .btn-back {
  margin-left: 10px;
  padding: 8px 20px;
  height: 40px;
  background-color: #7722ff;
  border: 0px;
  outline: none;
}

.dashboard .dashboard-container .data .data-card .data-detail .detail .button-group .btn-back:hover {
  background-color: #8234ff;
}

.dashboard .dashboard-container .dashboard-form {
  width: 100%;
  min-height: calc(100vh - 140px);
  height: auto;
  padding: 0px 40px 40px 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.dashboard .dashboard-container .dashboard-form .form {
  width: 100%;
  min-height: calc(100vh - 180px);
  height: auto;
  padding: 20px;
  border-radius: 10px;
  background-color: #f8f8f8;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.dashboard .dashboard-container .dashboard-form .form form {
  width: 50%;
  min-height: calc(100vh - 220px);
  padding-right: 20px;
  border-right: 1px solid #d4d4d4;
}

.dashboard .dashboard-container .dashboard-form .form form .form-input {
  width: 100%;
  height: auto;
  margin-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.dashboard .dashboard-container .dashboard-form .form form .form-input .input-label {
  font-family: Roboto;
  font-size: 16px;
  font-weight: 600;
  color: #252525;
}

.dashboard .dashboard-container .dashboard-form .form form .form-input .input-field {
  margin-top: 10px;
  background-color: #e2e2e2;
  border-radius: 6px;
  width: 100%;
  height: 100%;
  padding: 8px 20px;
  outline: none;
  border: 0px;
  font-family: Roboto;
  font-size: 16px;
  font-weight: normal;
  color: #252525;
}

.dashboard .dashboard-container .dashboard-form .form form .form-input .input-field option {
  background: #f8f8f8;
}

.dashboard .dashboard-container .dashboard-form .form form .form-input textarea {
  resize: none;
}

.dashboard .dashboard-container .dashboard-form .form form .btn-submit {
  border-radius: 6px;
  cursor: pointer;
  font-family: Roboto;
  font-size: 16px;
  font-weight: normal;
  color: #f8f8f8;
  padding: 8px 20px;
  height: 40px;
  background-color: #0099ff;
  border: 0px;
  outline: none;
}

.dashboard .dashboard-container .dashboard-form .form form .btn-submit:hover {
  background-color: #29a9ff;
}

.dashboard .dashboard-container .dashboard-form .form .helper {
  width: 50%;
  height: 100%;
  padding-left: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.dashboard .dashboard-container .dashboard-form .form .helper .help-message {
  width: 100%;
  height: 225px;
  font-family: Roboto;
  font-size: 16px;
  font-weight: 600;
  color: #ff0062;
}

.footer {
  width: 100%;
  height: 300px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.footer .foo-head {
  width: 100%;
  height: calc(100% - 60px);
  background-color: #252525;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.footer .foo-head .logo,
.footer .foo-head .foo-info,
.footer .foo-head .foo-nav {
  width: calc(100% / 3);
  height: 100%;
  line-height: 36px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: Roboto;
  font-size: 16px;
  font-weight: normal;
  color: #f8f8f8;
}

.footer .foo-head .logo img,
.footer .foo-head .foo-info img,
.footer .foo-head .foo-nav img {
  width: 120px;
  height: 120px;
}

.footer .foo-head .logo ul,
.footer .foo-head .foo-info ul,
.footer .foo-head .foo-nav ul {
  list-style-type: none;
}

.footer .foo-head .logo a,
.footer .foo-head .foo-info a,
.footer .foo-head .foo-nav a {
  color: #f8f8f8;
  text-decoration: none;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}

.footer .foo-head .logo a:hover,
.footer .foo-head .foo-info a:hover,
.footer .foo-head .foo-nav a:hover {
  color: #4b4a4a;
}

.footer .foo {
  width: 100%;
  height: 60px;
  background-color: black;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: Roboto;
  font-size: 16px;
  font-weight: normal;
  color: #f8f8f8;
}

#paginate {
  border: 1px solid #d4d4d4;
}

#paginate .disabled {
  font-family: Roboto;
  font-size: 16px;
  font-weight: normal;
  color: #d4d4d4;
}

#paginate a {
  font-family: Roboto;
  font-size: 16px;
  font-weight: normal;
  color: #252525;
}

#paginate #actived {
  font-family: Roboto;
  font-size: 16px;
  font-weight: normal;
  color: #f8f8f8;
  background-color: #0099ff;
}

.has-error .input-field {
  border: 1px solid #ff0062 !important;
}

.has-error small {
  font-family: Roboto;
  font-size: 12px;
  font-weight: 600;
  color: #ff0062;
}
/*# sourceMappingURL=main.css.map */