html {
  height: 100%;
  overflow-x: hidden;
  width: 100%;
}

*,
*:before,
*:after {
  box-sizing: inherit;
  letter-spacing: 0.3px;
}

body {
  padding: 0;
  margin: 0;
  background-color: #ffffff;
  font-family: "Roboto", sans-serif;
  overflow-x: hidden;
  width: 100%;
}

#bodyWrapper {
  visibility: hidden;
}

textarea,
input[type="text"],
input[type="tel"],
input[type="email"] {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
}
/* scroll bar style */

::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.9);
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.9);
  background-color: rgb(122, 122, 122);
}

::-webkit-scrollbar {
  width: 10px;
  background-color: rgb(0, 0, 0);
}

::-webkit-scrollbar-thumb {
  border-radius: 3px;
  background-color: #303030;
}

/* wrapper to surround flex elements */

.wrapper {
  display: flex;
  justify-content: space-evenly;
  flex-flow: row wrap;
  margin: 0;
  padding: 0;
}

/** Overlay */

.modalOverlay {
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 12;
}

.slideInLeft {
  -webkit-animation: slideInLeft 0.8s ease-out 1;
  -moz-animation: slideInLeft 0.8s ease-out 1;
  -o-animation: slideInLeft 0.8s ease-out 1;
  animation: slideInLeft 0.8s ease-out 1;
}

.slideInRight {
  -webkit-animation: slideInRight 0.8s ease-out 1;
  -moz-animation: slideInRight 0.8s ease-out 1;
  -o-animation: slideInRight 0.8s ease-out 1;
  animation: slideInRight 0.8s ease-out 1;
}

@-moz-keyframes slideInLeft {
  0% {
    transform: translateX(200%);
  }
  100% {
    transform: translateX(0);
  }
}

@-webkit-keyframes slideInLeft {
  0% {
    transform: translateX(200%);
  }
  100% {
    transform: translateX(0);
  }
}

@-ms-keyframes slideInRight {
  0% {
    transform: translateX(-200%);
  }
  100% {
    transform: translateX(0);
  }
}

@keyframes slideInLeft {
  0% {
    transform: translateX(200%);
  }
  100% {
    transform: translateX(0);
  }
}

@-moz-keyframes slideInRight {
  0% {
    transform: translateX(-200%);
  }
  100% {
    transform: translateX(0);
  }
}

@-webkit-keyframes slideInRight {
  0% {
    transform: translateX(-200%);
  }
  100% {
    transform: translateX(0);
  }
}

@-ms-keyframes slideInRight {
  0% {
    transform: translateX(-200%);
  }
  100% {
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  0% {
    transform: translateX(-200%);
  }
  100% {
    transform: translateX(0);
  }
}
