  .switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 23px;
  transform: scale(0.7);
}

.switch input { 
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 23px;
  width: 32px;
  left: 0px;
  bottom: 0px;
  background-color: white;
  border: 1px solid #707070;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: #2196F3;
}

input:focus + .slider {
  box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
  -webkit-transform: translateX(28px);
  -ms-transform: translateX(28px);
  transform: translateX(28px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 1rem;
}

.slider.round:before {
  border-radius: 1rem;
}

.sliderr {
  width: 300px;
  display: flex;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;      
}
.slide {
  width: 300px;
  flex-shrink: 0;
  height: 100%;
}

.slide > div {
  /* CURRENT way. */
  scroll-snap-align: start;
  scroll-behavior: smooth;
}

.student-list {
  overflow: auto;
  max-height: 790px;
}

label {
  font-weight: 600;
}

.selectAll {
  border-radius: 15px 15px 0 0;
  /* background-image: linear-gradient(-43deg, #FF723B 0%, #FFDF57 84%, #FFED5B 100%); */
  /* background-image: linear-gradient(-34deg, #FF723B 5%, #FFDF57 85%, #FFED5B 100%);   */
  background-color: #52C3FF;
  padding: 15px;
  /* color: #191648; */
  color: white;
  font-size: 12px;
}

.selectAll .col-8 {
  font-size: 1.1rem;
}

.student-list div.single {
  padding: 15px;
  font-size: 12px;
  border-top: 1px solid #707070;
}

.student-list div.single:nth-of-type(even)
{
  background: #F2F2F2;
}

.slide-wrap .nav-pills .nav-link {
  position: relative;
}

.nav-pills .nav-link.active, .nav-pills .show>.nav-link {
  background: none;
  color: #262626;
  font-weight: 600;
  font-size: 20px;
}

.form-control {
  border-radius: 0.75rem;
}


.slide-wrap .nav-pills .nav-link {
  font-size: 0.8rem;
  max-width: fit-content;
}

.slide-wrap {
  padding: 10px;
  border: 1px solid #707070;
  max-height: 150px;
  overflow: auto;
  overflow-x: hidden;
  background-color: white;
  border-radius: 0.5rem;

}

.right {
  height: fit-content;
  border: 1px solid #707070;border-radius: 15px;
}

.slide-wrap .nav-pills .nav-link:after {
  content: ' ';
  width: 50px;
  height: 3px;
  background-image: linear-gradient(131deg, #7175E0 0%, #4D50CB 33%, #E25BC8 100%);
  border-radius: 1px;
  position: absolute;
  bottom: 0px;
  left: 10px;
}

.nav-pills .nav-link.active:after, .nav-pills .show>.nav-link:after {
  width: 100px;
}




/* FILE UPLOADING FEATURE */
input#file {
  width: 0;
  height: 0;
  overflow: hidden;
}
input#file:before {
  position: absolute;
  left: 0;
  height: 100%;
  width: 100%;
  top: 0;
  content: ' ';  
}
.files .file {
  position: relative;
  outline-offset: -10px;
  -webkit-transition: outline-offset .15s ease-in-out, background-color .15s linear;
  transition: outline-offset .15s ease-in-out, background-color .15s linear;
  text-align: center !important;
  margin: 0;
  width: 100% !important;
  height: fit-content;
}
.files .file:focus{     outline: 2px dashed #92b0b3;  outline-offset: -10px;
  -webkit-transition: outline-offset .15s ease-in-out, background-color .15s linear;
  transition: outline-offset .15s ease-in-out, background-color .15s linear; border:1px solid #92b0b3;
}
.files{ position:relative}
.files:before {
  position: absolute;
  bottom: 10px;
  left: 0;  pointer-events: none;
  width: 100%;
  right: 0;
  height: 57px;
  content: " ";
  display: block;
  margin: 0 auto;
}

/* Amit Added Styles for adaptive width */
#sidebar-container {
  width: 15%;
  float: left;
}

.right-div {
  width: 85%;
  overflow: hidden;
}

.internal-padding {
  padding: 2rem 5rem;
}