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

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

.iconContainer {
  /* border: 1px solid #fff; */
  padding: 0.2em;
  width: 2.5em;
  height: 2.5em;
  margin-left: 0.2em;
  display: flex;
  align-items: center;
  justify-content: center;
}

.button {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 2.2em;
  cursor: pointer;
  text-align: center;
  padding: 0.4em;
  border: none;
  border-radius: 0.3em;
}

.modalContainer {
  background: rgba(0, 0, 0, 0.493);
  height: 100vh;
  width: 100vw;
  position: fixed;
  top: 0;
  display: none;
  z-index: 50;
}

.modalContainer .modal {
  background: #fff;
  border-radius: 0.3em;
  position: fixed;
  top: 5%;
  height: 85vh;
  padding: 0.4em;
}

.modalContainer .modal > h3 {
  text-align: center;
  margin-top: 2em;
}

.closeModalBtn {
  height: 2em;
  cursor: pointer;
  position: absolute;
  top: 0.4em;
  right: 0.4em;
}

.closeModalBtn:hover svg {
  color: #cb2027;
}

.wrapper {
  margin: 0.5em 0;
}

.wrapper label {
  display: block;
  margin: 0.4em 0;
}

.wrapper input,
.wrapper select,
.wrapper textarea {
  width: 100%;
}

.wrapper select {
  cursor: pointer;
}

.textInput {
  padding: 0.6em;
  border-radius: 0.3em;
  border: 1px solid #adaccc;
  outline: none;
  background: none;
}

.tableHeading {
  background: #01004c;
  color: #fff;
}

.clickable {
  color: #0081ff;
  cursor: pointer;
}

.preLoader {
  width: 16%;
  height: 25%;
  background: rgba(0, 0, 0, 0.514);
  position: fixed;
  top: 25%;
  left: 45%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.preLoader #loadingIcon {
  width: 4em;
  height: 4em;
}

.preLoader #loadingIcon svg {
  height: 8em;
  width: 8em;
  color: #29298b;
}
