@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

body {
  height: 100%;
  background-position: center;
  font-family: 'Roboto', sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
}

body > .container {
  background-color: rgb(255 255 255 / 70%);
}

.form-section{
  padding: 10px 0px;
  /* margin: 30px 0px; */
  border-bottom: 1px solid #E4E5EC; 
}

.required::after {
  content: ' *';
  color: red
}

input[type=text] {
  text-transform: uppercase;
}

input[type=email] {
  text-transform: lowercase;
}

.loading {
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 100;
  display: grid;
  align-content: center;
  justify-items: center;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0,0,0,.5);
}
.loading-wheel {
  width: 20px;
  height: 20px;
  border-width: 30px;
  border-radius: 50%;
  -webkit-animation: spin 1s linear infinite;
}
.loading-text {
  color: #fff;
  font-size: 2rem;
}
.style-2 .loading-wheel {
  border-style: double;
  border-color: #ccc transparent;
}
@-webkit-keyframes spin {
  0% {
      -webkit-transform: rotate(0);
  }
  100% {
      -webkit-transform: rotate(-360deg);
  }
}


.select2 {
    max-width: 100%;
    width: 100% !important;
    height: calc(1.5em + .75rem + 2px);
}

/* Match Select2 container to Bootstrap 4 form-control */
.select2-container .select2-selection--single {
  height: 38px;
  padding: 6px 12px;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  background-color: #fff;
  font-size: 1rem;
  line-height: 1.5;
  transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

/* Placeholder color */
.select2-container--default .select2-selection--single .select2-selection__placeholder {
  color: #6c757d;
  line-height: 26px;
}

/* Remove default Select2 arrow, use input-style arrow */
.select2-container--default .select2-selection--single .select2-selection__arrow {
  /* height: 36px; */
  right: 7px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
  border-color: #495057 transparent transparent transparent;
  border-width: 5px 4px 0 4px;
  margin-left: -4px;
  margin-top: 5px;
}

/* When focused */
.select2-container--default .select2-selection--single:focus,
.select2-container--default .select2-selection--single.select2-selection--focus {
  border-color: #80bdff;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0,123,255,.25);
}

/* Dropdown matches Bootstrap 4 */
.select2-container .select2-dropdown {
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  box-shadow: 0 0.5rem 1rem rgba(0,0,0,.15);
  margin-top: 2px;
}

/* Adjust results for better look */
/* .select2-container .select2-results__option {
  padding: 6px 12px;
  font-size: 1rem;
} */

/* Highlight on hover/focus */
.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background-color: #007bff;
  color: #fff;
}

/* For multiple select, match input styling */
.select2-container--default .select2-selection--multiple {
  min-height: 38px;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  background-color: #fff;
  padding: 3px 7px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
  background-color: #007bff;
  color: #fff;
  border: none;
  border-radius: 0.25rem;
  padding: 2px 8px;
  margin-top: 3px;
  margin-right: 3px;
  font-size: 0.95rem;
}
#toTop {
  display: none;
  text-decoration: none;
  position: fixed;
  bottom: 26px;
  right: 2%;
  overflow: hidden;
  z-index: 999;
  width: 40px;
  height: 40px;
  border: none;
  text-indent: 100%;
  background: url("../images/up.png") no-repeat 0px 0px;
  background-size: 40px;
}

#toTopHover {
  width: 40px;
  height: 40px;
  display: block;
  overflow: hidden;
  float: right;
  opacity: 0;
  -moz-opacity: 0;
  filter: alpha(opacity=0);
}

@media print {
  #toTop {
    display: none !important;
  }
}