body {
  margin: 0;
  padding: 0;
  font-size: 16px;
  font-family: "montserrat", sans-serif;
}
header {
  text-align: center;
  margin-top: 10px;
}
.kotak {
  padding-left: 20px;
  padding-right: 20px;
  margin-bottom: 25px;
}
.container {
  position: relative;
  width: 70%;
  margin-top: 140px;
  box-shadow: 0 0 10px 10px rgba(0, 0, 0, 0.1);
  padding: 10px 15px;
  border-radius: 10px;
  background: #eee;
  margin-bottom: 70px;
}
#qrcode {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 20px;
}
#qrcode img {
  border-radius: 10px;
}
.flex {
  display: flex;
}
.mt-10 {
  margin-top: 10px;
}
#qrcodeText {
  width: 100%;
  height: 30px;
  min-height: 30px;
  resize: vertical;
  margin-top: 5px;
}
label {
  font-weight: 600;
}
input[type="number"] {
  width: 100px;
  text-align: center;
}
input[type="checkbox"] {
  width: 20px;
  height: 20px;
}
.info {
  color: #a886ff;
  font-style: italic;
}
.btn1 {
  padding: 10px 20px;
  background: #a886ff;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  outline: none;
  box-shadow: 0 2px 3px #00000030;
  font-weight: 700;
  font-size: 18px;
  width: 100%;
  opacity: 1;
  transition: all 0.3s ease;
}
.btn1:hover {
  opacity: 0.6;
}
.btn2 {
  padding: 10px 20px;
  background: #211e2b;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  outline: none;
  box-shadow: 0 2px 3px #00000030;
  font-weight: 700;
  font-size: 18px;
  width: 100%;
  opacity: 1;
  transition: all 0.3s ease;
  margin-top: 20px;
}
.btn2:hover {
  opacity: 0.8;
}
.italic {
  font-style: italic;
}
.hidden {
  display: none;
}
.transparent {
  padding-right: 10px;
  margin-right: 10px;
}
h1 {
  font-weight: 700;
}
h2 {
  font-size: 20px;
  font-weight: 700;
}
/* ===================================== */
/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  z-index: 999;
  background-color: #211e2b;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}
nav .navbar {
  height: 100%;
  max-width: 1250px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 50px;
}
nav .navbar .logo a {
  color: #fff;
  font-size: 30px;
  font-weight: 600;
  text-decoration: none;
}
nav .navbar .nav-links {
  height: 100%;
  line-height: 70px;
}
nav .navbar .nav-links .links {
  display: flex;
}
nav .navbar .nav-links .links li {
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 14px;
  list-style: none;
  padding-left: 30px; /*tambahin sendiri buat gap antar tulisan*/
}
.navbar .nav-links .links li:hover .htmlcss-arrow {
  transform: rotate(180deg);
}
.navbar .nav-links .links .sub-menu {
  position: absolute;
  top: 70px;
  left: 0;
  background: #211e2b;
  line-height: 40px;
  border-radius: 0 0 4px 4px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  display: none;
}
.navbar .nav-links .links .sub-menu li {
  padding: 5px 20px;
  left: -15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.navbar .nav-links .links .sub-menu li a {
  font-size: 15px;
  font: 500;
}
.navbar .nav-links .links .sub-menu li a:hover {
  color: #a886ff;
}
nav .navbar .nav-links .links li a {
  height: 100%;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
  font-size: 16px;
  font-weight: 500;
}
nav .navbar .nav-links .links li span a {
  height: 100%;
  color: #a886ff;
  text-decoration: none;
  white-space: nowrap;
  font-size: 16px;
  font-weight: 700;
}
nav .navbar .nav-links .links li span a:hover {
  color: #fff;
}
nav .navbar .nav-links .links li a:hover {
  color: #a886ff;
}
nav .navbar .nav-links .links li .arrow {
  height: 100%;
  width: 22px;
  text-align: center;
  color: #fff;
  line-height: 70px;
  transition: all 0.3s ease;
}
.navbar .nav-links .links li:hover .htmlCss-sub-menu {
  display: block;
}
/* search bar */
.navbar .search-box {
  position: relative;
  height: 40px;
  width: 40px;
}
.navbar .search-box i {
  color: #fff;
  position: absolute;
  height: 100%;
  width: 100%;
  line-height: 40px;
  text-align: center;
  font-size: 22px;
  font-weight: 600;
  cursor: pointer;
}
.navbar .search-box i:hover {
  color: #a886ff;
}
.navbar .search-box .input-box {
  height: 60px;
  width: 300px;
  background: #211e2b;
  position: absolute;
  top: 80px;
  right: calc(100% - 40px);
  border-radius: 6px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
}
.navbar.showInput .search-box .input-box {
  opacity: 1;
  pointer-events: auto;
  top: 65px;
}
.navbar .search-box .input-box::before {
  content: "";
  position: absolute;
  height: 20px;
  width: 20px;
  background: #211e2b;
  right: 10px;
  top: -6px;
  transform: rotate(45deg);
}
.navbar .search-box .input-box input {
  position: absolute;
  height: 35px;
  width: 280px;
  z-index: 98;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  outline: none;
  border: none;
  border-radius: 4px;
  padding: 0 15px;
  font-size: 16px;
}
.navbar .bx-menu,
.nav-links .sidebar-logo .logo_name,
.nav-links .sidebar-logo .bx-x {
  display: none;
}
/* Responsive */
@media (max-width: 954px) {
  nav .navbar {
    max-width: 1250px;
    padding: 0 25px;
  }
  nav .navbar .logo a {
    font-size: 26px;
  }
  nav .navbar .nav-links .links li {
    padding: 0 10px;
  }
  nav .navbar .nav-links .links li a {
    font-size: 15px;
  }
}
@media (max-width: 800px) {
  nav .navbar .nav-links {
    display: block;
    position: fixed;
    background: #211e2b;
    top: 0;
    left: -100%;
    max-width: 280px;
    width: 100%;
    padding: 20px;
    line-height: 40px;
    transition: all 0.3s ease;
    z-index: 100;
  }
  nav .navbar .nav-links .sidebar-logo {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .nav-links .sidebar-logo .logo_name {
    color: #fff;
    font-size: 24px;
    font-weight: 500;
    display: block;
    padding-left: 10px;
  }
  .navbar .bx-menu,
  .nav-links .sidebar-logo .bx-x {
    color: #fff;
    font-size: 25px;
    font-weight: 500;
    display: block;
  }
  nav .navbar .nav-links .links {
    display: block;
    margin-top: 20px;
  }
  nav .navbar .nav-links .links li {
    display: block;
    border-bottom: none;
  }
  .navbar .nav-links .links .sub-menu {
    display: none;
    position: relative;
    top: 0;
    left: 0;
    box-shadow: none;
  }
  .navbar .nav-links .links .sub-menu li {
    border-bottom: none;
  }
  .navbar .nav-links .links li:hover .htmlCss-sub-menu {
    display: none;
  }
  nav .navbar .nav-links .links li .arrow {
    line-height: 40px;
  }
  .navbar .nav-links .links li:hover .htmlcss-arrow {
    transform: rotate(0deg);
    cursor: pointer;
  }
  .navbar .nav-links.show1 .links .sub-menu.htmlCss-sub-menu {
    display: block;
  }
  .navbar .nav-links.show1 .links li .htmlcss-arrow {
    transform: rotate(180deg);
  }
  .container {
    width: 85%;
  }
}
@media (max-width: 370px) {
  nav .navbar .nav-links {
    max-width: 100%;
  }
}

/* ========================================== */
/* Footer */
footer {
  position: relative;
  bottom: 0;
}
.footer {
  background-color: #fff;
  box-sizing: border-box;
  width: 100%;
  text-align: left;
  font: bold 16px sans-serif;
  padding: 50px 50px 60px 50px;
  margin-top: 80px;
}
.footer .footer-left,
.footer .footer-center,
.footer .footer-right {
  display: inline-block;
  vertical-align: top;
}
.footer .footer-left {
  width: 30%;
}
.footer h3 {
  color: #211e2b;
  margin: 0;
  font-weight: 700;
  padding-bottom: 20px;
}
.footer .footer-left img {
  width: 25%;
  vertical-align: middle;
  margin-right: 20px;
  margin-bottom: 10px;
}
.footer .footer-left .credit-cards {
  width: 100%;
}
.footer .footer-copyright {
  color: #211e2b;
  font-size: 14px;
  font-weight: normal;
  margin: 0;
  padding-top: 35px;
  text-align: center;
  margin-bottom: -30px;
}
.footer .footer-center {
  width: 35%;
}
.footer .footer-center i {
  color: #a5a5a5;
  font-size: 30px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  text-align: center;
  line-height: 42px;
  margin: 10px 10px;
  vertical-align: middle;
}
.footer .footer-center i.fa-envelope {
  font-size: 25px;
  line-height: 40px;
}
.footer .footer-center p {
  display: inline-block;
  color: #211e2b;
  vertical-align: middle;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}
.footer .footer-center p span {
  display: block;
  font-weight: normal;
  font-size: 14px;
  line-height: 2;
}
.footer .footer-center p a {
  color: #211e2b;
  text-decoration: none;
}
.footer .footer-right {
  width: 30%;
}
.footer .footer-about {
  line-height: 20px;
  color: #92999f;
  font-size: 13px;
  font-weight: normal;
  margin: 0;
}
.footer .footer-about span {
  display: block;
  color: #211e2b;
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 20px;
}
.footer .footer-media {
  margin-top: 20px;
}
.footer .footer-media a {
  display: inline-block;
  width: 50px;
  height: 50px;
  cursor: pointer;
  color: #a5a5a5;
  font-size: 30px;
  text-align: center;
  line-height: 50px;
}
.footer .footer-media a:hover {
  color: #a886ff;
}

@media screen and (max-width: 880px) {
  .footer .footer-left,
  .footer .footer-center,
  .footer .footer-right {
    display: block;
    width: 100%;
    margin-bottom: 40px;
    text-align: left;
  }
  .footer .footer-center i {
    margin-left: 0px;
  }
}

@media screen and (max-width: 800px) {
  footer {
    position: static;
  }
}
