body {
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.5;
}

.hide {
  display: none !important;
}

.transition {
  transition: all 0.8s ease; /* You can adjust the duration and timing function as needed */
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.gradient {
  --size: 250px;
  --speed: 10s;
  --easing: cubic-bezier(0.8, 0.2, 0.2, 0.8);
  position: absolute;
  z-index: -1;
  width: var(--size);
  height: var(--size);
  filter: blur(calc(var(--size) / 5));
  background-image: linear-gradient(hsla(158, 82%, 57%, 0.85), hsl(252, 82%, 57%));
  animation: rotate var(--speed) var(--easing) alternate infinite;
  border-radius: 30% 70% 70% 30%/30% 30% 70% 70%;
}

@media (min-width: 720px) {
  .gradient {
    --size: 500px;
  }
}
body.animate-color {
  background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
  background-size: 400% 400%;
  animation: gradient 15s ease infinite;
  border-radius: 50%;
}

.btn-icon {
  display: flex;
  align-items: center;
  margin: auto;
}
.btn-icon img {
  width: 30px;
  heightlive: 30px;
}

select {
  box-sizing: border-box;
  padding: 18px 39px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  border: 2px solid #f0f0f0;
  width: 422px;
  padding-left: 13px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
}

@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
p.msg-extra-txt {
  font-size: 14px;
}

.center {
  text-align: center;
  margin: auto;
  display: block;
}

.message {
  border: 0px;
  font-size: 12px;
  padding: 6px;
}
.message.error {
  color: #cc5050;
}

.center {
  text-align: center;
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
  display: flex;
  justify-content: center; /* Center horizontally */
  align-items: center; /* Center vertically */
}

.modal-content {
  background-color: #fff;
  padding: 20px;
  border-radius: 5px;
  text-align: center;
}

.alert {
  position: fixed;
  top: 0px;
  left: 0px;
  padding: 15px;
  background-color: white;
  text-align: center;
  width: 100%;
}
.alert.success {
  background-color: #5fb763;
  color: white;
}
.alert.error {
  background-color: #c95940;
  color: white;
}
.alert.info {
  background-color: #2196F3;
  color: white;
}

.clearfix {
  margin-top: 50px;
}

.clearfix-10px {
  margin-top: 10px;
}

.opacity-0-5 {
  opacity: 0.5 !important;
}

.form-container .form-control {
  display: block;
  margin: auto;
  margin-top: 9px;
  padding: 18px 12px;
  border: 1px solid #c9cace;
  font-size: 16px;
  outline: 0px;
  width: 100%;
  border-radius: 4px;
  font-family: "Inter" !important;
  box-sizing: border-box;
}

.text-center {
  text-align: center !important;
}

.btn {
  border: 0px;
  padding: 10px;
  margin-top: 20px;
  /* display: inline-block; */
  padding: 16px 31px;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  color: #ffffff;
  transition: background-color 0.3s ease, transform 0.2s ease;
  border-radius: 5px;
}
.btn.btn-round {
  border-radius: 500px !important;
}
.btn.btn-small {
  margin: 10px;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
}
.btn.btn-primary {
  color: white;
  background-image: linear-gradient(-180deg, rgb(4, 152, 236) 0, rgb(4, 152, 236) 100%);
}
.btn.btn-white {
  color: #0498ec;
  background: white;
  border: 1px solid rgba(4, 152, 236, 0.431372549);
  cursor: pointer;
}
.btn.btn-white:hover {
  color: white;
  background-image: linear-gradient(-180deg, rgb(4, 152, 236) 0, rgb(4, 152, 236) 100%);
}
.btn.btn-danger {
  background-color: #cd5f5f !important;
}
.btn.btn-gray {
  color: gray;
}
.btn.btn-fill {
  width: 100%;
}

.nomargin {
  margin: 0px !important;
}/*# sourceMappingURL=global.css.map */