
:root
{
  --teal: #2ec1ac;
  --teal_hover: #279e8c;
}

*{
  font-family: "Poppins", sans-serif;
}
  
.h-font{
  font-family: "Poppins", sans-serif;
}
  
/* remove arrow number */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
-webkit-appearance: none;
margin: 0;
}
/* Firefox */
input[type=number] {
-moz-appearance: textfield;
}

.custom-bg{
  background-color: var(--teal);
  border: var(--teal);
}

.custom-bg:hover{
  background-color: var(--teal_hover);
  border-color: var(--teal_hover);
}
  
.h-line{
  width: 150px;
  margin: 0 auto;
  height: 1.7px;
}

.custom-alert{
position: fixed;
top: 25px;
right: 25px;
}

