.App {
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
}

html {
  width: 100%;
  height: 100%;
  background-color: white;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

body {
  margin: 0;
  padding: 0;
  text-align: center;
  width: inherit;
  height: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: 'Roboto', sans-serif;
}

html,
body {
  overscroll-behavior-y: contain;
  touch-action: none;
  overflow: hidden;
}

button {
  border: none;
}

.display-none {
  display: none;
}

#facetec-logo {
  max-width: 200px;
}

#image-home {
  height : 70%;
  width: auto;
}

#controls {
  width: 100%;
  padding: 20px 0;
  max-width: 100%;
  margin: 0 auto;
  border: 2px solid rgb(65, 127, 178);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  z-index: 0;
  background-color:white
}

.big-button {
  width: 40%;
  height: 40px;
  margin: 10px auto 0;
  color: white;
  background: rgb(65, 127, 178);
  border-radius: 8px;
  font-size: 20px;
  font-weight: 500;
  transition: all 0.3s ease-out;
  cursor: pointer;
  outline: none;
}

@media (hover: hover) {
  .big-button:hover:enabled,
  .medium-button:hover:enabled {
    background-color: rgb(95, 157, 208);
    color: white !important;
    transition: all 0.3s ease-out;
  }
}

#status {
  color: rgb(64, 127, 178);
  margin: 20px auto 0;
  display: none;
  font-size: 18px;
  background-color: rgba(65, 127, 178, 0.15);
  width: 90%;
  display: block;
  border-radius: 4px;
  padding: 8px;
}

.wrapping-box-container {
  position: fixed;
  margin: 0 auto;
  width: 100%;
  height: auto;
  color: #fff;
  padding: 10px;
  transition: opacity 800ms;
}

#custom-logo-container {
  margin: 20px auto;
}

#custom-logo-container img {
  max-height: 70px;
  width: auto;
  height: auto;
  text-align: center;
  position: relative;
  padding-right: 4px;
}

button:disabled {
  cursor: not-allowed;
  color: #ddd;
  border-color: #ddd;
}

a {
  text-decoration: none;
  color: inherit;
}

@font-face {
  font-family: "League Spartan";
  src: local("League Spartan"),
   url("./fonts/LeagueSpartan-VariableFont_wght.ttf") format("truetype");
}

.ql-font-Roboto {
  font-family: Roboto;
}

.ql-font-LeagueSpartan {
  font-family: League Spartan;
}

.react-datepicker-wrapper{
  width: 100%;
}