/* Coming soon */
/*==============
  [00] Page General css
=================*/
body {
  font-family: "Montserrat", sans-serif;
  background-color: black;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Montserrat", sans-serif;
}

@-webkit-keyframes spin {
  0% {
    Transform: rotate(0deg);
  }
  100% {
    Transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
    Transform: rotate(0deg);
  }
  100% {
    Transform: rotate(360deg);
  }
}
/*==============
  [01] Page css
=================*/
.page-section .particles-bg .particles-js-canvas-el {
  position: absolute;
}
.page-section .content-detail #timer {
  padding: 30px 0;
  color: #111;
  text-align: center;
  text-transform: uppercase;
  z-index: 5;
}
.page-section .content-detail #timer .date-box {
  margin: 8px;
  padding: 10px;
  width: 85px;
  height: 85px;
  display: inline-block;
  background-color: rgba(80, 118, 219, 0.99);
  font-size: 28px;
  font-weight: 600;
  z-index: 2;
  color: #fff;
  border-radius: 30px;
}
.page-section .content-detail #timer .text {
  font-size: 12px;
  font-weight: 500;
  color: #fff;
}
.page-section .content-detail .nav-details input::-webkit-input-placeholder {
  color: #bbb;
}
.page-section .content-detail .nav-details input::-moz-placeholder {
  color: #bbb;
}
.page-section .content-detail .nav-details input:-ms-input-placeholder {
  color: #bbb;
}
.page-section .content-detail .nav-details input::-ms-input-placeholder {
  color: #bbb;
}
.page-section .content-detail .nav-details input::placeholder {
  color: #bbb;
}

/* Responsive css */
@media (max-width: 575px) {
  .page-section .content-detail #timer {
    padding: 20px 0;
  }
  .page-section .content-detail #timer .date-box {
    margin: 8px;
    padding: 10px;
    width: 75px !important;
    height: 75px !important;
    font-size: 18px;
    border-radius: 15px !important;
  }
  .page-section .content-detail #timer .date-box .text {
    font-size: 11px !important;
  }
  .nav-details form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
/*# sourceMappingURL=coming-soon-page.css.map */