/**
 * lists_special.htm — 404 / simple landing (preloader + full-height slider area + CTA).
 */

.preloader {
  background: #fff;
  bottom: 0;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 99999;
}

.spinner {
  width: 50px;
  height: 50px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -25px 0 0 -25px;
  font-size: 10px;
  text-indent: -12345px;
  z-index: 10000;
}

.double-bounce1,
.double-bounce2 {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #a12c34;
  opacity: 0.6;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-animation: sk-bounce 2s infinite ease-in-out;
  animation: sk-bounce 2s infinite ease-in-out;
}

.double-bounce2 {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}

@-webkit-keyframes sk-bounce {
  0%,
  100% { -webkit-transform: scale(0); }
  50% { -webkit-transform: scale(1); }
}

@keyframes sk-bounce {
  0%,
  100% {
    transform: scale(0);
    -webkit-transform: scale(0);
  }
  50% {
    transform: scale(1);
    -webkit-transform: scale(1);
  }
}

.status-mes h4 {
  color: #f7f7f7;
  position: relative;
  font-size: 24px;
  margin-top: 30px;
  text-transform: capitalize;
  letter-spacing: 1px;
}

.no-padding { padding: 0; }

.slider-area {
  position: relative;
  height: 100vh;
}

.slider-content {
  position: absolute;
  top: 10%;
  left: 10%;
  right: 10%;
}

.shuvo-btn {
  display: inline-block;
  border-radius: 50px;
  padding: 15px 47px;
  color: #fff;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.15rem;
  transition: all 0.5s;
  position: relative;
  overflow: hidden;
  z-index: 1;
  text-transform: uppercase;
}

.shuvo-btn::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ff4f5b;
  border-radius: 50px;
  z-index: -2;
}

.shuvo-btn::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: #a12c34;
  transition: all 0.5s ease;
  border-radius: 50px;
  z-index: -1;
}

.shuvo-btn:hover { color: #fff; }
.shuvo-btn:hover::before { width: 100%; }
