:root {
  --white: #FCFCFC;
  --gray: #CBCDD3;
  --dark: #777777;
  --error: #EF8D9C;
  --orange: #FFC39E;
  --success: #B0DB7D;
  --secondary: #99DBB4;
  --font: 'Lato', sans-serif;
}

@import url('https://fonts.googleapis.com/css?family=Lato:400,700');
.WAZIDPEDIA_alert {
  font-size: 0.9em;
  font-weight: 100;
  color: #FCFCFC;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 2px;
  position: relative;
  top:90%
}

.WAZIDPEDIA_boxmessage {
  top: 30%;
  position: relative;
  height: 35px;
}

.WAZIDPEDIA_alert_button {
  color: black;
  font-size: 0.9r;
  font-size: 0.9em;
  font-weight: 100;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 10px 10px;
  top: 10%;
}

.error {
  color: red;
}

.success {
  color: green;
}

.green {
  color: darken(#99DBB4, 20%);
}

.red {
  color: darken(#EF8D9C, 10%);
}


/* button, .WAZIDPEDIA_dot {
  cursor: pointer;
} */

.WAZIDPEDIA_dot {
  cursor: pointer;
}

.WAZIDPEDIA_success{
  color:green;
}

.WAZIDPEDIA_error{
  color:red;
}

.WAZIDPEDIA_success-box, .WAZIDPEDIA_error-box {
  position: absolute;
  width: 35%;
  height: 100%;
  background: linear-gradient(to bottom right, #B0DB7D 40%, #99DBB4 100%);
  border-radius: 20px;
  box-shadow: 5px 5px 20px rgba(#CBCDD3, 0.1);

  
}

.WAZIDPEDIA_success-box {
  width: 250px;
  height: 250px;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(to bottom right, #B0DB7D 40%, #99DBB4 100%);
  z-index: 1000000000;
}

.WAZIDPEDIA_error-box {
  width: 250px;
  height: 250px;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(to bottom left, var(--error) 40%, var(--orange) 100%);
  z-index: 1000000000;

}

.WAZIDPEDIA_dot {
  width: 8px;
  height: 8px;
  background: #FCFCFC;
  border-radius: 50%;
  position: absolute;
  top: 4%;
  right: 6%;
  cursor: pointer;
}

.WAZIDPEDIA_dot:hover {
  background: darken(#FCFCFC, 20%);
}


.WAZIDPEDIA_two {
  right: 12%;
  opacity: 0.5;
}

.WAZIDPEDIA_face, .WAZIDPEDIA_face2 {
  position: absolute;
  width: 22%;
  height: 22%;
  background: #FCFCFC;
  border-radius: 50%;
  border: 1px solid var(--dark);
  top: 21%;
  left: 37.5%;
  z-index: 2;
}

.WAZIDPEDIA_face {
  animation: bounce 1s ease-in infinite;
}

.WAZIDPEDIA_face2 {
  animation: roll 3s ease-in-out infinite;
}

.WAZIDPEDIA_eye {
  position: absolute;
  width: 5px;
  height: 5px;
  background: #777777;
  border-radius: 50%;
  top: 40%;
  left: 20%;

  &.right {
    left: 68%;
  }
}

.WAZIDPEDIA_mouth {
  position: absolute;
  top: 43%;
  left: 41%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
}

.WAZIDPEDIA_happy {
  border: 1px solid;
  border-color: #777777 transparent transparent #777777;
  transform: rotate(220deg);
}


.WAZIDPEDIA_sad {
  top: 49%;
  border: 2px solid;
  border-color: #777777 transparent transparent #777777;
  transform: rotate(45deg);
}

.WAZIDPEDIA_shadow {
  position: absolute;
  width: 21%;
  height: 3%;
  opacity: 0.5;
  background: #777777;
  left: 40%;
  top: 43%;
  border-radius: 50%;
  z-index: 1;
}

.WAZIDPEDIA_scale {
  animation: scale 1s ease-in infinite;
}

.WAZIDPEDIA_move {
  animation: move 3s ease-in-out infinite;
}

.WAZIDPEDIA_message {
  margin-top: 0px;
  position: relative;
  text-align: center;
  height: 30px;
  padding: 5px 5px;
  top: 40%;
}

.WAZIDPEDIA_button-box {
  position: absolute;
  background: #FCFCFC;
  width: 50%;
  height: 15%;
  border-radius: 20px;
  top: 80%;
  left: 25%;
  outline: 0;
  border: none;
  box-shadow: 2px 2px 10px rgba(#777777, 0.5);
  transition: all 0.5s ease-in-out;
}

.WAZIDPEDIA_button-box:hover {
  background: darken(#FCFCFC, 5%);
  transform: scale(1.05);
  transition: all 0.3s ease-in-out;
}


@keyframes bounce {
  50% {
     transform: translateY(-10px);
  }
}

@keyframes scale {
  50% {
    transform: scale(0.9);
  }
}

@keyframes roll {
  0% {
    transform: rotate(0deg);
    left: 25%;
  }
  50% {
    left: 60%;
    transform: rotate(168deg);
  }
  100% {
    transform: rotate(0deg);
    left: 25%;
  }
}

@keyframes move {
  0% {
    left: 25%;
  }
  50% {
    left: 60%;
  }
  100% {
    left: 25%;
  }
}

