/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v7.0.29,
* Autoprefixer: v9.7.6
* Browsers: last 4 version
*/

body,
html {
  margin: 0;
  padding: 0;
}
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
p {
  margin: 0;
}
button {
  cursor: pointer;
}
.container {
  width: 100vw;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
}

p {
  color: #777777;
}
b {
  font-weight: bold;
}
a {
  text-decoration: none;
  color: #ff0000;
}

#left-container {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  min-width: 330px;
  height: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  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;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
}

/* 
    ALL IMAGE AND MODAL CONTAINERS
*/
.mini-image-container {
  position: absolute;
}

.upper {
  top: 0;
}
.y-center {
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.lower {
  bottom: 0;
}

.left {
  left: 0;
}
.x-center {
}

.right {
  right: 0;
}
@media screen and (max-width: 1120px) {
  .y-center {
    display: none;
  }
}

@media screen and (max-width: 720px) {
  .left,
  .right {
    display: none;
  }
}
.mini-modal {
  position: absolute;
  -webkit-box-shadow: 0 5px 25px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 5px 25px 0 rgba(0, 0, 0, 0.1);
  background-color: #ffffff;
  padding: 41px 45px 32px 45px;
  min-width: 240px;
  text-align: center;
}
.mini-modal p {
  min-height: 20px;
}
.mini-modal .close {
  position: absolute;
  top: 10px;
  right: 10px;
}
/** 
  POSITION MINI MODAL
**/
.upper .mini-modal {
  top: 100%;
}
.y-center .mini-modal {
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.lower .mini-modal {
  bottom: 100%;
}

.left .mini-modal {
  left: 100%;
}

.x-center .mini-modal {
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
.right .mini-modal {
  right: 100%;
}
.mini-image-container button {
  background: none;
  border: none;
}
.mini-image-container img {
  -webkit-animation: fadeIn 1s;
  animation: fadeIn 1s;

  width: 100%;
  max-width: 300px;
  position: relative;
}

/* 
  MAIN CONTENT IN THE MIDDLE OF THE PAGE
*/
#ev-title {
  width: 195px;
}

#google-button-container {
  margin-top: 35px;
  cursor: pointer;
  z-index: 3;
}

#google-button {
  width: 131px;
}

#under-button-text {
  text-align: center;
  width: 360px;
  line-height: 1.3;
  margin: 35px 0 12px;
}
#under-button-text p {
  min-height: 20px;
}

#loading-cover {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 10;
  background-color: white;
}

#right-container {
  width: auto;
  max-width: 764px;
  height: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

@media (max-width: 780px) {
  #right-container {
    display: none;
  }
  #left-container {
    width: 100%;
  }
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.fade-out {
  opacity: 0;
  -webkit-animation: fadeOut 1s;
  animation: fadeOut 1s;
}

@-webkit-keyframes fadeOut {
  0%,
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes fadeOut {
  0%,
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
