@font-face {
  font-family: lato;
  src: url("fonts/Lato-Regular.ttf");
}

* {
  font-family: lato;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: rgb(249 250 251);
  user-select: none;
}

.button {
  display: inline-block;
  height: 1.25rem;
  padding-left: 1rem;
  padding-right: 1rem;

  padding-top: 0.5rem;
  padding-bottom: 0.5rem;

  text-align: center;

  border-radius: 6px;
}

.table-head {
  background: #12ae9b;
  font-weight: bold;
  color: #fff;
}

.card {
  background-color: #deeeec;
}

.clickable {
  color: #1c64f2;
  cursor: pointer;
}

.text-input {
  width: 25%;
  padding: 0.5rem;
  outline: none;
  border-radius: 3px;
  border: 1px solid rgb(211, 208, 208);
}

.closeModal {
  position: absolute;
  top: 0.4em;
  right: 0.4em;
  height: 2em;
  cursor: pointer;
  z-index: 13;
}

.overlayBackground {
  background: rgba(0, 0, 0, 0.507);
  position: fixed;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 8;
  display: none;
}

#preLoader {
  background: black url(../../../static/icons/preloader.gif) no-repeat center
    center;
  opacity: 0.5;
  background-size: 15%;
  height: 40vh;
  width: 20%;
  position: fixed;
  top: 30%;
  left: 40%;
  z-index: 1001;
}

#back {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4em;
  padding: 0.4em;
  width: 6em;
  height: 2.2em;
  background: #fee4e2;
  color: red;
  border-radius: 0.3em;
  cursor: pointer;
}

#header {
  border-bottom: 1px solid #98e0d8;
  padding: 0.4em;
}

#header h3 {
  text-align: center;
}

/* .closeModal svg:hover {
} */

@media only screen and (max-width: 480px) {
  #preLoader {
    background: black url(../../../static/icons/preloader.gif) no-repeat center
      center;
    opacity: 0.5;
    background-size: 15%;
    height: 30vh;
    width: 15em;
    position: fixed;
    top: 30%;
    left: 20%;
    z-index: 1001;
  }
}
