.floating-label {
  top: 18px !important;
  left: 6px !important;
  position: relative !important;
  background-color: white !important;
  padding: 0px 5px 0px 5px !important;
  font-size: 1.1em !important;
  z-index: 10 !important;
}

.fieldset-no-margin {
  margin-bottom: 0 !important;
}

ul.no-bulltes-list {
  list-style-type: none;
}

.btn-blue {
  height: 44px !important;
  width: 180px !important;
  background: #0a65cf !important;
  border: 2px solid #0a65cf !important;
  box-sizing: border-box !important;
  border-radius: 5px !important;
}

.btn-white {
  height: 44px !important;
  width: 180px !important;
  border: 0 !important;
  background: #ffffff !important;
  color: #0a65cf !important;
  box-sizing: border-box !important;
  border-radius: 5px !important;
}

.vgt-table.striped tbody tr:nth-of-type(even) {
  background-color: #f9fafc !important;
}

.vgt-table.striped tbody tr:nth-of-type(odd) {
  background-color: #ffffff !important;
}

.user-icon-size {
  width: 18px;
  height: 19px;
}

.font-size-24 {
  font-size: 24px !important;
}

.modal-header {
  border-bottom: 0 !important;
}

.modal-footer {
  border-top: 0 !important;
}

.loading {
  position: fixed;
  z-index: 999;
  overflow: show;
  margin: auto;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 50px;
  height: 50px;
}

.loading:before {
  content: '';
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
}

.loading:not(:required) {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}

.loading:not(:required):after {
  content: '';
  display: block;
  font-size: 10px;
  width: 70px;
  height: 70px;
  margin-top: -0.5em;
  border: 10px solid #0a65cf;
  border-radius: 100%;
  border-bottom-color: transparent;
  -webkit-animation: spinner 1s linear 0s infinite;
  animation: spinner 1s linear 0s infinite;
}

.active .dropdown-item {
  color: #0a65cf !important;
}

.dropdown-item {
  font-weight: 600 !important;
}

#btnShowPassword,
#btnShowPasswordConfirm {
  background-color: transparent !important;
  border: 1px solid #ced4da;
  border-left: none !important;
}

.input-password {
  border-right: none !important;
}

.round-border {
  border-radius: 20px !important;
}

/* Toast */
.custom-toasted-top-right {
  top: 8px !important;
  right: 10px !important;
}
.custom-toasted {
  background: #b21717 !important;
  padding: 20px !important;
}
.custom-toasted-success {
  background: #27ae60 !important;
  padding: 20px !important;
}

.custom-toasted .mdi,
.custom-toasted-success .mdi {
  font-size: 34px !important;
}

/* OTP */

.vue-pincode-input {
  height: 66px !important;
  line-height: 66px !important;
  width: 48px !important;
  font-size: 48px !important;
  font-family: 'Montserrat' sans-serif !important;
}

/* Cards */
.custom-card-border-radius {
  border-radius: 15px !important;
}

/* Icon Colors */
.blue-icon {
  color: #0a65cf;
  cursor: pointer;
  font-size: 18px;
}

/* Font Sizes */

.font-small {
  font-size: 12px;
}

.font-medium {
  font-size: 16px;
}

.font-large {
  font-size: 20px;
}

/* Font Colors */
.font-white {
  color: #ffffff;
}

.font-black {
  color: #000000;
}

.font-blue {
  color: #0a65cf;
}

.font-gray {
  color: #90a0b7;
}

.font-red {
  color: #ef6068;
}

.color-light-gray {
  color: #a5afc0;
}

/* Background Colors */
.blue-bg {
  background-color: #0a65cf;
}

.white-bg {
  background-color: white;
}

/* Font Weight */
.font-weight-500 {
  font-weight: 500;
}

.font-weight-600 {
  font-weight: 600;
}

/* Font Decoration */
.text-underline {
  text-decoration: underline;
}

/* Pincode Input */

.font-red input {
  color: #ef6068 !important;
  box-shadow: none;
  border: 1px solid #ef6068;
}

@-webkit-keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-moz-keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-o-keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

/* For Small Phone Sceens (<374px) */
@media only screen and (max-width: 374px) {
  .welcome-col {
    display: none !important;
  }
}

/* For Large Phone Screens (>=375px) */
@media only screen and (min-width: 375px) and (max-width: 767px) {
  .welcome-col {
    display: none !important;
  }
}

/* For Tablet/Medium Screens (>=768px) */
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .welcome-col {
    display: none !important;
  }
}

/* For Large Screens (>=992px) */
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .success-col {
    min-height: 100vh !important;
    height: 100% !important;
  }
}

/* For Extra Large Screens (>=1200px) */
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .success-col {
    min-height: 100vh !important;
    height: 100% !important;
  }
}

/* For Extra Extra Large Screens (>=1400px) */
@media only screen and (min-width: 1400px) and (max-width: 2559px) {
  .success-col {
    min-height: 100vh !important;
    height: 100% !important;
  }
}

/* For UHD Screens (>=2560px) */
@media only screen and (min-width: 2560px) {
}
