.body-lock {
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  overflow: hidden;
}

#bl-section {
  position: fixed;
  z-index: 999999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  background-color: rgba(0, 0, 0, 0.7);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

#bl-section.is-active {
  opacity: 1;
  visibility: visible;
}

.bl-window {
  width: 100%;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.bl-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}

.bl-loading {
  pointer-events: none;
  position: absolute;
  width: 200px;
  height: 200px;
  z-index: 10;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgb(255, 255, 255);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.bl-loading.is-active {
  opacity: 1;
  visibility: visible;
}

.bl-img {
  position: relative;
}

.bl-img__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 1;
}

.bl-img__img.is-hidden {
  opacity: 0;
}

.bl-title {
  margin-top: 5px;
  opacity: 1;
  visibility: visible;
}

.bl-title.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.bl-title__text {
  display: block;
  color: rgb(255, 255, 255);
}

.bl-pagination {
  display: block;
  margin-top: 5px;
  color: rgb(255, 255, 255);
  font-size: 0.8rem;
}

.bl-pagination.is-hidden {
  display: none;
}

/* loader */
.bl-loading__loader {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
}

.loading-icon {
  height: 1.5rem;
  width: 1.5rem;
  animation: spin 2s linear infinite;
  stroke: rgba(107, 114, 128, 1);
  margin-right: 3px;
}

.loading-text {
  font-size: 0.75rem;
  line-height: 1rem;
  font-weight: 500;
  white-space: nowrap;
  color: rgba(107, 114, 128, 1);
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* navigator */
.bl-prev,
.bl-next {
  position: absolute;
  border: none;
  background-color: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
  min-width: 40px;
}

.bl-prev {
  left: 0;
}

.bl-next {
  right: 0;
}

.bl-prev .icon,
.bl-next .icon {
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.bl-prev.is-active .icon,
.bl-next.is-active .icon {
  opacity: 1;
  visibility: visible;
}

.bl-prev.is-hidden,
.bl-next.is-hidden {
  display: none;
}
