@import url(../fonts/stylesheet.css);
* {
  margin: 0;
  padding: 0;
}

html, body {
  background-color: #f5f4f9;
}

/* media Queries */
ul, ol {
  list-style: none;
}

a, img {
  text-decoration: none;
  outline: none;
}

header {
  width: 100%;
  border-bottom: 1px solid #4F3D95;
}
header ul {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 4px 24px;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  grid-gap: 16px;
}
@media (max-width: 560px) {
  header ul {
    grid-template-columns: repeat(1, 1fr);
  }
}
header ul li {
  width: 100%;
}
header ul li .logo {
  width: 100%;
  text-align: left;
}
@media (max-width: 560px) {
  header ul li .logo {
    text-align: center;
  }
}
header ul li .logo img {
  display: block;
  width: 100%;
  max-width: 404px;
}
@media (max-width: 560px) {
  header ul li .logo img {
    display: inline-block;
  }
}
header ul li h1 {
  text-align: right;
  font: 400 36px "sf_ui_textsemibold", sans-serif;
  color: #4F3D95;
}
@media (max-width: 768px) {
  header ul li h1 {
    font-size: 24px;
  }
}
@media (max-width: 560px) {
  header ul li h1 {
    text-align: center;
  }
}

.wrapper {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 24px;
  box-sizing: border-box;
}
.wrapper .classsought {
  width: 100%;
  display: flex;
  flex-flow: row wrap;
  align-items: flex-start;
}
@media (max-width: 560px) {
  .wrapper .classsought {
    flex-flow: column;
  }
}
.wrapper .classsought b {
  display: inline-block;
  text-align: left;
  width: auto;
  font: 400 18px/48px "sf_ui_textsemibold", sans-serif;
  color: #000;
  margin: 0 16px 8px 0;
}
@media (max-width: 560px) {
  .wrapper .classsought b {
    display: block;
    width: 100%;
    text-align: left;
    margin: 0 0 16px 0;
    font-size: 16px;
  }
}
.wrapper .classsought .class_sel {
  width: 100%;
  max-width: 260px;
  position: relative;
  margin: 0 12px 8px 0;
}
@media (max-width: 560px) {
  .wrapper .classsought .class_sel {
    max-width: 100%;
  }
}
.wrapper .classsought .class_sel select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  display: block;
  width: 100%;
  height: 48px;
  padding: 8px 12px;
  box-sizing: border-box;
  border: 1px solid #c0c0c0;
  border-radius: 4px;
  font: 400 14px "sf_ui_textmedium", sans-serif;
  color: #000;
  background: url(../icons/drop-down.svg) no-repeat right 10px center #fff;
  background-size: 24px;
}
.wrapper .classsought .class_sel select:focus {
  outline: none;
  border-color: #808080;
}
.wrapper .classsought .class_sel span.placeholder {
  position: absolute;
  font: 400 14px "sf_ui_textmedium", sans-serif;
  color: #808080;
  left: 10px;
  transition: all 0.2s;
  transform-origin: 0% 0%;
  background: none;
  pointer-events: none;
  z-index: 1;
  padding: 1px 6px;
  box-sizing: border-box;
  background-color: #fff;
  transform: scale(0.8);
  color: #202020;
  top: -7px;
}
.wrapper .classsought .classerror {
  width: auto;
  height: 48px;
  font: 400 13px "sf_ui_textmedium", sans-serif;
  color: #F02020;
  background: url(../icons/error.svg) no-repeat left 16px center #FFF0F0;
  background-size: 24px;
  border: 1px solid #FF8888;
  border-radius: 40px;
  box-sizing: border-box;
  padding: 8px 24px 8px 48px;
  display: inline-flex;
  align-items: center;
  flex-flow: row nowrap;
}
@media (max-width: 560px) {
  .wrapper .classsought .classerror {
    font-size: 12px;
  }
}
.wrapper .infoWrapp {
  width: 100%;
  margin: 24px 0 0 0;
}
.wrapper .infoWrapp .heading {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  height: 48px;
  border-radius: 4px 4px 0 0;
  padding: 0 24px;
  box-sizing: border-box;
  background-color: #4F3D95;
}
@media (max-width: 560px) {
  .wrapper .infoWrapp .heading {
    padding: 0 8px;
  }
}
.wrapper .infoWrapp .heading h2 {
  display: block;
  width: 50%;
  text-align: left;
  font: 400 18px "sf_ui_textsemibold", sans-serif;
  color: #fff;
}
@media (max-width: 768px) {
  .wrapper .infoWrapp .heading h2 {
    font-size: 16px;
    width: 80%;
  }
}
@media (max-width: 560px) {
  .wrapper .infoWrapp .heading h2 {
    font-size: 13px;
    width: 70%;
  }
}
.wrapper .infoWrapp .heading h3 {
  display: block;
  width: 100%;
  text-align: left;
  font: 400 18px "sf_ui_textsemibold", sans-serif;
  color: #fff;
}
@media (max-width: 768px) {
  .wrapper .infoWrapp .heading h3 {
    font-size: 16px;
  }
}
@media (max-width: 560px) {
  .wrapper .infoWrapp .heading h3 {
    font-size: 13px;
  }
}
.wrapper .infoWrapp .heading i {
  display: block;
  width: 50%;
  text-align: right;
  font: 400 12px "sf_ui_textregular", sans-serif;
  color: #fff;
  font-style: normal;
}
@media (max-width: 768px) {
  .wrapper .infoWrapp .heading i {
    width: 20%;
  }
}
@media (max-width: 560px) {
  .wrapper .infoWrapp .heading i {
    width: 30%;
  }
}
.wrapper .infoWrapp ul {
  width: 100%;
  margin: 24px 0;
  display: grid;
  grid-gap: 20px;
  grid-template-columns: repeat(4, 1fr);
  align-items: flex-start;
}
@media (max-width: 768px) {
  .wrapper .infoWrapp ul {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 560px) {
  .wrapper .infoWrapp ul {
    grid-template-columns: repeat(1, 1fr);
  }
}
.wrapper .infoWrapp ul li {
  width: 100%;
  position: relative;
}
.wrapper .infoWrapp ul li.address {
  grid-column: 2/5;
}
@media (max-width: 768px) {
  .wrapper .infoWrapp ul li.address {
    grid-column: 1/4;
  }
}
@media (max-width: 560px) {
  .wrapper .infoWrapp ul li.address {
    grid-column: 1/2;
  }
}
.wrapper .infoWrapp ul li.sname {
  grid-column: 1/3;
}
@media (max-width: 560px) {
  .wrapper .infoWrapp ul li.sname {
    grid-column: 1/2;
  }
}
.wrapper .infoWrapp ul li select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  display: block;
  width: 100%;
  height: 48px;
  padding: 8px 12px;
  box-sizing: border-box;
  border: 1px solid #c0c0c0;
  border-radius: 4px;
  font: 400 14px "sf_ui_textmedium", sans-serif;
  color: #000;
  background: url(../icons/drop-down.svg) no-repeat right 10px center #fff;
  background-size: 24px;
}
.wrapper .infoWrapp ul li select:focus {
  outline: none;
  border-color: #808080;
}
.wrapper .infoWrapp ul li span.placeholder {
  position: absolute;
  font: 400 14px "sf_ui_textmedium", sans-serif;
  color: #808080;
  left: 10px;
  transition: all 0.2s;
  transform-origin: 0% 0%;
  background: none;
  pointer-events: none;
  z-index: 1;
  padding: 1px 6px;
  box-sizing: border-box;
  background-color: #fff;
  transform: scale(0.8);
  color: #202020;
  top: -7px;
}
.wrapper .infoWrapp ul li input[type=text] {
  display: block;
  width: 100%;
  height: 48px;
  padding: 8px 12px;
  box-sizing: border-box;
  border: 1px solid #c0c0c0;
  border-radius: 4px;
  font: 400 14px "sf_ui_textmedium", sans-serif;
  color: #000;
  background-color: #fff;
}
.wrapper .infoWrapp ul li input[type=text]:focus {
  outline: none;
  border-color: #808080;
}
.wrapper .infoWrapp ul li input[type=text].date {
  background: url(../icons/calendar.svg) no-repeat right 10px center #fff;
  background-size: 24px;
}
.wrapper .infoWrapp .table {
  width: 100%;
  background-color: #fff;
}
.wrapper .infoWrapp .table table {
  width: 100%;
  border-collapse: collapse;
  background-color: #fff;
}
.wrapper .infoWrapp .table table th {
  text-align: left;
  font: 400 14px "sf_ui_textmedium", sans-serif;
  color: #202020;
  padding: 16px 24px;
  box-sizing: border-box;
  background-color: #EEEEEE;
  border: 1px solid #E0E0E0;
}
@media (max-width: 560px) {
  .wrapper .infoWrapp .table table th {
    padding: 8px;
    font-size: 13px;
  }
}
.wrapper .infoWrapp .table table td {
  text-align: left;
  font: 400 14px "sf_ui_textmedium", sans-serif;
  color: #202020;
  padding: 10px 24px;
  box-sizing: border-box;
  border: 1px solid #E0E0E0;
}
@media (max-width: 560px) {
  .wrapper .infoWrapp .table table td {
    padding: 8px;
    font-size: 13px;
  }
}
.wrapper .infoWrapp .table table td input[type=text] {
  height: 40px;
  width: 100%;
  display: block;
  padding: 6px 12px;
  box-sizing: border-box;
  border: 1px solid #c0c0c0;
  border-radius: 6px;
  font: 400 14px "sf_ui_textmedium", sans-serif;
  color: #202020;
}
.wrapper .infoWrapp .table table td input[type=text]:focus {
  outline: none;
  border-color: #808080;
}
.wrapper .terms {
  width: 100%;
  margin: 36px 0 0 0;
}
.wrapper .terms ul {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
}
.wrapper .terms ul li {
  width: 100%;
  padding: 24px 0 0 0;
  box-sizing: border-box;
  position: relative;
  z-index: 10;
}
.wrapper .terms ul li:first-child {
  padding: 0;
}
.wrapper .terms ul li::before {
  position: absolute;
  content: "";
  width: 1px;
  height: 100%;
  background-color: #4F3D95;
  left: 30px;
  top: 0;
  z-index: -1;
}
.wrapper .terms ul li dl {
  width: 100%;
  display: grid;
  grid-gap: 12px;
  grid-template-columns: 60px auto;
  align-items: center;
}
.wrapper .terms ul li dl dt {
  width: 100%;
}
.wrapper .terms ul li dl dt .step {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1px solid #4F3D95;
  background-color: #fff;
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}
.wrapper .terms ul li dl dt .step.active {
  background-color: #4F3D95;
}
.wrapper .terms ul li dl dt .step.active b {
  color: #fff;
}
.wrapper .terms ul li dl dt .step.active small {
  color: #fff;
}
.wrapper .terms ul li dl dt .step b {
  display: block;
  width: 100%;
  text-align: center;
  font: 400 12px "sf_ui_textmedium", sans-serif;
  color: #4F3D95;
  margin: 0 0 1px 0;
}
.wrapper .terms ul li dl dt .step small {
  display: block;
  width: 100%;
  text-align: center;
  font: 400 18px "sf_ui_textbold", sans-serif;
  color: #4F3D95;
}
.wrapper .terms ul li dl dt p {
  text-align: left;
  font: 400 13px "sf_ui_textregular", sans-serif;
  color: #202020;
}
.wrapper .terms ul li dl dt p span {
  font: 400 13px "sf_ui_textbold", sans-serif;
  color: #4F3D95;
}
.wrapper .terms ul li dl dt p b {
  display: inline;
  font: 400 13px "sf_ui_textbold", sans-serif;
  color: #000;
}
.wrapper .acceptTerms {
  width: 100%;
  margin: 24px 0 0 0;
  display: flex;
  flex-flow: row nowrap;
  align-items: flex-start;
  padding: 0 0 0 16px;
  box-sizing: border-box;
}
.wrapper .acceptTerms label {
  display: inline-block;
  font: 400 13px "sf_ui_textmedium", sans-serif;
  color: #202020;
  padding: 0 0 0 12px;
  box-sizing: border-box;
}
.wrapper .acceptTerms input[type=checkbox] {
  display: block;
  width: 24px;
  height: 24px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: url(../icons/uncheck.svg) no-repeat center;
  background-size: 22px;
  flex-shrink: 0;
}
.wrapper .acceptTerms input[type=checkbox]:checked {
  background: url(../icons/check.svg) no-repeat center;
  background-size: 22px;
}
.wrapper .submit {
  width: 100%;
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wrapper .submit input[type=submit] {
  display: block;
  height: 56px;
  max-width: 260px;
  width: 100%;
  border: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 6px;
  color: #fff;
  cursor: pointer;
  font: 400 14px "sf_ui_textmedium", sans-serif;
  background: linear-gradient(200deg, #C3792A 0%, #694cdd 100%);
  transition: 0.25s ease;
}
@media (max-width: 560px) {
  .wrapper .submit input[type=submit] {
    max-width: 100%;
  }
}
.wrapper .submit input[type=submit]:hover {
  background: linear-gradient(180deg, #C3792A 0%, #694cdd 100%);
  transition: 0.25s ease;
}
.wrapper .formsubmittedSuccess {
  width: 100%;
  background-color: #fff;
  border-radius: 16px;
  padding: 16px 48px 24px 48px;
  box-sizing: border-box;
  margin: 16px 0 0 0;
}
@media (max-width: 560px) {
  .wrapper .formsubmittedSuccess {
    padding: 24px;
  }
}
.wrapper .formsubmittedSuccess h2 {
  text-align: center;
  font: 400 28px "sf_ui_textsemibold", sans-serif;
  color: #4F3D95;
}
.wrapper .formsubmittedSuccess p {
  width: 100%;
  text-align: center;
  font: 400 12px "sf_ui_textmedium", sans-serif;
  color: #202020;
  margin: 24px 0 0 0;
}
.wrapper .formsubmittedSuccess .downloadLinks {
  width: 100%;
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: center;
  margin: 24px 0 0 0;
}
@media (max-width: 560px) {
  .wrapper .formsubmittedSuccess .downloadLinks {
    display: grid;
    grid-template-columns: 100%;
    grid-gap: 4px;
  }
}
.wrapper .formsubmittedSuccess .downloadLinks a {
  display: inline-block;
  width: auto;
  font: 400 14px "sf_ui_textsemibold", sans-serif;
  color: #fc835c;
  text-decoration: none;
  margin: 0 4px;
}
@media (max-width: 560px) {
  .wrapper .formsubmittedSuccess .downloadLinks a {
    display: block;
    text-align: center;
    width: 100%;
    margin: 0;
  }
}
.wrapper .formsubmittedSuccess .downloadLinks a.fees {
  display: inline-block;
  background: #fcf5c2;
  color: black;
  padding: 8px 10px;
  box-sizing: border-box;
  border-radius: 8px;
}
.wrapper .formsubmittedSuccess .downloadLinks a.booklet {
  display: inline-block;
  background: #d8f6c5;
  color: black;
  padding: 8px 10px;
  box-sizing: border-box;
  border-radius: 8px;
}
.wrapper .formsubmittedSuccess .downloadLinks a.receipt {
  display: inline-block;
  background: #c0cdff;
  color: black;
  padding: 8px 10px;
  box-sizing: border-box;
  border-radius: 8px;
}
.wrapper .formsubmittedSuccess small {
  display: block;
  width: 100%;
  text-align: right;
  font: 400 12px "sf_ui_textmedium", sans-serif;
  color: #505050;
  padding: 20px 0 0 0;
  margin: 20px 0 0 0;
  border-top: 1px solid #ddd;
}
.wrapper .formsubmittedSuccess .sucess {
  width: 100%;
  margin: 36px 0 0 0;
}
.wrapper .formsubmittedSuccess .sucess .sucessIcon {
  width: 100%;
  text-align: center;
  margin: 0 0 16px 0;
}
.wrapper .formsubmittedSuccess .sucess .sucessIcon img {
  display: inline-block;
  width: 100%;
  max-width: 82px;
}
.wrapper .formsubmittedSuccess .sucess h2 {
  text-align: center;
  font: 400 30px "sf_ui_textbold", sans-serif;
  color: #12C55E;
}
.wrapper .formsubmittedSuccess .sucess p {
  text-align: center;
  font: 400 14px "sf_ui_textmedium", sans-serif;
  color: #505050;
  margin: 6px 0 0 0;
}
.wrapper .formsubmittedSuccess .sucess ul {
  width: 100%;
  max-width: 560px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  margin: 56px auto 0 auto;
}
.wrapper .formsubmittedSuccess .sucess ul li {
  width: 100%;
  padding: 12px;
  box-sizing: border-box;
  border: 1px solid #c0c0c0;
}
.wrapper .formsubmittedSuccess .sucess ul li:last-child {
  margin: 0 0 0 -1px;
}
.wrapper .formsubmittedSuccess .sucess ul li small {
  display: block;
  width: 100%;
  text-align: center;
  font: 400 12px "sf_ui_textregular", sans-serif;
  color: #606060;
  margin: 0 0 5px 0;
  padding: 0;
  border: none;
}
.wrapper .formsubmittedSuccess .sucess ul li b {
  display: block;
  width: 100%;
  text-align: center;
  font: 400 13px "sf_ui_textmedium", sans-serif;
  color: #101010;
}
.wrapper .bookslotmsg {
  width: 100%;
  padding: 0 24px;
  margin: 24px 0;
}
.wrapper .bookslotmsg h2 {
  text-align: left;
  font: 400 18px "sf_ui_textsemibold", sans-serif;
  color: #4F3D95;
}
.wrapper .bookslotmsg h2 small {
  display: inline-block;
  background: #FFEA60;
  color: black;
  padding: 8px 10px;
  box-sizing: border-box;
  border-radius: 8px;
}
.wrapper .bookslot {
  max-width: 1024px;
  box-sizing: border-box;
  margin: 0 auto;
}
.wrapper .bookslot h1 {
  text-align: left;
  font: 400 24px "sf_ui_textbold", sans-serif;
  color: #4F8689;
  display: none;
}
@media (max-width: 560px) {
  .wrapper .bookslot h1 {
    display: block;
  }
}
.wrapper .bookslot h2 {
  text-align: left;
  font: 400 16px "sf_ui_textbold", sans-serif;
  color: black;
  display: block;
  margin: 0 0 18px 0;
}
.wrapper .bookslot h2 small {
  display: inline-block;
  background: #f2520b;
  color: #fff;
  padding: 8px 10px;
  box-sizing: border-box;
  border-radius: 8px;
  font: 400 14px "sf_ui_textregular", sans-serif;
}
.wrapper .bookslot .selectdate {
  width: 100%;
  display: grid;
  grid-template-columns: 86px 126px 124px auto;
  align-items: center;
}
@media (max-width: 560px) {
  .wrapper .bookslot .selectdate {
    margin: 24px 0 0 0;
    display: grid;
    grid-gap: 5px;
    grid-template-columns: 74px 80px 90px auto;
    align-items: center;
  }
}
.wrapper .bookslot .selectdate li {
  width: auto;
  position: relative;
  margin: 0 8px 0 0;
  /*span.placeholder {
      position: absolute;
      font: 400 14px $medium;
      color: #808080;
      left: 10px;
      transition: all 0.2s;
      transform-origin: 0% 0%;
      background: none;
      pointer-events: none;
      z-index: 1;
      padding: 1px 6px;
      box-sizing: border-box;
      background-color: #fff;
      transform: scale(0.8);
      color: #202020;
      top: -7px;
  }*/
}
@media (max-width: 560px) {
  .wrapper .bookslot .selectdate li {
    margin: 0;
  }
}
.wrapper .bookslot .selectdate li select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  display: block;
  width: 100%;
  height: 48px;
  padding: 8px 12px;
  box-sizing: border-box;
  border: 1px solid #c0c0c0;
  border-radius: 4px;
  font: 400 14px "sf_ui_textmedium", sans-serif;
  color: #000;
  background: url(../icons/drop-down.svg) no-repeat right 10px center #fff;
  background-size: 24px;
}
.wrapper .bookslot .selectdate li select:focus {
  outline: none;
  border-color: #808080;
}
.wrapper .bookslot .selectdate li .placeholder {
  position: absolute;
  font: 400 14px "sf_ui_textmedium", sans-serif;
  color: #808080;
  left: 10px;
  transition: all 0.2s;
  transform-origin: 0% 0%;
  background: none;
  pointer-events: none;
  z-index: 1;
  padding: 1px 6px;
  box-sizing: border-box;
  background-color: #fff;
  transform: scale(0.8);
  color: #202020;
  top: -7px;
}
.wrapper .bookslot .selectdate li input[type=text] {
  display: block;
  width: 260px;
  height: 42px;
  padding: 6px 12px;
  box-sizing: border-box;
  border: 1px solid #c0c0c0;
  border-radius: 4px;
  font: 400 14px "sf_ui_textmedium", sans-serif;
  color: #000;
  background: #fff;
}
@media (max-width: 560px) {
  .wrapper .bookslot .selectdate li input[type=text] {
    width: 100%;
  }
}
.wrapper .bookslot .selectdate li input[type=text]:focus {
  outline: none;
  border-color: #808080;
}
.wrapper .bookslot .selectdate li input[type=text].date {
  background: url(../icons/calendar.svg) no-repeat right 6px center #fff;
  background-size: 20px;
}
.wrapper .bookslot .selectdate li .errorslot {
  display: block;
  width: 100%;
  text-align: left;
  font: 400 12px "sf_ui_textmedium", sans-serif;
  color: red;
  margin: 3px 0 0 0;
}
.wrapper .bookslot .selectdate li input[type=submit] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  display: block;
  width: 72px;
  height: 48px;
  border: none;
  border-radius: 4px;
  font: 400 13px "sf_ui_textmedium", sans-serif;
  color: #fff;
  background: #4F3D95;
  cursor: pointer;
}
@media (max-width: 560px) {
  .wrapper .bookslot .selectdate li input[type=submit] {
    width: 100%;
  }
}
.wrapper .bookslot .selectdate li input[type=submit]:hover {
  background-color: #3f2f82;
}
.wrapper .bookslot .selectdate li input[type=submit]:focus {
  outline: none;
}
.wrapper .bookslot .tblSlot {
  width: 100%;
  margin: 24px 0 0 0;
  height: auto;
  max-height: 300px;
  overflow-y: auto;
}
.wrapper .bookslot .tblSlot table {
  width: 100%;
  position: relative;
  border-collapse: collapse;
}
.wrapper .bookslot .tblSlot table th {
  text-align: left;
  font: 400 14px "sf_ui_textmedium", sans-serif;
  position: sticky;
  top: 0;
  color: #fff;
  background-color: #4F3D95;
  border: 1px solid #c0c0c0;
  padding: 12px;
}
.wrapper .bookslot .tblSlot table th:last-child {
  text-align: center;
}
.wrapper .bookslot .tblSlot table td {
  text-align: left;
  font: 400 14px "sf_ui_textmedium", sans-serif;
  color: #101010;
  background-color: #fff;
  border: 1px solid #c0c0c0;
  padding: 6px 12px;
}
.wrapper .bookslot .tblSlot table td.a_booked {
  background-color: #FF6666;
}
.wrapper .bookslot .tblSlot table td:last-child {
  text-align: center;
}
.wrapper .bookslot .tblSlot table td input[type=submit] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  display: inline-block;
  width: auto;
  height: 32px;
  border: none;
  border-radius: 4px;
  font: 400 13px "sf_ui_textmedium", sans-serif;
  color: #fff;
  background: #12C55E;
  cursor: pointer;
  padding: 0 24px;
  box-sizing: border-box;
}
.wrapper .bookslot .tblSlot table td input[type=submit]:hover {
  background-color: #0CA34C;
}
.wrapper .bookslot .tblSlot table td input[type=submit]:focus {
  outline: none;
}
.wrapper .bookslot .tblSlot table td b {
  display: block;
  text-align: center;
  width: 100%;
  font: 400 14px/32px "sf_ui_textmedium", sans-serif;
  color: #fff;
  background-color: #FF6666;
}
.wrapper .bookslot .error {
  display: block;
  width: 100%;
  font: 400 12px/20px "sf_ui_textmedium", sans-serif;
  color: red;
  background: url(../icons/err.svg) no-repeat left center;
  background-size: 20px;
  padding-left: 30px;
  box-sizing: border-box;
}
.wrapper .slideDownWrapper {
  width: 100%;
  margin: 24px 0 0 0;
}
.wrapper .slideDownWrapper .flip {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  align-items: center;
  border-radius: 4px 4px 0 0;
  padding: 0 24px;
  box-sizing: border-box;
  background-color: #4F3D95;
  height: 48px;
}
@media (max-width: 560px) {
  .wrapper .slideDownWrapper .flip {
    padding: 0 8px;
  }
}
.wrapper .slideDownWrapper .flip b {
  display: block;
  width: 100%;
  text-align: left;
  text-align: left;
  font: 400 18px "sf_ui_textsemibold", sans-serif;
  color: #fff;
}
@media (max-width: 768px) {
  .wrapper .slideDownWrapper .flip b {
    font-size: 16px;
  }
}
@media (max-width: 560px) {
  .wrapper .slideDownWrapper .flip b {
    font-size: 13px;
  }
}
.wrapper .slideDownWrapper .flip small {
  display: block;
  width: 100%;
  font: 400 14px "sf_ui_textsemibold", sans-serif;
  color: #fff;
  background: url(../icons/rightarr.svg) no-repeat right center;
  background-size: 20px;
  padding: 0 32px 0 0;
  box-sizing: border-box;
  cursor: pointer;
}
@media (max-width: 768px) {
  .wrapper .slideDownWrapper .flip small {
    font-size: 12px;
  }
}
@media (max-width: 560px) {
  .wrapper .slideDownWrapper .flip small {
    font-size: 11px;
  }
}
.wrapper .slideDownWrapper .feeTable {
  width: 100%;
  background-color: #fff;
}
.wrapper .slideDownWrapper .feeTable table {
  width: 100%;
  border-collapse: collapse;
}
.wrapper .slideDownWrapper .feeTable table tbody {
  width: 100%;
}
.wrapper .slideDownWrapper .feeTable table tbody tr {
  width: 100%;
}
.wrapper .slideDownWrapper .feeTable table tbody tr th {
  text-align: center;
  font: 400 12px "sf_ui_textmedium", sans-serif;
  color: #202020;
  padding: 12px;
  box-sizing: border-box;
  background-color: #EEEEEE;
  border: 1px solid #E0E0E0;
  text-transform: uppercase;
}
@media (max-width: 560px) {
  .wrapper .slideDownWrapper .feeTable table tbody tr th {
    padding: 12px 6px;
    font-size: 10px;
  }
}
.wrapper .slideDownWrapper .feeTable table tbody tr th:first-child {
  text-align: left;
}
.wrapper .slideDownWrapper .feeTable table tbody tr td {
  text-align: center;
  font: 400 12px "sf_ui_textmedium", sans-serif;
  color: #202020;
  padding: 12px;
  box-sizing: border-box;
  border: 1px solid #E0E0E0;
  background-color: #fff;
}
@media (max-width: 560px) {
  .wrapper .slideDownWrapper .feeTable table tbody tr td {
    padding: 12px 6px;
  }
}
.wrapper .slideDownWrapper .feeTable table tbody tr td b {
  display: none;
}
.wrapper .slideDownWrapper .feeTable table tbody tr td:first-child {
  text-align: left;
}
.wrapper .slideDownWrapper .feeTable table tbody tr td span {
  display: inline-block;
  background: url(../icons/rupee.svg) no-repeat left center;
  background-size: 14px;
  padding: 0 0 0 16px;
  box-sizing: border-box;
}
.wrapper .slideDownWrapper .feeTable .noteSlide {
  width: 100%;
  padding: 24px;
  box-sizing: border-box;
}
.wrapper .slideDownWrapper .feeTable .noteSlide b {
  display: block;
  width: 100%;
  text-align: left;
  font: 400 15px "sf_ui_textsemibold", sans-serif;
  color: #000;
}
.wrapper .slideDownWrapper .feeTable .noteSlide ol {
  width: 100%;
  display: grid;
  grid-gap: 10px;
  grid-template-columns: repeat(1, 1fr);
}
.wrapper .slideDownWrapper .feeTable .noteSlide ol li {
  text-align: left;
  font: 400 15px "sf_ui_textmedium", sans-serif;
  color: #000;
  list-style: disc;
  margin: 0 0 0 16px;
  width: calc(100% - 16px);
}
.wrapper .slideDownWrapper .feeTable .noteSlide ul {
  width: 100%;
  display: grid;
  grid-gap: 8px;
  grid-template-columns: repeat(1, 1fr);
  margin: 12px 0 0 0;
}
.wrapper .slideDownWrapper .feeTable .noteSlide ul li {
  text-align: left;
  font: 400 13px "sf_ui_textmedium", sans-serif;
  color: #505050;
  list-style: disc;
  margin: 0 0 0 16px;
  width: calc(100% - 16px);
}
.wrapper .slideDownWrapper .feesTable {
  width: 100%;
  background-color: #fff;
}
.wrapper .slideDownWrapper .feesTable table {
  width: 100%;
  border-collapse: collapse;
}
.wrapper .slideDownWrapper .feesTable table tbody {
  width: 100%;
}
.wrapper .slideDownWrapper .feesTable table tbody tr {
  width: 100%;
}
.wrapper .slideDownWrapper .feesTable table tbody tr th {
  text-align: center;
  font: 400 14px "sf_ui_textmedium", sans-serif;
  color: #202020;
  padding: 16px 24px;
  box-sizing: border-box;
  background-color: #EEEEEE;
  border: 1px solid #E0E0E0;
  text-transform: uppercase;
}
.wrapper .slideDownWrapper .feesTable table tbody tr th:first-child {
  text-align: left;
}
.wrapper .slideDownWrapper .feesTable table tbody tr td {
  text-align: center;
  font: 400 14px "sf_ui_textmedium", sans-serif;
  color: #202020;
  padding: 10px 24px;
  box-sizing: border-box;
  border: 1px solid #E0E0E0;
  background-color: #fff;
}
.wrapper .slideDownWrapper .feesTable table tbody tr td:first-child {
  text-align: left;
}
.wrapper .slideDownWrapper .feesTable table tbody tr td span {
  display: inline-block;
  background: url(../icons/rupee.svg) no-repeat left center;
  background-size: 14px;
  padding: 0 0 0 16px;
  box-sizing: border-box;
}
.wrapper .slideDownWrapper .feesTable .noteSlide {
  width: 100%;
  padding: 24px;
  box-sizing: border-box;
}
.wrapper .slideDownWrapper .feesTable .noteSlide b {
  display: block;
  width: 100%;
  text-align: left;
  font: 400 15px "sf_ui_textsemibold", sans-serif;
  color: #000;
}
.wrapper .slideDownWrapper .feesTable .noteSlide ol {
  width: 100%;
  display: grid;
  grid-gap: 10px;
  grid-template-columns: repeat(1, 1fr);
}
.wrapper .slideDownWrapper .feesTable .noteSlide ol li {
  text-align: left;
  font: 400 15px "sf_ui_textsemibold", sans-serif;
  color: #000;
  list-style: disc inside;
}
.wrapper .slideDownWrapper .feesTable .noteSlide ul {
  width: 100%;
  display: grid;
  grid-gap: 8px;
  grid-template-columns: repeat(1, 1fr);
  margin: 12px 0 0 0;
}
.wrapper .slideDownWrapper .feesTable .noteSlide ul li {
  text-align: left;
  font: 400 13px "sf_ui_textmedium", sans-serif;
  color: #505050;
  list-style: disc inside;
}

.schools {
  width: 100%;
  background-color: #4F3D95;
  margin: 120px 0 0 0;
}
.schools .logobottom {
  width: 100%;
  position: relative;
  text-align: center;
}
.schools .logobottom img {
  display: inline-block;
  width: 100%;
  max-width: 208px;
  margin: -102px 0 0 0;
}
.schools ul {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 40px 24px 24px 24px;
  box-sizing: border-box;
  display: grid;
  grid-gap: 16px;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 768px) {
  .schools ul {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .schools ul {
    grid-template-columns: repeat(1, 1fr);
  }
}
.schools ul li {
  width: 100%;
  border-radius: 12px;
  padding: 20px;
  box-sizing: border-box;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.25) 100%);
}
.schools ul li.fifty {
  background-color: #FFF2AE;
}
.schools ul li .logo50 {
  width: 100%;
  text-align: center;
  margin: 0;
}
.schools ul li .logo50 img {
  display: inline-block;
  width: 100%;
  max-width: 110px;
}
.schools ul li h3 {
  text-align: center;
  font: 400 14px "sf_ui_textmedium", sans-serif;
  color: #fff;
}
.schools ul li h2 {
  text-align: center;
  font: 700 18px "Times New Roman", serif;
  color: #fff;
}
.schools ul li b {
  display: block;
  width: 100%;
  text-align: center;
  font: 400 13px "Times New Roman", serif;
  color: #fff;
  margin: 4px 0 12px 0;
}
.schools ul li i {
  display: block;
  width: 100%;
  text-align: right;
  font: 700 14px "Times New Roman", serif;
  color: #fff;
  margin: 4px 0 12px 0;
  font-style: italic;
}
.schools ul li p {
  text-align: center;
  font: 400 13px "sf_ui_textregular", sans-serif;
  color: #fff;
  margin: 5px 0 0 0;
}

footer {
  width: 100%;
  text-align: center;
  font: 400 14px "sf_ui_textregular", sans-serif;
  color: #fff;
  padding: 24px;
  box-sizing: border-box;
  background-color: #4F3D95;
}
footer a {
  display: inline-block;
  width: auto;
  font: 400 14px "sf_ui_textsemibold", sans-serif;
  color: #FFF2AE;
  text-decoration: none;
}
footer a:hover {
  text-decoration: underline;
  color: #ffe667;
}

.error {
  display: block;
  width: 100%;
  font: 400 12px/20px "sf_ui_textmedium", sans-serif;
  color: red;
  background: url(../icons/err.svg) no-repeat left center;
  background-size: 20px;
  padding-left: 30px;
  box-sizing: border-box;
}

.overlay {
  position: fixed;
  z-index: 999;
  height: 100%;
  width: 100%;
  top: 0;
  background-color: Black;
  opacity: 0.6;
  display: flex;
  align-items: center;
  justify-content: center;
  left: 0px;
}
.overlay img {
  display: block;
  width: 100%;
  max-width: 150px;
}/*# sourceMappingURL=style.css.map */