/**/
@import url("https://cdn.jsdelivr.net/npm/@xz/fonts@1/serve/metropolis.min.css");

:root {
  --font-family: 'Metropolis', helvetica, arial, Roboto, sans-serif;
}

:root {
  --spacing: 14px;
  --spacing-s: 8px;
  --spacing-xs: 4px;
  --spacing-l: 20px;
  --spacing-xl: 32px;
  --spacing-xxl: 40px;
  --spacing-xxxl: 60px;
  --container-max-width: 1280px;
  --container-horizontal-padding: var(--spacing-xl);
  --border-radius: 5px;
  --border-radius-l: 10px;
}

:root {
  --color-primary: #3f51b5;
  --color-primary-white: #e8eaf6;
  --color-primary-bright: #7986cb;
  --color-primary-brighter: #c5cae9;
  --color-primary-dark: #303f9f;
  --color-primary-black: #1a237e;
  --color-dim-1: rgba(0, 0, 0, 0.8);
  --color-dim-2: rgba(0, 0, 0, 0.6);
  --color-dim-3: rgba(0, 0, 0, 0.4);
  --color-dim-4: rgba(0, 0, 0, 0.2);
  --color-dim-5: rgba(0, 0, 0, 0.1);
  --color-dim-6: rgba(0, 0, 0, 0.05);
  --color-dim-7: rgba(0, 0, 0, 0.04);
  --color-dim-8: rgba(0, 0, 0, 0.02);
  --color-dim: var(--color-dim-1);
  --color-bright: rgba(255, 255, 255, 0.9);
  --color-bright-1: var(--color-bright);
  --color-bright-2: rgba(255, 255, 255, 0.7);
  --color-bright-3: rgba(255, 255, 255, 0.5);
  --color-bright-4: rgba(255, 255, 255, 0.3);
  --color-bright-5: rgba(255, 255, 255, 0.2);
  --color-bright-6: rgba(255, 255, 255, 0.1);
  --color-bright-7: rgba(255, 255, 255, 0.05);
  --color-bright-8: rgba(255, 255, 255, 0.03);
  --color-text: var(--color-dim-1);
  --color-fg: --color-text;
  --color-bg: #fff;
  --color-highlight: var(--color-dim-6);
  --color-highlight-primary: var(--color-primary-white);
}

:root {
  --font-size: 1rem;
  --font-size-1: var(--font-size);
  --font-size-2: 1.28rem;
  --font-size-3: 1.6rem;
  --font-size-4: 2rem;
  --font-size-5: 2.5rem;
  --font-size-6: 3.125rem;
  --font-size-7: 3.9rem;
  --font-size-8: 4.88rem;
}

:root {
  --grid-min: 300px;
  --grid-s: 130px;
  --grid-l: 500px;
}








/*----------------------------------------
	# LARGE DEFAULTS


*,
*::before,
*::after,
input,
select,
form {
  box-sizing: border-box;
}
* {
  margin: 0;
}
html,
body {
  height: 100%;
}
body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}
input,
button,
textarea,
select {
  font: inherit;
}
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}
html {
  font-size: 62.5%;
}
body {
  color: var(--color-text);
  background: var(--color-bg);
  font-family: var(--font-family);
  font-size: var(--font-size-3);
  font-weight: 400;
}
section {
  padding: var(--spacing-xxxl) 0;
}
.container {
  position: relative;
  margin: 0 auto;
  max-width: var(--container-max-width);
  padding: 0 var(--container-horizontal-padding);
}
i {
  font-style: normal;
}
div::-webkit-scrollbar {
  width: var(--spacing-s);
  height: var(--spacing-s);
}
div::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.05);
  border-radius: 30px;
}
div::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 30px;
}

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









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

	# UTILITY CLASSES
----------------------------------------*/

.mt {
  margin-top: var(--spacing);
}

.mt-s {
  margin-top: var(--spacing-s);
}

.mt-xs {
  margin-top: var(--spacing-xs);
}

.mt-l {
  margin-top: var(--spacing-l);
}

.mt-xl {
  margin-top: var(--spacing-xl);
}

.mt-xxl {
  margin-top: var(--spacing-xxl);
}

.mt-xxxl {
  margin-top: var(--spacing-xxxl);
}

.mb {
  margin-bottom: var(--spacing);
}

.mb-s {
  margin-bottom: var(--spacing-s);
}

.mb-xs {
  margin-bottom: var(--spacing-xs);
}

.mb-l {
  margin-bottom: var(--spacing-l);
}

.mb-xl {
  margin-bottom: var(--spacing-xl);
}

.mb-xxl {
  margin-bottom: var(--spacing-xxl);
}

.mb-xxxl {
  margin-bottom: var(--spacing-xxxl);
}

.mr {
  margin-right: var(--spacing);
}

.mr-s {
  margin-right: var(--spacing-s);
}

.mr-xs {
  margin-right: var(--spacing-xs);
}

.ml {
  margin-left: var(--spacing);
}

.ml-s {
  margin-left: var(--spacing-s);
}

.ml-xs {
  margin-left: var(--spacing-xs);
}

.box-shadow {
  box-shadow: 0 0 var(--spacing-l) rgba(0, 0, 0, 0.1);
}

.hidden {
  display: none;
}

.text-dim-2 {
  color: var(--color-dim-2);
}

.text-l {
  font-size: var(--font-size-4);
}











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

	# TYPOGRAPHY


h1 {
  font-size: var(--font-size-7);
}
h2 {
  font-size: var(--font-size-6);
}
h3 {
  font-size: var(--font-size-5);
  margin: var(--spacing-xxl) 0 var(--spacing-xs);
}
h4,
h5,
h6 {
  font-weight: 400;
  margin-bottom: var(--spacing);
}
h4 {
  margin-top: var(--spacing-xl);
  font-weight: bold;
}
h4 {
  font-size: var(--font-size-4);
}
h5 {
  font-size: var(--font-size-3);
}
h6 {
  font-size: var(--font-size-2);
  text-transform: uppercase;
}
p {
  margin: 0 0 var(--spacing-l);
}
.subheader {
  font-size: 125%;
  color: var(--color-dim-2);
}
hr {
  border: 0;
  height: 0.5px;
  background: var(--color-dim-4);
  margin: var(--spacing-xxxl) 0;
}
hr.transparent {
  opacity: 0;
}
----------------------------------------*/







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

	# GRID

----------------------------------------*/
.grid {
  display: grid;
  grid-gap: var(--spacing-l);
  grid-auto-flow: row dense;
  align-items: start;
  grid-template-columns: repeat(auto-fit, minmax(var(--grid-min), 1fr));
}

.grid.grid-s {
  grid-template-columns: repeat(auto-fit, minmax(var(--grid-s), 1fr));
}

.grid.grid-l {
  grid-template-columns: repeat(auto-fit, minmax(var(--grid-l), 1fr));
}

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

	# BUTTONS

----------------------------------------*/
input.btn {
  appearance: none;
  font-weight: 400;
  max-width: 100%;
  box-sizing: border-box;
}

.btn:last-of-type {
  margin-right: 0;
}

.btn.no-border {
  border-color: transparent;
}

.btn:hover {
  background: var(--color-primary-white);
  color: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
}

.btn.primary {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: rgba(255, 255, 255, 0.9);
}

.btn.primary:hover {
  background: var(--color-primary-dark);
}

.btn.warning {
  color: #f44336;
  border-color: #f44336;
}

.btn.warning:hover {
  color: #c62828;
  background: #ffebee;
  border-color: #c62828;
}

.btn.on {
  border-color: var(--color-primary-dark);
  color: var(--color-primary-dark);
  background: var(--color-primary-brighter);
}

.btn.l {
  font-size: var(--font-size-4);
  padding: var(--spacing) var(--spacing-xl);
}

.btn.s {
  padding: var(--spacing-s) var(--spacing-xl);
}

.btn.xs {
  padding: var(--spacing-s) var(--spacing-l);
  font-size: 1.4rem;
}

.btn.xxs {
  padding: var(--spacing-s) var(--spacing-l);
  font-size: var(--font-size-2);
}

table .btn.xs {
  margin-right: var(--spacing-xs);
}

.btn:active {
  transform: none;
  animation: button forwards 0.1s ease;
}

@keyframes button {
  0% {
    transform: scale(1);
  }

  30% {
    transform: scale(0.9);
  }

  100% {
    transform: scale(1);
  }
}

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

	stuff

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


[type="file"]::file-selector-button {
  display: none;
}

label.photo-field {
  all: unset;
  display: block;
  background: pink;
  padding: var(--spacing-xl);
  border-radius: var(--border-radius-l);
  transition: background 0.2s ease;
  position: relative;
  -webkit-border-radius: var(--border-radius-l);
  -moz-border-radius: var(--border-radius-l);
  -ms-border-radius: var(--border-radius-l);
  -o-border-radius: var(--border-radius-l);
}

label.photo-field input {
  all: unset;
  height: 0;
  display: block;
  box-sizing: border-box;
  max-width: 100%;
  width: 100%;
}

label.photo-field img {
  display: block;
  padding: 0;
  opacity: 0.5;
  margin: 0 auto;
  max-width: 100px;
  transition: opacity 0.2s ease;
}

label.photo-field:hover img,
label.photo-field.loading img,
label.photo-field.success img {
  opacity: 0.8;
}

label.photo-field:has(img.loaded) {
  padding: 0;
}

label.photo-field img.loaded {
  max-width: 100%;
  opacity: 1;
  border-radius: var(--border-radius-l);
}

label.photo-field.loading {
  background: #ffd54f;
}

label.photo-field.loading img {
  animation: fade_blink alternate 0.3s ease-out infinite;
}

label.photo-field.success {
  background: palegreen;
}

label.photo-field.success img {
  animation: none;
}

label.photo-field.success ::after {
  content: '✓';
  width: 30px;
  height: 30px;
  line-height: 30px;
  border-radius: 50%;
  text-align: center;
  font-weight: bold;
  border: 2px solid white;
  background: #4caf50;
  color: #fff;
  position: absolute;
  top: -10px;
  left: -10px;
}

.select2-selection--single {
  height: 100% !important;
}

.select2-selection__rendered {
  word-wrap: break-word !important;
  text-overflow: inherit !important;
  white-space: normal !important;
}

.select2-selection{
  min-width: 20em;
}

.field .photo-field {
  margin-bottom: var(--spacing-xl);
}

.field.hidden {
  display: none;
}

.field .step {
  text-align: center;
  height: 100%;
  position: relative;
}

.field .step::after {
  content: '';
  display: block;
  width: 1px;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -0.5px;
  z-index: 1;
}

.field .step span {
  width: 30px;
  height: 30px;
  line-height: 30px;
  border-radius: 50%;
  background: #333;
  color: #fff;
  display: block;
  position: relative;
  z-index: 2;
  font-size: var(--font-size-2);
  font-weight: 500;
}

.field .step span sup {
  display: none;
}

.grid.field {
  grid-template-columns: 30px auto !important;
  margin: 0;
}

@keyframes image_upload {
  from {
    background: #ffd54f;
  }

  to {
    background: #ffb300;
  }
}

@keyframes small_bounce {
  0% {
    transform: translateY(10px);
  }

  20% {
    transform: translateY(5px);
  }

  60% {
    transform: none;
  }

  100% {
    transform: none;
  }
}

@keyframes fade_blink {
  0% {
    opacity: 0.3;
  }

  60% {
    opacity: 0.8;
  }

  100% {
    opacity: 0.8;
  }
}

textarea {
  width: 100%;
  display: block;
  font-family: monospace;
  color: #444;
  border: 1px solid #aaa;
  padding: var(--spacing);
  border-radius: var(--border-radius);
}




/*div space*/
.part_1,
.part_2,
#student-info,
.cameraSection,
.deskCameraSection,
.part_4 {
  margin-top: 50px;
  /* padding-left: 10%;
  padding-right: 10%; */
}

/*Upper Space for Submit button*/
.final_submit_section {
  margin-top: 50px;
}

/*Varius language button properties*/
.lang_group {
  align-items: center;
  font-weight: 700px;
  padding-left: 10%;
  padding-right: 10%;
  width: 100%;
  margin-top: 2%;
  margin-bottom: 4%;
}


/*Camera svg icon */
.cam_icon {
  color: #13a74c;


  padding-top: 2%;
}


h1.title {
  padding: 0px;
  font-size: 30px;
  font-weight: 700;
}

h2,
h5.title {
  padding-left: 10%;
  padding-right: 10%;
  font-size: 30px;
  font-weight: 200;
  margin-bottom: 40px;

}


/*These are for Language Button*/
/* Button Sizes : Language*/
.btn-mod.btn-medium {
  height: auto;
  padding: 10px 3px;
  font-size: 11px;
}

/* Button Mod to the original Bootstrap Buttons : Language */
.btn-mod.btn-circle {
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
}

.lang-btn {
  margin-right: 5px;
  margin-top: 9px;
  max-width: 107px;
  font-weight: 600;
  text-align: center;
}

.btn-mod,
a.btn-mod {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 4px 13px;
  color: #fff;
  background: rgba(34, 34, 34, .9);
  border: 2px solid transparent;
  font-size: 11px;
  font-weight: 400;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 2px;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  -webkit-transition: all 0.2s cubic-bezier(0.000, 0.000, 0.580, 1.000);
  -moz-transition: all 0.2s cubic-bezier(0.000, 0.000, 0.580, 1.000);
  -o-transition: all 0.2s cubic-bezier(0.000, 0.000, 0.580, 1.000);
  -ms-transition: all 0.2s cubic-bezier(0.000, 0.000, 0.580, 1.000);
  transition: all 0.2s cubic-bezier(0.000, 0.000, 0.580, 1.000);
}

.btn-mod.btn-border:hover,
.btn-mod.btn-border:focus {
  color: #fff;
  border-color: transparent;
  background: #000;
}

.btn-mod:hover,
.btn-mod:focus,
a.btn-mod:hover,
a.btn-mod:focus {
  font-weight: 400;
  color: rgba(255, 255, 255, .85);
  background: rgba(0, 0, 0, .7);
  text-decoration: none;
  outline: none;
  border-color: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
  font-weight: 500;
}


/*Checkbox */
.checkbox_1 {
  margin-top: 20px;
  margin-bottom: 50px;
  margin-left: 15%;

}

/*Images*/
.image_1,
.image_2 {
  margin-top: 2%;
}


/*CAMERA Part starting from here*/
.camera {
  padding-top: 2%;
  padding-bottom: 10px;

}

#cam {
  margin-top: 20px;
  background-color: #f6f88454;
  border: 1px;
  border-color: #13a74c;
  border-style: solid;
  border-radius: 4px;
  width: 20%;
}

#photo {
  margin-top: 10px;
  border: 1px;
  border-color: #13a74c;
  border-style: dashed;
  border-radius: 4px;
  padding: 10px;

}


.bt {
  background-color: #ffffff;
  color: black;
  height: auto;
  padding: 10px 10px;
  font-size: 15px;
  font-weight: 500;
  border: 2px solid #13a74c;
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
  transition: all 0.2s cubic-bezier(0.000, 0.000, 0.580, 1.000);

}

.bt:disabled {
  border: 2px solid #eaeaea
}

.bt:hover,
.bt:focus,
.bt-hover {
  background-color: #13a74c;
  color: #fff;
  height: auto;
  /* padding: 10px 30px; */
  font-size: 15px;
  font-weight: 500;
  border: 2px solid #13a74c;
  border-radius: 30px;

  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
  -webkit-transition: all 0.2s cubic-bezier(0.000, 0.000, 0.580, 1.000);
  -moz-transition: all 0.2s cubic-bezier(0.000, 0.000, 0.580, 1.000);
  -o-transition: all 0.2s cubic-bezier(0.000, 0.000, 0.580, 1.000);
  -ms-transition: all 0.2s cubic-bezier(0.000, 0.000, 0.580, 1.000);
  transition: all 0.2s cubic-bezier(0.000, 0.000, 0.580, 1.000);
}


#switchFrontBtn,
#switchBackBtn,
#snapBtn {
  background-color: #e1fff3;
  height: auto;
  padding: 5px 14px;
  font-size: 15px;
  font-weight: 500;
  border: 1px solid #13a74c;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
}

#switchFrontBtn:hover,
#switchBackBtn:hover,
#snapBtn:hover,
#switchFrontBtn:focus,
#switchBackBtn:focus,
#snapBtn:focus {
  background-color: #13a74c;
  color: white;
  height: auto;
  padding: 5px 14px;
  font-size: 15px;
  font-weight: 500;
  border: 1px solid #13a74c;
  border-radius: 4px;

  -webkit-transition: all 0.2s cubic-bezier(0.000, 0.000, 0.580, 1.000);
  -moz-transition: all 0.2s cubic-bezier(0.000, 0.000, 0.580, 1.000);
  -o-transition: all 0.2s cubic-bezier(0.000, 0.000, 0.580, 1.000);
  -ms-transition: all 0.2s cubic-bezier(0.000, 0.000, 0.580, 1.000);
  transition: all 0.2s cubic-bezier(0.000, 0.000, 0.580, 1.000);
}

/*CAMERA Part END*/



/*Submit button*/
.button {
  padding-top: 20px;
  /* padding-bottom: 60px; */
}

.languages {
  /* padding-left: 10%;
  padding-right: 10%; */
  font-size: 30px;
  font-weight: 200;
  margin-bottom: 40px;
}


.submit {
  margin-top: 50px;
}

#imageList {
  text-align: center;
  /* margin-top: 20px; */
}

.image-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
}

.current-image {
  max-width: 100%;
  height: auto;
  border: 1px solid #ccc;
  border-radius: 5px;
  margin-bottom: 10px;
}

.prev-button,
.student-info-next-btn {
  padding: 8px 16px;

  cursor: pointer;
}

.prev-button:hover,
.student-info-next-btn:hover {
  background-color: #45a049;
}

.prev-button:disabled,
.student-info-next-btn:disabled {
  cursor: not-allowed;
}

.center-video {
  object-fit: cover;
  margin: 0 auto;
  width: inherit;
}

.image-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
  position: relative;
}

.current-image {
  max-width: 100%;
  height: auto;
  margin-bottom: 10px;
}

.delete-button {
  position: absolute;
  top: 5px;
  font-size: 10px;
  height: 25px;
  background-color: #ffffffb5;
  border-radius: 50%;
  border: solid transparent;
  color: red;
  cursor: pointer;
  width: 25px;
  padding: 0;
}



@media (max-width: 576px) {
  .center-video {
    width: 100%;
    height: auto;
  }
}

/* 
#addImageContainer {
  display: none;
} */

.toaster-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 9999;
  width: 370px;
  pointer-events: none;
}

.toaster-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9998;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  pointer-events: none;
}

.toaster {
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(100%, -100%);

  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  opacity: 0;
  z-index: 9999;
  width: 276px;
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.toaster-show {
  transform: translate(0, 0);
  opacity: 1;
}

.toaster-success {
  background-color: #4CAF50;
  border: 3px solid #337935;
}

.toaster-error {
  background-color: #f44336;
  border: 3px solid #b02f26;
}

.toaster-info {
  background-color: #2196F3;
  border: 3px solid #0c6db3;
}

h5 {
  border-style: dashed;
  border-top: none;
  border-left: none;
  border-right: none;
  padding-bottom: 0.42em;
}

.warning-message {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-weight: 600;
  font-size: 20px;
  border-radius: 1em;
  color: #fff;
  padding: 10px;
  text-align: center;
  z-index: 9999;
}

.success {
  background-color: #4CAF50;
  border: 3px solid #337935;
}

.warning {
  background-color: #f44336;
  border: 3px solid #b02f26;
}

.d-none {
  display: none;
}

.backdrop,
.second-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 9998;
  display: none;
  transition: opacity 1s ease-in-out;
  /* Adjust the duration and easing as needed */
}

.show-backdrop {
  display: block;
}

.no-hover,
.no-hover:hover {
  color: #eaeaea !important;
  background-color: inherit !important;
  border: 2px solid #eaeaea !important;
}



/* new multi form css starts */


#heading {
  text-transform: uppercase;
  color: #13a74c;
  font-weight: normal
}

#msform {
  text-align: center;
  position: relative;
  margin-top: 20px
}

#msform fieldset {
  background: white;
  border: 0 none;
  border-radius: 0.5rem;
  box-sizing: border-box;
  width: 100%;
  margin: 0;
  padding-bottom: 20px;
  position: relative
}

.form-card {
  text-align: left
}


#msform fieldset:not(:first-of-type) {
  display: none
}

.fixed-width-btn {
  width: 50px;
}

#msform .action-button {
  width: 100px;
  background: #13a74c;
  font-weight: bold;
  color: white;
  border: 0 none;
  border-radius: 0px;
  cursor: pointer;
  padding: 10px 5px;
  margin: 10px 0px 10px 5px;
  float: right
}

#msform .action-button:hover,
#msform .action-button:focus {
  background-color: #311B92
}

#msform .action-button-previous {
  width: 100px;
  background: #616161;
  font-weight: bold;
  color: white;
  border: 0 none;
  border-radius: 0px;
  cursor: pointer;
  padding: 10px 5px;
  margin: 10px 5px 10px 0px;
  float: right
}

#msform .action-button-previous:hover,
#msform .action-button-previous:focus {
  background-color: #000000
}

.card {
  z-index: 0;
  border: none;
  position: relative
}

.fs-title {
  font-size: 25px;
  color: #13a74c;
  margin-bottom: 15px;
  font-weight: normal;
  text-align: left
}

.purple-text {
  color: #13a74c;
  font-weight: normal
}

.steps {
  font-size: 25px;
  color: gray;
  margin-bottom: 10px;
  font-weight: normal;
  text-align: right
}

.fieldlabels {
  color: gray;
  text-align: left
}

#progressbar {
  align-items: center;
  /* display: flex; */
  justify-content: center;
  margin-bottom: 30px;
  overflow: hidden;
  color: lightgrey
}

#progressbar .active {
  color: #13a74c
}

#progressbar li {
  list-style-type: none;
  font-size: 15px;
  width: 25%;
  float: left;
  position: relative;
  font-weight: 400
}

#progressbar #language-head:before {
  font-family: "Font Awesome 5 Free";
  content: "\f4ad"
}

#progressbar #id-head:before {
  font-family: "Font Awesome 5 Free";
  content: "\f007"
}

#progressbar #update-head:before {
  font-family: "Font Awesome 5 Free";
  content: "\f2bb"
}

#progressbar #work-head:before {
  font-family: "Font Awesome 5 Free";
  content: "\f15c"
}

#progressbar #desk-head:before {
  font-family: "Font Awesome 5 Free";
  content: "\f07c"
}

#progressbar li:before {
  width: 50px;
  height: 50px;
  line-height: 45px;
  display: block;
  font-size: 20px;
  color: #ffffff;
  background: lightgray;
  border-radius: 50%;
  margin: 0 auto 10px auto;
  padding: 2px
}

#progressbar li:after {
  content: '';
  width: 100%;
  height: 2px;
  background: lightgray;
  position: absolute;
  left: 0;
  top: 25px;
  z-index: -1
}

#progressbar li.active:before,
#progressbar li.active:after {
  background: #13a74c
}

.progress {
  height: 20px
}

.progress-bar {
  background-color: #13a74c
}

.fit-image {
  width: 100%;
  object-fit: cover
}

/* new multi form css ends */

.nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
  background: #13a74c;
  color: white !important;
}

.nav-link {
  font-weight: 600;
  color: #13a74c !important;
}

.tabrow {
  text-align: -webkit-center;
  list-style: none;
  margin: 0;
  /* padding: 10px 0 0px 20px; */
  padding: 10px 0 0px 0px;
  line-height: 24px;
  overflow: hidden;
  font-size: 13px;
  position: fixed;
  width: -webkit-fill-available;
  z-index: 200;
  background: white;
}

.tabrow li {
  border: 1px solid #e0e0e0;
  border-left: none;
  background: #f7f7f7;
  display: inline-block;
  position: relative;
  z-index: 0;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  margin: 0 -5px;
  padding: 3px 20px;
  cursor: pointer;
  color: #85b2d4;
  box-shadow: 19px 36px 17px 24px rgb(212 164 164 / 22%)
}

.tabrow li span:before {
  content: " ";
  position: absolute;
  left: -3px;
  top: 3px;
  bottom: 2px;
  width: 10px;
  transform: rotate(14deg);
  border-left: 1px solid #e0e0e0;
  background: #f7f7f7;
}

.tabrow li span:after {
  content: " ";
  position: absolute;
  right: -5px;
  top: 3px;
  bottom: 2px;
  width: 10px;
  transform: rotate(-14deg);
  border-right: 1px solid #e0e0e0;
  background: #f7f7f7;
}

.tabrow li.selected {
  background: #FFF;
  color: #333;
  z-index: 2;
  border-bottom-color: #FFF;
  vertical-align: bottom;
  padding-top: 7px;
  font-weight: bold;
  cursor: default;
}

.tabrow:before {
  position: absolute;
  content: " ";
  width: 100%;
  bottom: 0;
  left: 0;
  border-bottom: 1px solid #e0e0e0;
  z-index: 1;
  box-shadow: 0 1px 9px #000000;
}

.tabrow li:before,
.tabrow li:after {
  border: 1px solid #e0e0e0;
  position: absolute;
  bottom: -1px;
  width: 5px;
  height: 5px;
  content: " ";
}

.tabrow li:before {
  left: -16px;
  border-bottom-right-radius: 6px;
  border-width: 0 1px 1px 0;
  box-shadow: 10px 0px 0 #f7f7f7;
  padding-right: 10px;
}

.tabrow li:after {
  right: -20px;
  border-bottom-left-radius: 6px;
  border-width: 0 0 1px 1px;
  box-shadow: -10px 2px 0 #f7f7f7;
  padding-left: 10px;
}

.tabrow li.selected:before {
  box-shadow: 10px 2px 0 #FFF;
}

.tabrow li.selected:after {
  box-shadow: -10px 2px 0 #FFF;
}

.tabrow li.selected SPAN:before,
.tabrow li.selected SPAN:after {
  background: white;
}



#studentProfile-tab-container #heading {
  text-transform: uppercase;
  color: #673AB7;
  font-weight: normal
}

#studentProfile-tab-container #msform {
  text-align: center;
  position: relative;
  margin-top: 20px
}

#studentProfile-tab-container #msform fieldset {
  background: white;
  border: 0 none;
  border-radius: 0.5rem;
  box-sizing: border-box;
  width: 100%;
  margin: 0;
  padding-bottom: 20px;
  position: relative
}

#studentProfile-tab-container .form-card {
  text-align: left
}

#studentProfile-tab-container #msform fieldset:not(:first-of-type) {
  display: none
}

/* #studentProfile-tab-container #msform input,
#studentProfile-tab-container #msform textarea {
  padding: 8px 15px 8px 15px;
  border: 1px solid #ccc;
  border-radius: 0px;
  margin-bottom: 25px;
  margin-top: 2px;
  width: 100%;
  box-sizing: border-box;
  font-family: montserrat;
  color: #2C3E50;
  background-color: #ECEFF1;
  font-size: 16px;
  letter-spacing: 1px
}

#studentProfile-tab-container #msform input:focus,
#studentProfile-tab-container #msform textarea:focus {
  -moz-box-shadow: none !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  border: 1px solid #673AB7;
  outline-width: 0
} */

#studentProfile-tab-container #msform .action-button {
  width: 100px;
  background: #673AB7;
  font-weight: bold;
  color: white;
  border: 0 none;
  border-radius: 0px;
  cursor: pointer;
  padding: 10px 5px;
  margin: 10px 0px 10px 5px;
  float: right
}

#studentProfile-tab-container #msform .action-button:hover,
#studentProfile-tab-container #msform .action-button:focus {
  background-color: #311B92
}

#studentProfile-tab-container #msform .action-button-previous {
  width: 100px;
  background: #616161;
  font-weight: bold;
  color: white;
  border: 0 none;
  border-radius: 0px;
  cursor: pointer;
  padding: 10px 5px;
  margin: 10px 5px 10px 0px;
  float: right
}

#studentProfile-tab-container #msform .action-button-previous:hover,
#studentProfile-tab-container #msform .action-button-previous:focus {
  background-color: #000000
}

#studentProfile-tab-container .card {
  z-index: 0;
  border: none;
  position: relative
}

#studentProfile-tab-container .fs-title {
  font-size: 25px;
  color: #673AB7;
  margin-bottom: 15px;
  font-weight: normal;
  text-align: left
}

#studentProfile-tab-container .purple-text {
  color: #673AB7;
  font-weight: normal
}

#studentProfile-tab-container .steps {
  font-size: 25px;
  color: gray;
  margin-bottom: 10px;
  font-weight: normal;
  text-align: right
}

#studentProfile-tab-container .fieldlabels {
  color: gray;
  text-align: left
}

#studentProfile-tab-container #progressbar {
  margin-bottom: 30px;
  overflow: hidden;
  color: lightgrey
}

#studentProfile-tab-container #progressbar .active {
  color: #673AB7
}

#studentProfile-tab-container #progressbar li {
  list-style-type: none;
  font-size: 15px;
  width: 25%;
  float: left;
  position: relative;
  font-weight: 400
}

#studentProfile-tab-container #progressbar #account:before {
  font-family: FontAwesome;
  content: "\f13e"
}

#studentProfile-tab-container #progressbar #personal:before {
  font-family: FontAwesome;
  content: "\f007"
}

#studentProfile-tab-container #progressbar #payment:before {
  font-family: FontAwesome;
  content: "\f030"
}

#studentProfile-tab-container #progressbar #confirm:before {
  font-family: FontAwesome;
  content: "\f00c"
}

#studentProfile-tab-container #progressbar li:before {
  width: 50px;
  height: 50px;
  line-height: 45px;
  display: block;
  font-size: 20px;
  color: #ffffff;
  background: lightgray;
  border-radius: 50%;
  margin: 0 auto 10px auto;
  padding: 2px
}

#studentProfile-tab-container #progressbar li:after {
  content: '';
  width: 100%;
  height: 2px;
  background: lightgray;
  position: absolute;
  left: 0;
  top: 25px;
  z-index: -1
}

#studentProfile-tab-container #progressbar li.active:before,
#studentProfile-tab-container #progressbar li.active:after {
  background: #673AB7
}

#studentProfile-tab-container .progress {
  height: 20px
}

#studentProfile-tab-container .progress-bar {
  background-color: #673AB7
}

#studentProfile-tab-container .fit-image {
  width: 100%;
  object-fit: cover
}


#studentProfile-tab-container .bt:disabled {
  border: 2px solid #eaeaea
}

#studentProfile-tab-container .bt {
  background-color: #ffffff;
  color: black;
  height: auto;
  padding: 10px 10px;
  font-size: 15px;
  font-weight: 500;
  border: 2px solid #673AB7;
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
  transition: all 0.2s cubic-bezier(0.000, 0.000, 0.580, 1.000);

}

#studentProfile-tab-container .bt:hover,
#studentProfile-tab-container .bt:focus,
#studentProfile-tab-container .bt-hover {
  background-color: #673AB7;
  color: #fff;
  height: auto;
  /* padding: 10px 30px; */
  font-size: 15px;
  font-weight: 500;
  border: 2px solid #673AB7;
  border-radius: 30px;

  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
  -webkit-transition: all 0.2s cubic-bezier(0.000, 0.000, 0.580, 1.000);
  -moz-transition: all 0.2s cubic-bezier(0.000, 0.000, 0.580, 1.000);
  -o-transition: all 0.2s cubic-bezier(0.000, 0.000, 0.580, 1.000);
  -ms-transition: all 0.2s cubic-bezier(0.000, 0.000, 0.580, 1.000);
  transition: all 0.2s cubic-bezier(0.000, 0.000, 0.580, 1.000);
}



#teacher-tab-container #heading {
  text-transform: uppercase;
  color: #374d63;
  font-weight: normal
}

#teacher-tab-container #msform {
  text-align: center;
  position: relative;
  margin-top: 20px
}

#teacher-tab-container #msform fieldset {
  background: white;
  border: 0 none;
  border-radius: 0.5rem;
  box-sizing: border-box;
  width: 100%;
  margin: 0;
  padding-bottom: 20px;
  position: relative
}

#teacher-tab-container .form-card {
  text-align: left
}

#teacher-tab-container #msform fieldset:not(:first-of-type) {
  display: none
}

#teacher-tab-container #msform .action-button {
  width: 100px;
  background: #374d63;
  font-weight: bold;
  color: white;
  border: 0 none;
  border-radius: 0px;
  cursor: pointer;
  padding: 10px 5px;
  margin: 10px 0px 10px 5px;
  float: right
}

#teacher-tab-container #msform .action-button:hover,
#teacher-tab-container #msform .action-button:focus {
  background-color: #374d63
}

#teacher-tab-container #msform .action-button-previous {
  width: 100px;
  background: #616161;
  font-weight: bold;
  color: white;
  border: 0 none;
  border-radius: 0px;
  cursor: pointer;
  padding: 10px 5px;
  margin: 10px 5px 10px 0px;
  float: right
}

#teacher-tab-container #msform .action-button-previous:hover,
#teacher-tab-container #msform .action-button-previous:focus {
  background-color: #000000
}

#teacher-tab-container .card {
  z-index: 0;
  border: none;
  position: relative
}

#teacher-tab-container .fs-title {
  font-size: 25px;
  color: #374d63;
  margin-bottom: 15px;
  font-weight: normal;
  text-align: left
}

#teacher-tab-container .purple-text {
  color: #374d63;
  font-weight: normal
}

#teacher-tab-container .steps {
  font-size: 25px;
  color: gray;
  margin-bottom: 10px;
  font-weight: normal;
  text-align: right
}

#teacher-tab-container .fieldlabels {
  color: gray;
  text-align: left
}

#teacher-tab-container #progressbar {
  margin-bottom: 30px;
  overflow: hidden;
  color: lightgrey
}

#teacher-tab-container #progressbar .active {
  color: #374d63
}

#teacher-tab-container #progressbar li {
  list-style-type: none;
  font-size: 15px;
  width: 25%;
  float: left;
  position: relative;
  font-weight: 400
}

#teacher-tab-container #progressbar #account:before {
  font-family: FontAwesome;
  content: "\f13e"
}

#teacher-tab-container #progressbar #personal:before {
  font-family: FontAwesome;
  content: "\f007"
}

#teacher-tab-container #progressbar #payment:before {
  font-family: FontAwesome;
  content: "\f030"
}

#teacher-tab-container #progressbar #confirm:before {
  font-family: FontAwesome;
  content: "\f00c"
}

#teacher-tab-container #progressbar li:before {
  width: 50px;
  height: 50px;
  line-height: 45px;
  display: block;
  font-size: 20px;
  color: #ffffff;
  background: lightgray;
  border-radius: 50%;
  margin: 0 auto 10px auto;
  padding: 2px
}

#teacher-tab-container #progressbar li:after {
  content: '';
  width: 100%;
  height: 2px;
  background: lightgray;
  position: absolute;
  left: 0;
  top: 25px;
  z-index: -1
}

#teacher-tab-container #progressbar li.active:before,
#teacher-tab-container #progressbar li.active:after {
  background: #374d63
}

#teacher-tab-container .progress {
  height: 20px
}

#teacher-tab-container .progress-bar {
  background-color: #374d63
}

#teacher-tab-container .fit-image {
  width: 100%;
  object-fit: cover
}


#teacher-tab-container .bt:disabled {
  border: 2px solid #eaeaea
}

#teacher-tab-container .bt {
  background-color: #ffffff;
  color: black;
  height: auto;
  padding: 10px 10px;
  font-size: 15px;
  font-weight: 500;
  border: 2px solid #374d63;
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
  transition: all 0.2s cubic-bezier(0.000, 0.000, 0.580, 1.000);

}

#teacher-tab-container .bt:hover,
#teacher-tab-container .bt:focus,
#teacher-tab-container .bt-hover {
  background-color: #374d63;
  color: #fff;
  height: auto;
  /* padding: 10px 30px; */
  font-size: 15px;
  font-weight: 500;
  border: 2px solid #374d63;
  border-radius: 30px;

  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
  -webkit-transition: all 0.2s cubic-bezier(0.000, 0.000, 0.580, 1.000);
  -moz-transition: all 0.2s cubic-bezier(0.000, 0.000, 0.580, 1.000);
  -o-transition: all 0.2s cubic-bezier(0.000, 0.000, 0.580, 1.000);
  -ms-transition: all 0.2s cubic-bezier(0.000, 0.000, 0.580, 1.000);
  transition: all 0.2s cubic-bezier(0.000, 0.000, 0.580, 1.000);
}