/*css written on 25th Aug, 2022*/
* {
  box-sizing: border-box;
  margin: 0px;
  padding: 0px;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
li,
p,
a,
span {
  margin: 0px;
  padding: 0px;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  -font-smoothing: antialiased;
  background: #f7fafa;
  overflow: hidden;
  font-family: sans-serif;
  position: relative;
  z-index: 1;
  min-height: 100vh;
}

a,
button,
input[type=submit],
select {
  cursor: pointer;
  outline: none !important;
  box-shadow: none !important;
}

a,
a:hover,
a:focus,
button,
button:hover,
button:focus,
input,
input:hover,
input:focus,
textarea,
textarea:hover,
textarea:focus,
select,
select:hover,
select:focus {
  outline: 0;
  box-shadow: none;
  text-decoration: none;
}

ul,
ol,
li {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

/* loading css :start */
.loading {
  height: 0;
  width: 0;
  padding: 15px;
  border: 6px solid #ccc;
  border-right-color: #888;
  border-radius: 22px;
  animation: rotate 1s infinite linear;
  --webkit-animation: rotate 1s infinite linear;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@-webkit-keyframes rotate {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
  }
}
/* loading css: stop */

/*header css start*/
body.no_scroll:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 111;
  background-color: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(1.5px);
}
h2.page_title {
  font-size: 20px;
  font-weight: 600;
  margin: 10px 0px;
}
h3.page_subtitle {
  font-size: 18px;
  font-weight: 600;
  margin: 0px 0px 10px;
}
.site_header {
  position: relative;
  padding: 10px 20px;
}
.site_header_outer {
  display: flex;
  align-items: center;
  width: 100%;
}
.toggle_button {
  flex: 0 0 25px;
  max-width: 25px;
}
.logo_image {
  flex: 0 0 calc(100% - 25px);
  max-width: calc(100% - 25px);
  text-align: center;
  padding-right: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo_container_with_app_name {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 190px;
  width: auto;
  padding: 5px;
  /*background-color: #fef0e5;*/
  border: 1px solid #241e20;
  border-radius: 5px;
}

.logo_image .logo_box {
  display: table;
  padding-right: 7px;
  flex: 0 0 50px;
  max-width: 50px;
  border-right: 1px solid #241e20;
}

.logo_image .logo_box img {
  height: 48px;
  width: auto;
  display: block;
  margin: auto;
}

.login_user_info #appName {
  padding: 0px 5px 0px 10px;
  color: #241e20;
  font-size: 14px;
  margin: 0px;
  text-align: left;
  font-weight: 700;
  user-select: none;
}
.navbar_toggler {
  padding: 0;
  height: 25px;
  width: 25px;
  border: none;
  outline: none !important;
  background-color: transparent;
  border-radius: 5px;
  /*position: absolute;
  top: 0;
  bottom: 0;
  left: 15px;
  z-index: 9999;*/
  margin: auto;
  position: relative;
  float: left;
}
.navbar_toggler .navbar_toggler_inner,
.navbar_toggler .navbar_toggler_inner:after,
.navbar_toggler .navbar_toggler_inner:before {
  width: 25px;
  height: 4px;
  transition-timing-function: ease;
  transition-duration: 0.3s;
  transition-property: transform;
  border-radius: 4px;
  background-color: #212529;
  position: absolute;
  left: 0;
  right: 0;
}

.navbar_toggler .navbar_toggler_inner {
  transition: top 75ms ease 0.12s, transform 75ms cubic-bezier(.55, .055, .675, .19);
  top: 0;
  bottom: 0;
  margin: auto;
}
.navbar_toggler .navbar_toggler_inner:after,
.navbar_toggler .navbar_toggler_inner:before {
  display: block;
  content: "";
}

.navbar_toggler .navbar_toggler_inner:before {
  transition: top 75ms ease 0.12s, opacity 75ms ease;
  top: -9px;
}

.navbar_toggler .navbar_toggler_inner:after {
  transition: bottom 75ms ease 0.12s, transform 75ms cubic-bezier(.55, .055, .675, .19);
  bottom: -9px;
}

.navbar_toggler.open_menu .navbar_toggler_inner {
  transition: top 75ms ease, transform 75ms cubic-bezier(.215, .61, .355, 1) 0.12s;
  transform: rotate(45deg);
  top: 0;
}

.navbar_toggler.open_menu .navbar_toggler_inner:before {
  top: 0;
  transition: top 75ms ease, opacity 75ms ease 0.12s;
  opacity: 0;
}

.navbar_toggler.open_menu .navbar_toggler_inner:after {
  bottom: 0;
  transition: bottom 75ms ease, transform 75ms cubic-bezier(.215, .61, .355, 1) 0.12s;
  transform: rotate(-90deg);
}

.custom_navbar {
  position: fixed;
  top: 0;
  bottom: 0;
  left: -320px;
  padding: 0px;
  height: 100vh;
  width: 300px;
  background-color: #fef0e5;
  transition: all 0.5s;
  z-index: 999;
  box-shadow: 2px 0px 10px -6px #212529;
  border-radius: 0px 20px 20px 0px;
  overflow-y: auto;
}

.custom_navbar.navbar_animate {
  left: 0;
}

.custom_navbar ul li a {
  width: 100%;
  display: inline-flex !important;
  align-items: center;
  color: #212529;
  padding: 10px 15px;
  font-size: 16px;
  font-weight: 600;
}
.custom_navbar ul li.menu_item {
  padding: 5px 15px;
  /*border-top: 1px solid #bdbdbd;*/
}
.custom_navbar ul li.menu_item a {
  transition: all 0.4s;
  border-radius: 10px;
  background-color: #ffddcb;
}

.custom_navbar ul li.menu_item.active_menu a,
.custom_navbar ul li.menu_item a:hover {
  background-color: #f89a50;
  /*color: #241e20;*/
  color: #ffffff;
}

.custom_navbar ul li.menu_item a.disable_link {
    pointer-events: none;
    opacity: 0.5;
}

.custom_navbar ul li.side_menu_logo {
  padding: 15px;
  border-bottom: 1px solid #ffddcb;
  margin-bottom: 10px;
}

.custom_navbar ul li.side_menu_logo a {
  border: none;
  padding: 0px;
  max-width: 50%;
  margin: auto;
  display: table !important;
}
.custom_navbar ul li a img {
  width: 100%;
  margin: auto;
}
.custom_navbar ul li a i {
  margin-right: 10px;
  height: 30px;
  width: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}
.copy_right_text {
  padding: 10px 15px;
  text-align: center;
}
.copy_right_text p {
  font-size: 10px;
  color: #6a6a6a;
}

.copy_right_text p a {
  color: #241e20;
}

.custom_navbar .app_version {
  font-size: 10px;
  text-align: center;
  padding: 10px;
}

/*header css end*/
.swal-modal .swal-title,
.swal-modal .swal-text {
  text-align: center !important;
}

.single_student_attendance select {
  font-size: 13px;
}

.float-left {
  float: left;
}

.float-right {
  float: right;
}

#noDataFound,
#watermark_image,
#noStudentDataFound {
  /* display: flex; */
  height: calc(100vh - 220px);
  flex-wrap: wrap;
  position: relative;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  padding: 20px;
  text-align: center;
  pointer-events: none;
}

#noDataFound h6,
#watermark_image h6,
#noStudentDataFound h6 {
  font-size: 16px;
  color: #6a6a6a;
}

#noDataFound img,
#watermark_image img,
#noStudentDataFound img {
  width: 85%;
  max-width: 300px;
  height: auto;
  margin: auto;
  opacity: 0.7;
  position: relative;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0px auto 20px;
}

.main-container.login {
  background-image: url(assets/images/bg_image.jpg);
  background-repeat: repeat-y;
  background-size: 100% auto;
  background-position: center;
  position: relative;
  z-index: 1;
}
.main-container.login:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.7);
  z-index: -1;
  backdrop-filter: blur(3px);
}

.main-container.login .tinder,
.tinder:not(.loaded) {
  display: none;
}
.tinder {
  width: 100vw;
  height: calc(100vh - 190px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  opacity: 0;
  transition: opacity 0.1s ease-in-out;
}

.loaded.tinder {
  opacity: 1;
}

.tinder--status {
  position: absolute;
  top: 50%;
  margin-top: -30px;
  z-index: 2;
  width: 100%;
  text-align: center;
  pointer-events: none;
}
.tinder--status i {
  font-size: 100px;
  opacity: 0;
  transform: scale(0.3);
  transition: all 0.2s ease-in-out;
  position: absolute;
  width: 100px;
  margin-left: -50px;
}
.tinder_love .fa-check {
  opacity: 0.7;
  transform: scale(1);
}
.tinder_nope .fa-remove {
  opacity: 0.7;
  transform: scale(1);
}
.tinder--cards {
  flex-grow: 1;
  padding-top: 0px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  z-index: 1;
}
.tinder--card {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  width: calc(100% - 40px);
  max-width: 400px;
  height: calc(60vh - 80px);
  background: #ffffff;
  background-size: cover;
  background-repeat: no-repeat;
  padding-bottom: 20px;
  border-radius: 8px;
  overflow: hidden;
  position: absolute;
  will-change: transform;
  transition: all 0.3s ease-in-out;
  cursor: -webkit-grab;
  cursor: -moz-grab;
  cursor: grab;
  box-shadow: 0px 0px 10px -6px #212529;
}
.tinder--card:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  background-color: #ffffff;
  opacity: 0.35;
  z-index: -1;
}
.moving.tinder--card {
  transition: none;
  cursor: -webkit-grabbing;
  cursor: -moz-grabbing;
  cursor: grabbing;
}
.tinder--card img {
  max-width: 100%;
  pointer-events: none;
}
.tinder--card h3 {
  font-size: 24px;
  margin: 0px;
  padding: 10px 20px;
  font-weight: 600;
  pointer-events: none;
  text-transform: capitalize !important;
}

.tinder--card p {
  font-size: 16px;
  margin: 0px;
  padding: 10px 20px;
  pointer-events: none;
}
.tinder--card h6 {
  font-size: 14px;
  margin: 0px;
  padding: 10px 20px;
  font-weight: 600;
  pointer-events: none;
}
.tinder--buttons {
  flex: 0 0 100px;
  text-align: center;
  padding-top: 20px;
  position: relative;
  z-index: 111;
}
.tinder--buttons button {
  border-radius: 50%;
  line-height: 60px;
  width: 60px;
  border: 0;
  background: #ffffff;
  display: inline-block;
  margin: 0 8px;
  box-shadow: 0px 0px 10px -6px #212529 !important;
}

.tinder--buttons button:focus {
  outline: 0;
}

.tinder--buttons i {
  font-size: 32px;
  vertical-align: middle;
}

.fa-check {
  color: green;
}

.fa-remove {
  color: red;
}

.main-container.login {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.auth-container {
  padding: 10px 20px;
  flex: 0 0 100%;
}
.header_logout {
  display: flex;
  align-items: center;
  width: 100%;
  flex-direction: column;
}
.header_logout img.login_vector {
  display: block;
  margin: 20px auto 0;
  max-width: 300px;
  width: 100%;
}
.header_logout h1 {
  font-family: system-ui;
  padding: 0px 10px;
  flex: 0 0 100%;
  width: 100%;
  font-size: 30px;
  margin: auto;
  text-align: center;
}

.header_logout h1 img {
  margin: auto;
  max-height: 100px;
}

#authorize_button a {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 80%;
  margin: 20px auto 0px;
}
#authorize_button a img {
  max-width: 30px;
  margin-right: 10px;
}
.select_sheet_button {
  padding: 15px;
  position: relative;
  background-color: #e7ebed;
  box-shadow: 0px 0px 10px -6px #212529 !important;
  border-radius: 10px;
  text-align: center;
  width: 100%;
  font-size: 14px;
  display: table;
  color: #212529 !important;
}
.select_sheet_button label {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0;
  z-index: 1;
}
.select_sheet_button span.sheet_name {
  width: 100%;
  padding: 10px 0px 0px;
  font-size: 14px;
  background-color: transparent;
  color: #212529;
  display: block;
  font-weight: 600;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.select_sheet_button span.sheet_name .sheet_thumbnail {
  width: 60%;
  padding-top: 35%;
  position: relative;
  overflow: hidden;
  display: block;
  margin: auto auto 10px;
  border-radius: 5px;
}

.select_sheet_button span.sheet_name .sheet_thumbnail img {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  min-width: 100%;
  min-height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  object-position: top;
}
.select_sheet_button .fa-trash {
  position: absolute;
  top: 7px;
  right: 7px;
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  border-radius: 50%;
  background-color: #ffffff;
  box-shadow: 0px 0px 10px -6px #212529;
}

.copy_and_attach_buttons button {
  padding: 15px;
  position: relative;
  background-color: #e7ebed !important;
    box-shadow: 0px 0px 10px -6px #212529 !important;
  border-radius: 10px;
  text-align: center;
  font-size: 14px;
  display: table;
  color: #212529 !important;
  border: none !important;
  outline: none !important;
}

label.sheet_clonner_label {
  margin-bottom: 5px;
  font-size: 14px;
  color: #8a8a8a;
}
.copy_and_attach_buttons button img {
  max-width: 70px;
  margin: 0px auto 10px;
}
.student_list {
  padding: 10px 20px;
}

.attendance_report {
  padding: 10px 15px;
  border-radius: 5px;
  box-shadow: 0px 0px 10px -6px #212529 !important;
  font-weight: 600;
  text-align: center;
  margin: 0px 0px 15px;
  border: 1px solid transparent;
  background-color: #ffffff;
  cursor: pointer;
}

.attendance_report.P-student {
  border-color: #66bb6a;
  color: #66bb6a;
}

.attendance_report.P-student.active {
  background-color: #66bb6a;
  color: #ffffff;
}

/*.attendance_report.P-student.active {
  background-color: #e8f5e9;
}*/

.attendance_report.A-student {
  color: #ef5350;
}

.attendance_report.A-student {
  border-color: #ef5350;
}

.attendance_report.A-student.active {
  background-color: #ef5350;
  color: #ffffff;
}

/*.attendance_report.A-student.active {
  background-color: #ffebee;
}*/

.single_student_attendance.A-student {
  background-color: #ffebee;
}

.student_list_group {
  overflow: auto;
  height: calc(100vh - 190px - 15px - 45px - 75px);
  padding: 5px;
  margin: 0px -5px;
}
.single_student_attendance {
  padding: 10px 15px;
  /*background: #e7ebed;*/
  background: #ffffff;
  border-radius: 5px;
  box-shadow: 0px 0px 10px -6px #212529;
}

.single_student_attendance:not(:last-child) {
  margin-bottom: 15px;
}

.single_student_attendance_row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.name_and_roll_num {
  flex: 0 0 calc(100% - 100px);
  max-width: calc(100% - 100px);
}
.name_and_roll_num h4 {
  font-size: 15px;
  margin: 0px;
  /*font-weight: 600;*/
  white-space: nowrap;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 24px;
}

.name_and_roll_num h4 span {
  display: none;
}

.name_and_roll_num h5 {
  font-size: 14px;
  margin: 5px 0px 0px;
  white-space: nowrap;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #6a6a6a;
}
.attend_or_not {
  flex: 0 0 100px;
  max-width: 100px;
  padding-left: 10px;
}
#select_sheet_container {
  padding: 10px 20px;
}

.sheet_option {
  position: relative;
}
.custom_width_col {
  flex: 0 0 35px;
  max-width: 35px;
}
.search_icon_only .search_toggler {
  height: 38px;
  width: 27px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #212529;
}
.search_form {
  position: absolute;
  right: calc((33.33333333% / 2) + (35px / 2) + 4px);
  transition: all 0.4s;
  width: 0px;
  top: 0;
  z-index: 111;
  overflow: hidden;
}

.search_form.open_search {
  width: calc(66.66666667% - 8px);
}

.search_form input#searchInput {
  height: 38px;
}

#select_sheet_container .row {
  align-items: center;
  min-height: calc(100vh - 170px);
  text-align: center;
  margin: 0px;
}
#select_sheet_container .row .col-12 {
  /*padding: 20px;
  background-color: #e7ebed;
  box-shadow: 0px 0px 10px -6px #212529;*/
}
#select_sheet_container img {
  max-width: 200px;
  display: table;
  margin: auto;
}
#select_sheet_container h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
}
#select_sheet_container h6 {
  font-size: 16px;
  color: #6a6a6a;
  margin-bottom: 20px;
}
#select_sheet_container p {
  font-size: 16px;
  color: #8a8a8a;
  margin-bottom: 20px;
}

#inputsheet_template,
#outputsheet_template {
  margin-bottom: 5px;
  font-size: 14px;
  color: #8a8a8a;
}

#inputsheet_template a,
#outputsheet_template a {
  font-weight: 600;
  color: #f89a50;
}

button#btn_info {
  position: fixed;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  outline: none;
  bottom: 20px;
  right: 20px;
}

.picker.picker-dialog {
  top: 50px !important;
  bottom: 50px !important;
}

.picker.picker-dialog .picker-dialog-content {
  height: 100% !important;
  width: 100vw !important;
}

/* EDIT class and student data */

.main-container.edit-class-student-container {
  margin-top: 24px;
  /* display: flex; */
  /* justify-content: center; */
  /* width: 100%; */
  /* flex: 0 0 100%; */
}

.edit-class-student-container>div {}

.main-container-header {
  display: flex;
  justify-content: space-between;
}

.main-container-header h3 {
  padding: 0 16px;
  text-align: center;
}


.main-container-class .main-container-header {
  position: relative;
  justify-content: center;
}

.main-container-class .main-container-header button {
  position: absolute;
  right: 0;
}

.main-container-header button {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  padding: 0;
}

.main-container-header button i {
  font-size: 18px;
}

.main-container-item {
  overflow: auto;
  max-height: calc(100vh - 190px - 45px);
  padding: 5px;
  margin: 24px 0px 0px;
}

.main-container-item.main-container-class-item {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.main-container-item.main-container-class-item button {
    flex: 0 0 calc(50% - 10px);
    max-width: calc(50% - 10px);
    margin-left: 5px;
    margin-right: 5px;
    margin-bottom: 15px;
}

.main-container-class-btn,
.main-container-student-btn {
  outline: none;
  border: none;
  padding: 8px 16px;
  box-shadow: 0px 0px 10px -6px #212529 !important;
  display: block;
  width: 100%;
  background-color: white;
  text-align: left;
}

.main-container-class-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
}
.main-container-class-btn i {
  margin-left: 10px;
}

.main-container-class,
.main-container-student {
  padding: 10px 20px;
}

.main-container-student {
  display: none;
}

.new-class-popup .popup-input {
  margin: 0;
}

.popup-input {
  padding: 4px;
  margin: 10px 0;
  display: block;
}

.popup-text {
  font-size: 16px;
  margin: 10px 0;
}


/*calender custumization css start*/
#events-calendar {
  display: flex;
  justify-content: center;
}
#events-calendar .color-calendar.basic {
  --cal-color-primary: #241e20;
  --cal-header-color: #241e20;
  --cal-weekdays-color: #f89a50;
  --cal-color-primary-selected: #f89a50;
}
#events-calendar .color-calendar.basic .calendar__header {
  padding: 5px;
}
#events-calendar .color-calendar.basic .calendar__monthyear {
  font-size: 1.4rem;
}
#events-calendar .color-calendar.basic .calendar__body {
  padding: 5px;
}
#events-calendar .color-calendar.basic .calendar__weekdays {
  margin: 0;
  font-size: 14px;
}
#events-calendar .color-calendar.basic .calendar__weekdays .calendar__weekday {
  height: 50px;
}
#events-calendar .color-calendar.basic .calendar__days {
  grid-template-rows: repeat(6, minmax(50px, 30px));
}
#events-calendar .color-calendar.basic .calendar__days .calendar__day {
  font-size: 14px;
}
#events-calendar .color-calendar.basic .calendar__days .calendar__day-box {
  height: 90% !important;
  width: 90% !important;
}
/*#events-calendar .color-calendar.basic .calendar__days .calendar__day-event .calendar__day-bullet {
  top: 75%;
}*/
#events-calendar .color-calendar.basic .calendar__picker {
  top: 0;
}
#events-calendar .color-calendar.basic .calendar__picker .calendar__picker-month {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(6, minmax(0, 1fr));
  margin: 0px 8%;
}
#events-calendar .color-calendar.basic .calendar__picker .calendar__picker-month-option {
  padding: 10px 3px;
  overflow: hidden;
  font-size: 14px;
}
#events-calendar .color-calendar.basic .calendar__picker .calendar__picker-year {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(6, minmax(0, 1fr));
  margin: 0px 8%;
}
#events-calendar .color-calendar.basic .calendar__picker .calendar__picker-year-option {
  padding: 10px 3px;
  overflow: hidden;
  font-size: 14px;
}
#noEventsFound {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  min-height: auto;
  padding: 5px;
  margin: 20px 0 0;
}
#noEventsFound img {
  max-width: 55vw;
}
#events-calendar .color-calendar.basic .calendar__picker .calendar__picker-month .calendar__picker-month-option:not(.calendar__picker-month-selected), 
#events-calendar .color-calendar.basic .calendar__picker .calendar__picker-year .calendar__picker-year-option:not(.calendar__picker-year-selected) {
  color: var(--cal-color-primary);
}
#events-calendar .color-calendar.basic .calendar__days .calendar__day:not(.calendar__day-selected) .calendar__day-bullet {
  background-color: var(--cal-color-primary-selected) !important;
}
#events-calendar .color-calendar.basic .calendar__picker .calendar__picker-month .calendar__picker-month-option:after,
#events-calendar .color-calendar.basic .calendar__picker .calendar__picker-month .calendar__picker-month-option.calendar__picker-month-selected,
#events-calendar .color-calendar.basic .calendar__picker .calendar__picker-year .calendar__picker-year-option:after,
#events-calendar .color-calendar.basic .calendar__picker .calendar__picker-year .calendar__picker-year-option.calendar__picker-year-selected,
#events-calendar .color-calendar.basic .calendar__days .calendar__day.calendar__day-selected .calendar__day-box {
  background-color: var(--cal-color-primary-selected) !important;
  box-shadow: 0 3px 15px -5px var(--cal-color-primary-selected) !important;
}
#events-calendar .color-calendar.basic .calendar__picker .calendar__picker-month .calendar__picker-month-option:after,
#events-calendar .color-calendar.basic .calendar__picker .calendar__picker-month .calendar__picker-month-option.calendar__picker-month-selected,
#events-calendar .color-calendar.basic .calendar__picker .calendar__picker-month .calendar__picker-month-option.calendar__picker-month-today,
#events-calendar .color-calendar.basic .calendar__picker .calendar__picker-year .calendar__picker-year-option:after,
#events-calendar .color-calendar.basic .calendar__picker .calendar__picker-year .calendar__picker-year-option.calendar__picker-year-selected,
#events-calendar .color-calendar.basic .calendar__picker .calendar__picker-year .calendar__picker-year-option.calendar__picker-year-today {
  box-shadow: 0px 0px 2px 1px var(--cal-color-primary-selected) !important;
}
/*calender custumization css end*/

/*slug list css start*/
.calendar_attendance_view {
  padding: 0px 20px;
  height: calc(100vh - 80px - 60px - 60px);
  overflow: auto;
}
.calendar_attendance_view .events-display {
  padding: 5px;
  margin: 20px 0px 0px;
}
.main-container-slug-btn {
  outline: none;
  border: none;
  box-shadow: 0px 0px 10px -6px #212529 !important;
  width: 100%;
  background-color: white;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  font-size: 14px;
}
.main-container-slug-btn i {
  margin-left: 10px;
}
.no-events-text {
  text-align: center;
}
/*slug list css end*/



/*welsome slider css start*/
.first_time_login_slider_container {
  padding: 20px;
  text-align: center;
  min-height: 100vh;
  max-height: 100vh;
  overflow: hidden;
  width: 100%;
}
.single_first_time_slide {
  height: calc(100vh - 40px);
}
.slider_content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 100%;
}
.slider_content h2 {
  font-size: 20px;
  font-weight: 600;
  margin: 10px 0px;
}
.sheet_image_preview {
  width: 60%;
  padding-top: 30%;
  position: relative;
  overflow: hidden;
  display: block;
  margin: 10px 0px;
  border-radius: 5px;
  box-shadow: 0px 0px 10px -6px #212529 !important;
  background-color: #ffffff;
}
.sheet_image_preview img {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  min-width: 80%;
  min-height: 80%;
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
  object-position: center;
  margin: auto;
  background-color: #ffffff;
}
.slider_content h4 {
  font-size: 16px;
  font-weight: 600;
  margin: 10px 0px;
}
.slider_content p {
  font-size: 13px;
  margin: 10px 0px;
  line-height: 20px;
}
.slider_content ul {
  padding-left: 20px;
}
.slider_content ul li {
  list-style: disc;
}
.slider_content ul li p {
  text-align: left;
}
ul.slick-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
}
ul.slick-dots li {
  display: inline-block;
  margin: 3px;
}
ul.slick-dots li button {
  font-size: 0;
  height: 10px;
  width: 10px;
  border: none;
  background-color: #241e20;
  border-radius: 50%;
  opacity: 0.25;
}
ul.slick-dots li.slick-active button {
  background-color: #f89a50;
  opacity: 1;
}
/*welcome slider css end*/

.filter_student {
  position: relative;
}

#slider_close {
  position: fixed;
  top: 0;
  left: 0;
}

#profile_content {
  display: flex;
  padding: 10px 15px;
  align-items: center;
  flex-wrap: wrap;
  border-top: 1px solid #ffddcb;
  border-bottom: 1px solid #ffddcb;
  margin-top: 10px;
}
#profile_content .profile_image {
  flex: 0 0 40px;
  max-width: 40px;
  margin-right: 10px;
  overflow: hidden;
  position: relative;
  border-radius: 50%;
  padding-top: 40px;
}
#profile_content  .profile_details {
  flex: 0 0 calc(100% - 50px);
  max-width: calc(100% - 50px);
}
#profile_content .profile_details h4 {
  font-size: 16px;
  line-height: 20px;
  font-weight: 700;
  margin-bottom: 2px;
}
#profile_content .profile_details p {
  font-size: 12px;
  line-height: 15px;
  word-break: break-all;
  color: #6a6a6a;
}
#profile_content .profile_image img {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  min-width: 100%;
  min-height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
}

.form-select,
.form-control,
.form-select option {
   text-transform: capitalize;
   box-shadow: none !important;
   border-color: #bdbdbd !important;
 }