@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital@0;1&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
/* Montserrat Font */

form * {
  color: #555555;
  font-family: "Open Sans";
}

.autoPopulatingFields.opacity {
  opacity: 0.5;
  z-index: 3;
}

.captcha-wrapper {
  margin-bottom: 24px;
}

.header-content {
  display: flex;
  height: 60px;
  justify-content: space-between;
}

.required-text sup {
  color: #b11a1a !important;
}

.header-logo {
  width: 100%;
  object-fit: fill;
}

.invalidStudentId {
  width: 100%;
}

.loadAnimation {
  display: none;
  height: 100px;
  left: 30%;
  position: absolute;
  top: 50%;
  width: 100px;
  z-index: 5;
}

.loadAnimation::after {
  content: "";
  display: block;
  width: 75px;
  height: 75px;
  border: 15px solid #c6c6c6;
  border-top-color: #b11a1a;
  border-radius: 50%;
  animation: loading 0.75s ease infinite;
}

@keyframes loading {
  from {
    transform: rotate(0turn);
  }

  to {
    transform: rotate(1turn);
  }
}

.fees-form {
  max-width: 345px;
  min-width: 343px;
  position: relative;
}

.body-content {
  /* margin-block: 15px; */
  width: 100%;
}

.form-content {
  align-items: center;
  display: flex;
  flex-direction: column;
  margin: 29px auto 0px;
  width: fit-content;
}

.other-content {
  align-items: center;
  /* background: linear-gradient(180deg, #0078D4 34.87%, #034FA0 73.37%); */
  background: #BC2030;
  display: flex;
  flex-direction: column;
}

.other-content h1 {
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 48px;
  font-weight: bold;
  letter-spacing: -3%;
  line-height: 120%;
  margin: 0px 0px 7px;
}

.other-content h2 {
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 150%;
  margin: 0px 0px 32px;
}

.other-content-container {
  padding: 0px 18px 94px;

}

.oasisRadioContainer {
  display: flex;
  gap: 54px;
}

.oasisRadio {
  align-items: center;
  display: flex;
  gap: 14px;
}

.oasisRadio label {
  margin: 0px;
}

.oasisRadio .customRadio {
  border: solid #b0b0b0 2px;
  border-radius: 50%;
  height: 17px;
  position: relative;
  width: 17px;
  z-index: 1;
}

.oasisRadio input[type="radio"] {
  cursor: pointer;
  height: 20px;
  margin: 0px;
  opacity: 0;
  position: absolute;
  width: 20px;
  z-index: 2;
}

/* Create the checkmark/indicator (hidden when not checked) */
.customRadio:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the customRadio when checked */
input[type="radio"]:checked~.customRadio:after {
  display: block;
}

/* Style the customRadio/indicator */
.customRadio:after {
  background: #2678bd;
  border-radius: 50%;
  height: 9px;
  left: 2px;
  top: 2px;
  width: 9px;
}

#partialPaymentInfo.input-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
}

.partialPaymentOption {
  align-items: center;
  display: flex;
  gap: 10px;
}

.partialPaymentOption .input-text {
  max-width: 146px;
}

.partialPaymentOption .input-label {
  margin: 0px;
}

.partialPaymentCheckbox {
  align-items: center;
  display: flex;
  gap: 10px;
}

.partialPaymentCheckbox input[type="checkbox"] {
  cursor: pointer;
  height: 20px;
  margin: 0px;
  opacity: 0;
  position: absolute;
  width: 20px;
  z-index: 2;
}

.partialPaymentCheckbox .customCheck {
  border: solid #b0b0b0 2px;
  border-radius: 4px;
  display: block;
  height: 20px;
  position: relative;
  width: 20px;
  z-index: 1;
}

.partialPaymentCheckbox input[type="checkbox"]:checked~.customCheck {
  background-color: #2678bd;
  border: solid #2678bd 2px;
}

.partialPaymentCheckbox input[type="checkbox"]:disabled~.customCheck {
  background-color: #968d8d;
  border: solid #968d8d 2px;
}

/* Create the checkmark/indicator (hidden when not checked) */
.customCheck:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.partialPaymentCheckbox input[type="checkbox"]~.customCheck:after {
  display: block;
}

/* Style the checkmark/indicator */
.partialPaymentCheckbox .customCheck:after {
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

#checkboxError.invalidStudentId p {
  margin-left: 0px;
}

.headerAndForm {
  margin-bottom: 30px;
}

picture img {
  height: 100%;
  width: 100%;
}

h4 {
  margin: 0px;
}

.button-content {
  display: flex;
  justify-content: space-between;
}

.form-type-btn {
  height: 100px;
  width: 100px;
  background-color: transparent;
  border: 5px solid rgba(128, 0, 128, 0.205);
  font-size: 16px;
  color: purple;
  cursor: pointer;
}

.input-content {
  display: flex;
  flex-direction: column;
  margin-bottom: 12px;
}

.idAndButton .input-content {
  margin-bottom: 24px;
}

.input-text,
.dropdown {
  padding-left: 10px;
  width: 343px;
}

.invalidStudentId.hide {
  display: none;
}

.invalidStudentId p {
  color: #b11a1a !important;
  font-size: 14px;
  margin-left: 17px;
}

.invalidStudentId p sup {
  color: #b11a1a !important;
}

.input-text {
  width: calc(100% - 6px);
  height: 40px;
  border: solid #c6c6c6 1px;
  border-radius: 5px;
  background-color: #fff;
}

input.input-text::placeholder {
  color: #c6c6c6;
}

.input-label {
  font-size: 12px;
  font-weight: 600;
  margin: 0px;
  text-transform: uppercase;
}

.textarea-content {
  margin-bottom: 5px;
  padding-block: 5px;
}

.input-textarea {
  width: 100%;
  height: 80px;
  border: solid #c6c6c6 1px;
  border-radius: 5px;
}

.dropdown-content {
  display: flex;
  flex-direction: column;
  margin-bottom: 12px;
  padding-block: 5px;
}

.dropdown {
  width: 100%;
  height: 40px;
  background-color: #fff;
  border: solid #c6c6c6 1px;
  border-radius: 5px;
  word-wrap: break-word;
  white-space: normal;
}

.dropdown.firstDDHeight {
  min-height: 100px;
}

.dropdown.thirdDDHeight {
  min-height: 80px;
}

.dropdown-content.hide {
  display: none;
}

.dropdown-content.show {
  display: block;
}

.submit-content {
  text-align: center;
  width: fit-content;
}

.submit-btn {
  width: 202px;
  height: 43px;
  margin-top: 5px;
  border: none;
  border-radius: 30px;
  background-color: #BC2030;
  color: white;
  font-weight: 600;
}

.next-btn {
  width: 202px;
  height: 43px;
  margin-top: 5px;
  border: none;
  border-radius: 30px;
  background-color: #1766b0;
  color: white;
  font-weight: 600;
}

.prev-btn {
  width: 202px;
  height: 43px;
  margin-top: 5px;
  border: none;
  border-radius: 30px;
  background-color: #1766b0;
  color: white;
  font-weight: 600;
}

.idAndButton button {
  border: none;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 700;
  height: 43px;
  min-width: 202px;
}

.buttonAndInvalidMessage {
  align-items: center;
  display: flex;
  margin-bottom: 24px;
}

.submit-btn:hover {
  cursor: pointer;
}

.next-btn:hover {
  cursor: pointer;
}

.prev-btn:hover {
  cursor: pointer;
}

.top-banner {
  display: flex;
  justify-content: space-between;
}

.top-banner img {
  width: 20%;
  object-fit: contain;
}

.bottom-banner {
  display: flex;
  justify-content: space-between;
}

.bottom-banner img {
  width: 100%;
  object-fit: contain;
}

.emailContent {
  position: relative;
}

.emailContent .invalidStudentId p {
  margin-left: 0px;
  width: fit-content;
}

.navigation-buttons {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  margin-top: 20px;
}

@media only screen and (min-width: 480px) {
  .header-content .header-logo {
    width: 100%;
    aspect-ratio: unset;
  }

  .body-content {
    display: flex;
    flex-direction: column;
  }

  .form-type-btn {
    height: 176px;
    width: 130px;
  }

  .input-textarea {
    width: 90%;
    height: 60px;
  }
}

@media only screen and (min-width: 786px) {
  .invalidStudentId p {
    color: #b11a1a !important;
    font-size: 14px;
    margin: 0px 0px 5px 10%;
  }

  .fees-form {
    max-width: unset;
  }

  .header-content {
    height: 116px;
  }

  .button-content {
    justify-content: space-around;
  }

  .form-type-btn {
    height: 250px;
    width: 325px;
    font-size: 36px;
    border: 10px solid #800080;
  }

  .body-content {
    min-height: 403px;
  }

  .input-label {
    font-weight: 600;
  }

  .textarea-content {
    width: 95%;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .input-textarea {
    height: 60px;
  }

  /* .dropdown-content.show {
    display: flex !important;
  } */

  .submit-btn {
    border-radius: 30px;
    height: 42px;
    margin-top: 0px;
    width: 200px;
  }

  .next-btn {
    border-radius: 30px;
    height: 42px;
    margin-top: 0px;
    width: 200px;
  }

  .prev-btn {
    border-radius: 30px;
    height: 42px;
    margin-top: 0px;
    width: 200px;
  }

  input.input-text[name="oasisFees"] {
    height: 37px;
    min-width: 229px;
    padding-left: 10px;
    width: 20%;
  }

  .idAndButton .input-content {
    justify-content: flex-start;
    width: fit-content;
  }

  picture.headerImage img {
    max-height: 99px;
    max-width: 193px;
  }

  .headerAndForm {
    margin: 0px auto 60px;
  }

  .section2 {
    min-width: 400px;
    width: 100%;
  }
}

@media only screen and (min-width: 1024px) {
  .input-text {
    height: 37px;
    padding-left: 10px;
    min-width: 539px;
  }

  .input-label {
    min-width: 237px;
  }

  .fees-form {
    width: fit-content;
  }

  .form-content.lyceum {
    width: fit-content;
  }

  .idAndButton {
    display: flex;
    position: relative;
  }

  .idAndButton button {
    height: 43px;
    margin: 0px 0px 0px 45px;
    min-width: 199px;
  }

  .loadAnimation {
    left: 50%;
    top: 30%;
  }

  .dropdown {
    height: 37px;
    padding-left: 10px;
    width: 100%;
  }

  .invalidStudentId {
    bottom: 0px;
    left: 0px;
    position: absolute;
  }

  .invalidStudentId p {
    margin: -25px 0px 5px 237px;
  }

  .submit-content {
    margin-left: 237px;
    width: fit-content;
  }

  .next-content {
    margin-left: 237px;
    width: fit-content;
  }

  .prev-content {
    margin-left: 237px;
    width: fit-content;
  }

  #partialPaymentInfo.input-content {
    margin-left: 237px;
    min-width: 159px;
    width: fit-content;
  }

  .partialPaymentOption .input-text {
    min-width: 159px;
  }

  .oasisRadio .input-label {
    min-width: unset;
  }

  #checkboxError.invalidStudentId {
    bottom: -25px;
  }

  .emailContent .invalidStudentId {
    bottom: -25px;
    left: 237px;
  }
}

@media only screen and (min-width: 1200px) {
  .body-content {
    display: flex;
    flex-direction: row;
    margin: 0px;
  }

  .other-content {
    min-height: 100vh;
    width: 100%;
  }

  .input-label {
    min-width: 176px;
  }

  .invalidStudentId p {
    margin: -25px 0px 5px 176px;
  }

  .form-content {
    margin: 0px;
    padding: 14px 0px 0px 0px;
  }

  .headerAndForm {
    padding: 0px 15px 0px;
    height: min-content;
    margin: 233px 0px 0px;
  }

  .input-text {
    min-width: 300px;
  }

  .oc-text h2 {
    margin-bottom: 12px;
    text-align: center;
  }

  .submit-content {
    margin-left: 176px;
  }

  .submit-btn {
    margin-top: 12px;
  }

  .next-content {
    margin-left: 176px;
  }

  .prev-content {
    margin-left: 176px;
  }

  #partialPaymentInfo.input-content {
    margin-left: 176px;
  }

  .other-content-container {
    max-width: 515px;
  }

  .emailContent .invalidStudentId {
    left: 176px;
  }

  .section1 {
    display: flex;
    flex-direction: column;
  }

  .section2 {
    min-width: 634px;
    width: 100%;
    padding: 0px 50px 0px;
  }

  .section1-content {
    display: grid;
    gap: 21px 24px;
    grid-template-columns: 1fr 1fr;
  }

  .navigation-buttons {
    flex-direction: row;
  }

  .other-content h1 {
    font-size: 45px;
  }

  .oc-text {
    margin: -90px 0px 0px;
  }
}

@media only screen and (min-width: 1440px) {
  .other-content {
    padding: 0px;
  }

  .form-content {
    margin: 27px 0px 0px 0px;
    padding: 0px;
  }

  .headerAndForm {
    padding: 14px 62px 0px 36px;
  }

  .input-text {
    min-width: 320px;
  }

  .other-content h2 {
    font-size: 20px;
    font-weight: 600;
  }

  .other-content-container {
    max-width: 600px;
  }

  .section2 {
    min-width: 660px;
    width: 100%;
    padding: 0px 50px 0px;
  }

  .oc-text {
    margin: -70px 0px 46px;
  }


  .other-content h1 {
    font-size: 48px;
  }
}

@media only screen and (min-width: 1600px) {
  .other-content {
    width: 50%;
  }

  .headerAndForm {
    align-items: center;
    display: flex;
    flex-direction: column;
    width: 50%;
  }

  picture.headerImage {
    left: -220px;
    position: relative;
  }
}