@charset "UTF-8";

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
 font-family: 'Maven Pro', monospace, Courier;
}

*,
::after,
::before {
  box-sizing: border-box;
}

@media (prefers-reduced-motion:no-preference) {
  :root {
    scroll-behavior: smooth
  }
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  width: 100%;
  min-height: 100vh; 
  margin: 0;
  padding-top: 70px;
  padding-bottom: 50px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #fff;
  background-color: #272727;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent; 
  -webkit-user-select: none;
  -webkit-touch-callout: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;

}

header {
  position: fixed;
  top: 0;
}

/* ------------------------------------------------------------- */

table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
  /* border: 1px solid #ddd; */
}

th, td {
  text-align: left;
  padding: .7rem;
}

td {
  font-size: smaller;
}

tr:nth-child(odd){background-color: #323232}

/* ------------------------------------------------------------- */

.new-inputs {
  border: 1px solid #505050 !important; 
  border-radius: .5rem !important;
}

/* .selected {
  background-color: #B2EEF8;
} */

.vetted-comments {
  border: 1px solid #aaa; 
  border-radius: .5rem; 
  padding: .5rem 0 .5rem; 
  margin-top: .5rem;
}

.comment-section {
  font-size: small;
  padding: .5rem 1rem;
  color: rgba(26, 235, 54, 0.7); 
  cursor: pointer;
  display: inline-block;
  text-decoration: underline;
  margin-bottom: 0;
}

.comment-section:hover {
  color: #1aeb36;
}

.comments-holder {
  margin-bottom: 2rem;
  animation-name: animatetop;
  animation-duration: .5s
}

.comments-holder li {
  list-style-type: none;
  margin-bottom: .5rem;
  padding: .5rem 1rem;
  color: #fff;
}

.activity-list {
  margin-bottom: .5rem;
}

.activity-list p {
  display: flex;
  align-items: center;
  color: #fff;
  width: 100%;
  margin: 0;
}

.input-field-vetted {
  /* border-top: 1px solid #aaa; */
  /* border-radius: .5rem; */
  /* padding: .5rem 0; */
  margin-bottom: 1rem;
  font-size: smaller;
}

.input-field-vetted h6 {
  color: #aaaaaa;
}

.input-field-vetted input[type="text"] {
  width: 100%;
  background-color: transparent;
  border: none;
  color: #fff;
  height: 32px;
}

.input-field-vetted textarea {
  width: 100%;
  background-color: transparent;
  border: none;
  color: #fff;
  height: 32px;
}

.new-note-form label {
  color: #aaaaaa;
  font-size: smaller;
}

.input-field-holder {
  border: 1px solid #aaa;
  border-radius: .5rem;
  padding: .5rem 1rem;
  margin-bottom: 2rem;
}

.input-field-holder select {
  font-size: .8rem;
}

.input-field-holder select option {
  color: #202020
}

.input-field-holder input[type="text"] {
  width: 100%;
  background-color: transparent;
  border: none;
  color: #fff;
  height: 32px;
}

.input-field-holder input[type="date"] {
  width: 100%;
  background-color: transparent;
  border: none;
  color: #fff;
  height: 32px;
}

.input-field-holder input[type="number"] {
  width: 100%;
  background-color: transparent;
  border: none;
  color: #fff;
  height: 32px;
}

.input-field-holder textarea {
  width: 100%;
  background-color: transparent;
  border: none;
  color: #fff;
  height: 32px;
}

.input-field-holder input[type="date"]:focus {
  border: none;
  outline: none;
}

.input-field-holder input[type="number"]:focus {
  border: none;
  outline: none;
}

.input-field-holder input[type="text"]:focus {
  border: none;
  outline: none;
}

.input-field-holder textarea:focus {
  border: none;
  outline: none;
}

.input-field-holder input[type="date"] {
  width: 100%;
  background-color: transparent;
  border: none;
  color: #fff;
  height: 32px;
  font-size: smaller;
}

.note-lesson {
  margin-left: 1rem;
  width: 100%;
}

.note-summary {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  font-size: smaller;
  color: #AAAAAA;
}

.book-title {
  text-align: center;
  padding: .5rem 0 0;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  font-size: .8rem;
}

.note-summary h6 {
  color: #fff;
  font-size: .9rem;
}

.note-list {
  list-style: none;
}

.note-list-outer {
  position: relative;
  background-color: #333;
  width: 100%;
  padding: .5rem 1rem;
  display: flex;
  align-items: center;
  border-radius: .5rem;
  opacity: .9;
  cursor: pointer;
  margin-bottom: 1rem;
}

.select-all-bar {
  position: relative;
  background-color: #333;
  width: 100%;
  padding: .5rem 1rem;
  display: flex;
  align-items: center;
  border-radius: .5rem;
  opacity: .9;
  margin-bottom: 1rem;
}

.note-list-outer:hover {
  background-color: #444;
}

.vetted-note-field {
  background-color: #323232; 
  padding: 1rem; 
  margin-bottom: 1rem;
  font-size: smaller;
  border-radius: .3rem;
  position: relative;
}

.vetted-note-field:hover .comment-btn {
  display: flex;
}

.vetted-note {
  position: absolute;
  top: .3rem;
  right: 1rem;
  background-color: transparent;
  border: none;
  z-index: 1;
  padding: .2rem;
  /*border: 1px solid #1aeb36;
  border-radius: .3rem;*/
  display: flex;
}

.vetted-note svg {
  color: rgba(26, 235, 54, 0.7);
}

.vetted-note:hover svg {
  color: #1aeb36;
}

.activity-btn {
  background-color: transparent;
  border: 1px solid rgba(26, 235, 54, 0.7);
  border-radius: .3rem;
  z-index: 1;
  padding: .3rem;
  margin: .3rem 0;
  display: flex;
  align-items: center;
}

.activity-btn svg {
  color: rgba(26, 235, 54, 0.7);
}

.activity-btn:hover svg {
  color: #1aeb36;
}

.activity-btn:hover {
   border: 1px solid #1aeb36;
}

.submit-com-btn {
  background-color: transparent;
  border: none;
  border-radius: 2rem;
  z-index: 1;
  padding: .3rem;
  margin-top: .3rem;
  display: flex;
  align-items: center;
}

.submit-com-btn, .submit-com-btn svg {
  color: rgba(26, 235, 54, 0.7);
}

.submit-com-btn svg {
  margin-right: .5rem;
}

.submit-com-btn:hover {
  color: #1aeb36;
}

.submit-com-btn:hover svg {
  color: #1aeb36;
}

.delete-book-btn {
  border: none;
  padding: .4rem;
  border-radius: 2rem;
  z-index: 1;
  margin-top: .3rem;
  display: flex;
  align-items: center;
  position: absolute; 
  left: 50%; 
  transform: translateX(-50%); 
  top: -2rem; 
  background-color: transparent; 
}

.delete-book-btn, .delete-book-btn svg {
  color: rgba(26, 235, 54, 0.7);
}

.book-list:hover .delete-book-btn {
  display: flex;
}

.book-list:hover .delete-book-btn {
  background-color: #4C4C52; 
  border-left: 2px solid #272727;
  border-right: 2px solid #272727;
  border-bottom: 2px solid #272727;
}

.delete-book-btn:hover {
  color: #1aeb36;
}

.delete-book-btn:hover svg {
  color: #1aeb36;
}

/* .activity-btn:hover {
  border-top: 1px solid #fce606;
  border-right: 1px solid #fce606;
} */ 

.indicator-btn {
  background-color: transparent;
  border: none;
  z-index: 1;
  padding: .3rem;
  display: flex;
  align-items: center;
}

.indicator-btn svg {
  color: rgba(26, 235, 54, 0.7)
}

.indicator-btn:hover svg {
  color: #1aeb36;
}

.comment-btn {
  color: #1aeb36;
  border: none;
  padding: .5rem 1rem;
  border-radius: 2rem;
  z-index: 1;
  display: flex;
  align-items: center;
  position: absolute; 
  top: 50%; 
  transform: translateY(-50%); 
  left: .5rem; 
  background-color: rgba(39, 39, 39, 0.8); 
}

.comment-btn svg {
  margin-right: .3rem;
}

/*.comment-btn:hover {
  color: #fce606;
}*/

/*.comment-btn:hover svg {
  color: #fce606;
}*/

.note-list-outer:hover {
  opacity: 1;
}


.note-btns {
  display: flex; 
  flex-direction: column; 
  align-items: center;
  padding: 1rem;
}

.ln-book-form {
  padding: 1rem 0 2rem;
}
.ln-book-form label {
  color: #aaaaaa;
  font-size: smaller;
}

.note-btn-outer button {
  background-color: transparent;
  border: none;
}

.note-btn-outer {
  display: flex;
  justify-content: center;
  border-radius: .5rem;
  padding: 1rem;
  font-size: .9rem;
}

.ln-outer {
  border-radius: .5rem;
  padding: 1rem;
  font-size: .9rem;
  width: 7rem;
  display: inline-block;
}

.ln-outer:hover .tile {
  opacity: .8;
}

.ln-books {
  margin-top: 3rem;
}

.ln-btns {
  margin-top: 1rem;
}

.ln-list {
  list-style: none;
  display: grid;
  grid-template-columns: auto auto auto;
  justify-content: start;
}

.ln-list-btn {
  list-style: none;
  display: grid;
  grid-template-columns: auto auto auto;
  justify-content: center;
}

.pay-his button:hover svg {
  color: #fce606;
}

.show-hide-terms {
  font-size: small;
  color: #fce606;
  margin-left: .5rem;
  opacity: .6;
}

.show-hide-terms:hover {
  opacity: 1;
}

.svg-delete-fee {
  height: 1.4rem;
  color: #aaaaaa;
}

.add-fees-list {
  margin: 0 .5rem 1rem;
  border-top: 1px solid #323232;
  border-bottom: 1px solid #323232;
}

.fee-container {
  display: flex;
  align-items: center;
  background-color: #323232;
  cursor: pointer;
  padding: 1rem;
  border-radius: .5rem;
}

.fee-container:hover {
  background-color: #393939;
}

.fee-container button {
  background-color: transparent;
  border: none;
  z-index: 1000;
}

.fee-container button:hover .svg-delete-fee {
  color: #fce606;
}

.edit-password input[type="password"] {
  display: block;
  width: 100%;
  background-color: transparent;
  color: #ffffff;
  font-size: 1rem;
  border: none;
  padding: 0;
  margin: 0;
}

.edit-password input[type="password"]:focus {
  border-bottom: 1px solid #fce606;
  outline: none;
}

.user-profile-name {
  text-align: center;
}

.admission-counter {
  border: 1px solid #aaaaaa; 
  padding: .3rem; 
  border-radius: .5rem; 
  margin-left: .5rem;
  color: #fce606;
  font-size: small;
}

.stage-counter-title {
  display: inline-block;
  cursor: pointer;
  color: #aaaaaa;
  margin: 0 0 2rem .5rem;
}

.stage-counter {
  border: 1px solid #aaaaaa; 
  padding: .3rem; 
  border-radius: .5rem; 
  color: #fce606;
  font-size: 1rem;
  margin-right: .3rem;
}

.term-counter {
  border: 1px solid #aaaaaa; 
  padding: .3rem; 
  border-radius: .5rem; 
  color: #fce606;
  margin-right: .3rem;
}

.term-counter-title {
  display: inline-block;
  cursor: pointer;
  color: #aaaaaa;
  margin: 0 1rem 2rem;
}

.user-admission-group {
  background-color: #323232;
  display: flex;
  display: -webkit-flex;
  margin-bottom: 1rem;
  border-radius: .5rem;
  padding: .5rem 1rem;
  opacity: .9;
}

.user-admission-group p {
  padding-left: 1rem;
}

.user-admission-group:hover {
  opacity: 1;
}

.terms-list-items:last-child {
  justify-content: flex-end;
}

.sub-group-1 {
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.sub-group-2 {
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  justify-content: flex-end;
}

.sub-group-2 span {
  margin-left: .5rem; 
  line-height: 24px; 
  font-size: smaller;
}

.user-admission-btn {
  display: flex;
  align-items: center;
  padding: .5rem .7rem;
  margin-left: 1rem;
  color: #ffffff;
  background-color: #3e3e3e;
  border-radius: .5rem;
  border: none;
}

.user-admission-btn:hover {
  background-color: #434343 !important;
  color: #fce606;
}

.user-admission-btn:hover .iconsize-3 {
  color: #fce606;
}


.stage-name {
  margin-top: .5rem;
}

.h2rem {
  height: 2rem;
}

.radio-btn-container {
  margin: 1rem 2rem;
}

.radio-btn-container label:last-child {
  margin-left: .5rem;
}

.tab button {
  width: 50%;
}

.tab-btns {
  overflow: hidden;
  padding: 0 .5rem;
  /* border: 1px solid #ccc; */
  /* background-color: #f1f1f1; */
}

.tab-btns button {
  background-color: transparent;
  color: #ffffff;
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  padding: .3rem 1.5rem;
  margin: 1rem ;
  border-left: .2rem solid #aaaaaa;
  border-radius: .5rem;
  /* transition: */
} 

.tab-btns button.active {
  color: #FCE606;
  border-left: .2rem solid #FCE606;
  
}

.tab-btns-content-users {
  display: block;
  padding: 0rem 1rem;
  margin: 0 0 2rem 0;
  border: none;
}

.tab-btns-content-users span {
  display: inline-block;
  padding: .25rem 1rem;
  background-color: #ffffff;
  color: #272727;
  margin: .5rem .25rem;
  border: .13rem solid #ffffff;
  border-radius: 15rem;
  font-size: small;
  font-weight: bold;
  cursor: pointer;
}

.tab-btns-content {
  display: none;
  padding: 0rem 1rem;
  margin: 0 0 2rem 0;
  border: none;
}

.tab-btns-content span {
  display: inline-block;
  padding: .25rem 1rem;
  background-color: #ffffff;
  color: #272727;
  margin: .5rem .25rem;
  border: .13rem solid #ffffff;
  border-radius: 15rem;
  font-size: small;
  font-weight: bold;
  cursor: pointer
}

.tab-btns-content span:hover {
  background-color: #272727 !important;;
  color: #ffffff !important;;
  /* border: .15rem solid #ffffff; */
}

.tab-btns-content button {
  padding: .25rem 1rem;
  background-color: #ffffff;
  color: #272727;
  margin: .5rem .25rem;
  border: .15rem solid #ffffff;
  border-radius: 15rem;
  font-size: small;
  font-weight: bold;
}

.tab-btns-content button:hover {
  background-color: #272727;
  color: #ffffff;
  border: .15rem solid #ffffff;
}

.tab-btns-content button:focus {
  background-color: #272727;
  color: #ffffff;
  border: .15rem solid #ffffff;
}

.tab-btns button:hover {
  color: #FCE606;;
}


.filters-btn-container {
  display: block;
}

.filters-btn-container p {
margin: 0 1.5rem;
color: #aaaaaa;
}


.adv-search-btn {
  margin: 0 0 0.5rem  1rem;
  display: inline-block;
}

.adv-search-btn button {
  padding: .5rem 0.5rem;
  border-radius: 50px;
  background-color: transparent;
  color: #FCE606;
  border: none;
  font-size: small;
}

.adv-search-btn button:hover {
  color: #aaaaaa;
}

.filter-type-btns, .dropdown-content {
  position: absolute;
  display: none;
  left: 0;
  top: 2.5rem;
  background-color: #0a58ca;
  z-index: 1;
  min-width: 12rem;
  border-radius: .25rem;
  /* overflow: auto; */
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  /* display: none; */
}

.filter-type-btns button {
  display: block;
  width: 100%;
  padding: .4rem !important;
  text-align: left;
}

.all-filters {
  position: relative;
}

.filters-btn {
  display: flex;
  padding: 0 1rem;
  margin: 0 0 1rem 0;
  width: 100%;
  /* display: none; */
}

.filters-btn button {
  margin: 0 .25rem;
  padding: .25rem 0.25rem;
  border-radius: 50px;
  background-color: transparent;
  color: #ffffff;
  border: none;
}

.filters-btn button:hover {
  color: #FCE606;
}

#schoolTypeHeading {
  margin: 0 0 1rem 0;
}

.shared-account-h5 {
  padding: 2rem 0 0 0;
}

#classTeacher {
  margin: 1rem 0;
}

.fees-description input[type="text"]:focus {
  border-bottom: 1px solid #fce606;
  /* margin-top: .2rem; */
  outline: none;
}

.fees-description input[type="text"] {
  display: block;
  width: 100%;
  background-color: transparent;
  color: #ffffff;
  font-size: 1rem;
  border: none;
  padding: 0;
  margin: 0;
}

.fees-description {
  border-top: 1px solid #323232;
  /* margin: .5rem 0; */
  padding: 1.2rem .5rem;
  border-radius: 4px;
}

.fees-description:hover {
  background-color: #323232;
}

.heading-container {
  padding: 2rem 0;
  margin-bottom: 3rem;
  border-bottom: .3rem solid #aaaaaa;
  border-radius: .3rem;
}

.wrapper-btn {
  cursor: not-allowed;
}

#schoolTypeBtn {
  margin-top: 2rem;
}

.input-type-radio {
  display: flex;
  align-items: center;
  border-top: 1px solid #323232;
  padding: .5rem .5rem;
  border-radius: 4px;
}

.input-type-radio:hover {
  background-color: #323232;
}

.school-type-container input[type="radio"] {
  margin: 1rem 0;
}

.signup-container {
  display: none;
}

.hide-service-icon {
  color: #202020;
}

.app-btn-left a:last-child {
  text-decoration: none;
}

.shared-account p:first-child {
  color: #aaaaaa;
}

.shared-account-btn {
  display: flex;
  flex-direction: column;
  }

  .shared-account-btn button:last-child {
    color: #b9b9b9;
    background-color: transparent;
    border: solid 0.1rem #FCE606;
  }

.shared-account-btn button:hover {
  opacity: .9;}

.shared-account-btn button {
  display: block;
  width: 100%;
  margin: 1rem 0;
  font-family: 'Maven Pro';
  font-weight: bold;
  line-height: 1.5;
  color: #272727;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  background-color: #FCE606;
  border: 1px solid transparent;
  padding: 0.775rem 1.15rem;
  font-size: 1rem;
  border-radius: 0.25rem;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.term-fee-titles {
  border-radius: .5rem;
  padding: 1rem .5rem;
  margin: 1rem 0;
  background-color: #323232;
}

.term-fee-titles p {
  margin: 0;
  font-weight: bold;
  color: #aaaaaa;
}

.term-fee {
  border-top: none;
  animation: fadeEffect 1s;
}

.fees-type-container {
  /*background-color: #323232;*/
  margin: 0 0 1rem 0;
  border-radius: .25rem;
}

.fees-type-container>div:hover {
  background-color: #434343;
}

.action-btn-container {
  display: none;
  padding: 1rem 0 1rem 1rem;
  animation: fadeEffect 1s;
  background-color: #323232;
  border-radius: .25rem;
  margin-top: .5rem
}

@keyframes fadeEffect {
  from {opacity: 0;}
  to {opacity: 1;}
}

.action-btn-container button{
  background-color: transparent;
  border: none;
  color: #FCE606;
  font-size: .9rem;
  font-weight: bold;
}

.fees-type-title svg {
  margin: 0 1rem 0 0;
}

.fees-type-title p {
  color: #ffffff;
  font-weight: bold;
  margin: 0;
  font-size: 1.5rem;
}

.fees-type-title {
  display: flex;
  align-items: center;
  border-top: 1px solid #323232;
  padding: 1rem .5rem;
  border-radius: 4px;
}

.fees-type button {
  display: none;
  background-color: transparent;
  border: none;
  color: #FCE606;
  font-size: .9rem;
  font-weight: bold;
  padding: 1rem 1rem 0 0;
}

.fees-type {
  display: flex;
  align-items: center;
  border-top: 1px solid #323232;
  padding: 1rem;
  cursor: pointer;
  border-radius: .5rem;
  background-color: #323232;
}

.fees-type svg {
  margin: 0 1rem 0 0;
}

.fees-type p:first-of-type {
  font-weight: bold;
  margin: 0;
}

.fees-type p:last-of-type {
  color: #AAAAAA;
  margin: 0;
}

.results-container {
  display: none;
}

.search-title h1 {
  padding: 0 !important;
}

.prod-insight {
  border-top: .05rem solid #aaaaaa;
  margin-top: 1.5rem;
}

#label-for-new-comer {
  margin: .5rem 0;
  font-size: .9rem;
  color: #ffffff;
}

.search-title {
  text-align: center;
  /* border-bottom: .05rem solid white; */
  /* margin-bottom: 2rem; */
}


#support h2 {
  /* color: #AAAAAA; */
  padding: 1rem 0;
}

.contact-us-class textarea {
  width: 100%;
  resize: none;
  border-radius: .5rem;
  padding: .5rem;
}

.contact-us-class textarea:focus {
  outline: 0;
  border: 1px solid #FCE606;
  /* box-shadow: 0 0 0 0.25rem rgba(252, 230, 6); */
}

.contact-us-class textarea[placeholder="fff"] {
  color: #202020;
}

.contact-us-class {
  border-top: 1px solid #323232;
  /* margin: .5rem 0; */
  padding: .8rem .5rem;
  border-radius: 4px;
}

.contact-us-class:hover {
  background-color: #323232;
}

.contact-us-class input[type="tel"] {
  display: block;
  width: 100%;
  background-color: transparent;
  color: #ffffff;
  font-size: 1rem;
  border: none;
  padding: 0;
  margin: 0;
  height: 2rem;
}

.contact-us-class input[type="text"]:focus {
  border-bottom: 1px solid #FCE606;
  /* margin-top: .2rem; */
  outline: 0;
}

.contact-us-class input[type="tel"]:focus {
  border-bottom: 1px solid #FCE606;
  /* margin-top: .2rem; */
  outline: 0;
  border-radius: 0rem !important;
}

.contact-us-class input[type="text"], 
  input[type="email"], 
  input[type="number"], 
  input[type="date"], 
  input[type="tel"],
  select {
  display: block;
  width: 100%;
  background-color: transparent;
  color: #ffffff;
  font-size: 1rem;
  border: none;
}

.contact-us-class label {
  font-size: .9rem;
  color: #AAAAAA;
}

.select-dept-subj-list {
  margin-bottom:2rem;
}

.lower-subjects, .upper-subjects, .jhs-subjects {
  display: none;
}

.facilitators-list {
  display: flex;
  align-items: center;
  padding: .5rem 0;
  border-top: 1px solid #323232;
  border-bottom: 1px solid #323232;
  /* margin: .5rem 0; */
  border-radius: 4px;
  cursor: pointer;
}

.facilitators-list:hover {
  background-color: #323232;
}

.learners-list {
  display: flex;
  align-items: center;
  padding: .5rem 0;
  border-top: 1px solid #323232;
  border-bottom: 1px solid #323232;
  /* margin: .5rem 0; */
  border-radius: 4px;
  cursor: pointer;
}

.learners-list:hover {
  background-color: #323232;
}

.pic-list-items-learners {
  display: flex;
  align-items: center;
  height: 3rem;
  width: 3rem;
  border-radius: 50%;
  background-image: url("../img/edit-user.svg");
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
}

#myList {
  list-style-type:none;
}

#myList li {
  cursor: pointer;
}

.add-stages-list {
  display: flex;
  align-items: center;
  padding: .5rem 0;
  border-top: 1px solid #323232;
  border-bottom: 1px solid #323232;
  /* margin: .5rem 0; */
  border-radius: 4px;
}

.add-terms-list {
  /*padding: .5rem;*/
  border-top: 1px solid #323232;
  border-bottom: 1px solid #323232;
  /* border-bottom: 1px solid #323232; */
  /* margin: .5rem 0; */
  border-radius: 4px;
}

#feeMiniBtn {
  margin: 1.5rem .2rem 2rem .2rem; 
  padding: .5rem 1rem; 
  background-color: #fce606;
  border: none; 
  border-radius: .5rem; 
  font-size: smaller;
  font-weight: bold;
}

#feeMiniBtn:hover {
  opacity: .9;
}

#termMiniBtn {
  margin: 1.5rem .2rem 2rem .2rem; 
  padding: .5rem 1rem; 
  background-color: #fce606;
  border: none; 
  border-radius: .5rem; 
  font-size: smaller;
  font-weight: bold;
}

.svg-mini-btn {
  height: 1rem;
  margin-right: .5rem;
}

 /*#termMiniBtn {
  margin: 1rem .5rem 2rem .5rem;; 
  padding: .4rem 1rem; 
  background-color: transparent;
  color: #ffffff;
  border: 1px solid #fce606; 
  border-radius: .5rem; 
  font-weight: bold;
}*/

#termMiniBtn:hover {
  opacity: .9;
}

.added-term-container li {
  padding: .5rem;
  list-style-type:none;
  border-radius: .5rem;
  margin: 0 .5rem 1rem;
  background-color: #323232;;
}

.added-term-container li:hover {
  background-color: #393939;
}

.added-term-container button {
  /* position: absolute; 
  top: 50%; 
  transform: translateY(-50%); 
  right: 2rem; 
  z-index: 10; 
  justify-content: center;  */
  display: flex;
  align-items: center;
  justify-content: end;
  border-radius: .5rem; 
  height: 2.3rem; 
  width: 2.3rem; 
  margin-left: auto;
  /*background-color: #3e3e3e;*/
  background-color: transparent;
  border: none;
}

/* .added-term-container button:hover {
  background-color: #434343;
} */

.added-term-container button:hover .iconsize-3 {
  color: #fce606;
}

.added-fee-container li {
  list-style-type:none;
}

.stage-learners-list {
  display: flex;
  align-items: center;
  padding: .5rem 0;
  border-top: 1px solid #323232;
  border-bottom: 1px solid #323232;
  /* margin: .5rem 0; */
  border-radius: 4px;
  cursor: pointer;
}

.stage-learners-list:hover {
  background-color: #323232;
}

.list-container-stages {
  padding: 2rem 1rem;
  cursor: pointer;
  margin: 0rem 0 2rem 0;
  background-color: #343434;
  border-radius: .5rem;
}

.list-container-stages:hover {
  background-color: #323232;
}

.list-number-stages {
  text-align: center;
  margin: 0 1rem 0 1rem;
  padding-bottom: 1rem;
  font-size: .9rem;
}

.list-number-stages p:first-child {
  font-size: 4rem;
  font-weight: bold;
  margin: 0;
}

.list-number-stages p:last-child {
  color: #aaaaaa;
  margin-top: -1rem;
}

.male {
  color: lightblue;
}

.female {
  color: lightpink;
}

.pic-list-items-stages {
  display: flex;
  align-items: center;
  height: 1.5rem;
  width: 1.5rem;
  background-image: url("../img/stages-yellow.svg");
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
}

.pic-list-items-subjects {
  display: flex;
  align-items: center;
  height: 1.5rem;
  width: 1.5rem;
  background-image: url("../img/subjects-yellow.svg");
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
}

.checkbox-label {
  margin-left: 1rem;
  display: flex;
  align-content: flex-end;
}

.stage-subj-name {
  width: 100%;
}

.stages-list {
  display: flex;
  align-items: center;
  border-top: 1px solid #323232;
  border-bottom: 1px solid #323232;
  margin: .5rem 0;
  border-radius: .5rem;
  padding: 1rem;
  background-color: #323232;
  font-weight: bold;
  font-size: smaller;
}

.stages-list button {
  background-color: transparent;
  border: none;
  z-index: 10;
}

.stages-list:hover {
  background-color: #393939;
}

.stages-list button:hover .svg-delete-fee {
  color: #fce606;
}

.managers-list {
  display: flex;
  align-items: center;
  padding: .5rem 0;
  border-top: 1px solid #323232;
  border-bottom: 1px solid #323232;
  /* margin: .5rem 0; */
  border-radius: 4px;
  cursor: pointer;
}

.managers-list:hover {
  background-color: #323232;
}

.pic-list-items {
  display: flex;
  align-items: center;
  height: 3rem;
  width: 3rem;
  border-radius: 50%;
  background-image: url("../img/edit-user.svg");
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
}

.list-items,
.list-items-stages,
.list-subj-lower,
.list-subj-upper,
.list-subj-jhs {
  display: block;
}

.list-container, 
.list-container-lower, 
.list-container-upper,
.list-container-jhs {
  margin-bottom: .5rem;
  cursor: pointer;
  background-color: #343434;
  border-radius: .5rem;
}

.list-container:hover {
  background-color: #323232;
}

.list-container-lower:hover {
  background-color: #323232;
}

.list-container-upper:hover {
  background-color: #323232;
}

.list-container-jhs:hover {
  background-color: #323232;
}

.list-number {
  text-align: center;
  cursor: pointer;
  margin: 0rem 1rem 2rem 1rem;
  padding-bottom: 1rem;
  font-size: .9rem;
}

.list-number:hover {
  background-color: #323232;
}

.list-number p:first-child {
  font-size: 5rem;
  font-weight: bold;
  margin: 0;
}

.list-number p:last-child {
  color: #aaaaaa;
  margin-top: -1rem;
}

.tabtitles p{
  /* text-align: center; */
  padding: 1rem .5rem;
  margin: 0 0 1rem 0;
  font-weight: bold;
}

.add-button {
  border-top: 1px solid #323232;
  /* margin: .5rem 0; */
  padding: .8rem .5rem;
  border-radius: 4px;
}

.add-button button {
  background-color: transparent;
  border: none;
  color: #aaaaaa;
  font-size: .9rem;
  font-weight: bold;
}

/* Style the tab */
.tab {
  overflow: hidden;
  padding: 0 .5rem;
}

/* Style the buttons inside the tab */
.tab button {
  background-color: transparent;
  color: #ffffff;
  float: left;
  border-bottom: 1px solid #393939;
  border-top: none;
  border-left: none;
  border-right: none;
  outline: none;
  cursor: pointer;
  padding: 14px 16px;
  transition: 0.3s;
  border-radius: .5rem .5rem 0 0;
}

/* Change background color of buttons on hover */
.tab button:hover {
  color: #FCE606;
}

/* Create an active/current tablink class */
.tab button.active {
  color: #FCE606;
  background-color: #323232;
  border-bottom: 1px solid #393939;
  border-top: none;
  border-left: none;
  border-right: none;
  outline: none;
}

/* Style the tab content */
.tabcontent {
  display: none;
  padding: 1rem 0;
  border-top: none;
  animation: fadeEffect 1s;
}

@keyframes fadeEffect {
  from {opacity: 0;}
  to {opacity: 1;}
}

#stagesList > p, #subjectsList > p {
  color: #ffffff;
}

.stage-list > p, .subject-list > p {
  font-size: .9rem;
  margin: 0 0 1rem 0;
  color: #AAAAAA;
}

.subjDepartment {
  color: #aaaaaa;
  font-size: x-small;
}

.preschool-subj .lower-subj, .upper-subj, .jhs-subj {
  display: none;
  padding: 0 0 1rem 0;
}

.stage-list input[type="checkbox"] {
  margin: .5rem 0;
}

.stage-list {
  margin: 1rem 1rem 0;
  /*! font-size: .9rem; */
  display: none;
  padding: 1rem 1.2rem 0;
  border: px solid #aaaaaa;
  border-radius: .25rem;
  background-color: #323232;
}

.subject-list {
  margin: 1rem 1rem 0;
  /*! font-size: .9rem; */
  display: none;
  padding: 1rem 1.2rem 0;
  border: px solid #aaaaaa;
  border-radius: .25rem;
  background-color: #323232;
}

.lower-subj > p, .upper-subj > p, .jhs-subj > p {
  font-size: .9rem;
  padding: .5rem;
  margin: 0;
  color: #AAAAAA;
}

.Preschool > p,.Lower > p, .Upper > p, .JHS > p {
  font-size: .9rem;
  padding: .5rem;
  margin: 0;
  color: #AAAAAA;
}

.hide {
  display: none;
}

.invisible {
  visibility: hidden;
}

.input-check {
  padding: .5rem;
}

.preschool-dep p,.lower-dep p, .upper-dep p, .jhs-dep p {
  font-size: 1rem;
  color: #AAAAAA;
  padding: 1rem .5rem 2rem .5rem;
  margin: 0;
  font-weight: bold;

}

.preschool-dep, .lower-dep, .upper-dep, .jhs-dep {
  display: none;
}

.more-info {
  display: none;
}

.continue-btn {
  display: block;
  width: 100%;
  margin: 0 auto;
  font-family: 'Maven Pro';
  font-weight: bold;
  line-height: 1.5;
  /* color: ; */
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  background-color: #FCE606;
  border: 1px solid transparent;
  padding: 0.775rem 1.15rem;
  font-size: 1rem;
  border-radius: 0.25rem;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

#continueBtn:focus {
  outline: 0 !important;
  box-shadow: 0 0 0 0.25rem rgba(252, 230, 6);
}
#continueBtn:hover {
  opacity: .9;
}

.login-btn {
  display: none;
  width: 100%;
  margin: 0 auto;
  font-family: 'Maven Pro';
  font-weight: bold;
  line-height: 1.5;
  color: #272727;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  background-color: #FCE606;
  border: 1px solid transparent;
  padding: 0.775rem 1.15rem;
  font-size: 1rem;
  border-radius: 0.25rem;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.add-btn {
  margin-top: 30px!important;
  width: 100%;
  margin: 0 auto;
  font-family: 'Maven Pro';
  font-weight: bold;
  line-height: 1.5;
  color: #272727;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  background-color: #FCE606;
  border: 1px solid transparent;
  padding: 0.775rem 1.15rem;
  font-size: 1rem;
  border-radius: 0.25rem;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.ln-submit-btn {
  margin-top: 30px!important;
  padding: 0.775rem 1.15rem;
  border: none;
  width: 100%;
  margin: 0 auto;
  font-family: 'Maven Pro';
  font-weight: bold;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  background-color: rgba(26, 235, 54, 0.7);
  color: #272727;
  font-size: 1rem;
  border-radius: 0.3rem;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.ln-submit-btn:focus {
  outline: 0 !important;
  box-shadow: 0 0 0 0.25rem #1aeb36;
}

.ln-submit-btn:hover {
  background-color: #1aeb36;
}

.add-btn:focus {
  outline: 0 !important;
  box-shadow: 0 0 0 0.25rem rgba(252, 230, 6);
}

.school-crest {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  height: 7rem;
  width: 7rem;
  margin: 0 auto;
  margin-bottom: 30px;
  border-radius: 50%;
  background-color: #4D4B4A;
  background-image: url('../img/edit-user.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.school-crest input[type="file"] {
  display: none;
}

.school-crest-search {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.school-name-search {
  font-size: small;
  color: #FCE606;
  margin-top: .5rem;
}

.contact-us, .tos {
  color: #FCE606;
}

.contact-us:hover, .tos:hover {
  color: #aaaaaa;
}

@-webkit-keyframes slideIn {
  from {bottom: -300px; opacity: 0} 
  to {bottom: 108px; opacity: 1}
}

@keyframes slideIn {
  from {bottom: -300px; opacity: 0}
  to {bottom: 108px; opacity: 1}
}

@-webkit-keyframes fadeIn {
  from {opacity: 0} 
  to {opacity: 1}
}

@keyframes fadeIn {
  from {opacity: 0} 
  to {opacity: 1}
}

.modal-header {
  display: flex;
  align-items: center;
  background-color: #262625;
  padding: .5rem 1rem;

}

.modal-header h6 {
  font-size: .9rem;
  color: #aaaaaa;
}

.modal-body {
  padding: 1.5rem 16px;
}

.modal-body p {
  font-size: .9rem;
  /*color: #AAAAAA;*/
}

.modal-footer {
  padding: 0 0 1.3rem 0;
}

.close:hover,
.close:focus {
  color: #FCE606;
  text-decoration: none;
  cursor: pointer;
}

.close {
  display: flex;
  align-items: center;
  color: #aaaaaa;
  font-weight: bold;
  margin-left: auto; 
  margin-right: 0;
}

.lnbook-del-modal {
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100vh; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  -webkit-animation-name: fadeIn; /* Fade in the background */
  -webkit-animation-duration: 0.4s;
  animation-name: fadeIn;
  animation-duration: 0.4s
}

.ln-del-modal {
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100vh; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  -webkit-animation-name: fadeIn; /* Fade in the background */
  -webkit-animation-duration: 0.4s;
  animation-name: fadeIn;
  animation-duration: 0.4s
}

.modal-services {
  display: none;
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100vh; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  -webkit-animation-name: fadeIn; /* Fade in the background */
  -webkit-animation-duration: 0.4s;
  animation-name: fadeIn;
  animation-duration: 0.4s
}

.notice-modal {
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100vh; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  -webkit-animation-name: fadeIn; /* Fade in the background */
  -webkit-animation-duration: 0.4s;
  animation-name: fadeIn;
  animation-duration: 0.4s
}

.saved-modal {
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100vh; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  -webkit-animation-name: fadeIn; /* Fade in the background */
  -webkit-animation-duration: 0.4s;
  animation-name: fadeIn;
  animation-duration: 0.4s
}

.del-stage-modal, .learners-stage-modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 10; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100vh; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  -webkit-animation-name: fadeIn; /* Fade in the background */
  -webkit-animation-duration: 0.4s;
  animation-name: fadeIn;
  animation-duration: 0.4s
}

.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100vh; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  -webkit-animation-name: fadeIn; /* Fade in the background */
  -webkit-animation-duration: 0.4s;
  animation-name: fadeIn;
  animation-duration: 0.4s
}

.modal-content {
  position: fixed;
  bottom: 108px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: .5rem;
  background-color: #4D4B4A;
  width: 80%;
  border-top: solid .3rem #aaaaaa;
  -webkit-animation-name: slideIn;
  -webkit-animation-duration: 0.4s;
  animation-name: slideIn;
  animation-duration: 0.4s
}

.modalbox-btn-left, .modalbox-btn-right {
  padding: .3rem 2rem;
  margin: 0 .3rem;
  font-size: .8rem;
  color: #ffffff;
  border: none;
  border-radius: .5rem;
}

.modalbox-btn-left {
  background-color: #0a58ca;
}

.modalbox-btn-right {
  background-color: #75726E;
}

.modalbox-btn-left:hover {
  opacity: .8;
}

.modalbox-btn-right:hover {
  opacity: .8;
}

.tooltip {
  position: relative;
  display: inline-block;
}

.tooltip .tooltiptext {
  visibility: hidden;
  width: 100px;
  background-color: #0a58ca;
  color: #fff;
  text-align: center;
  border-radius: .3rem;
  padding: .3rem 0;
  position: absolute;
  z-index: 1;
  bottom: 140%;
  left: 50%;
  margin-left: -50px;
  opacity: 0;
  transition: opacity 0.3s;
  font-size: .77rem;
}

.tooltip .tooltiptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #0a58ca transparent transparent transparent;

}

.tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}

 .main {
  scrollbar-width: none;

}

.main::-webkit-scrollbar{
  display: none;
}

.main {
  -ms-overflow-style: none;
}

.users-info input[type="text"]:focus {
  border-bottom: 1px solid #fce606;
  margin-top: .2rem;
  outline: none;
}

.users-info input[type="tel"]:focus {
  border-bottom: 1px solid #fce606;
  margin-top: .2rem;
  outline: none;
  border-radius: 0rem !important;
}

.users-info input[type="email"]:focus {
  border-bottom: 1px solid #fce606;
  margin-top: .2rem;
  outline: none;
}

.users-info input[type="number"]:focus {
  border-bottom: 1px solid #fce606;
  margin-top: .2rem;
  outline: none;
}

.users-info input[type="date"]:focus {
  border-bottom: 1px solid #fce606;
  margin-top: .2rem;
  outline: none;
}

.users-info select:focus {
  border-bottom: 1px solid #fce606;
  margin-top: .2rem;
  outline: none;
}

.users-info select option{
  padding: 30px 0;
  color: #202020;
}

.users-info input[type="tel"] {
  display: block;
  width: 100%;
  background-color: transparent;
  color: #ffffff;
  font-size: 1rem;
  border: none;
  padding: 0;
  margin: 0;
}

.users-info input[type="text"], input[type="email"], input[type="number"], input[type="date"], select {
  display: block;
  width: 100%;
  background-color: transparent;
  color: #ffffff;
  font-size: 1rem;
  border: none;
}

.users-info label {
  font-size: .9rem;
  color: #AAAAAA;
}

.users-info {
  border-top: 1px solid #323232;
  padding: 1rem 1rem;
  /* margin: 1rem 0; */
  border-radius: 4px;
  /* background-color: #323232; */
}

.users-info:hover {
  background-color: #323232;
}

.learner-profileBtn {
  margin-bottom: 1rem; 
  display: flex;
  justify-content: center;
  background-color: #323232;
  padding: .7rem 0;
  border-radius: .5rem;
  width: 100%;
}

.action-button {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: .5rem; 
  height: 2.7rem; 
  width: 2.7rem; 
  line-height: 1rem;
  margin: 0 .5rem;
  background-color: #3e3e3e;
  border: none;
}

.action-button:hover {
  background-color: #434343;
}

.action-button:hover .iconsize-9{
  color: #FCE606;
}

.learner-profileBtn button {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: .5rem; 
  height: 2.7rem; 
  width: 2.7rem; 
  line-height: 1rem;
  margin: 0 .5rem;
  background-color: #3e3e3e;
  border: none;
}

.learner-profileBtn button:hover {
  background-color: #434343;
}

.learner-profileBtn button:hover .iconsize-9{
  color: #FCE606;
}

.ln-profile-header h1 {
  font-size: 1.3rem;
  font-weight: bold;
  color: #1aeb36;
}

.profile-header h1 {
  font-size: 1.3rem;
  font-weight: bold;
  color: #FCE606;
}

.profile-header p {
  font-size: .9rem;
  font-weight: normal;
  color: #aaaaaa;
  margin: 0;
}

.results-about {
  font-size: small;
  margin: .5rem 0 2rem 0;
}

.search-results-outer a:hover {
  color: #ffffff;
}

.search-results-outer a {
  text-decoration: none;
  color: #ffffff;
}

.search-results-outer {
  margin: .5rem 0;
  
}

.pic-wrapper-outer {
  display: flex;
  padding: 0 .5rem;
}

.search-results-inner {
  display: flex;
}

.search-info {
  padding-left: .5rem;
  
}

.search-info-name {
  font-size: .9rem;
  font-weight: bold;
}

.search-info-details {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  font-size: small;
  color: #AAAAAA;
}

.search-results {
  border-left: .3rem solid #AAAAAA;
  /* border-top: .03rem solid #AAAAAA;
  border-right: .03rem solid #AAAAAA;
  border-bottom: .03rem solid #AAAAAA; */
  margin: .7rem 0;
  padding: .5rem;
  border-radius: 4px;
}

.search-results:hover {
  background-color: #414141;
  border: none;
}

.back-btn-container {
  position: absolute;
  top: .5rem;
  left: 1.3rem;
  z-index: 10;

}

.back-btn-container a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: .4rem 0; 
  border-radius: .5rem; 
  width: 3rem; 
  background-color: #343434; 
  border: 1px solid #393939;
}

.back-btn-container a:hover {
  background-color: #393939; 
}

.back-btn {
  float: left;
  position: fixed; 
  top: 1rem; 
  left: 1rem; 
  padding: .5rem 1rem;
  border-radius: .5rem;
}

.back-btn:hover {
  background-color: #434343; 
  border-radius: .5rem;
}

.faux-div {
  height: 8rem;
}

.profile-info label {
  font-size: .9rem;
  color: #AAAAAA;
}

.profile-info-2 label {
  font-size: .9rem;
  color: #AAAAAA;
}

.profile-info input[type="text"], input[type="email"], input[type="number"], input[type="date"], select {
  display: block;
  width: 100%;
  background-color: transparent;
  color: #ffffff;
  font-size: 1rem;
  border: none;
  /* margin-top: .5rem; */
}

.profile-info input[type="tel"] {
  display: block;
  width: 100%;
  background-color: transparent;
  color: #ffffff;
  font-size: 1rem;
  border: none;
  padding: 0;
  margin: 0;
}

.profile-info input[type="currency"] {
  display: block;
  width: 100%;
  background-color: transparent;
  color: #ffffff;
  font-size: 1rem;
  border: none;
  padding: 0;
  margin: 0;
}

.profile-info input[type="currency"]:focus {
  border-bottom: 1px solid #fce606;
  /* margin-top: .2rem; */
  outline: none;
}

.profile-info input[type="text"]:focus {
  border-bottom: 1px solid #fce606;
  /* margin-top: .2rem; */
  outline: none;
}

.profile-info input[type="tel"]:focus {
  border-bottom: 1px solid #fce606;
  /* margin-top: .2rem; */
  outline: none;
  border-radius: 0rem !important;
}

.profile-info input[type="email"]:focus {
  border-bottom: 1px solid #fce606;
  /* margin-top: .2rem; */
  outline: none;
}

.profile-info input[type="number"]:focus {
  border-bottom: 1px solid #fce606;
  /* margin-top: .2rem; */
  outline: none;
}

.profile-info input[type="date"]:focus {
  border-bottom: 1px solid #fce606;
  /* margin-top: .2rem; */
  outline: none;
}

.profile-info select:focus {
  border-bottom: 1px solid #fce606;
  /* margin-top: .2rem; */
  outline: none;
}

.profile-info select option{
  padding: 30px 0;
  color: #202020;
}

input[type=number] {
  -moz-appearance: textfield;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.profile-info {
  border-top: 1px solid #393939;
  /* margin: .5rem 0; */
  padding: .8rem .5rem;
}

.profile-info-2 {
  border-top: 1px solid #393939;
  /* margin: .5rem 0; */
  padding: .8rem .5rem 0;
}

.profile-info-1 {
  border-top: 1px solid #393939;
  margin: 1rem 0;
  padding: 1rem .5rem 1rem;
}

.profile-info:hover {
  background-color: #323232;
  border-radius: 4px;
}

.submenu-area {
  position: fixed;
  top: 63px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  height: 100vh;
  width: 100%;
  transition: all .5s;
  overflow: auto;
}

.search .error {
  margin: 1rem 0 0;
  display: none;
}

.search-outer a {
  color: #272727;
}

.search-outer a:hover {
  color: #0a58ca;
}

.search-outer p {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 2rem;
  font-size: .7rem;
  color: #272727;
}

.search-outer {
  position: relative;
  height: fit-content;
}

.enterpsword {
  position: relative;
}

.enter-psword {
  position: relative;
  display: none;
}

.search-icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 2rem;
}

.clear-icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 2rem;
  visibility: hidden;
  cursor: pointer;
}

.hidden-icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 1rem;
  visibility: hidden;
  cursor: pointer;
}

.hidden-icon:hover {
  color: #0a58ca;
}

.visible-icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 1rem;
  cursor: pointer;
}

.visible-icon:hover {
  color: #0a58ca;
}

.search-outer input[type="search"] {
  padding-left: 3.3rem;
  font-size: small;
  font-weight: bold;
}

.profile-pic input[type="file"] {
  display: none;
}

.learner-pic input[type="file"] {
  display: none;
}

.upload-pic {
  display: inline-block;
  cursor: pointer;
}

.edit-wrapper {
  position: absolute;
  bottom: 0;
  right: -1.7rem;
  border-radius: 4px;
  padding: .4rem;
}


.edit-wrapper:hover {
  background-color: #0a58ca;
}

.pic-results {
  display: flex;
  align-items: center;
  height: 3rem;
  width: 3rem;
  border-radius: 50%;
  background-image: url("../img/edit-user.svg");
  /* background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover; */
}

.learner-pic {
  position: relative;
  margin: calc(15px + .4rem) auto;
  height: 6rem;
  width: 6rem;
  border-radius: 50%;
  background-image: url("../img/edit-user.svg");
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
}

.profile-pic {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  height: 6rem;
  width: 6rem;
  border-radius: 50%;
  background-image: url("../img/edit-user.svg");
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
}

.pic-wrapper svg {
  max-width: 100%;
}

.profile-pic {
  display: flex;
  padding: 1rem;
  margin: .4rem 0;
  /* border-bottom: 1px solid #323232; */
}

.service-list {
  list-style: none;
  display: grid;
  grid-template-columns: auto auto auto;
  justify-content: center;
}

.service-btn {
  text-decoration: none;
  color: #fff;
}

.service-btn:hover {
  color: #fff;
}

.off-services span {
  color: #aaaaaa;
}

.service-outer {
  /*border: 1px solid #393939;*/
  border-radius: .5rem;
  padding: 1rem;
 /* margin: .5rem;*/
  font-size: .9rem;
  width: 7rem;
  display: inline-block;
}

.service-outer:hover {
  background-color: #55555C;
  opacity: .8;
  /*border: .1rem solid #FCE606;*/
}

.service-inner .title span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: .8rem;
}

.note-btn-outer .title span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: .8rem;
}

.note-btn-outer .title {
  text-align: center;
  padding: .5rem 0 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.note-btns .title {
  text-align: center;
  padding: .5rem 0 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #aaaaaa;
}

.note-btns .title span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: .8rem;
}

.service-inner .title {
  text-align: center;
  padding: .5rem 0 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.clickable-1 {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lesson-btns {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
}

.note-btns button {
  border: none;
}

.note-btns .tile {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #323232;
  border-radius: .5rem;
  width: 3rem;
  height: 3rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.note-btns .tile svg {
  color: rgba(26, 235, 54, 0.7);
}

.note-btns .tile:hover svg {
  color: #1aeb36;
}

.clickable-1 .tile {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #323232;
  border-radius: .5rem;
  width: 70px;
  height: 70px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.clickable-1 .icon-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  height: 3rem;
  width: 3rem;
  overflow: hidden;
  position: relative;
}

.lesson-btns .tile {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #323232;
  border-radius: .5rem;
  width: 70px;
  height: 70px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.lesson-bts .icon-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  height: 3rem;
  width: 3rem;
  overflow: hidden;
  position: relative;
}

.logout-btn span {
  color: #AAAAAA;
  font-weight: bold;
  padding-top: .4rem;
}

.logout-btn {
  display: flex;
  justify-content: center;
  padding: 3rem 5rem 2rem 5rem;
  font-size: .8rem;
  border-radius: .5rem;
  color: #AAAAAA;
}

.logout-btn .service-icon-4 {
  color: #FCE606;
}

.logout-btn span {
  color: #FCE606;
}

.logout-link:hover .service-icon-4 {
  color: #aaaaaa;
  transition: ease-in .2s;
}

.logout-link:hover span {
  color: #aaaaaa;
  transition: ease-in .2s;
}

.logout-link {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.flex-basis-1 {
  flex-basis: 60%;
}

.flex-basis-2 {
  flex-basis: 40%;
}

.click-container {
  display: flex;
  align-items: center;
  width: 100%;
}

.view-admissions {
  color: #aaaaaa !important;
  padding: 1.5rem 1rem;
  border-radius: .5rem;
  font-size: smaller;
  margin-left: .5rem;
}

.view-admissions:hover {
  background-color: #323232;
  color: #fce606 !important;;
}

.b-padding {
  padding-bottom: 1.5rem !important;
}

.b-margin {
  margin-bottom: 1.5rem;
}

.b-marg {
  margin-bottom: 1rem;
}

.t-marg {
  margin-top: 1rem;
}

.no-padding {
  padding: 0;
}

.no-margin {
  margin: 0;
}

.sub-btn-odd {
  background-color: #2D2D2D;
}

.bg-color-1 {
  background-color: #272727;
}

.bg-color-2 {
  background-color: #323232;
}

.bg-color-3 {
  background-color: #3C3C3C;
}

.clickable {
  display: flex;
  align-items: center;
  background-color: #323232;
  border-radius: .5rem;
  padding: 1rem;
  font-size: 1rem;
  margin: 0 0 1rem 0;

}

.clickable:hover {
  background-color: #343434 !important;
  color: #fce606;
}

.clickable:hover .service-icon-4 {
  color: #fce606;
}

.div-link {
  color: #fff;
}

.div-link:hover {
  color: #fff;
}


.b-color-1 {
  background-color: #202020;
}

.f-height {
  height: 100vh;
}

.f-width {
  width: 100%;
}

.search input {
  border-radius: 50px;
  height: 50px;
}

.service-icon {
  height: 30px;
  color: #ffffff;
}

.icon-down {
  height: .8rem;
  color: #ffffff;
}

.iconsize-1 {
  height: 30px;
  color: #ffffff;
}


.service-icon-2 {
  color: #FCE606;
  height: 3rem;
}

.iconsize-2 {
  color: #FCE606;
  height: 3rem;
}

.service-icon-3 {
  color: #ffffff;
  height: 1.5rem;
}

.iconsize-3 {
  height: 1.2rem;
  color: #ffffff;
}

.service-icon-4 {
  color: #AAAAAA;
  height: 2rem;
}

.iconsize-4 {
  height: 2rem;
  color: #AAAAAA;
}

.icon-print {
  height: 1.5rem;
  color: #AAAAAA;
}

.service-icon-5 {
  color: #0a58ca;
  height: 3rem;
}

.service-icon-6 {
  color: #aaaaaa;
  height: 2rem;
  opacity: .3;
}

.profile-search-service {
  height: 2rem;
  color: #0a58ca;
}

.fees-tracker-service {
  color: #FCE606;
  height: 2rem;
}

.ln-service {
  color: #1aeb36;
  height: 2.8rem;
  margin-bottom: 1rem;
}

.lesson-note-service {
  color: #1AEB36;
  height: 2rem;
}

.lesson-notebook {
  color: #1AEB36;
  height: 2.5rem;
}

.lesson-notebook-head {
  color: #1AEB36;
  height: 5rem;
}

.lesson-note-list {
  color: #1AEB36;
  height: 1.5rem;
}

.lesson-vetted {
  color: #1AEB36;
  height: 1.5rem;
}

.add-activity {
  color: #1AEB36;
  height: 1.2rem;
}

.iconsize-5 {
  height: 3rem;
  color: #0a58ca;
}

.iconsize-6 {
  height: 5rem;
  color: #0a58ca;
}

.iconsize-7 {
  height: 1rem;
  color: #ffffff;
}

.iconsize-8 {
  height: 1.5rem;
  color: #272727;
}

.iconsize-9 {
  height: 1.5rem;
  color: #ffffff;
}

.iconsize-10 {
  height: 1.4rem;
  color: #aaaaaa;
  margin-right: .5rem;
}

.iconsize-11 {
  height: 1rem;
  color: #aaaaaa;
}

.iconsize-11:hover {
  height: 1rem;
  color: #FCE606;
}

.iconsize-12 {
  height: 1.2rem;
  color: #ffffff;
}

.iconsize-13 {
  height: .8rem;
  color: #aaaaaa;
  margin-right: .5rem;
}

.iconsize-14 {
  color: #ffffff;
  height: 3rem;
}

.iconsize-15 {
  color: #aaaaaa;
  height: 3rem;
}

.iconsize-16 {
  color: #FCE606;
  height: 5rem;
}

.iconsize-17 {
  color: #0a58ca;
  height: 5rem;
}

.iconsize-18 {
  color: #1AEB36;
  height: 5rem;
}

.d-flex {
  display: flex;
  align-items: center;
  justify-content: center;
}

.d-flex-1 {
  display: flex;
  position: relative;
}

.d-flex-2 {
  display: flex;
  align-items: center;
}

.d-flex-3 {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.d-flex-1 .service-icon-3 {
  /* position: absolute;
  bottom: 0;
  right: -1.5rem; */
  cursor: pointer;
}

.div-padding {
  padding: 0.5rem 1rem;
}

.div-padding-l {
  padding-left: 1rem;
  
}

.error {
  margin: -10px 0 30px 0;
  display: "";
}

.recoverpw {
  margin: 20px 0 0px 0;
  display: none;
  /* text-align: center; */
}

.autocomplete {
  position: relative;
  /* display: inline-block; */
}

.autocomplete-items {
  color: #272727;
  position: absolute;
  border: 1px solid #d4d4d4;
  border-bottom: none;
  border-top: none;
  z-index: 99;
  /*position the autocomplete items to be the same width as the container:*/
  top: 100%;
  left: 0;
  right: 0;
}

.autocomplete-items div {
  padding: 10px;
  cursor: pointer;
  background-color: #fff; 
  border-bottom: 1px solid #d4d4d4; 
}

/*when hovering an item:*/
.autocomplete-items div:hover {
  background-color: #272727; 
  color: #ffffff
}

/*when navigating through the items using the arrow keys:*/
.autocomplete-active {
  background-color: #272727 !important; 
  color: #ffffff; 
}

.input-group {
  display: flex;
  width: 100%;
  align-items: center;
  padding: 0.775rem 1.15rem;
  margin-bottom: 30px;
  font-family: 'Maven Pro';
  font-size: 1rem;
  line-height: 1.5;
  color: #212529;
  white-space: nowrap;
  background-color: #e9ecef;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
}

.sign-inputs input[type="text"], input[type="tel"], input[type="password"] {
  display: flex;
  width: 100%;
  align-items: center;
  padding: 0.775rem 1.15rem;
  margin-bottom: 30px;
  font-size: 1rem;
  line-height: 1.5;
  color: #212529;
  white-space: nowrap;
  background-color: #e9ecef;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
}

.sign-inputs input[type="text"]:focus{
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(252, 230, 6);
}

.sign-inputs input[type="tel"]:focus{
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(252, 230, 6);
}

.sign-inputs input[type="password"]:focus{
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(252, 230, 6);
}

.telcode {
  position: relative;
}

.telcode input[type="text"] {
  position: absolute;
  top: 50%; 
  transform: translateY(-50%);
  z-index: 1; 
  padding: 0 .2rem; 
  width: 3.2rem; 
  border: none; 
  text-align: right;
}

.telcode input[type="tel"] {
  padding-left: 3.7rem;
}
/* 
*:focus{
  outline: 0;
  box-shadow: 0 0 0 0.05rem rgba(252, 230, 6);
  border-radius: .3rem;
} */

#capsLock {
  display:none;
}

.or-divider {
  text-align: center;
  width: 350px;
  margin: auto;
}

.or-divider::before {
  border-top: 1px solid #ccc;
  content: " ";
  float: left;
  margin-top: 12px;
  vertical-align: middle;
  width: 45%;
  box-sizing: border-box;
}

.or-divider::after {
  border-top: 1px solid #ccc;
  content: " ";
  float: right;
  margin-top: 12px;
  vertical-align: middle;
  width: 45%;
  box-sizing: border-box;
}

.btn {
  display: block;
  width: 100%;
  margin: 0 auto;
  font-family: 'Maven Pro';
  font-weight: bold;
  line-height: 1.5;
  color: #272727;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  background-color: #FCE606;
  border: 1px solid transparent;
  padding: 0.775rem 1.15rem;
  font-size: 1rem;
  border-radius: 0.25rem;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.max-width-btn {
  max-width: 430px;
  margin: 0 auto;
}

.last-btn {
  margin-top: 30px;
  color: #b9b9b9;
  background-color: transparent;
  border: solid 0.1rem #FCE606;
}

/* .last-btn:hover {
  background-color: #FCE606;
  color: #272727;
} */

.btn:hover {
  /* color: #272727; */
  opacity: .9;
}
.btn-check:focus + .btn, .btn:focus {
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(252, 230, 6);
}

.btn:disabled, .btn.disabled, fieldset:disabled .btn {
  pointer-events: none;
  opacity: 0.65;
}

input,
button,
optgroup,
textarea {
  margin: 0;
  font-family: 'Maven Pro';
  font-size: inherit;
  line-height: inherit;
}

.search-outer input[type="search"]:focus {
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(252, 230, 6);
}

.ps-search input[type="search"]:focus {
  outline: 0;
  box-shadow: 0 0 0 0.25rem #0a58ca;
}

.ln-search input[type="search"]:focus {
  outline: 0;
  box-shadow: 0 0 0 0.25rem #1AEB36;
}

button,
select {
  text-transform: none;
}

[role=button] {
  cursor: pointer;
}

select {
  word-wrap: normal;
}

select:disabled {
  opacity: 1;
}

[list]::-webkit-calendar-picker-indicator {
  display: none;
}

button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}
button:not(:disabled),
[type=button]:not(:disabled),
[type=reset]:not(:disabled),
[type=submit]:not(:disabled) {
  cursor: pointer;
}

::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

a {
  color: #6FABDA;
  text-decoration: none;
}
a:hover {
  color: #aaaaaa;
}

a:not([href]):not([class]), a:not([href]):not([class]):hover {
  color: inherit;
  text-decoration: none;
}

.small-text {
  font-size: .8rem;
}

.med-text {
  font-size: .9rem;
}

.normal-text {
  font-size: 1rem;
}

.large-text {
  font-size: 3rem;
}

                                              /*Color Settings*/

.red-text {
  color: red;
}

.white-text {
  color: #fff;
}

.yellow-text {
  color: #FCE606;
}

.gray-text {
  color: #AAAAAA;
}

.center {
  text-align: center;
}

.t-border {
  border-top: .05rem solid white;
}

.b-border {
  border-bottom: .05rem solid white;
}

.b-border-gray {
  border-bottom: .05rem solid #aaaaaa;
}
.t-margin {
  margin-top: 30px;
}
.b-margin {
  margin-bottom: 2rem;
}

hr {
  margin: 1rem 0;
  color: inherit;
  background-color: currentColor;
  border: 0;
  opacity: .25
}

hr:not([size]) {
  height: 1px
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  margin-bottom: .5rem;
  font-weight: 500;
  line-height: 1.2
}

.size-1 {
  font-size: 4.5rem;
}

.size-2 {
  font-size: 3.5rem;
}

/* .size-3 {
  font-size: 2.5rem;
} */

.right {
  text-align: right;
}

.h1,
h1 {
  font-size: calc(1.375rem + 1.5vw)
}

@media (min-width:1200px) {

  .h1,
  h1 {
    font-size: 2.5rem
  }
}

.h2,
h2 {
  font-size: calc(1.325rem + .9vw)
}

@media (min-width:1200px) {

  .h2,
  h2 {
    font-size: 2rem
  }
}

.h3,
h3 {
  font-size: calc(1.3rem + .6vw)
}

@media (min-width:1200px) {

  .h3,
  h3 {
    font-size: 1.75rem
  }
}

.h4,
h4 {
  font-size: calc(1.275rem + .3vw)
}

@media (min-width:1200px) {

  .h4,
  h4 {
    font-size: 1.5rem
  }
}

.h5,
h5 {
  font-size: 1.25rem
}

.h6,
h6 {
  font-size: 1rem
}

p {
  margin-top: 0;
  margin-bottom: 1rem
}

.no-margin {
  margin: 0;
}

/* img,
svg {
  vertical-align: middle
}

table {
  caption-side: bottom;
  border-collapse: collapse
}

caption {
  padding-top: .5rem;
  padding-bottom: .5rem;
  color: #6c757d;
  text-align: left
}

th {
  text-align: inherit;
  text-align: -webkit-match-parent
}

tbody,
td,
tfoot,
th,
thead,
tr {
  border-color: inherit;
  border-style: solid;
  border-width: 0
}

label {
  display: inline-block
}

button {
  border-radius: 0;
}

button:focus:not(:focus-visible) {
  outline: 0;
}

button,
input,
optgroup,
select,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit
}

button,
select {
  text-transform: none;
}

[role=button] {
  cursor: pointer;
}

select {
  word-wrap: normal;
}

select:disabled {
  opacity: 1
}

[list]::-webkit-calendar-picker-indicator {
  display: none;
}

[type=button],
[type=reset],
[type=submit],
button {
  -webkit-appearance: button;
}

[type=button]:not(:disabled),
[type=reset]:not(:disabled),
[type=submit]:not(:disabled),
button:not(:disabled) {
  cursor: pointer;
}

::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

textarea {
  resize: vertical;
}

fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0
}

legend {
  float: left;
  width: 100%;
  padding: 0;
  margin-bottom: .5rem;
  font-size: calc(1.275rem + .3vw);
  line-height: inherit
}

@media (min-width:1200px) {
  legend {
    font-size: 1.5rem
  }
}

legend+* {
  clear: left
}

::-webkit-datetime-edit-day-field,
::-webkit-datetime-edit-fields-wrapper,
::-webkit-datetime-edit-hour-field,
::-webkit-datetime-edit-minute,
::-webkit-datetime-edit-month-field,
::-webkit-datetime-edit-text,
::-webkit-datetime-edit-year-field {
  padding: 0
}

::-webkit-inner-spin-button {
  height: auto
}

[type=search] {
  outline-offset: -2px;
  -webkit-appearance: textfield
}

::-webkit-search-decoration {
  -webkit-appearance: none
}

::-webkit-color-swatch-wrapper {
  padding: 0
}

::file-selector-button {
  font: inherit
}

::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button
} */

output {
  display: inline-block
}

[class*="col-"] {
  float: none; 
  padding: 15px; 
  width: 100%; 
}

.row::after {
  content: ""; 
  clear: both; 
  display: table;
}

main { 

  padding: 15px; 
  max-width: 100%;
  margin: 0;
  
}

.main {
  padding: 15px;
  /* padding-bottom: 7em; */
  max-width: 100%;
  margin: 0;
  height: 100%;
  overflow: auto;
}

@media only screen and (min-width: 600px) {
  /* For tablets: */
  .col-s-1 {width: 8.33%;}
  .col-s-2 {width: 16.66%;}
  .col-s-3 {width: 25%;}
  .col-s-4 {width: 33.33%;}
  .col-s-5 {width: 41.66%;}
  .col-s-6 {width: 50%;}
  .col-s-7 {width: 58.33%;}
  .col-s-8 {width: 66.66%;}
  .col-s-9 {width: 75%;}
  .col-s-10 {width: 83.33%;}
  .col-s-11 {width: 91.66%;}
  .col-s-12 {width: 100%;}

  main {
    padding: 50px 30px;
    max-width: 90%;
    margin: 0 auto;
  }

  .main {
    padding: 50px 30px;
    max-width: 90%;
    margin: 0 auto;

  }

  header {
    position: fixed;
    top: 0;
  }

  body {
    padding-top: 0;;
  }

  .search input {
    height: 50px;
  }

  .clickable {
    font-size: 1rem;
  }

  .flex-basis-1 {
    flex-basis: 70%;
  }
  
  .flex-basis-2 {
    flex-basis: 30%;
  }

  .flex-basis-3 {
    flex-basis: 30%;
  }

  .icon-size-8 {
    height: 1.6rem;
  }

  /* .search-outer input[type="search"] {
    font-size: 1rem;
  } */

  .back-btn {
    top: 1.5rem; 
    left: 2rem; 
  }

  .back-btn-container {
    top: 5.5rem;
    left: 2.3rem;
  }

  /* .search-outer p {
    font-size: .9rem;
  } */

}

@media only screen and (min-width: 854px) {
  /* For desktop: */
  .col-1 {width: 8.33%;}
  .col-2 {width: 16.66%;}
  .col-3 {width: 25%;}
  .col-4 {width: 33.33%;}
  .col-5 {width: 41.66%;}
  .col-6 {width: 50%;}
  .col-7 {width: 58.33%;}
  .col-8 {width: 66.66%;}
  .col-9 {width: 75%;}
  .col-10 {width: 83.33%;}
  .col-11 {width: 91.66%;}
  .col-12 {width: 100%;}

  .correct-main {
    margin-top: .5rem !important;
  }

  main {
    padding: 50px 30px;
    max-width: 60%;
    margin: 0 auto;
  }

  .main {
    padding: 50px 30px;
    max-width: 60%;
    margin: 0 auto;
  }

  header {
    position: fixed;
    top: 0;
  }

  body {
    padding-top: 0;;
  }

  .search input {
    height: 60px;
  }

  .clickable {
    font-size: 1rem;
  }

  .flex-basis-1 {
    flex-basis: 77%;
  }
  
  .flex-basis-2 {
    flex-basis: 23%;
  }

  .icon-size-8 {
    height: 1.7rem;
  }

  .search-outer input[type="search"] {
    font-size: 1rem;
  }

  .back-btn-container {
    top: 5.5rem;
    left: 2.3rem;
  }

  .back-btn {
    top: 1.5rem; 
    left: 2rem; 
  }

  .search-outer p {
    font-size: .9rem;
  }

}


/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
  
  .telcode input[type="text"] {
    padding: .4rem; 
    width: 3.2rem; 
    border: none; 
    text-align: right;
  }
   
  .user-admission-btn {
    margin-left: .5rem;
  }  
    
  .user-admission-group p {
    padding-left: .7rem;
  }  
    
  .sub-group-2 span {
    font-size: small;
  }
    
  .user-admission-group p {
    font-size: smaller;
  }
    
  .service-list {
    display: grid;
    grid-template-columns: auto auto auto;
  }

  .ln-list {
    display: grid;
    grid-template-columns: auto auto auto;
  }

  .pic-wrapper-2 {
    height: 3rem;
    width: 3rem;
  }

}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {  
  
  .user-admission-group p {
    padding-left: .7rem;
  }  
  .sub-group-2 span {
    font-size: small;
  }

  .service-list {
    display: grid;
    grid-template-columns: auto auto auto;
  }

  .ln-list {
    display: grid;
    grid-template-columns: auto auto auto;
  }

  .pic-wrapper-2 {
    height: 3rem;
    width: 3rem;
  }

  .modal-content {
    width: 60%;
  }

}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {

  .modalbox-content {
    width: 60%;
  }
  
  .stages-list {
  font-size: .9rem;
  }

  .adv-search-btn button {
    font-size: .9rem;
  }

  .admission-counter {
    margin-left: 1rem;
  } 

  .service-list {
    display: grid;
    grid-template-columns: auto auto auto auto;
  }

  .ln-list {
    display: grid;
    grid-template-columns: auto auto auto auto;
  }

  .pic-wrapper-2 {
    height: 3rem;
    width: 3rem;
  }

  .profile-header h1 {
    font-size: 1.4rem;
  }

  .profile-header p {
    font-size: .9rem;
  }

  .modal-content {
    width: 60%;
  }

  .heading-container {
    padding: 0 0 2rem 0;
  }

  #schoolTypeHeading {
    margin: 0 0 2rem 0;
  }

}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {

  .modalbox-content {
    width: 60%;
  }
  
  .tab-btns-content-users span:hover {
  background-color: #272727 !important;;
  color: #ffffff !important;;
  
  }
  
  .stages-list {
  font-size: 1rem;
  }

  .adv-search-btn button {
    font-size: 1rem;
  }

.admission-counter {
  margin-left: 1rem;
} 

.service-list {
  display: grid;
  grid-template-columns: auto auto auto auto auto;
}

.ln-list {
  display: grid;
  grid-template-columns: auto auto auto auto auto;
}

.pic-wrapper-2 {
  height: 4rem;
  width: 4rem;
}

.search-info-name {
  font-size: medium;
}

.search-info-details {
  font-size: smaller;
}

.profile-header h1 {
  font-size: 1.5rem;
}

.profile-header p {
  font-size: 1rem;
}

.modal-content {
  width: 40%;
}

.heading-container {
  padding: 0 0 2rem 0;
}

#schoolTypeHeading {
  margin: 0 0 2rem 0;
}

}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {

  .modalbox-content {
    width: 50%;
  }
  
  .tab-btns-content-users span:hover {
  background-color: #272727 !important;;
  color: #ffffff !important;;
  
  }
  
  .stages-list {
  font-size: 1rem;
  }

  .adv-search-btn button {
    font-size: 1rem;
  }
  
  .admission-counter {
    margin-left: 1rem;
  } 

  .service-list {
    display: grid;
    grid-template-columns: auto auto auto auto auto;
  }

  .ln-list {
    display: grid;
    grid-template-columns: auto auto auto auto auto;
  }

  .pic-wrapper-2 {
    height: 4rem;
    width: 4rem;
  }

  .search-info-name {
    font-size: medium;
  }

  .search-info-details {
    font-size: smaller;
  }

  .profile-header h1 {
    font-size: 1.5rem;
  }

  .profile-header p {
    font-size: 1rem;
  }

  .modal-content {
    width: 40%;
  }

  .heading-container {
    padding: 0 0 2rem 0;
  }

  #schoolTypeHeading {
    margin: 0 0 2rem 0;
  }

} 