/**=====================
    3.8 Comingsoon CSS Start
==========================**/
.comingsoon-bgimg {
  background: url(../images/other-images/coming-soon-bg.jpg);
  background-position: bottom;
  background-size: cover;
}

.basic-comingsoon {
  background: url(../images/other-images/comingsoon.png);
  background-position: center;
  background-size: cover;
}

.comingsoon {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 50px 0;

  .comingsoon-inner {
    h5 {
      font-size: 18px;
      letter-spacing: 1px;
      color: $theme-body-sub-title-color;
      font-weight: 500;
      margin-bottom: 20px;
      margin-top: 20px;
    }

    .countdown {
      padding: 30px 0;
      border-top: 1px solid $light-color;

      .time {
        @include pixelstrap-size(100px, 100px);
        background-color: var(--theme-default);
        border-radius: 50%;

        @include pixelstrap-flex(flex, center, center) {
          color: $white;
          font-weight: 500;
          font-size: 36px;
        }
      }

      .title {
        padding-top: 13px;
        font-size: 14px;
        font-weight: 400;
        color: $theme-body-sub-title-color;
        text-transform: uppercase;
        letter-spacing: 1px;
      }

      ul li {
        display: inline-block;
        text-transform: uppercase;
        margin: 0 20px;

        span {
          display: block;
        }
      }
    }
  }

  video {
    position: fixed;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    @include pixelstrap-size(auto, auto);
    z-index: -100;
    transform: translateX(-50%) translateY(-50%);
    transition: 1s opacity;
  }
}

/**=====================
  3.8 Comingsoon CSS Ends
==========================**/