input:focus-within {
  outline: none;
}

.form-control-sm {
  display: block !important;
}

/* width */
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
/* Handle */
::-webkit-scrollbar-thumb {
  background: #bbbbbb;
  border-radius: 5px;
}

.btn-n {
  background: #0d396d;
  color: #fff;
}
.btn-n:hover {
  color: #fff !important;
}

.icon-box {
  height: 50px;
  width: 50px;
  background: #000;
  border-radius: 15px;
  display: grid;
  place-items: center;
}
.icon-box i,
.icon-box span {
  color: #fff;
  font-size: 1.6rem;
}
.icon-box.one {
  background: #9694ff;
}
.icon-box.two {
  background: #57caeb;
}
.icon-box.three {
  background: #5ddab4;
}
.icon-box.four {
  background: #ff7976;
}

.card-box-s {
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0 0 28px rgba(0, 0, 0, 0.08);
}

.account_status {
  background: #fff;
  border-radius: 10px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 0;
  margin: 1.2rem 0;
  border: 0.5px solid #cccccc61;
}
.account_status:nth-child(1) {
  margin: 0;
}
.account_status:nth-child(1) .left_data .icon {
  visibility: hidden;
  color: #4bde51;
  animation: success 2s 0.2s linear infinite;
}
.account_status:nth-child(2) .left_data .icon {
  color: #ffc107;
  visibility: hidden;
  animation: shake 2s 0.2s forwards infinite;
}
.account_status:nth-child(3) .left_data .icon {
  color: red;
}
.account_status .left_data {
  display: flex;
  align-items: center;
}
.account_status .left_data .icon {
  margin: 0 1rem;
  font-size: 2.5rem;
  padding-right: 1.3rem;
}
.account_status .left_data .text .head {
  font-weight: 500;
  color: #3502d2;
}
.account_status .left_data .text .para {
  font-weight: bolder;
  font-size: 1.4rem;
  padding: 0.5rem 0 0 0;
}
.account_status .right_data {
  width: 40px;
  height: 40px;
  background: #d6d6d6;
  margin-right: 1.3rem;
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: #4e4e4e;
  cursor: pointer;
  transition: 0.3s ease-out;
}
.account_status .right_data a {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
}
.account_status .right_data:hover {
  color: #fff;
  background: #9694ff;
}

.chart-head,
.chart-head2 {
  color: #fff;
  padding: 1rem;
  box-shadow: 0 0 36px #c7c7c7;
  margin-bottom: 2rem;
  border-radius: 5px;
  background: #ff5b6b;
  font-size: 1.4em;
}

.chart-head2 {
  background: #533ffd;
}

@keyframes shake {
  0% {
    transform: rotate(45deg);
    visibility: visible;
  }
  50% {
    transform: rotate(-45deg);
  }
  100% {
    transform: rotate(45deg);
  }
}
@keyframes success {
  0% {
    visibility: visible;
    opacity: 0;
  }
  50% {
    opacity: 0.5;
  }
  to {
    opacity: 1;
  }
}
.branches_container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 1rem;
}
.branches_container .branch_card {
  background: #d3d5e2;
  padding: 1.2rem;
}
.branches_container .branch_card .branch_status {
  display: flex;
  justify-content: flex-end;
}
.branches_container .branch_card .branch_status p {
  font-weight: 600;
}
.branches_container .branch_card .branch_status span {
  display: block;
  padding-left: 0.4rem;
  font-size: 0.9rem;
  font-style: italic;
}
.branches_container .branch_card .branch_name {
  display: grid;
  place-items: center;
  text-align: center;
  width: 100%;
  padding: 1.2rem 0;
  min-height: 7rem;
}
.branches_container .branch_card .branch-action__btns,
.branches_container .branch_card .grade-action__btns {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  width: 100%;
  padding-top: 1.2rem;
}
.branches_container .branch_card .branch-action__btns a,
.branches_container .branch_card .grade-action__btns a {
  border: none;
  outline: none;
  width: 33.3333333333%;
  min-height: 2.3333333333rem;
  padding: 0.3rem 0;
  color: #fff;
  box-shadow: 0 8px 8px rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  display: grid;
  text-align: center;
}
.branches_container .branch_card .branch-action__btns a:focus-within,
.branches_container .branch_card .grade-action__btns a:focus-within {
  outline: none;
}
.branches_container .branch_card .branch-action__btns .suspend_branch,
.branches_container .branch_card .grade-action__btns .suspend_branch {
  background: linear-gradient(#ffe259, #ffa751);
}
.branches_container .branch_card .branch-action__btns .delete_branch,
.branches_container .branch_card .grade-action__btns .delete_branch {
  background: #f25555;
}
.branches_container .branch_card .branch-action__btns .activate_branch,
.branches_container .branch_card .grade-action__btns .activate_branch {
  background: #3f51b5;
}

@media (max-width: 1200px) {
  .branches_container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 1rem;
  }
}
@media (max-width: 768px) {
  .branches_container {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 1rem;
  }
}
@media (max-width: 600px) {
  .branches_container .branch_card .branch-action__btns {
    display: block;
  }
  .branches_container .branch_card .branch-action__btns a {
    width: 100%;
    margin: 1.2rem 0;
  }
}
.account-registration__form {
  width: 600px;
  margin: 2rem auto;
}

.form__container,
.records__container {
  width: 350px;
  margin: 2rem auto;
}
.form__container .form-group,
.records__container .form-group {
  margin-bottom: 0.2rem;
}

@media (max-width: 600px) {
  .registration__form,
  .form__container,
  .records__container {
    width: 96%;
    margin: 2rem auto;
  }
}
@media (max-width: 540px) {
  .student_box {
    width: 95%;
  }
}
.mini-h {
  min-height: 130px;
}

@media (max-width: 1200px) {
  .mini-h:nth-child(1) {
    margin-bottom: 1rem;
  }
}
.search-row {
  max-width: 540px;
  margin: 2rem auto;
  margin-bottom: 5rem;
}
.search-row input,
.search-row button,
.search-row select {
  padding: 0.6rem;
  border: 1px solid #eee;
  min-height: 50px;
  border-radius: 4px;
  cursor: pointer;
}
.search-row .search-date__container {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.search-row button {
  background: #ff4181;
  color: #fff;
  width: 100%;
  min-width: 100px;
  margin: 2rem 0;
}

@media (max-width: 600px) {
  .search-row {
    width: 95%;
  }
  .search-row input,
  .search-row button,
  .search-row select {
    display: block;
    margin-bottom: 0.5rem;
    width: 100%;
  }
  .search-row .search-date__container {
    display: block;
  }
}
.grade-container {
  padding: 1rem;
}
.grade-container .grade-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 1rem;
}
.grade-container .grade-grid .grade {
  padding: 1rem;
  background: #fff;
  color: #fff;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  transition: 0.5s;
  border-radius: 4px;
}
.grade-container .grade-grid .grade a {
  font-size: 15px;
  color: #6e6e6e;
}
.grade-container .grade-grid .grade:nth-child(odd) {
  margin-bottom: 30px;
}
.grade-container .grade-grid .grade .grade-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.4rem;
}
.grade-container .grade-grid .grade .grade-head .grade-modal__btn {
  width: 30px;
  height: 30px;
  transition: 0.5s;
}
.grade-container .grade-grid .grade .grade-head .grade-modal__btn button {
  transition: 0.5s;
  background-color: #533ffd;
  border-radius: 50%;
  width: 100%;
  height: 100%;
  display: grid;
  font-size: 1.3rem;
  place-items: center;
  color: #fff;
  border: none;
}
.grade-container .grade-grid .grade:hover {
  background: #533ffd;
}
.grade-container .grade-grid .grade:hover h6 {
  color: #fff;
}
.grade-container .grade-grid .grade:hover .grade-head .grade-modal__btn {
  background-color: #fff;
}
.grade-container .grade-grid .grade:hover .grade-head .grade-modal__btn button {
  background-color: #fff;
  color: #533ffd;
}
.grade-container .grade-grid .grade:hover a {
  color: #fff;
}

@media (max-width: 990px) {
  .grade-container .grade-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .grade-container .grade-grid .grade {
    margin-bottom: 20px;
  }
}
@media (max-width: 768px) {
  .grade-container .grade-grid {
    grid-template-columns: 1fr;
  }
}
.records__container {
  width: 30rem;
  margin: 2rem auto;
}
.records__container select {
  padding: 1rem;
}
.records__container .dates {
  width: 100%;
}
.records__container .dates form {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.records__container .dates form input,
.records__container .dates form select {
  background: #fff;
  color: #333;
  font-size: 14px;
  font-weight: 600;
  border: none;
  outline: none;
  padding: 0.6rem;
  box-shadow: 0 0 40px #a2a2a2ab;
  border-radius: 5px;
}
.records__container .dates form button {
  margin-bottom: 0;
  min-width: 140px;
}

@media (max-width: 768px) {
  .records__container {
    width: 95%;
  }
  .records__container .dates form {
    display: block;
  }
  .records__container .dates form input,
  .records__container .dates form select {
    display: block;
    width: 100%;
    margin-bottom: 0.6rem;
  }
  .records__container .dates form button {
    width: 100%;
  }
}
.term-details {
  width: 350px;
  padding: 1.5rem;
  margin: 1rem auto;
}
.term-details label {
  margin: 0.5rem 0;
  font-size: 15px;
  font-weight: 700 !important;
}

.modal-details {
  padding: 0.8rem;
  background: #fff;
  border-radius: 5px;
  width: 400px;
}
.modal-details .details label {
  display: block;
  margin: 0.5rem 0;
  font-size: 0.8rem;
  font-weight: 700;
}
.modal-details .details p {
  padding: 0.375rem 0.75rem;
  line-height: 1.5;
  background: #efefef;
  border-radius: 0.25rem;
}
.modal-details .modal-btns .btns {
  display: flex;
}
.modal-details .modal-btns .btns .save-btn {
  margin-left: 0.7rem;
}

@media (max-width: 768px) {
  .feeding_form {
    width: 97% !important;
    margin: 1rem auto;
  }
}
.daily-expenses__date-container {
  display: flex;
  justify-content: flex-end;
}
.daily-expenses__date-container .input-group {
  width: 360px;
  display: block;
}
.daily-expenses__date-container .input-group label {
  display: block;
  font-size: 14px;
  font-weight: bold;
}

@media (max-width: 500px) {
  .daily-expenses__date-container {
    display: block;
  }
  .daily-expenses__date-container .input-group {
    width: 96%;
    margin: 0rem auto;
    margin-bottom: 1rem;
  }
  .daily-expenses__date-container h3 {
    font-size: 0.9rem !important;
  }
}
.monthly-expenses__date-container {
  display: flex;
  justify-content: flex-end;
}
.monthly-expenses__date-container .date_wrapper {
  width: 40rem;
  display: flex;
  gap: 0.5rem;
  justify-content: flex-end;
  align-items: flex-end;
}
.monthly-expenses__date-container .date_wrapper .input-group {
  display: block;
}
.monthly-expenses__date-container .date_wrapper .input-group label {
  font-size: 14px;
  font-weight: bold;
}

.overlay-show {
  display: block;
  position: absolute;
  display: none;
  align-items: center;
  justify-content: center;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: #e6e2e283;
  transition: 0.5;
  z-index: 9999;
}

.overlay-show.show {
  display: flex;
}

.search_btn {
  border: none;
  outline: none;
  background: #435ebe;
}
.search_btn i {
  color: #fff;
}

.footer__btns {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 70%;
  padding-bottom: 1em;
  margin: 0 auto;
}
.footer__btns .continue_btn {
  background: #2342a9d7;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  transition: 0.3s ease-out;
  border: none;
  width: 100%;
  text-align: center;
  height: 35px;
  padding: 0.2rem 0.4rem;
  min-height: 50px;
  border-radius: 5px;
  display: grid;
  place-items: center;
}
.footer__btns .continue_btn:hover {
  background: #2342a9;
}
.footer__btns > button {
  outline: none;
}

.grid-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.upload-mass-file {
  padding: 1rem;
  background: blue;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  margin-top: 1.2rem;
  cursor: pointer;
  border-radius: 5px;
}
.upload-mass-file:hover {
  cursor: pointer;
}

/*================ preloader css ====================*/
#preloader {
  background: #fff;
  height: 100%;
  bottom: 0;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

#preloader .loading {
  display: flex;
}

#preloader .spinner {
  animation: spinner 2s infinite linear;
  border-radius: 50%;
  border: 1px solid #f1f6f8;
  /* border-left-color: #ff6600;
    border-top-color: #ff6600; */
  margin: 0 auto 0em auto;
  position: absolute;
  left: -40px;
  right: -40px;
  bottom: -40px;
  top: -40px;
}

#preloader .spinner:before {
  content: "";
  width: 15px;
  height: 15px;
  box-shadow: 0 0 20px 0 rgba(4, 46, 56, 0.2);
  background: #0a468a;
  position: absolute;
  right: 10px;
  top: 41px;
  border-radius: 50%;
}

#preloader .spinner:after {
  content: "";
  width: 15px;
  height: 15px;
  box-shadow: 0 0 20px 0 rgba(4, 46, 56, 0.2);
  background: red;
  position: absolute;
  left: 8px;
  bottom: 42px;
  border-radius: 50%;
}

@media (max-width: 576px) {
  #preloader .spinner:before {
    top: 46px;
  }
}
#preloader .round_spinner {
  border-radius: 50%;
  /* background-color: transparent;
    box-shadow: 0 0 100px 0 rgba(4, 46, 56, 0.14); */
  width: 140px;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 40px auto 80px;
}

@media (max-width: 576px) {
  #preloader .round_spinner {
    width: 155px;
    height: 155px;
  }
}
@keyframes spinner {
  to {
    transform: rotateZ(360deg);
  }
}
/* mini loader */
.mini_loader {
  height: 25px;
  width: 25px;
  transition: 0.3s linear;
  animation: mini_loader 0.3s linear infinite;
  border-radius: 50%;
  border: 2px solid transparent;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  display: grid;
}

@keyframes mini_loader {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.overlay-container {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #0000008f;
  z-index: 9999;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.overlay-container .mini_loader {
  margin-top: 4rem;
}

.main-page__container {
  width: 40rem;
  margin: 0rem auto;
}
.main-page__container .title-text {
  width: 65%;
  margin: 0 auto;
}
.main-page__container .title-text h1 {
  font-size: 1.9rem;
  padding: 0.4rem;
}
.main-page__container .title-text p {
  color: #333;
  font-size: 18px;
}
.main-page__container .title-text span {
  font-style: italic;
  color: red;
}
.main-page__container .register-school__container {
  width: 70%;
  margin: 1.5rem auto;
  background: #fff;
  border: 1px solid #ccc;
  box-shadow: 0 0 40px #e6e6e6;
  border-radius: 0.3rem;
}
.main-page__container .register-school__container .container {
  padding: 1rem;
  margin: 1rem 0;
}
.main-page__container .register-school__container .container .grade-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.main-page__container .register-school__container .container .grade-head .name {
  font-size: 18px;
  font-weight: 600;
  color: #131644;
}
.main-page__container
  .register-school__container
  .container
  .grade-head
  .delete {
  color: red;
  font-weight: 800;
  cursor: pointer;
}
.main-page__container
  .register-school__container
  .container
  .class-details
  > div {
  position: relative;
  width: 100%;
  padding: 0.4rem 0;
}
.main-page__container
  .register-school__container
  .container
  .class-details
  > div
  label
  sup {
  color: red;
  display: inline-block;
}
.main-page__container
  .register-school__container
  .container
  .class-details
  > div
  label:nth-child(1) {
  display: block;
}
.main-page__container
  .register-school__container
  .container
  .class-details
  > div
  .input {
  width: 100%;
  display: flex;
  margin-top: 0.5rem;
}
.main-page__container
  .register-school__container
  .container
  .class-details
  > div
  .input
  span {
  min-width: 12%;
  min-height: 45px;
  background: #d0d0d0;
  display: grid;
  place-items: center;
  font-size: 15px;
  font-weight: 700;
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
}
.main-page__container
  .register-school__container
  .container
  .class-details
  > div
  .input
  input {
  width: 88%;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.05), inset 0 2px 2px rgba(0, 0, 0, 0.05);
  background: #f5f5f5;
  border: 1px solid #887e7e;
  border-left: none;
  min-height: 45px;
  border-radius: 3px;
  padding: 0 0.5rem;
  outline: none;
  font-weight: 600;
}
.main-page__container
  .register-school__container
  .container
  .class-details
  > div
  .input
  input:focus-within {
  outline: none;
}
.main-page__container
  .register-school__container
  .container
  .class-details
  > div
  .input:nth-child(1)
  span {
  display: none;
}
.main-page__container
  .register-school__container
  .container
  .class-details
  > div
  .no-symbol
  .add_gh {
  display: none;
}
.main-page__container
  .register-school__container
  .container
  .class-details
  > div
  .no-symbol
  input {
  width: 100%;
  border-left: 1px solid #887e7e;
}
.main-page__container .register-school__container .subject-choosing__container {
  padding: 1rem;
}
.main-page__container
  .register-school__container
  .subject-choosing__container
  .subject-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 1rem;
}
.main-page__container
  .register-school__container
  .subject-choosing__container
  .subject-container
  .input {
  font-size: 14px;
  display: flex;
  font-weight: 700;
}

@media (max-width: 650px) {
  .main-page__container {
    width: 98%;
  }
  .main-page__container .register-school__container {
    width: 95%;
  }
}
@media (max-width: 500px) {
  .main-page__container
    .register-school__container
    .subject-choosing__container
    .subject-container {
    padding: 0;
    display: block;
  }
  .main-page__container
    .register-school__container
    .subject-choosing__container
    .subject-container
    .input {
    text-align: center;
    margin: 1rem 0;
  }
}
.cbx {
  -webkit-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  cursor: pointer;
}

.cbx span {
  display: inline-block;
  vertical-align: middle;
  transform: translate3d(0, 0, 0);
}

.cbx span:first-child {
  position: relative;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  transform: scale(1);
  vertical-align: middle;
  border: 1px solid #b9b8c3;
  transition: all 0.2s ease;
}

.cbx span:first-child svg {
  position: absolute;
  z-index: 1;
  top: 8px;
  left: 6px;
  fill: none;
  stroke: white;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 16px;
  stroke-dashoffset: 16px;
  transition: all 0.3s ease;
  transition-delay: 0.1s;
  transform: translate3d(0, 0, 0);
}

.cbx span:first-child:before {
  content: "";
  width: 100%;
  height: 100%;
  background: #506eec;
  display: block;
  transform: scale(0);
  opacity: 1;
  border-radius: 50%;
  transition-delay: 0.2s;
}

.cbx span:last-child {
  margin-left: 8px;
}

.cbx span:last-child:after {
  content: "";
  position: absolute;
  top: 13px;
  left: 0;
  height: 1px;
  width: 100%;
  background: #b9b8c3;
  transform-origin: 0 0;
  transform: scaleX(0);
}

.cbx:hover span:first-child {
  border-color: #3c53c7;
}

.inp-cbx:checked + .cbx span:first-child {
  border-color: #3c53c7;
  background: #3c53c7;
  animation: check 0.6s ease;
}

.inp-cbx:checked + .cbx span:first-child svg {
  stroke-dashoffset: 0;
}

.inp-cbx:checked + .cbx span:first-child:before {
  transform: scale(2.2);
  opacity: 0;
  transition: all 0.6s ease;
}

.inp-cbx:checked + .cbx span:last-child {
  color: #b9b8c3;
  transition: all 0.3s ease;
}

.inp-cbx:checked + .cbx span:last-child:after {
  transform: scaleX(1);
  transition: all 0.3s ease;
}

@keyframes check {
  50% {
    transform: scale(1.2);
  }
}
.r-db {
  background: rgba(62, 71, 155, 0.8);
}

.r-g {
  background: rgba(254, 178, 97, 0.8);
}

.r-c {
  background: rgba(145, 148, 206, 0.8);
}

.r-r p,
.r-db p,
.r-g p,
.r-c p {
  color: #fff;
  margin: 1.2rem 0;
}

.r-r h4,
.r-db h4,
.r-g h4,
.r-c h4 {
  color: #fff;
}

.modal-container {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #00000085;
  display: none;
  place-items: center;
  z-index: 9999;
}
.modal-container .modal-body {
  width: 40%;
  min-height: 200px;
  padding: 2rem;
  background: #fff;
  margin: 0 auto;
}
.modal-container .modal-body .drop-zone {
  width: 98%;
  margin: 0 auto;
  border: 2px dotted #607d8b;
  height: 200px;
  padding: 2rem;
  display: grid;
  place-items: center;
  cursor: pointer;
}

.drop-zone__inside {
  border: 2px solid #607d8b !important;
}

.modal-container .modal-loader-container {
  display: none;
  place-items: center;
}
.modal-container .modal-loader-container span {
  font-weight: 600;
  font-size: 15px;
  pointer-events: none;
}
.modal-container .modal-loader-container .modal-loader {
  width: 20px;
  height: 20px;
  margin-bottom: 1.2rem;
  border: 3px solid transparent;
  border-top: 3px solid white;
  border-right: 3px solid white;
  border-radius: 50%;
  animation: load 0.3s infinite linear;
}
.modal-container .modal-form form {
  padding: 2rem;
  background: #fff;
  border-radius: 5px;
  width: 800px;
}
.modal-container .modal-form p {
  font-size: 15px;
  font-weight: 700;
  text-align: center;
}
.modal-container .modal-form .form-group {
  margin-bottom: 0.5rem;
}
.modal-container .modal-form .form-group label {
  color: #505050;
  font-size: 12px;
  font-weight: 600;
}
.modal-container .modal-form .form-group .form-control {
  height: auto;
  background: #f7f7f7;
}
.modal-container .modal-form .modal-btns {
  display: flex;
  justify-content: flex-end;
}
.modal-container .modal-form .modal-btns .btns {
  display: flex;
  margin-top: 0.8rem;
}
.modal-container .modal-form .modal-btns .btns .save-btn {
  margin-left: 1rem;
}

@keyframes load {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@media (max-width: 600px) {
  .modal-container .modal-form form {
    width: 98%;
    margin: 1rem auto;
  }
}
.anim {
  visibility: hidden;
  transform: translateY(-100%);
  animation: anim 0.4s alternate forwards;
}

@keyframes anim {
  from {
    transform: translateY(-100%);
  }
  to {
    visibility: visible;
    transform: translateY(0);
  }
}
.total-purchase__amount {
  display: flex;
}
.total-purchase__amount p {
  margin-right: 0.7rem;
  font-size: 15px;
  font-weight: 600;
}
.total-purchase__amount span {
  font-size: 14px;
  font-weight: 700;
}
.total-purchase__amount label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-top: 0.3rem;
}

.feeding_form {
  padding: 10px;
  background: #fff;
  box-shadow: 1px 1px 6px #e1e0e0;
  width: 500px;
  margin: 4rem auto;
  border-radius: 8px;
}
.feeding_form .input {
  margin: 1rem 0;
}
.feeding_form .input label {
  font-size: 14px;
  font-weight: 700;
  display: block;
}

.search_container {
  width: 96%;
  margin: 4rem auto 0 auto;
  padding: 1rem;
}

.search_lists {
  width: 80%;
  margin: 2rem 0;
  padding: 0.6rem;
  background: #fff;
  border-radius: 4px;
}

.search_lists .single_list {
  width: 90%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.single_list .content {
  flex: 1;
  display: flex;
  align-items: center;
}

.single_list .content .img_container {
  width: 50px;
  height: 50px;
  background: #000;
  border-radius: 50%;
}

.single_list .content .text_container {
  padding: 0 1rem;
}

.single_list .content .text_container p {
  margin: 0;
  color: #474747;
}

.single_list .content .text_container span {
  font-size: 13px;
  color: #686868;
}

.profile_view a {
  padding: 0.3rem 0.3rem;
  box-shadow: 0 0 10px rgba(184, 184, 184, 0.1);
  border-radius: 4px;
  margin: 0 0.3rem;
}

@media (max-width: 600px) {
  .single_list .content .img_container {
    display: none;
  }

  .search_lists {
    width: 96%;
    margin: 2rem auto;
  }
  .search_lists .content .text_container {
    width: 100%;
    text-align: center;
  }

  .search_lists .single_list {
    width: 100%;
    margin: 1rem auto;
    display: block;
  }

  .profile_view {
    width: 96%;
    margin: 0 auto;
    text-align: center;
  }
  .profile_view a {
    display: block;
    margin: 1rem 0;
  }
}
.profile .left-col {
  width: 50%;
  margin: 1rem auto;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.profile .left-col img {
  width: 135px;
  height: 135px;
  margin: auto;
}
.profile .left-col .social {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 2rem 0;
}
.profile .left-col .social-card {
  height: 30px;
  width: 30px;
  background: #e5e5e594;
  text-align: center;
  line-height: 30px;
  border-radius: 50%;
}
.profile label {
  font-size: 0.7rem;
  font-weight: 900;
}
.profile .bg-light-grey {
  background: #f7f7f7;
}

.display_image {
  display: block;
  width: 200px;
  height: 200px;
  margin: 0.4rem auto;
  border: 1px solid #eee;
  border-radius: 4px;
  box-shadow: 2px 2px 30px #eee;
}
.display_image img {
  width: 100%;
  height: 100%;
  margin: auto;
  text-align: center;
}

.progress-list-view .heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #000;
}
.progress-list-view .heading .key {
  width: 80%;
  text-align: left;
  padding-left: 0.3rem;
}
.progress-list-view .heading h6 {
  width: 20%;
  border: 1px solid #000;
  text-align: center;
}
.progress-list-view .title {
  font-weight: bold;
  font-size: 18px;
  color: red;
  text-transform: uppercase;
  padding: 0.3rem;
}
.progress-list-view .lists {
  display: flex;
  justify-content: space-between;
}
.progress-list-view .lists > div {
  padding-left: 0.3rem;
}
.progress-list-view .lists .list {
  width: 80%;
  border: 1px solid black;
}
.progress-list-view .lists .button {
  text-align: center;
  border: 1px solid black;
  width: 20%;
  padding: 0.3rem;
}
.progress-list-view .lists .button input {
  display: none;
}
.progress-list-view .lists .button input:checked + label:before {
  width: 100%;
}
.progress-list-view .lists .button label {
  display: block;
  border: 1px solid #0a0828;
  width: 50px;
  height: 15px;
  cursor: pointer;
  margin: auto;
  border-radius: 3px;
  position: relative;
}
.progress-list-view .lists .button label:before {
  content: " ";
  width: 0%;
  height: 100%;
  position: absolute;
  left: 0;
  background: #362666;
  transition: all 0.3s ease-in-out;
}
.student-selected{
  position: relative;
}
.student-close{
  width: 25px;
  height: 25px;
  background: #ffc0c0;
  color: red;
  display: block;
  padding: auto;
  position: absolute;
  border-radius: 50%;
  font-size: .6rem;
  text-align: center;
  line-height: 25px;
  right: -5px;
  top: -15px;
  cursor: pointer;
}
/*# sourceMappingURL=style.css.map */
