/* Common */
/*------------------------------------*/
.hide {
  display: none !important;
}

/* Modal */
/*------------------------------------*/
.modal-area{
  position: fixed;
  top: 0;
  left :0;
  width :100vw;
  height: 100vh;
  background: rgba(0, 0, 0, .68);
  z-index: 20;
}
.modal-area .modal-frame {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate3d(-50%, -50%, 0);
  width: 100%;
  height: auto;
  max-width: 80%;
  max-height: 80%;
  padding: 20px;
  background-color: #ffffff;
  border-radius: 5px;
}
.modal-area .text{
  margin: 0;
}
.modal-area .buttons{
  text-align: center;
  margin-top: 30px;
}
.modal-area .buttons .button{
  display: inline-block;
  background-color: $brand_color;
  border-radius: 100px;
  font-size: 16px;
  font-weight: 600;
  padding: 10px 20px;
  line-height: 1;
  color: #ffffff;
  margin: 10px 0 0 0;
}
.modal-area .buttons .button:hover{
  opacity: 0.7;
}
.modal-area .buttons .button.close{
  background-color: #666666;
  border-color: #666666;
}

@media (min-width: 768px) {
  .modal-area .buttons .button{
    margin: 0 10px 0 10px;
    width: 160px;
  }
  .modal-area .modal-frame {  
    width: auto;
  }
}

/* Loading */
/*------------------------------------*/
.loader-area{
  position: fixed;
  top: 0;
  left :0;
  width :100vw;
  height: 100vh;
  background: rgb(45, 45, 45);
  z-index: 999999999999;
}
.loader-area .loader-frame {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate3d(-50%, -50%, 0);
  width: 5em;
  height: 5em;
}
.loader-area .loader,
.loader-area .loader:after {
  border-radius: 50%;
  width: 100%;
  height: 100%;
}
.loader-area .loader {
  margin: 60px auto;
  font-size: 10px;
  position: relative;
  text-indent: -9999em;
  border-top: 1.1em solid rgba(0, 0, 0, 0.2);
  border-right: 1.1em solid rgba(0, 0, 0, 0.2);
  border-bottom: 1.1em solid rgba(0, 0, 0, 0.2);
  border-left: 1.1em solid #ffffff;
  transform: translateZ(0);
  animation: load8 1.1s infinite linear;
  margin: 0;
}
