body {
  margin: 0;
  width: 100%;
  /* background-color: #1a2027; */
  background: var(--body-bg);
  font-family:"Inter",'Montserrat', sans-serif;/*Verdana, Geneva, Tahoma, sans-serif;*/
  font-size : 14px;
  height: 100vh;
  display: flex;
  flex-direction: column;
  /* border: 1px solid rgb(43, 180, 1); */
}

.tooltip-button{
  display: flex;
  appearance: none;
  background:none;
  border: none;
}

.tooltip-button:focus {
  outline: none;
}

/* ==================== LOGIN FORM FROM BOOTSTRAP ============================= */
.divider:after,
.divider:before {
  content: "";
  flex: 1;
  height: 1px;
  background: #eee;
}
.h-custom {
  height: calc(100% - 73px);
}
@media (max-width: 450px) {
  .h-custom {
    height: 100%;
  }
}

.card-mine {
  flex: 1;
  margin: auto;
  width: 400px;
}

/* Sweetalert popup custom css */
/* Add some spacing to the top and right of the popup */
.custom-popup-class {
  margin-top: 50px; /* Adjust the top margin as needed */
  margin-right: 50px; /* Adjust the right margin as needed */
}

/* ============================= Terms and Policy =================================== */

.terms_overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 8;
}
.terms_overlay-content {
  background-color: var(--upload-button-bg);
  padding: 20px;
  border-radius: 10px;
  color: var(--main-text-color);
  overflow: auto;
}
.terms-container{
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 45%;
  height: 70%;
  padding: 20px;
  background-color: var(--main-bg-color);
  border-radius: 10px;
}
.terms-container form{
  margin: auto;
  width: 60%;
  padding: 20px;
  color: var(--main-text-color);
  text-align: center;
}

.terms-container form button{
  margin-top: 20px;
  outline: none;
  border: none;
  border-radius: 3px;
  box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
  padding: 5px 30px;
}

.terms-container form button:hover{
  background-color: #d1d1d1;
  transition: all 0.5s;
}

.terms-container form button:focus{
  outline: none;
}

.terms_overlay-content h1 {
  margin-top: 0;
}
.terms_overlay-content p {
  text-align: left;
}
.terms_overlay-content input[type="checkbox"] {
  margin: 20px 0;
}
.terms_overlay-content button {
  padding: 10px 20px;
  font-size: 16px;
}



.no-select {
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.scale-on-hover{
  transition: all 0.3s ease-in-out;
}

.scale-on-hover:hover{
  transform: scale(1.04);
}