@font-face {
  font-family: "Cakecafe";
  src: url("../fonts/Cakecafe.ttf");
}
.text-white {
  color: white;
}

.pilar {
  background-color: rgb(243, 243, 243);
  display: block;
  padding: 50px;
  border-radius: 10px;
  position: relative;
  transition: all 1000ms ease-in-out;
}
.pilar img {
  width: 100%;
  height: 150px;
  -o-object-fit: scale-down;
     object-fit: scale-down;
}
.pilar .iconbutton {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 30px;
  height: 30px;
}
.pilar:hover {
  background-color: rgb(214, 237, 255);
}
.pilar:hover img {
  scale: 1.05;
}

.gambar-gallery {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.gambar-gallery a {
  width: 200px;
  height: 200px;
}

.cakecafe {
  font-family: "Cakecafe" !important;
  font-size: 4rem !important;
}

.cakecafe-sm {
  font-family: "Cakecafe" !important;
  font-size: 2rem !important;
}

.client-display {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
}
.client-display .outclientimage {
  width: 100px;
  height: auto;
  padding: 10px;
}

.divgen {
  display: flex;
  justify-content: center;
  position: relative;
}
.divgen .geninput {
  width: 80%;
  padding: 50px;
  border-radius: 50px;
  font-size: 3rem;
}

.alert-success {
  background-color: rgb(212, 255, 212);
  padding: 10px;
}

.panel {
  background-color: rgba(255, 255, 255, 0.6705882353);
  border-radius: 30px;
  height: 500px;
  width: 90%;
}

.btn {
  all: unset;
  display: block;
  cursor: pointer;
  width: 100%;
  padding-top: 20px;
  padding-bottom: 20px;
  border-radius: 5px;
  margin-top: 10px;
  text-align: center;
  font-size: 1rem;
  font-weight: bold;
  background: #4ed0f4;
  transition: all 300ms ease-in-out;
}
.btn.sm {
  display: inline-block;
  padding-left: 30px;
  padding-right: 30px;
  width: -moz-fit-content;
  width: fit-content;
}

.loader {
  border: 5px solid #fff;
  border-bottom-color: transparent;
  border-radius: 50%;
  display: inline-block;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
  transition: all 300ms ease-in-out;
}

.hide {
  display: none !important;
  transition: all 300ms ease-in-out;
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* Mobile to Tablet Portrait
===============================*/
@media (min-width: 0px) and (max-width: 767px) {
  .cakecafe {
    font-family: "Cakecafe";
    font-size: 2rem !important;
  }
  .client-display .outclientimage {
    width: 75px;
  }
}