* {
  margin: 0;
  padding: 0;
  outline: 0 !important;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

html,
body {
  overflow-x: clip !important;
  position: relative;
  min-height: 100vh;
}

body {
  font-family: "Source Sans Pro", sans-serif;
  margin: 0.01rem auto 0;
  padding: 0;
  color: #0f2e45;
  font-size: 16px;
  width: 100%;
  font-weight: 400;
  background-color: #f5f6fa;
}

@media (min-width: 1400px){
  .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
      max-width: 1420px;
  }
}
b,
strong {
  font-weight: 700;
}

p {
  margin: 0 0 0.8rem;
}

p,
ul li {
  font-size: 1.4rem;
  line-height: 2.4rem;
  color: #0f2e45;
}

ol,
ul {
  padding-left: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #4169ea;
  font-weight: 700;
}

a,
button,
input[type=submit] {
  color: #4169ea;
  text-decoration: none;
  cursor: pointer;
  display: inline-block;
  transition: 0.3s all ease-in-out;
}

a:focus,
a:hover,
button:focus,
button:hover {
  color: #4169ea;
  text-decoration: none;
  outline: 0 !important;
}

.toast-message {
  font-size: 14px !important;
}

.pointer-event-none {
  pointer-events: none;
}

.row > *,
.container,
.container-fluid,
.container-xxl,
.container-xl,
.container-lg,
.container-md,
.container-sm {
  padding: 0 15px;
}

.row {
  margin: 0 -15px;
}

.form-group {
  margin-bottom: 15px;
}

.form-control {
  border: 1px solid #f5f6fa;
  border-radius: 3px;
  background-color: #f5f6fa;
  height: 46px;
  font-size: 1.5rem;
  line-height: 2.5rem;
}
.form-control:focus {
  box-shadow: none;
  border: 1px solid #0f2e45;
}

.form-control[type=file] {
  padding: 9px;
}

label {
  font-size: 1.4rem;
  line-height: 2.4rem;
  font-weight: 500;
  color: #0f2e45;
}
label u {
  color: #4169ea;
}
label span {
  color: #f00;
}

.form-check-input:focus {
  box-shadow: 0 0 0 0.25rem rgba(65, 105, 234, 0.27);
}

.form-check-input:checked {
  background-color: #4169ea;
  border-color: #4169ea;
}

textarea {
  height: 100px !important;
}

header {
  position: static;
  width: 100%;
  background-color: #fff;
}

.section-bg {
  background-size: contain;
  padding: 40px 0;
  background-repeat: repeat;
}

.tab_section {
  margin: 0 0 40px;
}

.nav-tabs {
  border: 0;
  gap: 10px;
}

.nav-tabs .nav-link {
  background-color: #333;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  padding: 10px 25px;
  font-size: 15px;
  line-height: 25px;
}
.nav-tabs .nav-link.active {
  background-color: #4169ea;
  color: #fff;
}

.form_wrap {
  padding: 40px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  background-color: #fff;
  margin-bottom: 60px;
}

.heading {
  font-size: 2rem;
  line-height: 3rem;
  margin-bottom: 15px;
}
.heading span {
  color: #4169ea;
}

.tab {
  display: none;
}

.btn-main {
  background-color: #fd4f51;
  border: none;
  color: #fff;
  padding: 12px 25px;
  display: inline-block;
  cursor: pointer;
  border-radius: 0px;
  text-align: center;
  position: relative;
  top: 0;
  text-transform: uppercase;
  font-size: 1.4rem;
  font-weight: 400;
  min-width: 120px;
}
.btn-main:hover, .btn-main:focus {
  background-color: #000000;
  color: #fff;
}
.btn-main.submit-btn {
  background-color: #4169ea;
}
.btn-main.submit-btn:hover, .btn-main.submit-btn:focus {
  background-color: #0f2e45;
  color: #fff;
}

.heading-bg {
  background: rgba(66, 106, 235, 0.2);
  text-align: center;
  padding: 10px;
  margin-bottom: 20px;
}
.heading-bg .heading {
  margin: 0;
  color: #0f2e45;
}
.heading-bg .heading span {
  color: #0f2e45;
}

.footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: #0f2e45;
}

/*****day checkbox*****/
.checkbox-group ul {
  border-radius: 4px;
  display: flex;
  margin-bottom: 0;
  margin-left: 0;
}

.checkbox-group ul > li {
  list-style: none;
  text-align: center;
}

.checkbox-group input {
  display: none;
}

.checkbox-group ul > li > label {
  width: 100%;
  background-color: rgba(0, 0, 0, 0);
  border-color: #0f2e45;
  border-style: solid;
  border-width: 1px 1px 1px 0;
  color: #0f2e45;
  font-size: 12px;
  line-height: 20px;
  padding: 11px 22px 8px;
  text-decoration: none;
}

.checkbox-group ul > li:first-child > label {
  border-bottom-left-radius: 4px;
  border-left-width: 1px;
  border-top-left-radius: 4px;
}

.checkbox-group ul > li:last-child > label {
  border-bottom-right-radius: 4px;
  border-top-right-radius: 4px;
}

.checkbox-group ul > li > :checked + label {
  background-color: #0f2e45;
  color: #fff;
}

.checkbox-group ul > li > :checked + :hover,
.checkbox-group ul > li > :checked + label:focus {
  background-image: none;
}

.checkbox-group ul > li > label:focus,
.checkbox-group ul > li > label:hover {
  background-image: none;
}

.progrssbar-block .progress {
  height: 20px;
  font-size: 15px;
  border-radius: 20px;
}

.progrssbar-block .progress .progress-bar {
  border-radius: 20px;
  background-color: #4169ea;
}

.copyright a {
  color: #fff;
}
.copyright a:hover {
  color: #4169ea;
}

@media (min-width: 1200px) {
  .checkbox-group ul > li > label:focus,
  .checkbox-group ul > li > label:hover {
    background-image: none;
    background-color: #0f2e45;
    color: #fff;
  }
}
@media (min-width: 768px) {
  .tab_section {
    margin: 0 0 30px;
    position: sticky;
    top: 0;
    background-color: #f5f6fa;
    padding: 15px 0;
    z-index: 99;
  }
  .section-bg {
    background-size: contain;
    padding: 30px 0;
    background-repeat: repeat;
  }
}
@media (max-width: 990px) {
  .form_wrap {
    padding: 25px;
  }
  .nav-tabs .nav-link {
    padding: 8px 8px;
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .form_wrap {
    padding: 20px 15px;
  }
  .nav-item,
  .nav-tabs .nav-link {
    width: 100% !important;
  }
  .nav-tabs .nav-link {
    padding: 10px 20px;
  }
  .checkbox-group ul > li > label {
    padding: 6px;
  }
}



/*----Dashboard CSS----*/
.dashboard_main_heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: rgba(149, 157, 165, 0.1) 0px 8px 24px;
  background-color: #fff;
  padding: 10px 15px;
  margin-bottom: 15px;
}
.dashboard_filter{
  box-shadow: rgba(149, 157, 165, 0.1) 0px 8px 24px;
  background-color: #fff;
  padding: 10px 15px;
  margin-bottom: 15px;
}
.table_main {
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  background-color: #fff;
  padding: 15px;
}
.action_btn{
  display: inline-flex;
  margin: 0 5px;
  font-size: 12px;
  color: #4169ea;
}

.action_btn_danger{
  display: inline-flex;
  margin: 0 5px;
  font-size: 12px;
  color: #fd4f51;
}

fieldset {
  border: 1px solid #d2ddec !important;
  padding: 0 1.4em 1em 1.4em !important;
  margin: 0 0 1.5em 0 !important;
  background-color: #fff;
  border-radius: 5px;
}

legend {
  font-size: 1.2em !important;
  font-weight: bold !important;
  text-align: left !important;
  width: auto;
  padding: 0 10px;
  border-bottom: none;
  float: none;
  color: #4169ea;
}

.table_heading{
  color: #4169ea;
}

.not_allowed {
  pointer-events: none;
  cursor: not-allowed;
  opacity: 0.7;
}

.count_box {
  display: flex;
  flex-wrap: wrap;
  background-color: #fff;
  box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.05);
  border-radius: 5px;
  overflow: hidden;
  margin-bottom: 15px;
}

.cout_number {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #8ca8ff;
  flex-basis: 20%;
  font-size: 28px;
  color: #fff;
}

.count_text {
  display: flex;
  justify-content: center;
  flex-basis: 80%;
  flex-direction: column;
  padding: 15px;
  text-align: right;
}

.count_text h5 {
  font-size: 24px;
}

.count_text p {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
}

.gj-datepicker-md [role=right-icon] {
  top: 10px;
}

.bootbox .modal-title {
  font-size: 18px;
}

.bootbox-close-button {
  border: none;
  background-color: transparent;
  font-size: 28px;
  height: auto;
  padding: 0;
  margin: 0;
  line-height: 28px;
}

.bootbox .modal-body {
  padding: 20px 10px;
}

.bootbox .btn {
  font-size: 14px;
}

.table_action {
  display: flex;
  gap: 1px;
}