@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@100;200;300;400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Rubik:wght@300;400;500;600;700;800;900&display=swap");

body {
  font-family: "IBM Plex Sans", sans-serif;
  float: left;
  width: 100%;
}

ul {
  padding: 0px;
  margin: 0px;
}

.flt {
  float: left;
  width: 100%;
}

.filler {
  flex-grow: 1;
}

.login_container {
  padding: 18px;
}

/* .login_left {
  float: left;
  width: 684px;
  border-radius: 12px;
  background-color: rgb(0 43 83);
  padding: 12px;
  min-height: calc(100vh - 36px);
} */

.login_left {
  border-radius: 4px;
  border: 1px solid #DCEEFF;
  background: #FFF;
  box-shadow: 0px 0px 20px 0px rgb(0 94 182 / 20%);


  border-radius: 12px;
  padding: 12px;
  min-height: calc(100vh - 36px);
}

.login_right {
  min-height: calc(100vh - 36px);
  background-image: url(../images/login-right-bg.png);
  background-repeat: repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.login_box {
  width: 400px;
  border-radius: 4px;
  border: 1px solid rgb(220 238 255);
  background: rgb(255 255 255);
  box-shadow: 0px 0px 20px 0px rgba(0, 94, 182, 0.2);
  padding: 66px 20px 60px 20px;
  position: relative;
  overflow: auto;
}

.login_box::before {
  content: "";
  width: 92px;
  height: 92px;
  position: absolute;
  background-color: rgb(240 240 240);
  border-radius: 50%;
  top: -20px;
  right: -20px;
}

.login_info {
  color: rgb(86 174 255);
  font-size: 20px;
  font-weight: 400;
  text-transform: uppercase;
  margin: 25px 0px;
}

.login_desc {
  color: rgb(255 255 255);
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
}

.login_check input {
  padding: 0;
  height: initial;
  width: initial;
  margin-bottom: 0;
  display: none;
  cursor: pointer;
}

.login_check label {
  position: relative;
  cursor: pointer;
  line-height: 20px;
  display: inline-block;
  font-weight: 300;
  font-size: 14px;
  color: rgb(33, 33, 33);
  margin-bottom: 0px;
  font-family: "Rubik", sans-serif;
}

.login_check label:before {
  content: "";
  -webkit-appearance: none;
  background-color: transparent;
  border: 1px solid rgb(163, 163, 163);
  box-shadow: 0 1px 2px rgb(0 0 0 / 5%),
    inset 0px -15px 10px -12px rgb(0 0 0 / 5%);
  padding: 8px;
  display: inline-block;
  position: relative;
  vertical-align: middle;
  cursor: pointer;
  margin-right: 12px;
  border-radius: 2px;
  margin-top: -2px;
}

.login_check input:checked+label:before {
  background-color: rgb(13 110 253);
}

.login_check input:checked+label:after {
  content: "";
  display: block;
  position: absolute;
  top: 3px;
  left: 7px;
  width: 5px;
  height: 10px;
  border: solid rgb(255 255 255);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.login_title {
  color: rgb(44 44 44);
  font-size: 25px;
  font-weight: 400;
  margin-bottom: 36px;
  display: flex;
  align-items: center;
}

.login_title img {
  margin-right: 12px;
}

.login_form .form-group {
  margin-bottom: 20px;
}

.login_form input {
  color: rgb(33 33 33);
  font-size: 16px;
  font-weight: 300;
  border-radius: 4px;
  border: 1px solid rgb(163 163 163);
  padding: 10px 24px;
  height: 60px;
  font-family: "Rubik", sans-serif !important;
}

.login_form input::placeholder {
  color: rgb(33 33 33);
}

.login_btn {
  color: rgb(255 255 255);
  font-size: 18px;
  font-weight: 400;
  border-radius: 3px;
  background: rgb(0 43 83);
  padding: 17px;
  text-transform: uppercase;
  border: none;
  margin-top: 40px;
  font-family: "Rubik", sans-serif;
}

.header_container {
  background-color: rgb(0 43 83);
  box-shadow: 0px 0px 20px 0px rgba(49, 136, 217, 0.2);
  padding: 8px 14px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.topbar_right {
  display: flex;
  align-items: center;
}

.topbar_right .sale {
  border-radius: 5px;
  background-color: rgb(255 255 255);
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  width: 142px;
  display: flex;
  align-items: center;
  padding: 5px;
  justify-content: center;
  margin-right: 15px;
  position: relative;
}

.topbar_right .sale span {
  font-size: 14px;
  color: rgb(0, 0, 0);
  font-weight: 300;
  width: calc(100% - 30px);
  text-align: center;
}

.topbar_right .sale b {
  width: 30px;
  height: 30px;
  line-height: 30px;
  font-size: 13px;
  border-radius: 4px;
}

.topbar_right .sale i {
  transform: rotate(45deg);
}

.add_sale {
  border: 1px solid rgb(255 210 210);
}

.add_sale b {
  color: rgb(165 0 0);
  background-color: rgb(255 210 210);
}

.add_sale::before {
  content: "";
  width: 1px;
  height: 15px;
  background-color: rgb(34 116 192);
  position: absolute;
  right: -8px;
  top: 50%;
  transform: translateY(-50%);
}

.purchase_sale {
  border: 1px solid rgb(212, 255, 211);
}

.purchase_sale b {
  color: rgb(2, 111, 0);
  background-color: rgb(212, 255, 211);
}

.setting button {
  border-radius: 5px;
  border: 1px solid rgb(49 136 217);
  background-color: rgb(255 255 255);
  width: 42px;
  height: 42px;
}

.user_info {
  color: rgb(255 255 255);
  text-align: right;
  font-size: 12px;
  font-weight: 300;
  margin-right: 10px;
  margin-left: 40px;
}

.user_info span {
  font-size: 14px;
  font-weight: 400;
}

.menuH {
  border-radius: 4px;
  background-color: rgb(255 255 255);
  padding: 10px 15px;
}

.menuH ul {
  float: left;
  display: flex;
  align-items: center;
}

.menuH li {
  list-style-type: none;
  margin-right: 20px;
}


.menuH li a {
  display: flex;
  align-items: center;
  color: rgb(0, 0, 0);
  transition: 0.2s all ease-in-out;
}

.menuH li a.active,
.menuH li a:hover {
  color: rgb(16, 111, 200);
  text-decoration: none;
  transition: 0.2s all ease-in-out;
}

.menuH li a img {
  margin-right: 12px;
}

.category_list {
  background-color: rgb(255 255 255);
  box-shadow: 0px 0px 20px 0px rgba(0, 94, 182, 0.2);
  padding: 0px 15px;
}

.category_list a {
  color: rgb(57 57 57);
  font-size: 16px;
  font-weight: 400;
  text-align: center;
  float: left;
  width: 100%;
  background-color: rgb(255 255 255);
  box-shadow: 0px 0px 20px 0px rgba(0, 94, 182, 0.2);
  padding: 12px 4px;
  text-decoration: none;
  text-transform: uppercase;
  border-bottom: 3px solid transparent;
  transition: 0.2s all ease-in-out;
}

.category_list a.active,
.category_list a:hover {
  color: rgb(49 136 217);
  border-bottom: 3px solid rgb(49 136 217);
  transition: 0.2s all ease-in-out;
}

.page_container {
  padding: 10px 15px;
}

.pagebar {
  border-radius: 4px;
  background-color: rgb(255 255 255);
  box-shadow: 0px 0px 20px 0px rgba(0, 94, 182, 0.2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 20px;
}

.page_title {
  color: rgb(0 43 83);
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
}

.pagebar_right {
  display: flex;
  align-items: center;
}

.page_search {
  border-radius: 3px;
  border: 1px solid rgb(217 217 217);
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  display: flex;
  padding: 3px;
  width: 260px;
}

.page_search input {
  color: rgb(44 44 44);
  font-size: 14px;
  font-weight: 300;
  border: none;
  box-shadow: none;
  outline: none !important;
  font-family: "Rubik", sans-serif !important;
}

.page_search input::placeholder {
  color: rgb(44 44 44);
}

.page_search input:focus {
  outline: none !important;
}

.page_search button {
  border-radius: 2px;
  background-color: rgb(244 244 244);
  width: 34px;
  height: 34px;
  border: none;
  color: rgb(60 60 60);
  font-size: 15px;
  line-height: 15px;
}

.add_category_btn {
  border-radius: 3px;
  border: 1px solid rgb(49 136 217);
  background-color: rgb(0 43 83);
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  width: 168px;
  padding: 3px;
  display: flex;
  align-items: center;
  margin-left: 15px;
}

.add_category_btn span {
  color: rgb(255 255 255);
  font-size: 14px;
  font-weight: 300;
  text-transform: uppercase;
  width: calc(100% - 34px);
  text-align: center;
}

.add_category_btn b {
  width: 34px;
  height: 34px;
  line-height: 34px;
  border-radius: 2px;
  background-color: rgb(49 136 217);
  color: rgb(255, 255, 255);
  font-size: 16px;
}

.category_left {
  border-radius: 4px;
  background-color: rgb(255 255 255);
  box-shadow: 0px 0px 20px 0px rgba(0, 94, 182, 0.2);
  padding: 2px;
  margin-top: 12px;
}

.category_title {
  color: rgb(0 43 83);
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 2px;
  background-color: rgb(241 248 255);
  padding: 10px 15px;
}

.category_area li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
  border-bottom: 1px solid rgb(246 246 246);
  color: rgb(54 54 54);
  font-size: 15px;
  font-weight: 300;
  transition: 0.2s all ease-in-out;
  font-family: "Rubik", sans-serif !important;
}

.category_area li:hover {
  color: rgb(49, 136, 217);
  transition: 0.2s all ease-in-out;
}

.category_area li i {
  margin-left: 18px;
  color: rgb(54 54 54) !important;
  padding: 0px 5px;
  cursor: pointer;
}

.category_area span {
  position: relative;
}

.category_table_head {
  padding: 5px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 5px;
}

.table_search {
  display: flex;
  align-items: center;
  border-radius: 3px;
  border: 1px solid rgb(219 238 255);
  background-color: rgb(255 255 255);
  width: 260px;
  padding: 3px;
}

.table_search input {
  color: rgb(44 44 44);
  font-size: 14px;
  font-weight: 300;
  border: none;
  box-shadow: none;
  outline: none !important;
  height: 28px;
  font-family: "Rubik", sans-serif !important;
}

.table_search input:focus {
  outline: none;
}

.table_search input::placeholder {
  color: rgb(44 44 44);
}

.table_search button {
  border-radius: 2px;
  background-color: rgb(241 248 255);
  width: 28px;
  height: 28px;
  border: none;
  color: rgb(0 43 83);
  font-size: 13px;
  line-height: 15px;
}

.category_table_title {
  color: rgb(0 43 83);
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
}

.category_right {
  border-radius: 4px;
  background-color: rgb(255 255 255);
  box-shadow: 0px 0px 20px 0px rgba(0, 94, 182, 0.2);
  padding: 10px 5px;
  margin-top: 12px;
}

.category_table tr {
  border-radius: 2px;
}

.category_table thead tr th {
  color: rgb(0 43 83);
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
  background-color: rgb(241 248 255);
  border: none;
  border-radius: 2px;
  padding: 10px 15px;
  vertical-align: middle;
}

.category_table thead tr th img {
  margin-right: 5px;
}

.category_table tbody tr td {
  color: rgb(46 46 46);
  font-size: 14px;
  font-weight: 400;
  border-top: none;
  border-bottom: 1px solid rgb(241 241 241);
  padding: 15px;
  vertical-align: middle;
  font-family: "Rubik", sans-serif !important;
}

.green_clr {
  color: rgb(0 126 35) !important;
}

.red_clr {
  color: rgb(241 84 63) !important;
}

.category_dropdown {
  border-radius: 3px;
  background-color: rgb(255 255 255);
  box-shadow: 0px 0px 20px 0px rgba(0, 94, 182, 0.2);
  position: absolute;
  right: 0px;
  top: 28px;
  z-index: 1;
}

.category_dropdown li {
  float: left;
  width: 100%;
  padding: 10px;
  list-style-type: none;
  border-bottom: 1px solid rgb(246 246 246);
  color: rgb(54 54 54);
  font-size: 15px;
  font-weight: 300;
}

.category_dropdown li a {
  color: rgb(43 43 43);
  font-size: 15px;
  font-weight: 300;
  float: left;
  width: 100%;
  text-decoration: none;
  font-family: "Rubik", sans-serif !important;
}

.category_pop .modal-header {
  border-radius: 2px;
  background-color: rgb(241 248 255);
}

.category_pop .modal-title {
  color: rgb(0 43 83);
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
}

.category_pop .modal-header button {
  color: rgb(0 43 83);
  opacity: 1;
  font-size: 20px;
}

.category_pop input,
.category_pop select {
  color: rgb(33 33 33);
  font-size: 14px;
  font-weight: 300;
  line-height: normal;
  border-radius: 4px;
  border: 1px solid rgb(163 163 163);
  padding: 5px 22px;
  font-family: "Rubik", sans-serif !important;
  height: 50px;
}

.category_pop input::placeholder {
  color: rgb(33 33 33);
}

.category_pop .modal-footer button {
  height: fit-content;
  color: rgb(255 255 255);
  text-align: center;
  font-size: 18px;
  font-weight: 400;
  text-transform: uppercase;
  border-radius: 3px;
  background-color: rgb(0 43 83);
  border: none;
  width: 100%;
  padding: 16px 5px;
  font-family: "Rubik", sans-serif !important;
}

.sale_bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sale_title {
  color: rgb(0 43 83);
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  padding-left: 15px;
}

.sale_filter label {
  color: rgb(33 33 33);
  text-align: center;
  font-size: 14px;
  font-weight: 300;
  line-height: normal;
  text-transform: uppercase;
  margin: 0px 10px;
  font-family: "Rubik", sans-serif !important;
}

.sale_filter {
  display: flex;
  align-items: center;
}

.sale_filter .form-group {
  display: flex;
  align-items: center;
  margin: 0px;
}

.sale_filter input {
  color: rgb(32 32 32);
  text-align: center;
  font-size: 14px;
  font-weight: 300;
  border-radius: 3px;
  border: 1px solid rgb(217 217 217);
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  height: 40px;
  width: 160px;
  font-family: "Rubik", sans-serif !important;
}

.sale_reset {
  width: 40px;
  height: 40px;
  background-color: rgb(49 136 217);
  border: none;
  border-radius: 3px;
  color: rgb(255, 255, 255);
  font-size: 16px;
  margin-left: 5px;
  margin-right: 30px;
}

.download_xl {
  border-radius: 3px;
  border: 1px solid rgb(49 136 217);
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  height: 40px;
  width: 168px;
  background-color: rgb(255, 255, 255);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3px;
}

.download_xl span {
  color: rgb(13 13 13);
  font-size: 14px;
  font-weight: 300;
  text-transform: uppercase;
  width: calc(100% - 34px);
}

.download_xl b {
  width: 34px;
  height: 34px;
  line-height: 30px;
  background-color: rgb(49 136 217);
  border: none;
  border-radius: 3px;
  color: rgb(255, 255, 255);
  font-size: 16px;
}

.category_table tbody tr td .fa-print {
  border-radius: 4px;
  background-color: rgb(248 248 248);
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  color: rgb(81 81 81);
}

.category_table tbody tr td .fa-ellipsis-vertical {
  margin-left: 10px;
  float: right;
  line-height: 20px;
  padding: 0px 5px;
  cursor: pointer;
}

.sale_calc {
  display: flex;
  align-items: center;
  border-radius: 2px;
  background-color: rgb(250 252 255);
  padding: 5px;
  margin-top: 5px;
}

.sale_calc i {
  color: rgb(0 0 0);
  font-size: 14px;
  font-weight: 300;
  margin: 0px 10px;
}

.sale_card {
  color: rgb(32 32 32);
  font-size: 14px;
  font-weight: 300;
  text-transform: uppercase;
  border-radius: 3px;
  border: 1px solid rgb(237 246 255);
  background-color: rgb(255 255 255);
  padding: 12px;
  width: 180px;
}

.sale_card span {
  font-size: 16px;
  font-weight: 400;
}

.sale_paid {
  color: rgb(0, 126, 35);
}

.sale_unpaid {
  color: rgb(255, 158, 158);
}

.sale_total {
  color: rgb(0, 43, 83);
}

.relative {
  position: relative;
}

.sale_top {
  border-radius: 4px;
  background-color: rgb(255 255 255);
  box-shadow: 0px 0px 20px 0px rgba(0, 94, 182, 0.2);
  padding: 5px;
}

.sale_add_btn {
  border-radius: 3px;
  border: 1px solid rgb(156, 208, 255);
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  height: 40px;
  width: 168px;
  background-color: rgb(255, 255, 255);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3px;
  margin-left: 12px;
}

.sale_add_btn span {
  color: rgb(0, 43, 83);
  font-size: 14px;
  font-weight: 300;
  text-transform: uppercase;
  width: calc(100% - 34px);
}

.sale_add_btn b {
  width: 34px;
  height: 34px;
  line-height: 30px;
  background-color: rgb(49 136 217);
  border: none;
  border-radius: 3px;
  color: rgb(255, 255, 255);
  font-size: 16px;
  width: calc(100% - 28px);
}

.sale_add_btn i {
  width: 28px;
  height: 28px;
  background-color: rgb(49, 136, 217);
  color: rgb(255, 255, 255);
  line-height: 30px;
  border-radius: 3px;
}

.fullscreen_top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 2px 2px 0px 0px;
  background-color: rgb(243 243 243);
  padding: 1px 1px 1px 16px;
}

.fullscreen_top ul {
  display: flex;
  align-items: center;
}

.fullscreen_top ul li {
  list-style-type: none;
}

.fullscreen_top ul li span {
  color: rgb(0 0 0);
  font-size: 12px;
  font-weight: 300;
}

.fullscreen_top ul li .fa-xmark {
  color: rgb(0 0 0);
  font-size: 13px;
}

.fullscreen_tab {
  background-color: rgb(255, 255, 255);
  padding: 6px 8px;
  margin-right: 5px;
  display: flex;
  align-items: center;
}

.fullscreen_top ul li span {
  color: rgb(0 0 0);
  font-size: 13px;
  font-weight: 300;
  border-right: 1px solid rgb(241 241 241);
  padding-right: 8px;
  margin-right: 8px;
}

.add_tab {
  width: 18px;
  height: 18px;
  font-size: 12px;
  background-color: rgb(0 43 83);
  padding: 0px;
  color: rgb(255, 255, 255);
  border: none;
  border-radius: 2px;
  margin: 0px 4px;
}

.close_tab {
  background-color: rgb(255 212 212);
  color: rgb(210 46 46);
  border: none;
  width: 24px;
  height: 24px;
  font-size: 14px;
  border-radius: 2px;
}

.fullscreen_container {
  padding: 5px;
}

.fullscreen {
  border-radius: 4px;
  background-color: rgb(255 255 255);
  box-shadow: 0px 0px 20px 0px rgba(0, 94, 182, 0.2);
  padding: 2px;
}

.fullscreen_scroll {
  height: calc(100vh - 128px);
  overflow-y: auto;
  overflow-x: auto;
}

.fullscreen_title {
  color: rgb(0 0 0);
  font-size: 14px;
  font-weight: 300;
  text-transform: uppercase;
  border-bottom: 1px solid rgb(245 245 245);
  padding: 10px;
}

.fullscreen_input .form-group {
  margin-bottom: 10px;
}

.fullscreen_input input,
.fullscreen select {
  color: rgb(33 33 33);
  font-size: 15px;
  font-weight: 300;
  border-radius: 4px;
  border: 1px solid rgb(223 223 223);
  height: 40px;
  font-family: "Rubik", sans-serif !important;
}

.fullscreen_input input::placeholder {
  color: rgb(33 33 33);
}

.input_label {
  display: flex;
  align-items: center;
}

.input_label label {
  color: rgb(33 33 33);
  font-size: 15px;
  font-weight: 300;
  width: 30%;
  font-family: "Rubik", sans-serif !important;
}

.input_label input,
.input_label select {
  width: 70%;
}

.fullscreen_input {
  padding: 20px 10px;
}

.fullscreen_table thead tr th {
  vertical-align: middle;
  color: rgb(0 43 83);
  font-size: 14px;
  font-weight: 300;
  padding: 10px;
  text-align: center;
  border: 1px solid rgb(167 212 255) !important;
  background-color: rgb(221 239 255);
  font-family: "Rubik", sans-serif !important;
}

.fullscreen_table thead tr th select {
  color: rgb(0 43 83);
  font-size: 14px;
  font-weight: 300;
  background-color: transparent;
  outline: none;
  border: none;
  box-shadow: none;
  padding: 0px;
  width: 100%;
  height: auto;
  font-family: "Rubik", sans-serif !important;
}

.fullscreen_table tbody tr td {
  color: rgb(32 32 32);
  font-size: 12px;
  font-weight: 300;
  padding: 10px;
  border: 1px solid rgb(235, 235, 235);
  vertical-align: middle;
  font-family: "Rubik", sans-serif !important;
}

.fullscreen_table tbody tr:last-child td {
  border-bottom: none;
}

.fullscreen_table tbody tr td select {
  width: 100%;
  background-color: transparent;
  border: none;
  outline: none;
  height: auto;
}

.fullscreen_table tfoot tr td {
  vertical-align: middle;
  color: rgb(0 43 83);
  font-size: 15px;
  font-weight: 300;
  padding: 10px;
  text-align: right;
  border: 1px solid rgb(167 212 255) !important;
  background-color: rgb(221 239 255);
}

.fullscreen_pay {
  padding: 0px 10px;
}

.fullscreen_pay hr {
  border-top: 1px solid rgb(246 246 246);
}

.fullscreen_pay .form_label {
  color: rgb(33 33 33);
  font-size: 15px;
  font-weight: 300;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: "Rubik", sans-serif !important;
}

.fullscreen_pay select,
.fullscreen_pay input {
  color: rgb(0 0 0);
  font-size: 14px;
  font-weight: 300;
  text-transform: uppercase;
  border-radius: 4px;
  border: 1px solid rgb(223, 223, 223);
  height: 50px;
  padding: 5px 25px;
  font-family: "Rubik", sans-serif !important;
}

.fullcheck {
  display: flex;
  align-items: center;
}

.fullcheck label {
  margin-bottom: 0px;
  color: rgb(80 80 80);
  font-size: 12px;
  font-weight: 300;
  margin-right: 6px;
  margin-top: 2px;
}

.fullcheck input {
  height: auto;
}

.fullscreen_table {
  padding: 0px 10px;
}

.fullscreen_btn select {
  color: rgb(0 43 83);
  font-size: 14px;
  font-weight: 300;
  text-transform: uppercase;
  border-radius: 3px;
  border: 1px solid rgb(49 136 217);
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  padding: 5px 15px;
  height: 40px;
  width: 168px;
  outline: none;
  margin-right: 15px;
  background-color: transparent;
  font-family: "IBM Plex Sans", sans-serif !important;
}

.fullscreen_btn {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  border-top: 1px solid rgb(214 214 214);
  padding: 20px 10px;
}

.fullscreen_btn button {
  border-radius: 3px;
  border: 1px solid rgb(49 136 217);
  background-color: rgb(0 43 83);
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  padding: 3px;
  width: 168px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.fullscreen_btn button span {
  color: rgb(255 255 255);
  font-size: 14px;
  font-weight: 300;
  text-transform: uppercase;
  width: calc(100% - 34px);
}

.fullscreen_btn button i {
  width: 34px;
  height: 34px;
  border-radius: 2px;
  background-color: rgb(49 136 217);
  font-size: 18px;
  color: rgb(255, 255, 255);
  line-height: 34px;
}

.add_row {
  padding: 0px 0px 0px 10px !important;
  border: none !important;
  width: 30px !important;
}

.add_row .fa-square-plus {
  color: rgb(49 136 217);
  font-size: 24px;
  cursor: pointer;
}

.add_row .fa-square-minus {
  color: rgb(114, 114, 114);
  font-size: 24px;
  cursor: pointer;
}

.green_span {
  width: 10px;
  height: 10px;
  background-color: rgb(108 173 126);
  display: inline-block;
  margin-right: 14px;
}

.red_span {
  width: 10px;
  height: 10px;
  background-color: rgb(255, 158, 158);
  display: inline-block;
  margin-right: 14px;
}

.download_trans {
  width: 34px;
  height: 34px;
  border-radius: 3px;
  border: 1px solid rgb(219 238 255);
  background-color: rgb(49 136 217);
  color: rgb(255, 255, 255);
  margin-left: 10px;
}

.bulk_option {
  color: rgb(13 13 13);
  font-size: 14px;
  font-weight: 300;
  text-transform: uppercase;
  border-radius: 3px;
  background-color: rgb(237 237 237);
  width: 140px;
  height: 40px;
  border: none;
  padding: 5px 12px;
  margin: 0px 10px;
}

.catadjust_title {
  color: rgb(0 0 0);
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
}

.catadjust_top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.catadjust_btn span {
  color: rgb(0 43 83);
  font-size: 14px;
  font-weight: 300;
  text-transform: uppercase;
  width: calc(100% - 28px);
  text-align: center;
}

.catadjust_btn {
  border-radius: 3px;
  border: 1px solid rgb(156 208 255);
  background-color: rgb(255 255 255);
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  width: 170px;
  padding: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.catadjust_btn i {
  width: 28px;
  height: 28px;
  background-color: rgb(241 248 255);
  border-radius: 2px;
  line-height: 28px;
}

.catadjust_box {
  color: rgb(32 32 32);
  font-size: 14px;
  font-weight: 300;
  text-transform: uppercase;
  border-radius: 3px;
  border: 1px solid rgb(238 238 238);
  padding: 10px 15px;
}

.catadjust_box b {
  font-weight: 400;
}

.catadjust {
  padding: 5px 15px 15px 15px;
  border-bottom: 1px solid rgb(238 238 238);
  margin-bottom: 15px;
}

.pageback {
  padding: 15px;
  background-color: rgb(255 255 255);
  box-shadow: 0px 0px 20px 0px rgba(0, 94, 182, 0.2);
}

.pageback a {
  color: rgb(0, 0, 0);
  font-size: 18px;
}

.pageback span {
  color: rgb(0 43 83);
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
  margin-left: 12px;
}

.item_btn {
  border: 1px solid rgb(223 223 223);
  border-radius: 4px;
  padding: 3px;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}

.item_btn i {
  width: 42px;
  height: 42px;
  border-radius: 3px;
  background-color: rgb(49 136 217);
  font-size: 14px;
  color: rgb(255, 255, 255);
  line-height: 42px;
}

.item_btn span {
  color: rgb(33 33 33);
  text-align: center;
  font-size: 15px;
  text-transform: uppercase;
  width: calc(100% - 42px);
}

.item_form input {
  color: rgb(33 33 33);
  font-size: 15px;
  font-weight: 300;
  border-radius: 4px;
  border: 1px solid rgb(223 223 223);
  padding: 10px 28px;
  height: 50px;
  font-family: "Rubik", sans-serif !important;
}

.item_form select {
  color: rgb(33 33 33);
  font-size: 15px;
  font-weight: 300;
  border-radius: 4px;
  border: 1px solid rgb(223 223 223);
  padding: 10px 20px;
  height: 50px;
  font-family: "Rubik", sans-serif !important;
}

.item_form input::placeholder {
  color: rgb(33 33 33);
}

.item_form {
  border-radius: 4px;
  background-color: rgb(255 255 255);
  box-shadow: 0px 0px 20px 0px rgba(0, 94, 182, 0.2);
  padding: 15px 15px 0px 15px;
  margin-top: 5px;
}

.item_form .row {
  margin-bottom: 25px;
}

/* .item_form .row:last-child {
  margin-bottom: 0px !important;
} */

.item_box {
  border-radius: 4px;
  background-color: rgb(255 255 255);
  box-shadow: 0px 0px 20px 0px rgba(0, 94, 182, 0.2);
  margin-top: 15px;
}

.item_box_student {
  border-radius: 4px;
  background-color: rgb(255 255 255);
  /* box-shadow: 0px 0px 20px 0px rgba(0, 94, 182, 0.2); */
}

.item_box_head li {
  list-style-type: none;
  margin-right: 10px;
}

.item_box_head li a {
  color: rgb(0 0 0);
  font-size: 16px;
  text-transform: uppercase;
  padding: 10px;
  display: inline-block;
  text-decoration: none;
}

.item_box_head li.active a {
  color: rgb(255 255 255);
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
  border-radius: 2px;
  background-color: rgb(49 136 217);
}

.item_box_head {
  display: flex;
  align-items: center;
  border-radius: 4px;
  border-bottom: 1px solid rgb(198 198 198);
  padding: 6px;
}

.item_box_cont label {
  color: rgb(0 0 0);
  font-size: 15px;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.item_input {
  border: 1px solid rgb(223 223 223);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 4px;
}

.item_input input {
  font-size: 15px;
  font-weight: 300;
  border-radius: 4px;
  color: rgb(33, 33, 33);
  height: 50px;
  border: none;
  outline: none;
  padding: 10px 20px;
  width: calc(100% - 120px);
  font-family: "Rubik", sans-serif !important;
}

.item_input select {
  background-color: rgb(248 248 248);
  width: 120px;
  border: none;
  height: 50px;
  color: rgb(64 64 64);
  font-size: 15px;
  font-weight: 300;
  border-radius: 0px 4px 4px 0px;
  padding: 0px 10px;
  outline: none;
  font-family: "Rubik", sans-serif !important;
}

.item_input_full input {
  width: 100% !important;
}

.item_input_full select {
  width: 100%;
  background-color: transparent;
}

.item_box_cont {
  padding: 25px 15px 15px 15px;
}

.item_box_btn {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 20px 25px;
  border-radius: 4px;
  border-top: 1px solid rgb(214 214 214);
}

.item_box_btn button {
  padding: 3px;
  border-radius: 3px;
  border: 1px solid rgb(49 136 217);
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  width: 168px;
  height: 40px;
  display: flex;
  align-items: center;
}

.item_box_btn i {
  width: 34px;
  height: 34px;
  font-size: 14px;
  border-radius: 2px;
  background-color: rgb(49 136 217);
  color: rgb(255, 255, 255);
  line-height: 34px;
}

.item_box_btn span {
  width: calc(100% - 34px);
  font-size: 14px;
  font-weight: 300;
  text-transform: uppercase;
  text-align: center;
}

.item_box_btn .add {
  background-color: transparent;
  margin-right: 15px;
}

.item_box_btn .add span {
  color: rgb(0, 43, 83);
}

.item_box_btn .save {
  background-color: rgb(0, 43, 83);
}

.item_box_btn .save span {
  color: rgb(255, 255, 255);
}

.item_preview img {
  width: 50px;
  height: 50px;
  border-radius: 3px;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
}

.category_pop label {
  color: rgb(33 33 33);
  font-size: 14px;
  font-weight: 300;
  margin-bottom: 8px;
  font-family: "Rubik", sans-serif !important;
}

.category_pop .modal-body select {
  color: rgb(33 33 33);
  font-size: 15px;
  font-weight: 300;
  border-radius: 4px;
  border: 1px solid rgb(163 163 163);
  height: 50px;
  font-family: "Rubik", sans-serif !important;
}

.stock_form .row {
  margin-bottom: 25px;
}

.stock_form .row:last-child {
  margin-bottom: 0px !important;
}

.stock_form input,
.stock_form select {
  color: rgb(33 33 33);
  font-size: 15px;
  font-weight: 300;
  border-radius: 4px;
  border: 1px solid rgb(223 223 223);
  padding: 10px 20px;
  height: 50px;
  font-family: "Rubik", sans-serif !important;
}

.stock_form input::placeholder {
  color: rgb(33 33 33);
}

.conversion_btn {
  color: rgb(0 43 83);
  font-size: 14px;
  font-weight: 300;
  text-transform: uppercase;
  border-radius: 3px;
  border: 1px solid rgb(156 208 255);
  background-color: rgb(255 255 255);
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  width: 135px;
  height: 34px;
  margin-left: 15px;
}

.conversion_pop .modal-footer button {
  width: 145px;
  margin-left: 15px;
}

.conversion_pop .modal-footer button:first-child {
  margin-left: 0px !important;
}

.conversion_pop .row .col-sm-4 {
  position: relative;
}

.conversion_pop .row .col-sm-4:first-child::before {
  content: "\3d";
  font-family: "Font Awesome 6 Free";
  font-weight: 400;
  position: absolute;
  right: -6px;
  top: 44px;
}

.import_xl {
  border-radius: 3px;
  border: 1px solid rgb(0, 43, 83);
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  height: 40px;
  width: 168px;
  background-color: rgb(255, 255, 255);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3px;
  margin-right: 5px;
}

.import_xl span {
  color: rgb(13 13 13);
  font-size: 14px;
  font-weight: 300;
  text-transform: uppercase;
  width: calc(100% - 34px);
}

.import_xl b {
  width: 34px;
  height: 34px;
  line-height: 30px;
  background-color: rgb(0, 43, 83);
  border: none;
  border-radius: 3px;
  color: rgb(255, 255, 255);
  font-size: 16px;
}

.party_form input,
.party_form select {
  color: rgb(33 33 33);
  font-size: 15px;
  font-weight: 300;
  border-radius: 4px;
  border: 1px solid rgb(223 223 223);
  padding: 10px 20px;
  height: 50px;
  font-family: "Rubik", sans-serif !important;
}

.party_form input::placeholder {
  color: rgb(33 33 33);
}

.party_form {
  padding: 15px 15px 0px 15px;
}

.party_form .row {
  margin-bottom: 25px;
}

.dashboard_main {
  padding: 28px 18px;
}

.dashbox {
  border-radius: 4px;
  background-color: rgb(255 255 255);
  box-shadow: 0px 0px 20px 0px rgba(0, 94, 182, 0.2);
  padding: 20px 20px 40px 20px;
  margin-bottom: 20px;
}

.dash_head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 32px;
}

.dash_head_left {
  display: flex;
  align-items: center;
}

.dash_head_left span {
  color: rgb(0 43 83);
  font-size: 20px;
  font-weight: 400;
  margin-left: 15px;
}

.dash_head_right select {
  width: 145px;
  color: rgb(33 33 33);
  text-align: center;
  font-size: 14px;
  font-weight: 300;
  border-radius: 3px;
  border: 1px solid rgb(222 222 222);
  background-color: rgb(255 255 255);
  height: 38px;
  margin-left: 10px;
  font-family: "Rubik", sans-serif !important;
}

.graph_day {
  color: rgb(33 33 33);
  font-size: 15px;
  font-weight: 300;
  line-height: 24px;
  margin-bottom: 50px;
  font-family: "Rubik", sans-serif !important;
}

.graph_day span {
  font-size: 16px;
}

.graph_sale {
  color: rgb(33 33 33);
  font-size: 20px;
  font-weight: 300;
  font-family: "Rubik", sans-serif !important;
}

.graph_sale span {
  font-size: 27px;
  margin-top: 15px;
  display: inline-block;
}

.graph_right img {
  max-width: 100%;
}

.dash_graph {
  padding: 55px 22px;
}

.dash_graph .col-sm-9 {
  border-left: 1px dashed rgb(125 125 125);
}

.stock_value {
  color: rgb(33 33 33);
  font-size: 27px;
  font-weight: 300;
}

.dash_head_right span {
  color: rgb(33 33 33);
  font-size: 27px;
  font-weight: 300;
}

.dash_list {
  height: 175px;
  overflow-y: auto;
}

.dash_list li {
  color: rgb(54 54 54);
  font-size: 15px;
  font-weight: 300;
  list-style-type: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  font-family: "Rubik", sans-serif;
}

.dash_head_right {
  text-align: right;
}

.hamburger {
  width: 22px;
  height: 16px;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  display: flex;
  border: none;
  background-color: transparent;
}

.hamburger span {
  width: 22px;
  height: 2px;
  background-color: rgb(255, 255, 255);
  border-radius: 5px;
  transition: 0.3s all ease-in-out;
}

.open_hamburger span:nth-child(1) {
  transform: rotate(45deg);
  transition: 0.3s all ease-in-out;
  translate: 0px 6px;
}

.open_hamburger span:nth-child(2) {
  opacity: 0;
  visibility: hidden;
  transition: 0.3s all ease-in-out;
}

.open_hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: 0.3s all ease-in-out;
  translate: 0px -6px;
}

.mobile_btn {
  padding: 0px 20px;
}

.mobile_btn .sale {
  border-radius: 5px;
  background-color: rgb(255 255 255);
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  width: 100%;
  display: flex;
  align-items: center;
  padding: 5px;
  justify-content: center;
  position: relative;
  margin: 15px 0px;
}

.mobile_btn .sale b {
  width: 30px;
  height: 30px;
  line-height: 30px;
  font-size: 13px;
  border-radius: 4px;
}

.mobile_btn .sale span {
  font-size: 14px;
  color: rgb(0, 0, 0);
  font-weight: 300;
  width: calc(100% - 30px);
  text-align: center;
}

.mobile_btn .add_sale::before {
  display: none;
}

.tax_percentage {
  position: relative;
}

.tax_percentage input {
  padding-right: 60px;
}

.tax_percentage span {
  position: absolute;
  right: 1px;
  top: 1px;
  width: 48px;
  height: 48px;
  background-color: rgb(239 239 239);
  color: rgb(33 33 33);
  text-align: center;
  line-height: 48px;
  font-size: 18px;
  border-radius: 0px 4px 4px 0px;
}

.setting {
  position: relative;
}

.setting ul {
  background-color: rgb(255, 255, 255);
  width: 100px;
  position: absolute;
  top: 42px;
  right: 0px;
  box-shadow: 0px 0px 6px rgb(0 0 0 / 70%);
  border-radius: 3px;
  transform: translateY(50%);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s all ease-in-out;
}

.setting:hover ul {
  transform: translateY(0%);
  opacity: 1;
  visibility: visible;
  transition: 0.3s all ease-in-out;
}

.setting ul li {
  list-style-type: none;
}

.setting ul li a {
  color: rgb(51, 51, 51);
  float: left;
  width: 100%;
  padding: 10px;
  text-decoration: none;
}

.seach_option {
  border-radius: 3px 0px 0px 3px;
  border: 1px solid rgb(217 217 217);
  background-color: rgb(0 43 83);
  height: 42px;
  padding: 5px 15px;
  color: rgb(255 255 255);
  font-size: 11px;
  font-weight: 400;
  text-transform: uppercase;
  outline: none;
}

.mr5 {
  margin-right: 5px;
}

.pagebar {
  min-height: 52px;
}

.grey_clr {
  color: rgb(90 90 90);
}

.expense_box {
  border-radius: 4px;
  background-color: rgb(255 255 255);
  box-shadow: 0px 0px 20px 0px rgba(0, 94, 182, 0.2);
  margin-top: 12px;
}

.expense_head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px dashed rgb(183 183 183);
  min-height: 50px;
  padding: 0px 10px;
}

.expense_head span {
  color: rgb(0 0 0);
  font-size: 15px;
  font-weight: 300;
  text-transform: uppercase;
}

.expense_cont {
  background-image: url(../images/expense-bg.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 20px;
  border-radius: 0px 0px 4px 4px;
}

.expense_title {
  color: rgb(255 255 255);
  font-size: 17px;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.expense_list li {
  list-style-type: none;
  color: rgb(255 255 255);
  font-size: 15px;
  font-weight: 300;
  text-transform: uppercase;
  float: left;
  margin-bottom: 10px;
}

.expense_list li:nth-child(odd) {
  width: 40%;
}

.expense_list li:nth-child(even) {
  width: 60%;
}

.expense_list li span {
  float: right;
  padding: 0% 10%;
}

.expense_amount {
  color: rgb(255 255 255);
  font-size: 15px;
  font-weight: 300;
  text-transform: uppercase;
  border-radius: 8px;
  border: 1px solid rgb(8 117 217);
  background: rgba(0, 43, 83, 0.5);
  padding: 15px 20px;
  width: 65%;
  margin-top: 10px;
}

.expense_amount span {
  color: rgb(0 126 35);
  font-size: 27px;
}

.expense_form .form-group {
  margin-bottom: 20px;
}

.expense_form input {
  color: rgb(33 33 33);
  font-family: "Rubik", sans-serif;
  font-size: 15px;
  font-weight: 300;
  height: 50px;
  padding: 5px 15px;
  border-radius: 4px;
  border: 1px solid rgb(217 217 217);
}

.expense_form input::placeholder {
  color: rgb(33 33 33);
}

.expense_form {
  padding: 20px 15px 30px 15px;
}

.expense_btn {
  margin-top: 5px;
}

.expense_btn button {
  border-radius: 3px;
  border: 1px solid rgb(0, 43, 83);
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  height: 46px;
  width: 200px;
  background-color: rgb(255, 255, 255);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3px;
  float: right;
}

.expense_btn button span {
  color: rgb(13 13 13);
  font-size: 14px;
  font-weight: 300;
  text-transform: uppercase;
  width: calc(100% - 40px);
}

.expense_btn button i {
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 2px;
  background-color: rgb(0 43 83);
  color: rgb(255, 255, 255);
  font-size: 18px;
}

.expense_head b {
  width: 30px;
  height: 30px;
  line-height: 30px;
  font-size: 13px;
  border-radius: 4px;
  text-align: center;
}

.add_expenses {
  color: rgb(165 0 0);
  background-color: rgb(255 210 210);
}

.add_expenses i {
  transform: rotate(45deg);
}

.add_income {
  color: rgb(2, 111, 0);
  background-color: rgb(212, 255, 211);
}

.add_income i {
  transform: rotate(45deg);
}

.expense_download {
  width: 34px;
  height: 34px;
  font-size: 14px;
  border-radius: 2px;
  background-color: rgb(49 136 217);
  color: rgb(255, 255, 255);
  line-height: 32px !important;
  text-align: center;
  border: 1px solid rgb(219 238 255);
  cursor: pointer;
  margin-left: 10px;
}

.expense_empty {
  padding: 52px 0px;
}

.expense_icon {
  text-align: center;
}

.expense_desc {
  color: rgb(255 255 255);
  text-align: center;
  font-size: 15px;
  font-weight: 300;
  text-transform: uppercase;
  margin-top: 38px;
}

.student_details {
  border-radius: 4px;
  background-color: rgb(255 255 255);
  box-shadow: 0px 0px 20px 0px rgba(0, 94, 182, 0.2);
  padding: 20px;
  margin-top: 12px;
}

.student_details .catadjust_box {
  margin-bottom: 20px;
}

.import_modal .modal-body {
  padding: 35px;
  text-align: center;
}

.import_modal .close {
  position: absolute;
  right: -12px;
  top: -12px;
  opacity: 2;
  color: rgb(255 255 255);
  background-color: rgb(95 95 95);
  border-radius: 50%;
  box-shadow: 0px 0px 6px rgb(156 156 156);
  font-size: 24px;
}

.import_modal_top {
  border-radius: 8px;
  border: 1px solid rgb(49 136 217);
  padding: 80px 0px;
}

.import_modal_btm {
  position: relative;
  width: 200px;
  margin: 30px auto 0px auto;
}

.import_modal_btm button {
  color: rgb(13 13 13);
  font-size: 14px;
  font-weight: 300;
  text-transform: uppercase;
  border-radius: 3px;
  border: 1px solid rgb(0 43 83);
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  padding: 15px 30px;
  background-color: transparent;
}

.import_modal_btm input {
  position: absolute;
  left: 5px;
  top: 0px;
  width: 190px;
  height: 52px;
  cursor: pointer;
  opacity: 0;
}

.balance_table tbody tr td,
.balance_table thead tr th {
  border: 1px solid rgb(241 241 241) !important;
}

.md-drppicker {
  display: flex !important;
  top: 66px !important;
  left: 724px !important;
}

.buttons.ng-star-inserted {
  display: flex;
  flex-direction: column-reverse;
}

/* rach css */
.portal_box {
  padding: 22px 12px 12px 12px;
  border-radius: 4px;
  border: 1px solid #dceeff;
  background: #fff;
  box-shadow: 0px 0px 20px 0px rgba(0, 94, 182, 0.2);
}

.portal_cont {
  background: #fff;
  padding: 30px;
  border: 1px solid #c6e3ff;
}

.portal_head {
  padding: 15px 0px 25px 0px;
  color: #000;
  font-size: 16px;
  font-weight: 400;
}

.portal_btn button {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 15px 25px;
  border-radius: 4px;
  border: 1px solid #c6e3ff;
  background: #002b53;
  color: #fff;
}

.portal_img {
  padding-left: 10px;
  margin-bottom: 30px;
}

.portal_title {
  color: #090909;
  padding-bottom: 25px;
  border-bottom: 1px dashed #c3c3c3;
  font-family: IBM Plex Sans;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.portal_btn {
  margin-top: 10px;
}

.student_submenu {
  position: relative;
}

.dropdown_menu {
  display: block !important;
  visibility: hidden;
  opacity: 0;
  left: -113px;
  top: 30px;
  transform: translateY(15%);
  position: absolute;
  width: 250px !important;
  border-radius: 5px;
  background: rgb(255, 255, 255);
  box-shadow: 0px 0px 20px 0px rgb(37 47 84 / 20%);
  padding: 10px;
  transition: 0.5s all ease-in-out;
  z-index: 1;
}

.menuH li:hover .dropdown_menu {
  transform: translateY(0%) !important;
  visibility: visible;
  transition: 0.5s all ease-in-out;
  opacity: 1;
}

.dropdown_menu li {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  width: 100%;
  padding: 0px !important;
  margin-right: 0px !important;
}

.menu_holder {
  justify-content: space-between;
  align-items: center;
  display: flex;
  background: rgb(245, 245, 245);
  list-style-type: none;
  padding: 12px;
  margin-bottom: 5px;
}

.menu_holder:hover,
.menu_holder.active {
  color: #002b53;
}

.balance_xl {
  border-radius: 3px;
  border: 1px solid #449b42;
  box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 10%);
  height: 40px;
  width: 268px;
  background-color: rgb(255, 255, 255);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 3px;
  margin-right: 5px;
}

.balance_xl b {
  width: 34px;
  height: 34px;
  line-height: 30px;
  background: #449b42;
  border: none;
  border-radius: 3px;
  color: rgb(255, 255, 255);
  font-size: 16px;
}

.balance_xl span {
  margin-left: 15px;
}

.stu_filter {
  border: 1px solid #002b53;
  padding: 3px !important;
  height: 40px;
}

.stu_filter i {
  width: 34px;
  background-color: rgb(0 43 83);
  height: 34px;
}

.personal_info {
  padding: 5px;
  color: rgb(0 43 83);
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.upload_photo_txt {
  padding: 5px;
  color: rgb(0 43 83);
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
}

.input-container {
  position: relative;
}

.input-container select {
  background-color: #fff;
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  opacity: 1;
  z-index: 1;
}

.input-container .calander-view {
  padding: 10px;
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  opacity: 1;
  z-index: 1;
}

.radio-button label {
  padding: 15px 20px;
}

label {
  font-size: 15px;
  font-weight: 300;
  padding: 15px 0px 15px 25px;
  margin-bottom: 0px;
}

.login_check label {
  padding: 0px;
}

.radio-btn {
  margin: 0px !important;
}

.input-container .radio-button {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  opacity: 1;
  z-index: 1;
}

.radio-button {
  justify-content: flex-end;
  display: flex;
}

.form_radio_btn .radio span:after {
  height: 12px;
  width: 12px;
}

.form_radio_btn .radio span {

  left: -7px;
}

.item_upload {
  position: relative;
  overflow: auto;
  display: inline-block;
  margin-top: 5px;
}

.item_upload button {
  border: none;
  background-color: #3f61ad;
  border-radius: 4px;
  text-transform: capitalize;
  font-weight: 300;
  font-size: 16px;
  line-height: 24px;
  color: rgb(255, 255, 255);
  float: left;
  width: 100%;
  height: 40px;
}

.item_upload input[type="file"] {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  cursor: pointer;
}

.item_upload_top {
  text-align: center;
  border-radius: 3.844px;
  background: #f3f3f3;
  padding: 44px 32px;
}

.upload_text {
  margin-top: 10px;
  font-weight: 400;
  font-size: 12px;
}

.item_upload_cont.flt {
  padding: 3px;
  border-radius: 5px;
  border: 0.64px solid #929292;
}

.section_filter {
  display: flex;
}

.section_input {
  padding: 10px;
  height: 41px;
  width: 130px;
  border: 1px solid #d9d9d9;
  border-radius: 3px;
  background-color: #fff;
  margin-right: 15px;
}

.input-placeholder {
  position: relative;
}

.input-placeholder input {
  padding: 10px 28px;
  font-size: 16px;
}

.input-placeholder input:valid+.placeholder {
  display: none;
}

.placeholder {
  position: absolute;
  pointer-events: none;
  top: 0;
  bottom: 0;
  height: 25px;
  font-size: 15px;
  left: 26px;
  margin: auto;
  color: #212121;
}

.placeholder span {
  color: red;
}

.student_photo {
  border-radius: 3px;
  background: #F3F3F3;
  width: 67px;
  height: 57px;
  text-align: center;
  line-height: 55px;
}

.generate_report .add_category_btn {
  width: 220px;
}

.transport_cont .add_category_btn {
  margin-left: 0px;
  width: 200px;
}

.transport_cont .atten_download button {
  margin-right: 5px;
}

.transport_cont .atten_download {
  display: flex;
  align-items: center;
}

.transport_label {
  margin-bottom: 10px;
  font-weight: 500;
  font-size: 15px;
}

.atten_type ul {
  display: flex;
  align-items: center;
  list-style-type: none;
}

.atten_type ul li {

  position: relative;
  margin-right: 25px;
  color: #000;
  font-size: 16px;
  font-weight: 400;
}
.atten_type ul li::before {
  position: absolute;
  content: '';
  right: -15px;
  top: 0px;
  background: #000;
  width: 2px;
  height: 18px;
}
.atten_type ul li:last-child::before{
  display: none;
}
.driver_detail_form .radio-button {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.driver_detail_form .transport_label {
  margin-bottom: 0px;
  margin-right: 20px;
}
.attendence_filter .atten_type {
  margin-left: 25px;
}
.attendence_filter .atten_type ul li::before {

  background: #CDC6C6;
  width: 1px;
  height: 20px;
}
.add_std_btn {
  float: right;
  border: 1px solid #35C95E;
  background-color: #007E23;
}
.blue_time{
  color: #3188D9;
}
.pickup_top{
  margin-top: 15px;
}
.pickup_main {
  padding: 25px 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.pickup_left {
  padding: 30px 22px;
  background: #F9F9F9;
}
.pickup_select {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.pickup_select select {
  width: 620px;
  background: #FFFFFF;
  height: 50px;
}
.pickup_right {
  margin-left: 25px;
}
.pickup_btn {
  text-align: right;
}
.pickup_btn button {
  margin-right: 55px;
}
.pickup_btn button {
  text-transform: uppercase;
  background: #007E23;
  margin-right: 55px;
  border: none;
  color: #fff;
  width: 162px;
  padding: 10px;
  border-radius: 3px;
}
.pickup_head {
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 20px;
}
.add_more {
  text-align: right;
  margin-bottom: 20px;
}
.add_more button {
  margin-right: 92px;
  border: none;
  background: none;
}
.atten_bar .atten_type {
  margin-left: 20px;
}
.atten_bar .atten_type ul li::before {
  background: #CDC6C6;
  width: 1px;
  height: 20px;
}
.pickup_right button {
  border: none;
  background: none;
}
.pickup_select button {
  border: none;
  background: none;
}
.pickup_select button img {
  width: 30px;
  height: 30px;
}
.add_std_btn b {
  background-color: #35C95E;
}

.table_std_search {
  border: 1px solid #3188D9;
  width: 168px;
  background: #002B53;
}

.table_std_search input {

  background: #002B53;
  color: #fff;
}

.table_std_search input::placeholder {
  text-transform: uppercase;
  text-align: center;
  color: #fff;
}

.std_bar {
  padding-bottom: 20px;
  border-bottom: 1px dashed #C3C3C3;
}

.std_filter {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 15px 15px 10px 20px;
}

.std_title {
  margin-right: 18px;
  padding-left: 0px;
}

.std_select {
  border-radius: 3px;
  background: #FFF;
  width: 167px;
  margin-right: 14px;
}

.std_select select {
  height: 40px;
}

.std_search button {
  border: none;
  border-radius: 3px;
  width: 167px;
  color: #fff;
  text-align: center;
  background: #002B53;
  height: 40px;
}

.std_search input::placeholder {
  color: #fff;
  text-align: center;
}

.emptyShuffle {
  padding: 50px 300px;
  display: grid;
  place-items: center;
}

.shuffle_header {
  color: #002b53;
  font-size: 24px;
  font-weight: 500;
  margin: 10px 0px;
}

.shuffle_txt {
  text-align: center;
  color: #000000;
  font-size: 18px;
  font-weight: 400;
}

.item_form select option span {
  color: red !important;
}

.std_page_search {
  justify-content: space-between;
  margin-right: 10px;
}

.std_page_search input {
  text-align: left;
  height: 34px;
  color: rgb(44 44 44);
  font-size: 14px;
  font-weight: 300;
  border: none;
  box-shadow: none;
  outline: none !important;
  font-family: "Rubik", sans-serif !important;
}

.subject_input input {

  border-radius: 4px;
  border: 1px solid #DFDFDF;
  height: 50px;
}

.subject_cont {
  padding: 10px;
}

.subject_input li {
  margin-bottom: 15px;
  padding: 0px;
}

button.subject_btn {
  width: 100%;
  border-radius: 3px;
  border: 1px solid #35C95E;
  background: #007E23;
  box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 10%);
  color: #fff;
  padding: 10px;
}

.subject_search {
  margin-right: 12px;
}

.edit_student_tab {
  border-radius: 4px;
  border-bottom: 1px solid #C6C6C6;
  box-shadow: 0px 0px 20px 0px rgb(0 94 182 / 20%);
  margin-bottom: 20px;
}

.edit_student_tab ul {
  padding: 8px;
  display: flex;
  align-items: center;
  list-style-type: none;
}

.edit_student_tab li {
  border-radius: 2px;
  border: 1px solid #EAEAEA;
  padding: 10px 18px;
  margin-right: 10px;
}

.edit_std_cont {
  padding: 0px;
}

.edit_std_container {
  padding: 0px 20px;
}

.edit_student_tab ul li a {
  text-decoration: none;
  cursor: pointer;
  color: #000;
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
}

.edit_std_list {
  display: flex;
  padding: 15px;
  background: #FFF;
  box-shadow: 0px 0px 20px 0px rgb(0 94 182 / 20%);
  margin-bottom: 20px;
}

.edit_stu_list ul {
  padding-left: 35px;
  list-style-type: none;
}

.edit_stu_list ul li {
  padding: 5px 0px;
  float: left;
  width: 50%;
  color: #000;
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
}

.edit_stu_list ul li:nth-child(odd) {
  width: 26%;
}

.edit_stu_list span {
  padding: 0px 25px;
  float: right;
}

.item_variants input {
  padding: 0;
  height: initial;
  width: initial;
  margin-bottom: 0;
  display: none;
  cursor: pointer;
}

.item_variants label {
  padding: 5px 0px;
  position: relative;
  cursor: pointer;
  font-weight: 300 !important;
  font-size: 14px !important;
  line-height: 21px !important;
  color: rgb(0 0 0) !important;
}

.item_variants label:before {
  content: '';
  -webkit-appearance: none;
  background-color: transparent;
  border: 1px solid rgb(0, 0, 0);
  box-shadow: 0 1px 2px rgb(0 0 0 / 5%), inset 0px -15px 10px -12px rgb(0 0 0 / 5%);
  padding: 9px;
  display: inline-block;
  position: relative;
  vertical-align: middle;
  cursor: pointer;
  margin-right: 8px;
  border-radius: 3px;
}

.item_variants input:checked+label:after {
  content: '';
  display: block;
  position: absolute;
  top: 8px;
  left: 7px;
  width: 6px;
  height: 14px;
  border: solid rgb(0, 0, 0);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.assing_item_variants label {
  padding: 5px 0px;
  position: relative;
  cursor: pointer;
  font-weight: 400 !important;
  font-size: 14px !important;
  line-height: 21px !important;
  color: #002B53 !important;
  text-transform: uppercase;
}

.assing_item_variants label:before {
  content: '';
  -webkit-appearance: none;
  background-color: transparent;
  border: 1px solid #002B53;
  box-shadow: 0 1px 2px rgb(0 0 0 / 5%), inset 0px -15px 10px -12px rgb(0 0 0 / 5%);
  padding: 9px;
  display: inline-block;
  position: relative;
  vertical-align: middle;
  cursor: pointer;
  margin-right: 8px;
  border-radius: 3px;
}

.assing_item_variants input:checked+label:after {
  content: '';
  display: block;
  position: absolute;
  top: 8px;
  left: 7px;
  width: 6px;
  height: 14px;
  border: solid #002B53;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}





.subject_check ul li {
  margin-bottom: 0px;
}

.subject_checklist {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.subject_title {
  color: #002B53;
  margin-bottom: 15px;
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
}

.subject_input {
  margin-bottom: 30px;
}

.term_check {
  display: flex !important;
  justify-content: space-between !important;
}

.term_check ul {
  margin-right: 30px;
}

.term_check ul:last-child {
  margin-right: 0px;
}

.radio {
  padding: 0px;
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  display: inline-block;
  color: #000;
  margin: 0px;
  position: relative;
  cursor: pointer;
  padding-left: 30px;
}

.radio input[type="radio"] {
  display: none;
}

.radio span {
  border: 1px solid rgb(252, 137, 25);
  background-color: rgb(255, 255, 255);
}

.radio span {
  height: 20px;
  width: 20px;
  display: block;
  top: 14px;
  left: 0px;
  position: absolute;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #3188D9;
}

.radio span:after {
  background: rgb(252, 137, 25);
}

.term_radio span {
  top: 0px !important;
}

.radio span:after {
  content: "";
  position: absolute;
  height: 10px;
  width: 10px;
  background: #3188D9 !important;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%)scale(0);
  transition: 300ms ease-in-out 0s;
}

.radio input[type="radio"]:checked~span:after {
  transform: translate(-50%, -50%)scale(1);
}

.radio span:after {
  background: rgb(252, 137, 25);
}

.green_radio span,
.yellow_radio span,
.red_radio span,
.orange_radio span,
.blue_radio span {
  top: 0px !important;
}

.radio_head span {
  top: 0px !important;
}

.green_radio span {
  border: 1px solid #007E23;
}

.yellow_radio span {
  border: 1px solid #ffa900;
}

.red_radio span {
  border: 1px solid #D22E2E;

}

.orange_radio span {
  border: 1px solid #FB6900;
}

.blue_radio span {
  border: 1px solid #3188D9;

}

.green_radio span:after {
  background: #007E23 !important;
}

.yellow_radio span:after {
  background: #ffa900 !important;
}

.red_radio span:after {
  background: #D22E2E !important;
}

.orange_radio span:after {
  background: rgb(252, 137, 25) !important;
}

.blue_radio span:after {
  background: #3188D9 !important;
}

.radio span:after {
  content: "";
  position: absolute;
  height: 10px;
  width: 10px;
  background: rgb(0, 0, 0);
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%)scale(0);
  transition: 300ms ease-in-out 0s;
}

.term_status {
  border-radius: 4px;
  border: 1px solid #DFDFDF;
  padding: 12px 15px;
}

.term_status b {
  margin-right: 10px;
  color: #212121;
  font-size: 15px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}

.std_list {
  list-style-type: none;
}

.std_list li {
  color: #1D1D1D;
  font-size: 15px;
  font-weight: 300;
}

.attendence_filter {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 6px 15px 5px 25px;
}

.std_select input {
  height: 40px;
}

.atten_bar {
  padding-bottom: 10px;
  border-bottom: 1px dashed #C3C3C3;
}

.std_search {
  width: 167px;
}

.std_list {
  list-style-type: none;
  margin-left: 50px;
}

.edit_student_tab li.active a {
  color: #ffff;
}

.edit_student_tab li.active {
  border-radius: 2px;
  background: #3188D9;
}

.atten_tab {
  box-shadow: none;
  background: none;
  margin-bottom: 0px;
  border-bottom: none;
}

.mark_btn button {
  float: right;
}

.category_table th i {
  position: relative;
}

.category_table th i:hover .mark_info_content {
  display: block !important;
  color: #000;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  border-radius: 6px;
  background: #FFF;
  box-shadow: 0px 0px 20px 0px rgb(0 94 182 / 20%);
  top: 53px;
  right: 337px;
  position: absolute;
  width: 392px;
  padding: 15px;
  z-index: 1;
}

.mark_info_content {
  display: none;
}

.mark_info_content {
  text-transform: capitalize;

}

.attendence_tab {
  padding: 10px 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.green_report,
.yellow_report,
.red_report,
.blue_report,
.dblue_report,
.orange_report,
.grey_report {
  margin-right: 10px;
  display: flex;
  width: 18px;
  height: 18px;
}

.atten_type {
  display: flex;
}

.green_report {
  background: #007E23 !important;
}

.yellow_report {
  background: #ffff00;
}

.red_report {
  background: #D22E2E;
}

.dblue_report {
  background: #16245D;
}

.blue_report {
  background: #3188D9;
}

.orange_report {
  background: #FB6900;
}

.grey_report {
  background: #CECECE;
}

.atten_type b {
  color: #2E2E2E;
  align-items: center;
  font-size: 14px;
  font-weight: 400;
  display: flex;
  margin-right: 30px;
}

.status_active {
  color: #007E23;
  padding: 6px;
  font-family: Rubik;
  font-size: 14px;
  justify-content: center;
  align-items: center;
  display: flex;
  border-radius: 4px;
  background: #C7FFD6;
  width: 92px;
}

.status_inactive {
  padding: 6px;
  color: #D22E2E;
  font-size: 14px;
  justify-content: center;
  align-items: center;
  display: flex;
  border-radius: 4px;
  background: #FFD7DC;
  width: 92px;
}

.status_disc {
  color: #000;
  padding: 6px;
  font-family: Rubik;
  font-size: 14px;
  justify-content: center;
  align-items: center;
  display: flex;
  border-radius: 4px;
  background: #D2D2D2;
  width: 120px;
}

.payroll_container {
  margin-top: 20px;
  box-shadow: 0px 0px 20px 0px rgba(0, 94, 182, 0.2);

}

.payroll_tab {
  border-radius: 4px;
  border-bottom: 1px solid #C6C6C6;
  box-shadow: 0px 0px 20px 0px rgba(0, 94, 182, 0.20);
  padding: 10px 15px;
}

.payroll_tab ul {
  display: flex;
  align-items: center;
}

.payroll_tab ul li {
  margin-right: 10px;
  list-style-type: none;
  border-radius: 3px;
  border: 1.141px solid #E9E9E9;
  background: #FFF;
  padding: 10px 18px;
}

.payrol_cont {
  padding: 30px 15px;
}

.payrol_cont input {
  height: 50px;
}

.payrol_cont input::placeholder {
  color: #212121;
  font-size: 15px;
  font-weight: 300;
}

.assign_teacher_cont {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}

.assign_teacher_cont .form-group {
  margin-bottom: 0px;
}

.assign_teacher_cont .row {
  margin-bottom: 0px;
}

.assign_input {
  margin-right: 35px;
  background: #F9F9F9;
  padding: 15px;
}

.assign_btn button {
  color: #fff;
  background: #007E23;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 3px;
}

.assign_btn_ex button {
  background: #fff;
  color: #D22E2E;
  border: 1px solid #D22E2E;
}

.assign_input select.form-control {
  width: 335px;
}

.assign_head {
  padding: 10px 15px;
}

.promote_head .category_table_title {
  color: #000;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
}

.promote_head .category_table_title span {
  color: #007E23;
}

.promote_head .category_table_title b {
  color: #002B53;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
}

.promote_list {
  display: flex;
  align-items: center;
  list-style-type: none;
}

.promote_list {
  width: 35%;
  display: flex;
  align-items: center;
  list-style-type: none;
}

.promote_status {
  display: flex;
  margin-right: 30px;
}

.edit_student_title {
  padding-bottom: 12px;
  color: #002B53;
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
}

.edit_std_check label {
  color: #989898 !important;
  font-size: 14px;
  font-weight: 400;
}

.edit_std_check label:before {
  padding: 6px;
}

.edit_std {
  padding-bottom: 0px;
}

.mark_table tr td input {
  height: 50px;
}

.staff_reset {
  border-radius: 3px;
  padding: 5px 15px;
  background: #3188D9;
  color: #fff;
  border: none;
}

.std_list span {
  padding: 0px 15px;
}

.student_submenu a span {
  margin-left: 5px;
}

.std_list {
  width: 25%;
  list-style-type: none;
  margin-left: 50px;
}

.std_list li {
  float: left;
  color: #1D1D1D;
  font-size: 15px;
  font-weight: 300;
  width: 40%;
}

.std_list span {
  float: right;
  padding: 0px 15px;
}

.std_list li:nth-child(even) {
  width: 60%;
  float: left;
}

.narrow {
  position: relative;
  /* the context by which to position the inner div */
  width: 0px;
}

.narrow div {
  display: none;

  width: 0px;
  overflow: auto;
  white-space: nowrap;
  pointer-events: none;
  /* optional - enables hovering on other headers, when the current one is expanded */
}

.narrow:hover div {
  /* the hover is on narrow */
  padding: 15px 15px;
  border-radius: 6px;
  background: #FFF;
  box-shadow: 0px 0px 20px 0px rgba(0, 94, 182, 0.20);
  position: absolute;
  top: 35px;
  left: -75px;
  color: #000;
  font-size: 15px;
  text-transform: lowercase;
  font-style: normal;
  font-weight: 300;
  line-height: 22px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  width: 430px;
  height: 245px;
  display: block;
  z-index: 1;
}

.table_info:hover div {
  top: 35px;
  left: -379px !important;
  height: 300px;
  width: 390px;
}

.table_info b {
  margin-left: 12px;
  font-weight: 400px;
}

.narrow span {
  margin-bottom: 20px !important;
}

.category_table th span {
  margin-right: 10px;
}

.staff_list li {
  float: left;
  width: 45%;
  list-style-type: none;
}

.staff_list span {
  float: right;
  padding: 0px 20px;
}

.staff_list li:nth-child(even) {
  width: 50%;
}

.overview_cont {
  padding: 7px 7px 7px 18px;
  border-radius: 4px;
  background: #FFF;
  box-shadow: 0px 0px 20px 0px rgb(0 94 182 / 20%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.overview_left {
  color: #002B53;
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
}

.overview_right span {
  margin-right: 15px;
  color: #002B53;
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
}

.overview_right {
  display: flex;
  align-items: center;
}

.dash_calbox .dash_head {
  margin-bottom: 38px;
}

.dash_calbox .dash_graph {
  padding: 0px;
}

.dash_calbox .dash_graph img {
  width: 100%;
}

.dash_head_select {
  margin-bottom: 30px;
  display: flex;
}

.dash_head_select select {
  margin-right: 10px;
  width: 143px;
  border-radius: 3px;
  border: 1px solid #DEDEDE;
  background: #FFF;
}

.dash_attenbox {
  padding: 15px;
}

.dash_attenbox .dash_head {
  margin-bottom: 30px;
}

.dash_atten_list {
  padding: 10px 0px 0px 0px !important;
}

.dash_atten_list li {
  padding: 8px 0px;
  list-style-type: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dash_atten_list b {
  color: #2E2E2E;
  font-size: 14px;
  font-weight: 400;
  display: flex;
}

.dash_cal_btn {
  border-radius: 3px;
  width: 34px;
  height: 34px;
  background: #002B53;
  border: none;
}

.dash_cal_btn i {
  color: #fff;
}

.dash_main_img img {
  width: 100%;
}

.dash_count_name ul {
  list-style-type: none;
  display: flex;
}

.dash_count_name li {
  margin-right: 30px;
}

.dash_count_name li b {
  display: flex;
  align-items: center;
}

.dash_std_count {
  border-bottom: 1px dashed #B5B5B5;
  padding-bottom: 40px;
  text-align: center;
}

.new_dash_main .col-sm-3 {
  width: 24%;
}

.new_dash_main .col-sm-4 {
  width: 38%;
}

.dash_count_name b {
  color: #002B53;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.overview_right select.form-control {
  width: 167px;
  height: 40px;
  border-radius: 3px;
  border: 1.141px solid #D9D9D9;
  background: #FFF;
}

.dash_std_cont {
  margin-top: -90px;
}

.dash_std_cont span {
  color: #002B53;
  text-align: center;
  font-size: 17.024px;
  font-style: normal;
  font-weight: 400;
}

.dash_std_cont b {
  color: #212121;
  font-size: 27px;
  font-weight: 300;
}

.marks_table td input {
  width: 136px;
  border-radius: 3px;
  border: 1px solid #E9E9E9;
  height: 47px;
}

.outer-wrapper {
  max-width: 100vw;
  overflow: auto;
  position: relative;
  /* scrollbar-color: #d5ac68 #f1db9d; */
  scrollbar-color: #002b53 #e3f0fb;
  scrollbar-width: initial;
  -ms-overflow-style: none;
}



.pseduo-track {
  background-color: #f1db9d;
  height: 2px;
  width: 10%;
  position: relative;
  top: -3px;
  z-index: -10;
}

@media (any-hover: none) {
  .pseduo-track {
    display: none;
  }
}

.outer-wrapper::-webkit-scrollbar {
  width: 4vw;
  height: 8px;
}

::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

.outer-wrapper::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 0px rgba(0, 0, 0, 0);
}

.outer-wrapper::-webkit-scrollbar-thumb {

  background-color: #002B53;
}

.outer-wrapper::-webkit-scrollbar-thumb:hover {
  background-color: #002B53;
}

.outer-wrapper::-webkit-scrollbar:vertical {
  display: none;
}

.inner-wrapper {
  white-space: nowrap;
  padding-bottom: 10px;
}

.pseudo-item {
  height: 300px;
  width: 369px;
  margin-right: 59px;
  flex-shrink: 0;
  background-color: gray;
}

.pseudo-item:nth-of-type(2n) {
  background-color: lightgray;
}

.count_class_cont {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.class_count {
  width: 20%;
  display: flex;
  justify-content: space-around;
}

.count_boys span {
  color: #212121;
  font-size: 20px;
  font-weight: 300;
}

.count_boys b {
  color: #212121;
  font-size: 27px;
  font-weight: 300;
}

.report_head span {
  color: #000;
  font-size: 19px;
  font-weight: 400;
  text-transform: uppercase;
}

.login_head {
  font-size: 22px !important;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.login_desc {
  text-align: center;
  color: rgb(255 255 255);
  font-size: 15px;
  font-weight: 400;
  line-height: 21px;
  text-transform: uppercase;
}

.login_image {
  border-radius: 12px;

}

.login_bg {
  padding: 20px 0px 70px 0px;
  background-image: url(../images/login-bg.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.login_logo_cont {
  background: #02284B;
}

.login_logo {
  padding: 40px 0px;
}

.time_table {
  text-align: left;
  width: 163px;
  padding: 12px;
  color: #FFF;
  font-size: 14px;
  font-weight: 400;
  background: #002B53;
  box-shadow: 0px 0px 20px 0px rgb(49 136 217 / 20%);
}

.time_table_cont tbody tr td {
  text-align: center;
  padding: 9px 0px;
}

.time_table_cont {
  max-width: 100vw;
  overflow-x: scroll;
  position: relative;
}

.store_btn {
  color: #000;
  font-size: 15px;
  font-weight: 300;
  border: none;
  padding: 9px 20px;
  border-radius: 2px;
  background: #FFF;
}

.store_btn span {
  margin-right: 12px;
}

.time_table_cont tr:nth-child(odd) {
  border: 1px solid #EEE;
  background: #F1F3FA;
}

.add_holiday select {
  width: 300px !important;
}

.period_name {
  color: #000;
  font-size: 15px;
  font-weight: 300;
  margin-bottom: 12px;
}

.assign_btn {
  margin-top: 30px;
}

.holiday_cont {
  padding: 10px 15px;
}

.holiday_tab {
  padding: 20px 20px;
  border-radius: 4px;
  background: #FFF;
  box-shadow: 0px 0px 20px 0px rgb(0 94 182 / 20%);
}

.select_day {
  padding: 15px;
}

.select_day .row {
  margin-bottom: 0px !important;
}

.admin_dash_list li:nth-child(odd) {
  background: #F1F3FA;
}

.admin_dash_list li {
  padding: 25px 15px;
  color: #000;
  font-size: 14px;
  font-weight: 300;
  list-style-type: none;
  margin-bottom: 3px;
}

.admin_value {
  font-size: 27px;
  color: #000;
  text-align: right;
  font-weight: 400;
}

.sales_report_cont {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.select_saless {
  display: flex;
  align-items: center;
}

.select_saless select {
  border-radius: 3px;
  border: 1px solid #D9D9D9;
  background: #FFF;
  width: 166px;
  height: 40px;
}

.sales_refresh {
  border-radius: 3px;
  border: 1px solid #3188D9;
  background: #002B53;
  box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 10%);
  width: 40px;
  height: 40px;
  margin-left: 6px;
}

.sales_head {
  color: #002B53;
  font-size: 18px;
  font-weight: 400;
  display: flex;
  align-items: center;
}

.sales_head span {
  margin-right: 10px;
}

.admin_btn {
  padding: 20px 25px 5px 25px;
  margin-top: 30px;
  border-top: 1px dashed rgb(214 214 214);
  text-align: right;
}

.admin_dash_img {
  margin-top: 60px;
}

.mark_select {
  height: 46px;
  border-radius: 2px;
  border: 1px solid #D9ECFF;
  background: #FFF;
  width: 200px;
}

.mark_tdselect {
  border: 1px solid #F1F8FF;
  background: #F1F3FA;
  width: 200px;
  height: 46px;
}

.mark_time {
  border: 1px solid #DEF;
  background: #F1F3FA;
  height: 46px;
  width: 200px;
}

.mark_input {
  height: 46px;
  border: 1px solid #F1F8FF;
  background: #F1F3FA;
}

.admin_header {
  padding-left: 0px;
}

.admin_top {
  padding: 18px;
}

.admin_title {
  color: #000;
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
  padding-left: 0px;
}

.admin_box_btn {
  padding: 0px !important;
}

.admin_filter {
  padding-top: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.admin_search {
  display: flex;
  align-items: center;
}

.admin_search button {
  border: none;
  background: none;
}

.admin_active {
  color: #007E23;
  padding: 8px 20px;
  font-size: 14px;
  border: 1px solid #5BB774;
  background: rgba(0, 126, 35, 0.10);
}

.user_list {
  margin-left: 0px;
  margin-top: 20px;
  width: 100%;
}

.user_list li {
  padding: 5px 0px;
}

.inst_detail_cont {
  margin-bottom: 45px;
  display: flex;
  align-items: flex-end;
}

.admin_head {
  margin-bottom: 20px;
  color: #002B53;
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
}

.user_detail_cont {
  padding: 25px 20px;
}

.institute_img {
  margin-right: 20px;
}

.user_detail_cont .row {
  margin-bottom: 0px;
}

.login_credential_cont {
  height: 460px;
  border-radius: 4px;
  background: #F1F3FA;
  padding: 34px 22px;
}

.user_btn {
  padding: 0px 20px 20px 0px;
}

.user_btn button {
  width: 195px;
  float: right;
}

.mongodb_url {
  border-radius: 4px;
  border: 1px solid #DFDFDF;
  background: #FFF;
  display: flex;
  align-items: center;
}

.mongodb_url span {
  height: 50px;
  background: #F1F3FA;
  width: 12%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mongodb_url input {
  border: none;
}

.update_db_cont {
  display: flex;
  align-items: center;
}

.update_btn {
  font-size: 16px;
  font-style: normal;
  text-transform: uppercase;
  font-weight: 400;
  background: #002B53;
  border: none;
  color: #fff;
  padding: 15px 16px;
  width: 128px;
  border-radius: 3px;
  margin-left: 10px;
}

.inst_label {
  color: #212121;
  font-size: 15px;
  font-weight: 300;
  margin-bottom: 15px;
}

.inst_name {
  color: #212121;
  font-size: 17px;
  font-weight: 400;
  margin-bottom: 30px;
}

.add_user_cont {
  padding: 0px;
}

.user_head {
  padding: 20px;
  border-bottom: 1px solid #EBEBEB;
  box-shadow: 0px 0px 20px 0px rgb(0 94 182 / 20%);
}

.add_user_details {
  padding: 0px 20px;
}

.login_credential_cont input {
  height: 60px;
  border-radius: 4px;
  background: #FFF;
  border: none;
  margin-bottom: 20px;
}

.inst_head {
  margin-bottom: 38px !important;
}

.create_cred {
  color: #002B53 !important;
  border-radius: 3px;
  border: 1px solid #002B53 !important;
  background: #fff !important;
  margin-top: 10px;
}

.config_popup .modal-footer {
  padding: 30px;
}

.config_popup .modal-body {
  padding: 40px 35px 30px 35px;
  text-align: center;
}

.config_img {
  margin-bottom: 20px;
}

.config_msg {
  color: #5BB774;
  text-align: center;
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 12px;
}

.config_text {
  color: #4B4B4B;
  text-align: center;
  font-size: 15px;
  font-weight: 400;
}

.user_upload {
  padding: 0px 2px;
  border-radius: 4px;
  border: 1px solid #DFDFDF;
  display: flex;
  align-items: center;
}

.user_upload input {
  border: none;
}

.user_upload span {
  cursor: pointer;
  border-radius: 3px;
  background: #3188D9;
  width: 45px;
  height: 45px;
  text-align: center;
  line-height: 45px;
}

.image_save {
  margin-top: 10px !important;
  color: #fff !important;
  background-color: #007E23 !important;
}

.upload_popup .modal-dialog {
  width: 320px !important;
}

.login_image img {

  width: 100%;
}

.followup_cont {
  border-radius: 4px;
  border: 1px solid #DFDFDF;
}

.followup_head {
  border-radius: 4px 4px 0px 0px;
  border-bottom: 1px solid #DFDFDF;
  color: #000;
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
  padding: 15px;
}

textarea {
  border: none;
  width: 100%;
}

.ref_radio span {
  top: 1px !important;
}

.ref_row {
  margin-bottom: 0px !important;
}

.enquiry_tab {
  background: #fff;
  border-top: 1px solid #C6C6C6;
  box-shadow: 0px 0px 20px 0px rgb(0 94 182 / 20%);
  border-bottom: none;
  margin-bottom: 0px;
}

.sibling_opt {
  display: flex;
  align-items: center;
  margin-left: 30px;
}

.sibling_opt .item_variants {
  margin-right: 20px;
}

.sibling_head {
  display: flex;
  align-items: center;
}


.sibling_opt .item_variants label {
  color: #000 !important;
  font-size: 14px !important;
  font-weight: 400;
}

.sibling_opt .assing_item_variants label:before {
  border: 1px solid #3188D9;
}

.sibling_opt .assing_item_variants input:checked+label:after {

  border: solid #3188D9;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.bulk_search .add_category_btn {
  width: 185px;
}

.img_select select {
  border: none;
  height: 42px;
}

.img_select span {
  border-radius: 3px 0px 0px 3px;
  width: 48px;
  height: 42px;
  background: #002B53;
  text-align: center;
  line-height: 36px;
}

.img_select {
  border-radius: 6px 3px 3px 6px;
  border: 1.141px solid #D9D9D9;
  background: #FFF;
  display: flex;
  align-items: center;
}

.pending_status {
  color: #E60D28;
  font-size: 14px;
  font-weight: 400;
}

.fetched_status {
  color: #007E23;
  font-size: 14px;
  font-weight: 400;
}

.upload_text_cont .std_list li {
  width: 45% !important;
}

.upload_text_cont .std_list li:nth-child(even) {
  width: 55%;
}

.file_upld_cont {
  padding: 5px 10px 5px 15px;
  background: #F1F3FA;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.progress_bar {
  width: 35%;
}

.upload_msg {
  padding: 10px;
  width: 60%;
  height: 76px;
  border: 0px solid #002B53;
  background: #DDEFFF;
}

.file_upld_cont span {
  text-align: center;
  line-height: 30px;
  width: 30px;
  height: 30px;
  background: #E5E9F2;
}

.progress_bar_bar {
  border-radius: 10px;
  background: #007E23;
}


.progress_bar_text {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.progress_bar_text b {
  color: #000;
  font-size: 14px;
  font-weight: 300;
}

.progress_bg {
  margin-bottom: 0px !important;
  background-color: #D9D9D9 !important;
  border-radius: 10px !important;
}

.upload_btns {
  display: flex;
  align-items: center;
}

.upload_txt {
  color: #E60D28;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.img_upload_cont {
  padding: 5px;
  background: #F1F3FA;
  text-align: center;
  margin: 10px 0px;
}

.img_upld {
  border: 1px dashed #3188D9;
  padding: 30px;
}

.bulk_list li {
  width: 45% !important;
}

.bulk_list li:nth-child(even) {
  width: 55% !important;
}

.upload_head {
  padding: 10px 5px 10px 15px;
  color: #FFF;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  background: #002B53;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.upload_popup .modal-header {
  padding: 0px !important;
}

.upload_btn {
  margin-left: 10px;
  padding: 5px 5px 5px 15px !important;
  background: #007E23 !important;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.upload_btn span {
  color: #FFF;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  text-transform: uppercase;
}

.upload_btn b {
  background-color: #35C95E;
  width: 34px;
  height: 34px;
  line-height: 34px;
  border-radius: 2px;
}

.choose_btn {
  padding: 12px !important;
  color: #FFF;
  font-size: 14px !important;
  font-weight: 300 !important;
  text-transform: uppercase !important;
}

.upload_pop .modal-header {
  padding: 0px !important;

}

.upload_head button.close {
  color: #fff;
  font-weight: 300;
  font-size: 20px;
  height: 32px;
  width: 32px;
  border-radius: 4px;
  background: #3188D9;
}

.staff_dashboard .overview_cont {
  box-shadow: none;
}

.staff_attendence_cont {
  padding: 10px;
  background-image: url('../images/staff-bg.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}


.staff_atten_box {
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.50);
  background: rgba(255, 255, 255, 0.90);
  box-shadow: 0px 0px 22.196px 0px rgba(41, 156, 212, 0.20);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
}


.staff_user_details {
  display: flex;
  align-items: center;
}

.user_img {
  margin-right: 10px;
}

.user_name {
  color: #002B53;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.user_text {
  color: #007E23;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.user_date {
  color: #002B53;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.atten_history {
  border-radius: 4px;
  border: 1px solid #DFECFF;
  background: #FFF;
  box-shadow: 0px 0px 10px 0px rgba(49, 136, 217, 0.21);
  padding: 8px 15px;
}

.atten_history span {
  margin-left: 10px;
}

.update-atten {
  border-radius: 4px;
  border: 1px solid #DFECFF;
  background: #002B53;
  box-shadow: 0px 0px 10px 0px rgb(49 136 217 / 22%);
  color: #fff;
  padding: 8px 15px;
}

.update-atten span {
  margin-left: 10px;
}

.verify_head {
  color: #00104E;
  font-size: 25px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 20px;
}

.verify_text {
  color: #000;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 30px;
}

.verify_list {
  padding-left: 20px;
}

.otp_head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.otp_head span {
  color: #212121;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.otp_head b {
  color: #002B53;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
}

.otp_box {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

.otp_box input {
  border-radius: 4px;
  border: 1px solid #A3A3A3;
  width: 60px;
  margin-right: 15px;
}

.verify_back {
  color: #000;
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  border-radius: 3px;
  border: 1px solid #A1B7CC;
  padding: 20px 0px;
  width: 170px;
  background: #fff;
}

.verify_submit {
  margin-left: 12px;
  width: 172px;
  border-radius: 3px;
  background: #002B53;
  color: #fff;
  color: #FFF;
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding: 20px 0px;
}

.select-certi {
  width: 190px;
}

.certificate_cont {
  padding: 40px;
  text-align: center;
}

.certificate_text {
  color: #000;
  text-align: center;
  margin-top: 40px;
  font-size: 19px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.verify_cont {
  padding: 15px;
  background-image: url('../images/verify-bg.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.verify_box {
  padding: 25px;
  border-radius: 4px;
  border: 1px solid #DCEEFF;
  background: #FFF;
  box-shadow: 0px 0px 20px 0px rgb(0 94 182 / 20%);
}

.verify_info_img img {
  width: 100%;
}

.reset_pass_cont {
  padding: 8px !important;
}

.verify_form {
  padding: 30px 50px;
}

.reset_img {
  margin-bottom: 25px;
}

.reset_input input {
  border-radius: 4px;
  border: 1px solid #A3A3A3;
  height: 55px;
}

.reset_head {
  color: #00104E;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 20px;
}

.reset_input {
  margin-bottom: 20px;
}

.save_continue {
  color: #FFF;
  text-align: center;
  width: 100%;
  padding: 12px;
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
  border-radius: 3px;
  border: 1px solid #35C95E;
  background: #007E23;
  box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 10%);
}

.user_info_box {
  padding: 10px 0px 30px 0px;
}

.verify_info_box {
  padding: 30px 0px;
  border-top: 1px dashed #C6C6C6;
}

.verify_info {
  margin-bottom: 20px;
}

.verify_info b {
  color: #002B53;
  font-size: 14px;
  font-weight: 400;
}

.verify_info span {
  color: #2E2E2E;
  font-size: 14px;
  font-weight: 400;
}

.verify_img {
  padding-left: 20px;
}

.verify_logout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 189px;
  color: #E60D28;
  font-size: 14px;
  font-weight: 300;
  line-height: normal;
  text-transform: uppercase;
  background: #FFEAEC;
  border: 1px solid #E60D28;
  padding: 3px 3px 3px 54px;
  border-radius: 3px;
}

.verify_logout span {
  line-height: 30px;
  border-radius: 2px;
  background: #E60D28;
  width: 34px;
  height: 34px;
}

.verify_continue span {
  line-height: 30px;
  border-radius: 2px;
  background: #29D057;
  width: 34px;
  height: 34px;
}

.verify_continue {
  margin-left: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #FFF;
  font-size: 14px;
  font-weight: 300;
  text-transform: uppercase;
  background: #007E23;
  stroke-width: 1px;
  border: 1px solid #35C95E;
  padding: 3px 3px 3px 34px;
  border-radius: 3px;
  width: 176px;
}

.verify_btn {
  text-align: right;
}

.verify_btn {
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.page_cont_left {
  border-radius: 4px;
  background-color: rgb(255 255 255);
  box-shadow: 0px 0px 20px 0px rgb(0 94 182 / 20%);
  padding: 30px 15px 5px 25px;
  margin-top: 10px;
}

.certificate_left_title {
  color: #002B53;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
}

.academic_info {
  margin-top: 10px;
}

.academic_info_form {
  list-style-type: none;
}

.select_info {
  margin: 10px 0px;
}

.select_info select.form-control {
  height: 50px;
  width: 100%;
}

.cer_generate {
  border-radius: 3px;
  border: 1px solid #3188D9;
  background: #002B53;
  box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 10%);
  height: 50px;
  width: 100%;
  color: #FFF;
  text-transform: uppercase;
  margin-top: 10px;
}

.certificate_right {
  border-left: 1px dashed #C3C3C3;
  padding: 0px 15px 5px 25px;
}

.certificate_right_title {
  color: #002B53;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
}

.certificate_right_content {
  border: 1px solid #CCC;
  background: #FFF;
  margin: 20px 0px;
  padding: 100px 0px 70px 0px;
}

.certificate_right_image {
  margin-bottom: 70px;
  text-align: center;
}

.certificate_right_message {
  line-height: normal;
  color: #000;
  text-align: center;
  font-size: 19px;
  font-weight: 400;
}

.certificate_save {
  float: right;
}

.certi_title {
  width: 50%;
  float: left;
}

.certi_title:last-child {
  text-align: right;
}

.certificate_save_btn {
  border: 1px solid #35C95E;
  background-color: #007E23;
}

.add_category_btn span {
  color: rgb(255 255 255);
  font-size: 14px;
  font-weight: 300;
  text-transform: uppercase;
  width: calc(100% - 34px);
  text-align: center;
}

.certificate_save button b {
  width: 34px;
  height: 34px;
  line-height: 34px;
  border-radius: 2px;
  background-color: #35C95E;
  color: rgb(255, 255, 255);
  font-size: 16px;
}

.ceritificate_form {
  padding: 15px !important;
}

.tc_logo {
  text-align: center;
  position: absolute;
  left: 40px;
  top: 35px;
}

.tc_title {
  font-size: 20px !important;
  margin-bottom: 5px !important;
}

.certi_label input {
  border: 0;
  outline: 0;
  background: transparent;
  border-bottom: 1px solid #818181;
  margin-left: 5px;
}

.certi_head {
  color: #000;
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 12px;
}

.certi_address {
  margin-bottom: 20px;
  color: #000;
  text-align: center;
  font-size: 13px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.certi_heading {
  margin-bottom: 15px;
  color: #000;
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
}

.certi_top {
  margin-bottom: 15px;
  padding: 0 20px;
}

.certi_form {
  padding: 15px 20px 30px 20px;
  border: 1px solid #D4D4D4;
  background: #FFF;
}

.certi_label {
  color: #000;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.certi_label b {
  color: #000;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.certi_form .certi_label {

  margin-bottom: 15px;
}


.tc_certificate .certi_form .certi_label {
  margin-bottom: 7px !important;
}

.attendence_hist_cont.flt {
  padding: 5px 5px 10px 5px;
  display: flex;
  align-items: center;
  list-style-type: none;
  justify-content: space-between;
}

.signature_box {
  margin-top: 30px;
}

.signature_box input {
  margin-bottom: 8px;
  border: 0;
  outline: 0;
  background: transparent;
  border-bottom: 1px solid #818181;
}

.signature_box .sign_here:last-child {
  text-align: right;
}

.certi_group .certi_label {
  width: 33%;
  float: left;
}

.sign_here {
  width: 50%;
  color: #000;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  float: left;
}

.sign_box p {
  color: #000;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
}

.sign_box {
  padding: 30px 0px;
  border-bottom: 1px solid #DADADA;
  text-align: right !important;
  display: block;
  text-align: center;
}

.counter_box {
  padding-top: 30px;
}

.certificate_form {
  border: none;
}

.counter_text p {
  color: #000;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.counter_head {
  margin-bottom: 40px;
  color: #000;
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
}

.custom_report_top .atten_bar {
  padding: 10px 15px !important;
}

.custom_report_top .attendence_filter {
  padding: 0px;
}

.custom_report_top .sale_bar {
  justify-content: flex-start;
}

.custom_report_top .std_select {
  margin-right: 10px;
}

.custom_report_top .std_title {
  font-size: 15px;
  margin-right: 15px;
}

.staff_status {
  background: #FFF;
  box-shadow: 0px 0px 15px 0px rgb(0 94 182 / 15%);
  padding: 25px 20px;
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.staff_status_list {
  display: flex;
  align-items: flex-start;
}

.staff_status_list li {
  margin-right: 20px;
  list-style-type: none;
}

.staff_input b {
  color: #002B53;
  text-align: right;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
}

.staff_input input {
  border: 1px solid #DEF;
  background: #F1F3FA;
  width: 167px;
  /* margin-top: 10px; */
}

.staff_input select {
  /* margin-top: 10px; */
  border: 1px solid #DEF;
  background: #F1F3FA;
  width: 167px;
}

.staff_input button {
  padding: 10px 0px;
  color: #fff;
  border-radius: 4px;
  border: 1px solid #DFECFF;
  background: #007E23;
  box-shadow: 0px 0px 10px 0px rgb(49 136 217 / 22%);
  width: 180px;
  margin-top: 15px;
}

.staff_close {
  width: 40px;
  height: 40px;
  background: #002B53;
  color: #fff;
  border: none;
  border-radius: 3px;
  font-size: 24px;
}

.staff_status_head .category_table_title {
  display: flex;
  align-items: center;
}

.staff_status_head b {
  margin-left: 15px;
  color: #007E23 !important;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
}

.staff_status_head .download_xl {
  width: 255px;
}

.certi_heading span {
  font-size: 13px;
}

.tc_head_cont {
  position: relative;
}

.attendence_hist_cont {
  padding: 5px 5px 10px 5px;
  display: flex;
  align-items: center;
  list-style-type: none;
  justify-content: space-between;
}

.history_box {
  width: 170px;
  border: 1px solid #D6E9F2;
  background: #FFF;
  box-shadow: 0px 0px 20px 0px rgb(0 94 182 / 20%);
  padding: 12px;
  margin-right: 10px;
  height: 90px;
}

.history_btm {
  text-align: right;
}

.history_head {
  margin-bottom: 25px;
}

.span_tot,
.span_pres,
.span_1st,
.span_2nd,
.span_abs,
.span_comp,
.span_hol {
  width: 10px;
  height: 10px;
  margin-right: 5px;
}

.history_head {
  display: flex;
  align-items: center;

}

.span_tot {
  background: #E9F1FC;
}

.span_pres {
  background: #007E23;
}

.span_1st {
  background: #FBCA6A;
}

.span_2nd {
  background: #3188D9;
}

.span_abs {
  background: #D22E2E;
}

.span_comp {
  background: #002B53;
}

.span_hol {
  background: #FB6900;
}

.staff_time input {
  margin-top: 0px;
  border: none !important;
}

.staff_time {
  /* width: 282px; */
  border-radius: 3px;
  /* border: 1px solid rgb(163 163 163); */
  background: #fff;
  display: flex;
  align-items: center;
  margin-bottom: -2px;
}

.staff_time span {
  line-height: 30px;
  background: #F1F3FA;
  width: 34px;
  height: 34px;
  text-align: center;
}

.box {
  position: relative;
}

input[type="checkbox"]:focus {
  outline: max(2px, 0.15em) solid currentColor;
  outline-offset: max(2px, 0.15em);
}


.add_setup {
  margin-left: 10px !important;
}

.setup_btn .add_std_btn {
  width: 200px;
}


.setup_form .row {
  margin-bottom: 0px;
}

.setup_input_cont {
  display: flex;
  align-items: center;
}

.setup_input {
  border-radius: 3px 3px 0px 0px;
  background: #F2F6FA;
  margin-bottom: 10px;
  padding: 15px 20px;
}

.setup_form input,
.setup_form select {
  width: 170px;
}

.setup_input .col-sm-4 {
  padding-left: 5px;
  padding-right: 5px;
}

.setup_input_cont button {
  margin-left: 10px;
  border: none;
  background: none;
}

.setup_head {
  color: #002B53;
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
  background: #F2F6FA;
  padding: 10px;
  margin-bottom: 3px;
}

.setup_table_cont thead tr th {
  border-bottom: none;
  color: #000;
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
  padding: 10px 5px;
}

.setup_table_cont thead tr {
  background: #F2F6FA;
}

.setup_form {
  padding: 30px 20px;
}

.setup_table_cont tbody tr td {
  padding: 15px 5px;
  color: #212121;
  font-size: 15px;
  font-weight: 300;
  border-top: none;
}

.setup_table_cont.responsive {
  margin-bottom: 30px;
}

.setup_total {
  border-top: 1px solid #F2F6FA;
  border-bottom: 1px solid #F2F6FA;
}

.setup_total b {
  color: #000;
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
}

.setup_total span {
  color: #000;
  text-align: right;
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
}

.setup_select {
  margin-bottom: 20px;
}

.setup_add {
  text-align: right;
  padding-right: 46px;
}

.setup_add button {
  border-radius: 3px;
  background: #3188D9;
  border: none;
  width: 42px;
  height: 42px;
  color: #fff;
}

.setup_select select.form-control {
  width: 200px;
}

.setup_title .page_search.subject_search {
  margin-right: 0px;
  width: 220px;
}

.setup_title {
  justify-content: space-between;
  display: flex;
  align-items: center;
  padding: 5px 5px 5px 15px;
}

.allocate_item_head {
  padding: 0px 10px 15px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.allocate_item_details {
  padding: 0px 20px;
}

.allocate_item_box {
  margin-bottom: 20px;
  border-radius: 4px;
  border: 1px solid #3188D9;
}

.allocate_top {
  padding: 10px;
}

.allocate_name {
  margin-bottom: 10px;
  color: #002B53;
  font-size: 15px;
  font-weight: 500;
  text-transform: uppercase;
}

.allocate_count {
  margin-bottom: 10px;
  color: #000;
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
}

.allocate_count span {
  color: #3188D9;
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
}

.allocate_stock {
  color: #000;
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
}

.allocate_stock span {
  color: #007E23;
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
}

.allocate_check {
  color: #000;
  font-size: 12px;
  font-weight: 400;
  text-transform: uppercase;
  border-top: 1px solid #DCDCDC;
  padding: 0px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.allocate_item_details .col-sm-4 {
  padding-left: 9px;
  padding-right: 9px;
}

.allocate_item_uncheck {
  border-radius: 4px;
  border: 1px solid #DCDCDC;
}

.allocate_student_details {
  border-radius: 0px 0px 3px 3px;
  background: #002B53;
  padding: 15px;
  list-style-type: none;
}

.allocate_student_details li {
  padding: 8px 0px;
  float: left;
  width: 30%;
  color: #FFF;
  font-size: 15px;
  font-weight: 300;
  text-transform: uppercase;
}

.allocate_student_details li span {
  float: right;
  padding: 0px 15px;
}

.allocate_student_details li:nth-child(even) {
  float: left;
  width: 60%;
}

.allocate_item_head .category_table_title {
  color: #000;
  font-size: 19px;
  font-weight: 500;
  text-transform: uppercase;
}

.allocate_item_count {
  padding: 20px 0px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.allocate_item_count span {
  margin-right: 30px;
  color: #000;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
}

.allocate_item_count button span {
  color: #fff;
  font-size: 14px;
  font-weight: 300;
  text-transform: uppercase;
  text-align: center;

}

.allocate_item_count span b {
  color: #E60D28;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
}

.allocated_box {
  width: 180px;
  margin-right: 10px;
  border-radius: 3px;
  border: 1px solid #EDF6FF;
  background: #FFF;
  padding: 10px;
}

.allocated_box_cont {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.allocated_top {
  padding: 10px 5px;
  border-bottom: 1px solid #F3F3F3;
}

.allocated_items_cont {
  padding: 10px;
  display: flex;
  align-items: center;
}

.allocated_items_cont .allocate_item_box {
  margin-bottom: 0px;
  margin-right: 10px;
}

.alloc_head {
  padding: 10px 0px 0px 12px;
  color: #002B53;
  font-size: 13px;
  font-weight: 400;
  text-transform: uppercase;
}

.alloc_bar {
  margin-bottom: 5px;
}

.overview_head {
  margin-bottom: 20px;
  color: #000;
  font-size: 14px;
  font-weight: 500;
}

.overview_cont {
  box-shadow: none;
  display: block;
}

b.overview_count {
  margin-top: 15px;
  color: #2E2E2E;
  font-size: 23px;
  font-weight: 500;
  margin-left: 26px;
}

span.white_report {
  margin-left: 25px;
}

.atten_type_report {
  color: #000;
  font-size: 14px;
  font-weight: 500;
}

.atten_table thead tr th {
  text-align: center;
  border: 1px solid #DEEBF8;

}

.atten_table tbody tr td {
  border: 1px solid #DEEBF8;
}

.certi_heading b {
  margin: 0px 80px;
}

.conversion_mark {
  display: flex;
  align-items: center;
}

.conversion_mark b {
  color: #212121;
  font-size: 16px;
  font-weight: 400;
  margin-right: 30px;
}

.report_radio .radio span {
  left: -5px;
}

.term_head {
  background: #002B53;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 20px;
  color: #FFF;
  font-size: 20px;
  font-weight: 300;
}

.term_head b {
  line-height: 50px;
  background: #3188D9;
  width: 40px;
  height: 54px;
  text-align: center;
}

.term_cont {
  margin-bottom: 15px;
}

.term_content {
  padding: 15px 5px;
  background: #F1F3FA;
}

.generate_report_cont {
  min-height: calc(100vh - 212px);
}

.term_box {
  margin-bottom: 4px;
  padding: 6px;
  list-style-type: none;
  background: #FFF;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.term_box li {
  color: #212121;
  font-size: 15px;
  font-weight: 300;
}

.generate_report .modal-footer {
  border-top: none;
}

.generate_report .modal-title span {
  color: #002B53;
  font-size: 15px;
  font-weight: 400;
  text-transform: uppercase;
  margin-right: 10px;
}

.alloc_popup .modal-header {
  border-bottom: none;
  background-color: transparent;
}

.alloc_popup .modal-footer {
  border-top: none;
  background-color: none;
}

.alloc_img {
  text-align: center;
  margin-bottom: 20px;
}

.alloc_text {
  margin-bottom: 20px;
  text-align: center;
  color: #179C5F;
  font-family: "IBM Plex Sans";
  font-size: 18.48px;
  font-weight: 500;
  text-transform: uppercase;
}

.alloc_list {
  margin-bottom: 20px;
  border-top: 1px dashed;
  padding: 10px 0px 10px 20px;
  list-style-type: none;
  border-bottom: 1px dashed;
}

.alloc_list ul li {
  width: 45%;
  float: left;
  color: #000;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 18px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.alloc_list ul {
  list-style-type: none;
}

.alloc_list ul li:nth-child(even) {
  width: 55%;
}

.alloc_list span {
  float: right;
  padding: 0px 20px;
}

.allocated_items_cont .col-sm-2 {
  width: 200px;
}

.fees_head {
  padding: 10px 20px;
  border-bottom: 1px dashed #C3C3C3;
}

.fee_check {
  font-size: 16px;
  display: flex;
  align-items: center;
}

.fee_term {
  display: flex;
  align-items: center;
}

.fees_pay_cont .table {
  border: 1px solid #B5C8DC;
}

.fees_pay_cont .category_table thead tr th {
  border-right: 1px solid #B5C8DC;
  color: #000000;
  font-size: 15px;
  font-weight: 500;
  text-transform: CAPITALIZE;
  background-color: #E7EDF3;
}

.fees_pay_cont .category_table tbody tr td {
  border-bottom: 1px solid #B5C8DC;
  border-right: 1px solid #B5C8DC;
}

.payment_note_cont {
  border: 1px solid #B5C8DC;
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
}

.payment_input {
  display: flex;
  align-items: center;
}

.fees_pay_cont ul {
  padding: 10px 10px 15px 10px;
  display: flex;
  align-items: center;
  list-style-type: none;
}

.fees_pay_cont ul li {
  position: relative;
  margin-right: 20px;
  color: #000000;
  font-weight: 600;
  font-size: 16px;
}

.fees_pay_cont ul li::before {
  right: -10px;
  position: absolute;
  content: '';
  width: 2px;
  height: 17px;
  background: #979797;
  top: 3px;
}

.fees_pay_cont ul li:last-child::before {
  display: none !important;
}

.payment_input .form-group {
  margin-right: 30px;
  margin-bottom: 0px;
}

.payment_input select.form-control {
  width: 190px;
}

.payment_input label {
  padding: 0px 0px 10px 0px;
}

.fees_pay_cont {
  margin-bottom: 20px;
}

.print_btn {
  background: #3188D9;
}

.print_btn b {
  background: #63A6E3;
}

.fee_btns {
  margin-top: 12px;
}

.fee_action {
  display: flex;
  align-items: center;
}

.fee_action span {
  margin-right: 3px;
  width: 31px;
  height: 31px;
  background: #F8F8F8;
  text-align: center;
  line-height: 30px;
}

.fee_heading {
  padding: 15px;
  color: #000;
  font-weight: 600;
  font-size: 18px;
}

.fees_pay_cont table td b {
  font-size: 15px;
  font-weight: 500;
}

.transport_top {
  background-size: cover;
  background-image: url(../images/transport-top-image.png);
}