@charset "UTF-8";

/* coming soon */
#coming_soon {
  height: 90vh;
  display: -webkit-flex;
  -webkit-flex-direction: column;
  -webkit-justify-content: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#coming_soon .icon_coming_soon {
  width: 80px;
  margin: 0 auto;
}
.shake {
  display: inline-block;
  animation: shake .1s  infinite;
}
@keyframes shake {
  0% {transform: translate(0px, 0px) rotateZ(0deg)}
  25% {transform: translate(1px, 1px) rotateZ(1deg)}
  50% {transform: translate(0px, 1px) rotateZ(0deg)}
  75% {transform: translate(1px, 0px) rotateZ(-1deg)}
  100% {transform: translate(0px, 0px) rotateZ(0deg)}
}
#coming_soon .title_error {
  font-size: 56px;
  line-height: 56px;
  margin-top: 16px;
  text-align: center;
}
#coming_soon .description_error {
  text-align: center;
  margin-top: 24px;
  line-height: 27px;
}
#coming_soon .button_site_top {
  width: 280px;
  position: relative;
  margin: 32px auto 0;
  display: block;
  border: solid 2px #27314a;
  text-align: center;
  border-radius: 80px;
  font-size: 15px;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  padding: 16px 0;
}
#coming_soon .button_site_top:hover {
  background: #27314a !important;
  color: #fff !important;
}

/*---------------------------------------------------------------*\
$1500px
\*---------------------------------------------------------------*/
@media screen and (min-width: 1500px) {
}

/*---------------------------------------------------------------*\
$1200px
\*---------------------------------------------------------------*/
@media screen and (max-width: 1200px) {
}

/*---------------------------------------------------------------*\
$1080px
\*---------------------------------------------------------------*/
@media screen and (max-width: 1080px) {
}

/*---------------------------------------------------------------*\
$860px
\*---------------------------------------------------------------*/
@media screen and (max-width: 860px) {
}

/*--------------------------------------------------------------*\
$600px
\*---------------------------------------------------------------*/
@media screen and (max-width: 600px) {

  /* coming soon */
  #coming_soon .icon_coming_soon {
    width: 40px;
  }
  #coming_soon .title_error {
    font-size: 32px;
    line-height: 32px;
  }
  #coming_soon .description_error {
    line-height: 25px;
    font-size: 13px;
  }
  #coming_soon .button_site_top {
    font-size: 12px;
    margin-top: 24px;
    padding: 12px 0;
  }
}

/*---------------------------------------------------------------*\
$360px
\*---------------------------------------------------------------*/
@media screen and (max-width: 360px) {
}