.loading_wrap {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #fff;
  display: block;
  position: absolute;
}

.loader_logo {
  height: 80px;
  width: 80px;
  position: absolute;
  left: calc(50% - 50px);
  top: 38%;
}

.loader_logo img {
  height: 100%;
  width: 100%;
}

.loading {
  border: 3px solid rgba(102, 51, 153, 0.45);
  position: absolute;
  left: calc(50% - 40px);
  top: 50%;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  border-top-color: #8b5cf6;
  animation: loader 1s ease-in-out infinite;
  -webkit-animation: loader 1s ease-in-out infinite;
}

@keyframes loader {
  to {
    -webkit-transform: rotate(360deg);
  }
}

@-webkit-keyframes loader {
  to {
    -webkit-transform: rotate(360deg);
  }
}
/* .persian-font {
  font-size: 1.2em;
  padding: 0;
  line-height: 0.5;
} */
/*
.compact-form-group {
  margin-bottom: 0;
  padding: 0;
}

.compact-v-select {
  max-width: 100px;
  font-size: 10px;
  border-radius: 0.25rem;
}

.compact-v-select .vs__dropdown-toggle {
  padding: 0;

.is-invalid .compact-v-select {
  border-color: #dc3545;
} */
/* Custom Group Styling */
.custom-input-group {
  border: 1px solid #ced4da;
  border-radius: 4px;
  overflow: hidden;
  background-color: #f8f9fa; /* Light background for modern design */
}

/* Input Styling */
.payment-input {
  flex: 1;
  border: none;
  background-color: #f8f9fa;
  padding: 10px;
  height: 38px;
  font-size: 16px;
  border-right: 1px solid #ced4da;
}
/* Dropdown Styling */
.payment-dropdown {
  flex: 1;
  min-width: 50%;
  background-color: #f8f9fa;
  border: none;
  height: 38px;
  padding: 0;
  font-size: 16px;
  color: #495057;
}


.payment-dropdown .vs__dropdown-toggle {
  background-color: #f8f9fa !important;
  border: none !important;
  height: 38px !important;
}
.payment-dropdown .vs__actions {
  display: none; /* Hide clear button */
}


/* Hover and Focus States */
.payment-input:focus,
.payment-dropdown:focus-within {
  outline: none;
  box-shadow: 0 0 4px rgba(0, 123, 255, 0.5);
  border-color: #80bdff;
}

/* Error Styling */
.is-invalid {
  border-color: #e3342f !important;
  box-shadow: 0 0 4px rgba(227, 52, 47, 0.5) !important;
}

.b-form-invalid-feedback {
  font-size: 14px;
  color: #e3342f;
}
