:root {
  --primary-color-text : white;
  --primary--color-light-text :rgb(225, 225, 225);
}
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  text-decoration: none;
  border: none;
  background: transparent;
}
/* body */
body {
  background-image: url("../img/bg.png");
  background-size: 100% 100%;
  height: 100vh;
  overflow-y: hidden;
}
.contentBody {
  height: 100%;
  width: 100%;
  background: rgba(30, 30, 30, 0.76);
}
/* helper */
.center {
  display: flex;
  justify-content: center;
  align-items: center;
}
.centerC {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
/* loading */
.spin {
  position: fixed;
  top: 80px;
  left: 7%;
  width: 86%;
  display: flex;
  justify-content: center;
}
.spin img {
  max-width: 450px;
  width: 92%;
}
/* logical */

.hidden {
  display: none;
}
/* cursor */
button, a,select, input[type="date"] {
  cursor: pointer;
}

/* error */
.bodyError {
  position: fixed;
  right: 0;
  top: 10px;
  z-index: 10;
}
.error {
  background: #d8151594;
  padding: 10px 30px;
  color: white;
  font-family: Georgia, 'Times New Roman', Times, serif;
  display: flex;
  justify-content: center;
  align-items: center;
}