@font-face {
  font-family: "Poppins-Regular";
  src: url("../../fonts/poppins/Poppins-Regular.ttf");
}

@font-face {
  font-family: "Poppins-SemiBold";
  src: url("../../fonts/poppins/Poppins-SemiBold.ttf");
}

@font-face {
  font-family: "Poppins-Medium";
  src: url("../../fonts/poppins/Poppins-Medium.ttf");
}

@font-face {
  font-family: "Muli-Bold";
  src: url("../../fonts/muli/Muli-Bold.ttf");
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  font-family: "Poppins-Regular";
  font-size: 15px;
  color: #666;
  margin: 0;
}

:focus {
  outline: none;
}

textarea {
  resize: none;
}

input,
textarea,
select,
button {
  font-family: "Poppins-Regular";
  font-size: 15px;
  color: #666;
}

p,
h1,
h2,
h3,
h4,
h5,
h6,
ul {
  margin: 0;
}

ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

a {
  text-decoration: none;
}

textarea {
  resize: none;
}

select {
  -moz-appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  border: none;
}

select option[value=""][disabled] {
  display: none;
}

img {
  max-width: 100%;
  vertical-align: middle;
}

/* body {
  background: url("../../images/form-wizard-bg4.jpg");
  background-repeat: no-repeat;
  background-size: cover;
} */

.wrapper {
  max-width: 2100px;
  height: 100vh;
  margin: auto;
  display: flex;
  align-items: center;
}

.wrapper .image-holder {
  width: 51%;
}

/* .image-holder {
  margin-right: 100px;
} */

.wrapper form {
  width: 49%;
}

.wizard>.steps .current-info,
.wizard>.steps .number {
  display: none;
}

#wizard {
  min-height: 250px;
  border-radius: 10px;
  margin-right: 60px;
  padding: 90px 75px 20px;
  /* background: rgba(1, 1, 1, 0.75); */
  background: #fff;
  box-shadow: 0 0 13px #8fb73c;
}

.steps {
  margin-bottom: 30px;
}

.steps ul {
  display: flex;
  position: relative;
}

.steps ul li {
  width: 20.16%;
  margin-right: 10px;
}

.steps ul li a {
  display: inline-block;
  width: 100%;
  height: 7px;
  background: #e6e6e6;
  border-radius: 3.5px;
}

.steps ul li.first a,
.steps ul li.checked a {
  background: #8fb73c;
  transition: all 0.5s ease;
}

.steps ul:before {
  content: "Admission Policy";
  font-size: 22px;
  font-family: "Poppins-SemiBold";
  color: #333;
  top: -38px;
  position: absolute;
}

/* .steps ul.step-2:before {
  content: "Email Verification";
} */

/* .steps ul.step-3:before {
  content: "Contact Information";
} */

/* .steps ul.step-4:before {
  content: "Billing Method";
} */

h3 {
  font-family: "Poppins-SemiBold";
}

.form-row {
  margin-bottom: 24px;
}

.form-row label {
  margin-bottom: 8px;
  display: block;
}

.form-row.form-group {
  display: flex;
}

.form-row.form-group .form-holder {
  width: 50%;
  margin-right: 21px;
}

.form-row.form-group .form-holder:last-child {
  margin-right: 0;
}

.form-holder {
  position: relative;
}

.form-holder i {
  position: absolute;
  top: 11px;
  right: 19px;
  font-size: 17px;
  color: #8fb73c;
}

.form-control {
  height: 42px;
  border: 1px solid #8fb73c;
  background: none;
  width: 100%;
  padding: 0 18px;
}

.form-control:focus {
  border-color: #8fb73c;
}

.form-control::-webkit-input-placeholder {
  color: #8fb73c;
  font-size: 13px;
}

.form-control::-moz-placeholder {
  color: #8fb73c;
  font-size: 13px;
}

.form-control:-ms-input-placeholder {
  color: #8fb73c;
  font-size: 13px;
}

.form-control:-moz-placeholder {
  color: #8fb73c;
  font-size: 13px;
}

textarea.form-control {
  padding-top: 11px;
  padding-bottom: 11px;
}

.option {
  color: #8fb73c;
}

.actions ul {
  display: flex;
  margin-top: 30px;
  justify-content: space-between;
}

.actions ul.step-last {
  justify-content: flex-end;
}

.actions ul.step-last li:first-child {
  display: none;
}

.actions li a {
  padding: 0;
  border: none;
  display: inline-flex;
  height: 51px;
  width: 135px;
  align-items: center;
  background: #8fb73c;
  cursor: pointer;
  position: relative;
  padding-left: 41px;
  color: #030101;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  font-weight: 400;
}

.actions li a:before {
  content: '\f2ee';
  position: absolute;
  top: 14px;
  right: 41px;
  font-family: Material-Design-Iconic-Font;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

.actions li a:hover {
  background: #8fb73c;
}

.actions li a:hover:before {
  -webkit-animation-name: hvr-icon-wobble-horizontal;
  animation-name: hvr-icon-wobble-horizontal;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}

.actions li[aria-disabled="true"] a {
  display: none;
}

.actions li:first-child a {
  background: #e6e6e6;
  padding-left: 48px;
}

.actions li:first-child a:before {
  content: '\f2ea';
  left: 26px;
}

.actions li:first-child a:hover {
  background: #ccc;
}

.actions li:last-child a {
  padding-left: 29px;
  width: 167px;
  font-weight: 400;
}

.actions li:last-child a:before {
  right: 30px;
}

.checkbox {
  position: relative;
}

.checkbox label {
  padding-left: 21px;
  cursor: pointer;
  color: #8fb73c;
}

.checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.checkbox input:checked~.checkmark:after {
  display: block;
}

.checkmark {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  height: 12px;
  width: 13px;
  border-radius: 2px;
  background-color: #ebebeb;
  border: 1px solid #ccc;
  font-family: Material-Design-Iconic-Font;
  color: #000;
  font-size: 10px;
  font-weight: bolder;
}

.checkmark:after {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: none;
  content: '\f26b';
}

.checkbox-circle {
  margin-top: 41px;
  margin-bottom: 46px;
}

.checkbox-circle label {
  cursor: pointer;
  padding-left: 26px;
  color: #8fb73c;
  display: block;
  margin-bottom: 15px;
  position: relative;
}

.checkbox-circle label.active .tooltip {
  display: block;
}

.checkbox-circle input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.checkbox-circle input:checked~.checkmark:after {
  display: block;
}

.checkbox-circle .checkmark {
  position: absolute;
  top: 11px;
  left: 0;
  height: 14px;
  width: 14px;
  border-radius: 50%;
  background: #ebebeb;
  border: 1px solid #cdcdcd;
}

.checkbox-circle .checkmark:after {
  content: "";
  top: 6px;
  left: 6px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #666666;
  position: absolute;
  display: none;
}

.checkbox-circle .tooltip {
  padding: 9px 22px;
  background: #f2f2f2;
  line-height: 1.8;
  position: relative;
  margin-top: 16px;
  margin-bottom: 28px;
  display: none;
}

.checkbox-circle .tooltip:before {
  content: "";
  border-bottom: 10px solid #f2f2f2;
  border-right: 9px solid transparent;
  border-left: 9px solid transparent;
  position: absolute;
  bottom: 100%;
}

.product {
  margin-bottom: 33px;
}

.item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 30px;
  border-bottom: 1px solid #e6e6e6;
  margin-bottom: 30px;
}

.item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border: none;
}

.item .left {
  display: flex;
  align-items: center;
}

.item .thumb {
  display: inline-flex;
  width: 100px;
  height: 90px;
  justify-content: center;
  align-items: center;
  border: 1px solid #f2f2f2;
}

.item .purchase {
  display: inline-block;
  margin-left: 21px;
}

.item .purchase h6 {
  font-family: "Poppins-Medium";
  font-size: 16px;
  margin-bottom: 4px;
  font-weight: 500;
}

.item .purchase h6 a {
  color: #333;
}

.item .price {
  font-size: 16px;
}

.checkout {
  margin-bottom: 44px;
}

.checkout span.heading {
  font-family: "Poppins-Medium";
  font-weight: 500;
  margin-right: 5px;
}

.checkout .subtotal {
  margin-bottom: 18px;
}

.checkout .shipping {
  margin-bottom: 19px;
}

.checkout .shipping span.heading {
  margin-right: 4px;
}

.checkout .total-price {
  font-family: "Muli-Bold";
  color: #333;
  font-weight: 700;
}

@-webkit-keyframes hvr-icon-wobble-horizontal {
  16.65% {
    -webkit-transform: translateX(6px);
    transform: translateX(6px);
  }

  33.3% {
    -webkit-transform: translateX(-5px);
    transform: translateX(-5px);
  }

  49.95% {
    -webkit-transform: translateX(4px);
    transform: translateX(4px);
  }

  66.6% {
    -webkit-transform: translateX(-2px);
    transform: translateX(-2px);
  }

  83.25% {
    -webkit-transform: translateX(1px);
    transform: translateX(1px);
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes hvr-icon-wobble-horizontal {
  16.65% {
    -webkit-transform: translateX(6px);
    transform: translateX(6px);
  }

  33.3% {
    -webkit-transform: translateX(-5px);
    transform: translateX(-5px);
  }

  49.95% {
    -webkit-transform: translateX(4px);
    transform: translateX(4px);
  }

  66.6% {
    -webkit-transform: translateX(-2px);
    transform: translateX(-2px);
  }

  83.25% {
    -webkit-transform: translateX(1px);
    transform: translateX(1px);
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@media (max-width: 1500px) {
  .wrapper {
    height: auto;
  }
}


@media (max-width: 1400px) {
  .wrapper {
    height: 100vh;
  }


  #wizard {
    min-height: 100px;
  }

}


@media (max-width: 1199px) {
  .wrapper {
    height: 100vh;
  }

  #wizard {
    margin-right: 40px;
    min-height: 200px;
    padding-left: 60px;
    padding-right: 60px;
  }
}

@media (max-width: 991px) {
  .wrapper {
    justify-content: center;
  }

  .wrapper .image-holder {
    display: none;
  }

  .wrapper form {
    width: 60%;
  }

  #wizard {
    margin-right: 0;
    padding-left: 40px;
    padding-right: 40px;
  }
}

@media (max-width: 767px) {
  .wrapper {
    height: auto;
    display: block;
  }

  .wrapper .image-holder {
    width: 100%;
    display: block;
  }

  .wrapper form {
    width: 100%;
  }

  #wizard {
    min-height: unset;
    padding: 70px 20px 40px;
  }

  .form-row.form-group {
    display: block;
  }

  .form-row.form-group .form-holder {
    width: 100%;
    margin-right: 0;
    margin-bottom: 24px;
  }

  .item .purchase {
    margin-left: 11px;
  }
}

/*# sourceMappingURL=style.css.map */


@media only screen and (min-width: 1024px) {

  /* for the pen */
  html,
  body {
    margin: 0;
    min-height: 100%;
    background-color: #f2f2f2;
  }

  /* waves */
  .ocean {
    height: 85px;
    /* change the height of the waves here */
    width: 100%;
    position: absolute;
    top: -100;
    bottom: 0;
    left: 0;
    overflow-x: hidden;
  }

  .wave {
    position: absolute;
    top: 0px;
    width: 200%;
    height: 100%;
    animation: wave 10s -3s linear infinite;
    transform: translate3d(0, 0, 0);
    opacity: 0.8;
  }

  .wave:nth-of-type(2) {
    bottom: 0;
    animation: wave 18s linear reverse infinite;
    opacity: 0.5;
  }

  .wave:nth-of-type(3) {
    bottom: 0;
    animation: wave 20s -1s linear infinite;
    opacity: 0.5;
  }

  @keyframes wave {
    0% {
      transform: translateX(0);
    }

    50% {
      transform: translateX(-25%);
    }

    100% {
      transform: translateX(-50%);
    }
  }
}

.blink_me {
  animation: blinker 1s linear infinite;
}

@keyframes blinker {
  50% {
    opacity: 0;
  }
}




.btn_custom {
  padding: 0;
  border: none;
  display: inline-flex;
  height: 51px;
  width: 135px;
  align-items: center;
  background: #8fb73c;
  cursor: pointer;
  position: relative;
  padding-left: 35px;
  color: #fff;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  font-weight: 400;
}

.btn_custom:before {
  /* content: '\f15a'; */
  position: absolute;
  top: 19px;
  right: 41px;
  /* font-family: Material-Design-Iconic-Font; */
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

.btn_custom:hover {
  background: #f8db49;
}

.btn_custom:hover:before {
  -webkit-animation-name: hvr-icon-wobble-horizontal;
  animation-name: hvr-icon-wobble-horizontal;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}

.colored-toast.swal2-icon-success {
  background-color: #a5dc86 !important;
}

.colored-toast.swal2-icon-error {
  background-color: #f27474 !important;
}

.colored-toast.swal2-icon-warning {
  background-color: #f8bb86 !important;
}

.colored-toast.swal2-icon-info {
  background-color: #3fc3ee !important;
}

.colored-toast.swal2-icon-question {
  background-color: #87adbd !important;
}

.colored-toast .swal2-title {
  color: white;
}

.colored-toast .swal2-close {
  color: white;
}

.colored-toast .swal2-html-container {
  color: white;
}

.model-toggle {
  overflow-y: hidden;
}

/* [data-custom-class='body'],
[data-custom-class='body'] * {
  background: transparent !important;
}

[data-custom-class='title'],
[data-custom-class='title'] * {
  font-family: Arial !important;
  font-size: 26px !important;
  color: #000000 !important;
}

[data-custom-class='subtitle'],
[data-custom-class='subtitle'] * {
  font-family: Arial !important;
  color: #595959 !important;
  font-size: 14px !important;
}

[data-custom-class='heading_1'],
[data-custom-class='heading_1'] * {
  font-family: Arial !important;
  font-size: 19px !important;
  color: #000000 !important;
}

[data-custom-class='heading_2'],
[data-custom-class='heading_2'] * {
  font-family: Arial !important;
  font-size: 17px !important;
  color: #000000 !important;
}

[data-custom-class='body_text'],
[data-custom-class='body_text'] * {
  color: #595959 !important;
  font-size: 14px !important;
  font-family: Arial !important;
}

[data-custom-class='link'],
[data-custom-class='link'] * {
  color: #3030F1 !important;
  font-size: 14px !important;
  font-family: Arial !important;
  word-break: break-word !important;
} */

.form-check-input:checked {
  background-color: #8fb73c;
  /* Change to your desired color */
  border-color: #8fb73c;
  /* Change to your desired color */
}


/* Admission Card */
.policy-card {

  background:
    linear-gradient(180deg,
      rgba(143, 183, 60, .06),
      rgba(255, 255, 255, .95));

  border:
    1px solid rgba(143, 183, 60, .18);

  border-radius: 20px;

  padding: 22px;

  box-shadow:
    0 10px 30px rgba(143, 183, 60, .08);

  position: relative;

  overflow: hidden;
}

.policy-header {

  display: flex;

  align-items: center;

  gap: 15px;

  margin-bottom: 20px;
}

.policy-icon {

  width: 52px;
  height: 52px;

  border-radius: 50%;

  background:
    rgba(143, 183, 60, .12);

  display: flex;

  align-items: center;
  justify-content: center;
}

.policy-icon {

  width: 52px;
  height: 52px;

  border-radius: 50%;

  background: rgba(143, 183, 60, .12);

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 24px;
}


.policy-header h5 {

  margin: 0;

  color: #2f4d17;

  font-weight: 700;
}

.policy-header span {

  font-size: 12px;

  color: #888;
}


.policy-item {

  display: flex;

  align-items: center;

  gap: 10px;

  margin-bottom: 12px;

  font-size: 14px;

  color: #555;
}

.policy-item i {

  color: #8fb73c;
}

.policy-divider {

  height: 1px;

  background:
    rgba(143, 183, 60, .15);

  margin: 18px 0;
}

.policy-highlights {

  display: flex;

  justify-content: space-between;

  flex-wrap: wrap;

  gap: 10px;
}

.policy-highlights span {

  background:
    rgba(143, 183, 60, .08);

  color: #45691d;

  padding: 6px 12px;

  border-radius: 50px;

  font-size: 12px;

  font-weight: 600;
}

/* Checkboxes Admission */
.agreement-modern {

  margin-top: 15px;
}

.agreement-modern label {

  display: flex;

  align-items: center;

  gap: 10px;

  font-weight: 500;

  color: #5c7e26;

  cursor: pointer;
}

.agreement-box {

  width: 22px;
  height: 22px;

  border-radius: 6px;

  border: 2px solid #8fb73c;

  transition: .3s;
}

.agreement-modern input {

  display: none;
}

.agreement-modern input:checked+.agreement-box {

  background: #8fb73c;

  box-shadow:
    0 0 0 4px rgba(143, 183, 60, .15);
}

.policy-check {

  width: 26px;
  text-align: center;

  font-size: 16px;

  flex-shrink: 0;
}

/* Admission Card */