/* ====== LIGHTBOX ====== */

/* Preload icons */
body:after {
  content: url("../img/close.png") url("../img/loading.gif") url("../img/prev.png") url("../img/next.png");
  background-size: cover;
}

body.lb-disable-scrolling {
  overflow: hidden;
}

.lightboxOverlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 99999;
  background-color: black;
  opacity: 0.8;
  display: none;
}

.lightbox {
  position: absolute;
  margin-top: 0%;
  left: 0;
  width: 100%;
  z-index: 99999;
  text-align: center;
  line-height: 0;
  font-weight: normal;
}

.lightbox .lb-image {
  display: block;
  height: auto;
  max-width: inherit;
  max-height: none;
  border-radius: 5px;
}

.lightbox a img {
  border: none;
}

.lb-outerContainer {
  position: relative;
  width: 250px;
  height: 250px;
  margin: 0 auto;
  border-radius: 4px;
  background-color: #6A6A6A;
}

.lb-outerContainer:after {
  content: "";
  display: table;
  clear: both;
}

.lb-loader {
  position: absolute;
  top: 43%;
  left: 0;
  height: 25%;
  width: 100%;
  text-align: center;
  line-height: 0;
}

.lb-cancel {
  display: block;
  width: 32px;
  height: 32px;
  margin: 0 auto;
  background: url("../img/loading.gif") no-repeat;
}

.lb-nav {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 10;
}

.lb-nav a {
  outline: none;
  background-image: url("data:image/gif;base64,R0lGODlhAQABAPAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==");
}

.lb-prev,
.lb-next {
  height: 100%;
  cursor: pointer;
  display: block;
}

/* Prev button */
.lb-nav a.lb-prev {
  width: 34%;
  left: 0;
  float: left;
  background: url("../img/prev.png") left 48% no-repeat;
  opacity: 0;
  transition: opacity 0.6s;
}

.lb-nav a.lb-prev:hover {
  opacity: 1;
}

/* Next button */
.lb-nav a.lb-next {
  width: 64%;
  right: 0;
  float: right;
  background: url("../img/next.png") right 48% no-repeat;
  opacity: 0;
  transition: opacity 0.6s;
}

.lb-nav a.lb-next:hover {
  opacity: 1;
}

.lb-dataContainer {
  margin: 0 auto;
  padding-top: 5px;
  width: 100%;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}

.lb-dataContainer:after {
  content: "";
  display: table;
  clear: both;
}

.lb-data {
  padding: 0 4px;
  color: #ccc;
}

.lb-data .lb-details {
  width: 85%;
  float: left;
  text-align: left;
  line-height: 1.1em;
}

.lb-data .lb-caption {
  font-size: 13px;
  font-weight: bold;
  line-height: 1em;
}

.lb-data .lb-caption a {
  color: #4ae;
}

.lb-data .lb-number {
  margin-top: 15px;
  display: block;
  clear: left;
  padding-bottom: 1em;
  font-size: 13px;
  color: #999;
}

.lb-data .lb-close {
  display: block;
  float: right;
  width: 30px;
  height: 30px;
  background: url("../img/close.png") top right no-repeat;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.lb-data .lb-close:hover {
  cursor: pointer;
  opacity: 1;
}

/* ====== CUSTOM STYLE ====== */
.puisi {
  background: linear-gradient(45deg, #5F5F5F, #FFFFFF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 50px;
  font-weight: bold;
}

.ketansusu {
  -webkit-background-clip: unset;
}

.msg-for {
  color: #FFFFFF;
}

/* Calculator */
.calculator {
  width: 300px;
  margin: 50px auto;
  padding: 20px;
  background-color: #A5AAB3;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

input,
select,
button {
  width: 100%;
  padding: 10px;
  margin: 5px 0;
  font-size: 18px;
  border-radius: 5px;
  border: none;
}

button {
  background-color: #5EB4FF;
  color: white;
  cursor: pointer;
}

button:hover {
  background-color: #6FB7FF;
}