/********** Template CSS **********/
:root {
  --primary: #015f09;
  --secondary: #34ad54;
  --light: #eef9ff;
  --dark: #04371d;
}
/*** Spinner ***/
.spinner {
  width: 40px;
  height: 40px;
  background: var(--primary);
  margin: 100px auto;
  -webkit-animation: sk-rotateplane 1.2s infinite ease-in-out;
  animation: sk-rotateplane 1.2s infinite ease-in-out;
}
@-webkit-keyframes sk-rotateplane {
  0% {
    -webkit-transform: perspective(120px);
  }
  50% {
    -webkit-transform: perspective(120px) rotateY(180deg);
  }
  100% {
    -webkit-transform: perspective(120px) rotateY(180deg) rotateX(180deg);
  }
}
@keyframes sk-rotateplane {
  0% {
    transform: perspective(120px) rotateX(0deg) rotateY(0deg);
    -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg);
  }
  50% {
    transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
    -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
  }
  100% {
    transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
    -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
  }
}
#spinner {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-out, visibility 0s linear 0.5s;
  z-index: 99999;
}
#spinner.show {
  transition: opacity 0.5s ease-out, visibility 0s linear 0s;
  visibility: visible;
  opacity: 1;
}
/*** Heading ***/
h1,
h2,
.fw-bold {
  font-weight: 800 !important;
}
h3,
h4,
.fw-semi-bold {
  font-weight: 700 !important;
}
h5,
h6,
.fw-medium {
  font-weight: 600 !important;
}
/*** Button ***/
.btn {
  font-family: "Nunito", sans-serif;
  font-weight: 600;
  transition: 0.5s;
}
.btn-primary,
.btn-secondary {
  color: #ffffff;
  box-shadow: inset 0 0 0 50px transparent;
}
.btn-white,
.btn-light {
  box-shadow: inset 0 0 0 50px transparent;
}
.btn-primary:hover {
  box-shadow: inset 0 0 0 0 var(--primary);
}
.btn-light:hover {
  box-shadow: inset 0 0 0 0 var(--light);
}
.btn-secondary:hover {
  box-shadow: inset 0 0 0 0 var(--secondary);
}
.btn-white:hover {
  box-shadow: inset 0 0 0 0 var(--secondary);
}
.btn-square {
  width: 36px;
  height: 36px;
}
.btn-sm-square {
  width: 30px;
  height: 30px;
}
.btn-lg-square {
  width: 48px;
  height: 48px;
}
.btn-square,
.btn-sm-square,
.btn-lg-square {
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}
/*** Navbar ***/
.navbar-dark .navbar-nav .nav-link {
  font-family: "Nunito", sans-serif;
  position: relative;
  margin-left: 25px;
  padding: 35px 0;
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  outline: none;
  transition: 0.5s;
}
.sticky-top.navbar-dark .navbar-nav .nav-link {
  padding: 20px 0;
  color: var(--dark);
}
.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
  color: var(--primary);
}
.navbar-dark .navbar-brand h1 {
  color: #ffffff;
}
.navbar-dark .navbar-toggler {
  color: #ffffff;
  background-color: var(--primary) !important;
  padding: 10px;
}
@media (max-width: 991.98px) {
  .sticky-top.navbar-dark {
    position: relative;
    background: #ffffff;
  }
  .navbar-dark .navbar-nav .nav-link,
  .navbar-dark .navbar-nav .nav-link.show,
  .sticky-top.navbar-dark .navbar-nav .nav-link {
    padding: 10px 0;
    color: var(--dark);
  }
  .navbar-dark .navbar-brand h1 {
    color: var(--primary);
  }
}
@media (min-width: 992px) {
  .navbar-dark {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    border-bottom: 1px solid rgba(256, 256, 256, 0.1);
    z-index: 999;
  }

  .sticky-top.navbar-dark {
    position: fixed;
    background: #ffffff;
  }
  .navbar-dark .navbar-nav .nav-link::before {
    position: absolute;
    content: "";
    width: 0;
    height: 2px;
    bottom: -1px;
    left: 50%;
    background: var(--primary);
    transition: 0.5s;
  }
  .navbar-dark .navbar-nav .nav-link:hover::before,
  .navbar-dark .navbar-nav .nav-link.active::before {
    width: 100%;
    left: 0;
  }
  .navbar-dark .navbar-nav .nav-link.nav-contact::before {
    display: none;
  }
  .sticky-top.navbar-dark .navbar-brand h1 {
    color: var(--primary);
  }
}
/*** Carousel ***/
.carousel-caption {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(9, 30, 62, 0.7);
  z-index: 1;
}
@media (max-width: 576px) {
  .navbar-dark {
    position: absolute;
    width: 100%;
    top: -2;
    left: 0;
    border-bottom: 1px solid rgba(256, 256, 256, 0.1);
    z-index: 999;
  }

  .sticky-top.navbar-dark {
    position: fixed;
    background: #ffffff;
  }
  .navbar-dark .navbar-nav .nav-link::before {
    position: absolute;
    content: "";
    width: 0;
    height: 2px;
    bottom: -1px;
    left: 50%;
    background: var(--primary);
    transition: 0.5s;
  }
  .navbar-dark .navbar-nav .nav-link:hover::before,
  .navbar-dark .navbar-nav .nav-link.active::before {
    width: 100%;
    left: 0;
  }
  .navbar-dark .navbar-nav .nav-link.nav-contact::before {
    display: none;
  }
  .sticky-top.navbar-dark .navbar-brand h1 {
    color: var(--primary);
  }
  .carousel-caption h5 {
    font-size: 14px;
    font-weight: 500 !important;
  }
  .carousel-caption h1 {
    font-size: 30px;
    font-weight: 600 !important;
  }
}
.carousel-control-prev,
.carousel-control-next {
  width: 10%;
}
.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 3rem;
  height: 3rem;
}
/*** Section Title ***/
.section-title::before {
  position: absolute;
  content: "";
  width: 150px;
  height: 5px;
  left: 0;
  bottom: 0;
  background: var(--primary);
  border-radius: 2px;
}
.section-title.text-center::before {
  left: 50%;
  margin-left: -75px;
}
.section-title.section-title-sm::before {
  width: 90px;
  height: 3px;
}
.section-title::after {
  position: absolute;
  content: "";
  width: 6px;
  height: 5px;
  bottom: 0px;
  background: #ffffff;
  -webkit-animation: section-title-run 5s infinite linear;
  animation: section-title-run 5s infinite linear;
}
.section-title.section-title-sm::after {
  width: 4px;
  height: 3px;
}
.section-title.text-center::after {
  -webkit-animation: section-title-run-center 5s infinite linear;
  animation: section-title-run-center 5s infinite linear;
}
.section-title.section-title-sm::after {
  -webkit-animation: section-title-run-sm 5s infinite linear;
  animation: section-title-run-sm 5s infinite linear;
}
@-webkit-keyframes section-title-run {
  0% {
    left: 0;
  }
  50% {
    left: 145px;
  }
  100% {
    left: 0;
  }
}
@-webkit-keyframes section-title-run-center {
  0% {
    left: 50%;
    margin-left: -75px;
  }
  50% {
    left: 50%;
    margin-left: 45px;
  }
  100% {
    left: 50%;
    margin-left: -75px;
  }
}
@-webkit-keyframes section-title-run-sm {
  0% {
    left: 0;
  }
  50% {
    left: 85px;
  }
  100% {
    left: 0;
  }
}
/*** Service ***/
.service-item {
  position: relative;
  height: 300px;
  padding: 0 30px;
  transition: 0.5s;
}
.service-item .service-icon {
  margin-bottom: 30px;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  border-radius: 2px;
  transform: rotate(-45deg);
}
.service-item .service-icon i {
  transform: rotate(45deg);
}
.service-item a.btn {
  position: absolute;
  width: 60px;
  bottom: -48px;
  left: 50%;
  margin-left: -30px;
  opacity: 0;
}
.service-item:hover a.btn {
  bottom: -24px;
  opacity: 1;
}
/*** Testimonial ***/
.testimonial-carousel .owl-dots {
  margin-top: 15px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.testimonial-carousel .owl-dot {
  position: relative;
  display: inline-block;
  width: 15px;
  height: 15px;
  background: #dddddd;
  border-radius: 2px;
  transition: 0.5s;
}
.testimonial-carousel .owl-dot.active {
  width: 30px;
  background: var(--primary);
}
.testimonial-carousel .owl-item.center {
  position: relative;
  z-index: 1;
}
.testimonial-carousel .owl-item .testimonial-item {
  transition: 0.5s;
}
.testimonial-carousel .owl-item.center .testimonial-item {
  /* background: #FFFFFF !important; */
  /* box-shadow: 0 0 20px #99b88c; */
  border-radius: 10px;
}
/*** Team ***/
.team-item {
  transition: 0.5s;
}
.team-social {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
}
.team-social a.btn {
  position: relative;
  margin: 0 3px;
  margin-top: 100px;
  opacity: 0;
}
.team-item:hover {
  box-shadow: 0 0 30px #dddddd;
}
.team-item:hover .team-social {
  background: rgba(9, 30, 62, 0.7);
}
.team-item:hover .team-social a.btn:first-child {
  opacity: 1;
  margin-top: 0;
  transition: 0.3s 0s;
}
.team-item:hover .team-social a.btn:nth-child(2) {
  opacity: 1;
  margin-top: 0;
  transition: 0.3s 0.05s;
}
.team-item:hover .team-social a.btn:nth-child(3) {
  opacity: 1;
  margin-top: 0;
  transition: 0.3s 0.1s;
}
.team-item:hover .team-social a.btn:nth-child(4) {
  opacity: 1;
  margin-top: 0;
  transition: 0.3s 0.15s;
}
.team-item .team-img img,
.blog-item .blog-img img,
.blog-item:hover .blog-img div {
  transition: 0.5s;
}
.team-item:hover .team-img img,
.blog-item:hover .blog-img img,
.blog-item:hover .blog-img div {
  transform: scale(1.1);
}
.bg-header {
  height: 660px;
  background: linear-gradient(rgba(52, 79, 67, 0.7), rgba(72, 140, 95, 0.7)),
    url(../../images/header.jpg) center center no-repeat;
  background-size: cover;
}
.link-animated a {
  transition: 0.5s;
}
.link-animated a:hover {
  padding-left: 10px;
}
/* login modal */
.modal-content {
  border-radius: 10px;
}
.modal {
  background-color: #fff !important;
  background-image: url("../../images/login_mobile.jpg");
  background-position: center; /* Center the image */
  background-repeat: no-repeat; /* Do not repeat the image */
  background-size: cover;
}
.login-box {
  max-width: 400px;
  width: 100%;
  padding: 20px 10px;
  margin: 5px auto;
  border-radius: 10px;
}
.login-header {
  position: relative;
  padding: 0 15px;
  background-color: #fff;
  z-index: 1;
}
.login-header .brand-logo {
  width: auto;
  border: 0;
}
.login-menu a {
  font-size: 20px;
  font-weight: 600;
  color: #001e94;
}
.login-wrap {
  height: calc(100% - 20px);
  overflow: auto;
  padding: 30px 0;
}
.loginproses {
  font-size: 18px;
  animation: typing 5s steps(22) 1s infinite alternate;
  animation-name: example;
  animation-duration: 5s;
}
.TextLogin {
  font-size: 18px;
}
.kelasblur {
  position: relative;
  background: inherit;
  overflow: hidden;
  z-index: -1;
  min-height: 500px;
}

.kelasblur:before {
  content: "";
  position: absolute;
  background: inherit;
  z-index: -2;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  filter: blur(12px);
}
/* CTABLUR */
.btn-extra :hover {
  animation: heartBeat;
  animation-duration: 2s;
}
/* 
  .wrapper-cta{
    width: 800px;
    height: 520px;
    margin: auto;
    position: relative;
    animation: animate 300s infinite;
    background: url("bg-img.jpg");
}
.wrapper-cta #image{
    mix-blend-mode: lighten;
    width: 800px;
    margin: auto;
}
.wrapper-cta img {
    width: 800px;
    height: 520px;
}
 */
/* Box kelas */
.box-kelas {
  background-color: #fff;
  position: static;
  border-radius: 10px;
  width: 100%;
  height: 100%;
  box-shadow: 0px 0px 21px 5px rgba(23, 56, 19, 0.42);
  -webkit-box-shadow: 0px 0px 21px 5px rgba(23, 56, 19, 0.42);
  -moz-box-shadow: 0px 0px 21px 5px rgba(23, 56, 19, 0.42);
}

.imgtop {
  margin-top: -420px;
  z-index: 2;
  padding-left: 10%;
  padding-right: 10%;
}
/*** Miscellaneous ***/
@media (min-width: 991.98px) {
  .facts {
    position: relative;
    margin-top: 0px;
    z-index: 1;
  }
}
@media (min-width: 767.98px) {
  .footer-about {
    margin-bottom: -75px;
  }
}
@media (max-width: 500.98px) {
  .kelasblur {
    min-height: 250px;
  }
  .imgtop {
    margin-top: -170px;
  }
}
button.btn-extra,
a.button.btn-extra,
input[type="button"].button.btn-extra {
  font-size: 1em;
  height: 70px;
  padding: 0;
  text-transform: uppercase;
  background: transparent;
  color: #fff;
  line-height: 1.5em;
  border: 1px solid #015f09;
  border-left: none;
  position: relative;
  overflow: hidden;
  letter-spacing: 0;
  display: inline-table;
  table-layout: fixed;
  margin-right: 10px;
  margin-bottom: 10px;
  text-decoration: none;
}
button.btn-extra > i,
a.button.btn-extra > i,
input[type="button"].button.btn-extra > i {
  width: 55px;
  vertical-align: middle;
  background: #015f09;
  color: #ffe600;
  font-size: 36px;
  display: table-cell;
  height: 70px;
  text-align: right;
  padding-right: 8px;
}
button.btn-extra > i:after,
a.button.btn-extra > i:after,
input[type="button"].button.btn-extra > i:after {
  display: block;
  content: "";
  position: absolute;
  left: 55px;
  border-bottom: 70px solid #015f09;
  border-right: 16px solid transparent;
  top: 0;
  bottom: 0;
}
button.btn-extra > span,
a.button.btn-extra > span,
input[type="button"].button.btn-extra > span {
  display: table-cell;
  vertical-align: middle;
  padding: 0 20px 0 35px;
  text-align: left;
}
button.btn-extra > span em,
a.button.btn-extra > span em,
input[type="button"].button.btn-extra > span em {
  color: #015f09;
  font-size: 1.6667em;
  font-weight: bold;
  font-style: normal;
}
button.btn-extra:hover,
a.button.btn-extra:hover,
input[type="button"].button.btn-extra:hover {
  color: inherit;
  border: none;
  background: #38ff95;
  border-right: 1px solid transparent !important;
}
button.btn-extra:hover > i,
a.button.btn-extra:hover > i,
input[type="button"].button.btn-extra:hover > i {
  color: #fff;
}
button.btn-extra.blue,
a.button.btn-extra.blue,
input[type="button"].button.btn-extra.blue {
  border-color: #015f09;
}
button.btn-extra.blue > i,
a.button.btn-extra.blue > i,
input[type="button"].button.btn-extra.blue > i {
  background: #015f09;
}
button.btn-extra.blue > i:after,
a.button.btn-extra.blue > i:after,
input[type="button"].button.btn-extra.blue > i:after {
  border-bottom-color: #015f09;
}
button.btn-extra.blue > span em,
a.button.btn-extra.blue > span em,
input[type="button"].button.btn-extra.blue > span em {
  color: #015f09;
}
button.btn-extra.yellow,
a.button.btn-extra.yellow,
input[type="button"].button.btn-extra.yellow {
  border-color: #fdb714;
}
button.btn-extra.yellow > i,
a.button.btn-extra.yellow > i,
input[type="button"].button.btn-extra.yellow > i {
  background: #fdb714;
  color: #015f09;
}
button.btn-extra.yellow > i:after,
a.button.btn-extra.yellow > i:after,
input[type="button"].button.btn-extra.yellow > i:after {
  border-bottom-color: #fdb714;
}
button.btn-extra.yellow > span em,
a.button.btn-extra.yellow > span em,
input[type="button"].button.btn-extra.yellow > span em {
  color: #fdb714;
}
.img-klas {
  /* Full height */
  height: 100%;

  /* Center and scale the image nicely */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 310px;
  /* min-width: 310px; */
}
.page-customer {
  background-color: #ecececf1;
  border-radius: 10px;
  padding: 14pt;
  -webkit-box-shadow: 3px -5px 20px -13px rgba(0, 0, 0, 0.32);
  -moz-box-shadow: 3px -5px 20px -13px rgba(0, 0, 0, 0.32);
  box-shadow: 3px -5px 20px -13px rgba(0, 0, 0, 0.32);
}
/* proses Pemesanan--  */
input[type="checkbox"] {
  /* Double-sized Checkboxes */
  -ms-transform: scale(1);
  /* IE */
  -moz-transform: scale(1);
  /* FF */
  -webkit-transform: scale(1);
  /* Safari and Chrome */
  -o-transform: scale(1);
  /* Opera */
  transform: scale(1);
  padding: 5px;
}
/* Might want to wrap a span around your checkbox text */
.checkboxtext {
  /* Checkbox text */
  font-size: 10px;
  display: inline;
}
.select2,
.select2-selection,
span .select2-selection.select2-selection--single {
  font-weight: 700;
  height: 30pt;
  font-size: 14pt;
  padding-top: 5px;
}
ul > li.select2-results__option {
  font-weight: 700;
  font-size: 14px;
}

/*////////////////////////////////////*/
/*////////////////////////////////////*/
.loader {
  position: fixed;
  left: 50%;
  top: 40%;
  margin: auto;
  z-index: 1;
  text-align: center;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 10px solid #478d18;
  display: flex;
}
.loader::after {
  content: "";
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 12px solid transparent;
  border-top: 12px solid #015f09;
  animation: rotate 1.3s linear infinite;
}
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@media (max-width: 420px) {
  .img-klas {
    min-height: 320px;
  }
  .img-klas-lain {
    min-height: 320px;
  }
  .loader {
    position: fixed;
    left: 36%;
    top: 50%;
  }
}
@media (max-width: 720px) {
  .img-klas {
    min-height: 320px;
  }
  .img-klas-lain {
    min-height: 320px;
  }
  .loader {
    position: fixed;
    left: 36%;
    top: 50%;
  }
}
span.loading-data {
  width: 180px;
  background-image: url("../../images/spin2.svg");
  background-size: cover;
}
/*////////////////////////////////////*/
/*////////////////////////////////////*/
/* INVOICE */
/*////////////////////////////////////*/
/*////////////////////////////////////*/
#invoice {
  padding: 30px;
}
.invoice {
  position: relative;
  background-color: #fff;
  min-height: 680px;
  padding: 15px;
}
.invoice header {
  padding: 10px 0;
  margin-bottom: 20px;
  border-bottom: 1px solid #0d501b;
}
.invoice .company-details {
  text-align: right;
}
.invoice .company-details .name {
  margin-top: 0;
  margin-bottom: 0;
}
.invoice .contacts {
  margin-bottom: 20px;
}
.invoice .invoice-to {
  text-align: left;
}
.invoice .invoice-to .to {
  margin-top: 0;
  margin-bottom: 0;
}
.invoice .invoice-details {
  text-align: right;
}
.invoice .invoice-details .invoice-id {
  margin-top: 0;
  color: #015f09;
}
.invoice main {
  padding-bottom: 50px;
}
.invoice main .thanks {
  margin-top: -100px;
  font-size: 1.5em;
  margin-bottom: 50px;
}
.invoice main .notices {
  padding-left: 6px;
  border-left: 6px solid #015f09;
}
.invoice main .notices .notice {
  font-size: 1em;
}
.invoice table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  margin-bottom: 20px;
}
.invoice table td,
.invoice table th {
  padding: 15px;
  background: #eee;
  border-bottom: 1px solid #fff;
}
.invoice table th {
  white-space: nowrap;
  font-weight: 400;
  font-size: 16px;
}
.invoice table td h3 {
  margin: 0;
  font-weight: 400;
  color: #015f09;
  font-size: 1.2em;
}
.invoice table .qty,
.invoice table .total,
.invoice table .unit {
  text-align: right;
  font-size: 1.2em;
}
.invoice table .no {
  color: #fff;
  font-size: 1.6em;
  background: #015f09;
}
.invoice table .unit {
  background: #ddd;
}
.invoice table .total {
  background: #015f09;
  color: #fff;
}
.invoice table tbody tr:last-child td {
  border: none;
}
.invoice table tfoot td {
  background: 0 0;
  border-bottom: none;
  white-space: nowrap;
  text-align: right;
  padding: 10px 20px;
  font-size: 1.2em;
  border-top: 1px solid #aaa;
}
.invoice table tfoot tr:first-child td {
  border-top: none;
}
.invoice table tfoot tr:last-child td {
  color: #015f09;
  font-size: 1.4em;
  border-top: 1px solid #015f09;
}
.invoice table tfoot tr td:first-child {
  border: none;
}
.invoice footer {
  width: 100%;
  text-align: center;
  color: #777;
  border-top: 1px solid #aaa;
  padding: 8px 0;
}
@media print {
  .invoice {
    font-size: 11px !important;
    overflow: hidden !important;
  }
  .invoice footer {
    position: absolute;
    bottom: 10px;
    page-break-after: always;
  }
  .invoice > div:last-child {
    page-break-before: always;
  }
}
.back-to-top {
  background-color: #015f09;
  position: fixed;
  display: none;
  right: 20px;
  bottom: 80px;
  z-index: 99;
}
/*////////////////////////////////////*/
/*////////////////////////////////////*/
/* WA BUTTON */
.whatsapp-btn i {
  padding-top: 8px;
  color: #fff;
}

.whatsapp-ms {
  position: fixed;
  display: none;
  background-image: url("../img/wabox2.png");
  background-size: cover;
  background-position: center;
  color: rgb(255, 255, 255);
  width: 250px;
  height: 50px;
  text-align: center;
  line-height: 10pt;
  font-size: 10pt;
  font-weight: 600;
  border-radius: 10%;
  right: 60px;
  bottom: 22px;
  padding: 20px;
  transition: background 0.5s;
  z-index: 12;
}

.whatsapp-btn {
  position: fixed;
  background: #037100;
  color: #fff;
  width: 50px;
  height: 50px;
  text-align: center;
  line-height: 1;
  font-size: 32px;
  border-radius: 50%;
  right: 20px;
  bottom: 20px;
  transition: background 0.5s;
  z-index: 12;
  box-shadow: 0 0 2px #131313, 0 0 5px #474747;
}
.cartbox-btn {
  position: fixed;
  background: #00a4d1a9;
  color: #fff;
  width: 80px;
  height: 40px;
  text-align: center;
  line-height: 1;
  font-size: 16px;
  font-weight: 900;
  border-radius: 6%;
  padding: auto;
  right: 15px;
  top: 15%;
  transition: background 0.5s;
  z-index: 1;
  box-shadow: 0 0 2px #131313, 0 0 5px #474747;
}

.cartbox-btn i {
  padding-top: 10px;
  color: #fff;
}

.tooltip-inner {
  background-color: rgba(40, 38, 70, 0.8);

  color: #ffffff;
  border: 1px solid rgba(40, 38, 70, 0.8);

  padding: 8px;
  border-radius: 20px;
  font-size: 16px;
}
/* Tooltip on top */
.tooltip.bs-tooltip-left .arrow:before {
  border-left: 5px solid rgb(246, 2, 55);
}

/*////////////////////////////////////*/
/* KELAS LAINNYA */
/*////////////////////////////////////*/
.img-kelas-lain {
  width: 260px;
  height: 260px;
  margin-bottom: 20px;
}
.kelas-lain {
  height: 300px;
}
.kelaslainnya {
  margin: auto;
}
@media (max-width: 720px) {
  .img-kelas-lain {
    width: 172px;
    height: 172px;
  }
}
@media (max-width: 520px) {
  .kelaslainnya {
    margin: auto;
  }
}
