/*************
     Modal
*************/
.splash_modal {
  height: 100%;
  width: 100%;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  background-color: #00aed0;
  z-index: 9999;
  color:#fff;
  display: none;
}

.splash_modal .close {
  color:#fff;
  z-index: 999;
  cursor: pointer;
  text-decoration: underline;
}
.splash_modal .content{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 100vh;
  padding:20px;
}
.splash_modal .content img#splash{
  width: 100%;
  height: auto;
  max-width: 706px;
  padding:20px
}