@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@200;300;400;500;600;700&display=swap");

:root {
  --primary: #02305c;
  --secondary: #f00;
  --white: #fff;
  --bordercolor: #ced4da;
  --inputcolor: #212529
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  letter-spacing: 0.54px;
  overflow-x: hidden;
}

:focus-visible{
    outline: none;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

img {
  max-width: 100%;
}

.dsbtn{
    background: transparent;
    border: 0;
    margin-top: 10px;
}

.dsbtn img{
    width: 20px;
}

button:focus {
    box-shadow: none !important;
    outline: 0 !important;
}

a {
  text-decoration: none;
  color: var(--primary);
}

a:hover {
  color: var(--secondary);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #003d77;
}

h1 {
  font-size: 56px;
  line-height: 70px;
}

h2 {
  font-size: 40px;
  line-height: 55px;
}

h3 {
  font-size: 32px;
  line-height: 45px;
}

h4 {
  font-size: 25px;
  line-height: 38px;
}

h5 {
  font-size: 22px;
  line-height: 35px;
}

h6 {
  font-size: 18px;
  line-height: 30px;
  font-weight: 600;
}

p {
  font-size: 18px;
  line-height: 26px;
}

.btn {
  padding: 15px 30px;
  font-size: 18px;
  line-height: 20px;
}

.btn:focus {
  box-shadow: none;
  border-color: var(--primary);
}

.cursor-pointer{
    cursor: pointer !important;
}

.btn_primary {
  display: inline-block;
  background: var(--primary);
  border: 1px solid var(--primary);
  transition: 0.5s ease;
  color: var(--white);
  padding: 7px 20px;
  font-size: 14px;
  line-height: 16px;
  border-radius: 8px;
  font-weight: 500;
}
.btn_primary:hover {
  background: transparent;
  color: var(--primary);
  transition: 0.5s ease;
}

.btn_outline_primary {
  display: inline-block;
  border: 1px solid var(--primary);
  background: transparent;
  color: var(--primary);
  transition: 0.5s ease;
  padding: 7px 20px;
  font-size: 14px;
      line-height: 16px;
  border-radius: 8px;
  font-weight: 500;
}

.btn_outline_primary:hover {
  border: 1px solid var(--primary);
  color: var(--white);
  background: var(--primary);
}
.btn_white {
  display: inline-block;
  background: var(--white);
  border: 1px solid var(--primary);
  transition: 0.5s ease;
  color: var(--primary);
  padding: 7px 20px;
  font-size: 14px;
  line-height: 16px;
  border-radius: 8px;
  font-weight: 500;
  transition: 0.5s ease;
}
.btn_white:hover {
  border: 1px solid var(--white);
  color: var(--white);
  background: transparent;
  transition: 0.5s ease;
}
.btn_outline_white {
  display: inline-block;
  background: transparent;
  border: 1px solid var(--white);
  transition: 0.5s ease;
  color: var(--white);
  padding: 7px 20px;
  font-size: 14px;
  line-height: 16px;
  border-radius: 8px;
  font-weight: 500;
  transition: 0.5s ease;
}
.btn_outline_white:hover {
  border: 1px solid var(--white);
  color: var(--primary);
  background: var(--white);
  transition: 0.5s ease;
}

.form-control:focus,
textarea:focus {
  box-shadow: none;
  border-color: var(--primary);
}


textarea {
  resize: none;
  height: 150px;
}

.form-check-input:checked {
  background-color: var(--primary);
  border-color: var(--primary);
}

.container {
  max-width: 1440px;
}

label {
  font-size: 15px;
  line-height: 18px;
  margin-bottom: 10px;
  display: inline-block;
  position: relative;
  font-weight: 400;
  white-space: nowrap;
}

.validation_symbol {
  position: absolute;
  right: -8px;
  top: 0;
  color: #f00;
}

.title_validation{
    display: inline-block;
    position: relative;
}

.title_validation .validation_symbol{
     position: absolute;
    right: -8px;
    top: -2px;
    color: #f00;
    font-size: 16px;
}

.validation_text{
    font-size: 12px;
    color: #f00;
    margin-left: 5px;
    font-weight: 500;
}

sup{
    font-size: 12px;
    color: #f00;
}

.form-control,
textarea {
  padding: 12px 16px;
  font-size: 14px;
  line-height: 18px;
  width: 100%;
  border-radius: 8px !important;
  font-weight: 400;
  border: 1px solid var(--bordercolor);
  color: var(--inputcolor);
}

.select2-container{
    width: 100% !important;
}

.select2-container .select2-selection.select2-selection--single {
    background-color: transparent;
    border: 1px solid var(--bordercolor);
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 14px;
    line-height: 18px;
    height: 44px;
    display: flex;
    align-items: center;
}

.select2-container--default .select2-selection--multiple{
    align-items: center;
    padding: 5px;
     border-color: var(--bordercolor) !important;
    background-image: url(../images/down-arrow.svg);
    background-repeat: no-repeat;
    background-size: 15px;
    background-position: right 10px top 12px;
    min-height: 40px !important;
    display: inline-flex !important;
    align-items: center;
    width: 100% !important;
}

.select2-container.select2-container--default .select2-selection--single .select2-selection__arrow{
    height: 15px;
    position: absolute;
    top: 50%;
    right: 10px;
    width: 15px;
    transform: translate(0, -50%);
    background-image: url(../images/down-arrow.svg);
    background-repeat: no-repeat;
    background-size: 15px;
}
.select2-container--default .select2-selection--multiple .select2-selection__rendered{
    display: flex !important;
    align-items: center;
    height: auto;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
    background-color: #3b6083 !important;
    border: 1px solid var(--primar) !important;
    color: var(--white) !important;
    font-size: 11px;
    line-height: 13px;
    margin-top: 0 !important;
    padding: 3px 6px !important;
    display: flex;
    align-items: center;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice .select2-selection__choice__remove{
    color: #c7c5c5 !important;
    font-size: 16px;
    line-height: 21px;
    margin-top: -4px;
}
.select2-container--default .select2-search--inline .select2-search__field{
    margin-top: 0 !important;
}

.select2-container.select2-container--default .select2-selection--single .select2-selection__arrow b{
    display: none
}

.select2-container.select2-container--default .select2-selection--single .select2-selection__rendered{
    padding: 0;
    padding-right: 10px;
}

.form-control.clsvalid,
textarea.clsvalid,
.form-select.clsvalid{
  border-color: #c73b49;
  box-shadow: 0 0 4px 0 #a33737a3;
}

.invalid_text{
    color: #f00 !important;
    font-size: 12px;
}

.form-control::placeholder,
textarea::placeholder {
  color: #8b8b8b;
}

select::placeholder {
  color: #8b8b8b;
}

input[type="date"]::-webkit-datetime-edit-text,
input[type="date"]::-webkit-datetime-edit-month-field,
input[type="date"]::-webkit-datetime-edit-day-field,
input[type="date"]::-webkit-datetime-edit-year-field {
  color: #8b8b8b;
}

select:required:invalid {
  color: rgb(176, 22, 22);
}

select {
  padding: 14px 16px;
  font-size: 18px;
  line-height: 20px;
  width: 100%;
  color: rgb(176, 22, 22);
  border-radius: 8px;
  border: 1px solid var(--bordercolor);
  color: var(--inputcolor);
}

.multiselect_wrap .select2-container .selection .select2-selection{
    border-radius: 8px;
    padding: 9px 15px;
    font-size: 15px;
    min-height: auto;
    border: 1px solid var(--bordercolor);
    color: var(--inputcolor);
    display: flex;
    position: relative;
}
.multiselect_wrap .select2-container .selection .select2-selection::after{
    content: "";
    position: absolute;
    top: 50%;
    right: 10px;
    width: 16px;
    height: 12px;
    transform: translate(0, -50%);
    background-image: url(../images/down-arrow.svg);
    background-repeat: no-repeat;
        background-size: 16px 12px;
}
.multiselect_wrap .select2-container .selection .select2-selection:focus{
    border: 1px solid var(--primary);
}

.multiselect_wrap .select2-container .selection .select2-selection .select2-search__field{
    margin-top: 0;
}

.multiselect_wrap .select2-container .selection .select2-selection .select2-selection__rendered{
        padding: 0;
    display: flex;
    align-items: center;
        width: calc(100% - 10px);
}

.multiselect_wrap .select2-container.select2-container--open .selection .select2-selection .select2-selection__rendered {
     overflow: auto;
}

.multiselect_wrap .select2-container .selection .select2-selection .select2-selection__rendered::-webkit-scrollbar {
  width: 10px;
  height: 3px;
}

/* Track */
.multiselect_wrap .select2-container .selection .select2-selection .select2-selection__rendered::-webkit-scrollbar-track {
  background: #f1f1f1; 
}
 
/* Handle */
.multiselect_wrap .select2-container .selection .select2-selection .select2-selection__rendered::-webkit-scrollbar-thumb {
  background: #888; 
  height: 3px;
}

.multiselect_wrap .select2-container .selection .select2-selection .select2-selection__rendered .select2-selection__choice{
    font-size: 12px;
}

.select2-results__option{
    font-size: 14px;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: var(--primary) !important;
    color: var(--white);
}

.toast {
    max-width: 350px;
    font-size: .875rem;
    background-color: var(--white);
    background-clip: padding-box;
    border: 1px solid rgba(0,0,0,.1);
    box-shadow: 0 0.5rem 1rem rgba(0,0,0,.15);
    border-radius: 0.25rem;
}

.toast-header{
    color: var(--primary);
}

.form-select {
  border-radius: 8px;
  padding: 9px 15px;
  font-size: 15px;
  border: 1px solid var(--bordercolor);
  color: var(--inputcolor);
  cursor: pointer;
}

.form-select:focus {
  box-shadow: none;
  border-color: var(--primary);
}

.number_select .form-select{
    padding-right: 25px;
    background-position: right 7px center;
}




/* registrarion form */
.registration_wrap {
  padding: 10px 30px 10px;
  /*height: calc(100svh - 181px);
   overflow: auto;*/
   padding-top: 140px !important;
   margin-bottom: 52px;
}
.registration_wrap.admin_wrap {
  margin-bottom: 0;
  min-height: 100vh;
  overflow: auto;
}


.registration_wrap .title {
  position: relative;
  padding-bottom: 5px;
  border-bottom: 1px solid;
  color: var(--primary);
  margin: 20px 0;
  font-weight: 600;
}

.registration_wrap .title .title_validation_text{
     font-size: 12px;
    color: #f00;
    margin-left: 5px;
    font-weight: 500;
}

.registration_wrap::-webkit-scrollbar {
  width: 5px;
}

.registration_wrap {
  scrollbar-width: thin;
  scrollbar-color: var(--primary);
}

.registration_wrap::-webkit-scrollbar-track {
  background: #cdcdcd;
}
.registration_wrap::-webkit-scrollbar-thumb {
  background: #848484;
  border-radius: 8px;
}

.intl-tel-input,
.iti {
  width: 100%;
}

.registration_table table {
  width: 100%;
  border-collapse: separate;
  padding-bottom: 5px;
}

.registration_table table tr th {
  border: 1px solid #ccc;
  font-size: 16px;
  background: var(--primary);
  color: var(--white);
  padding: 10px;
  border-radius: 8px;
  white-space: nowrap;
  text-align: center;
}

.file_upload {
  position: relative;
  display: inline-block;
  margin-left: 10px;
}

.file_upload input {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  height: 100%;
  z-index: 1;
}

.file_upload label {
  background: var(--primary);
  padding: 10px 20px;
  color: var(--white);
  border-radius: 8px;
  cursor: pointer;
}

.upload_wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.upload_wrap .upload_input_wrap {
    width: 40%;
    max-width: 400px;
}

.upload_wrap .file_wrap {
    width: 40%;
    max-width: 400px;
}


.upload_wrap .view_button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    width: fit-content;
}

.upload_wrap .checkboxView .form-check-input{
    width: 20px;
    height: 20px;
    margin-top: 0;
}

.upload_wrap .view_button img{
    width: 20px;
}

    .upload_wrap .view_button:hover img {
        filter: invert(1) brightness(100);
    }


.logo_wrap {
  padding: 20px 10px;
  text-align: center;
  background: var(--primary);
  position: sticky;
  top: 0;
  z-index: 100;
  position: fixed;
  width: 100%;
}

.logo_wrap .header_left_logo{
    /*position: absolute;
    left: 30px;
    top: 50%;
    transform: translate(0, -50%);*/
    display:flex;
    align-items: center;
}

.logo_wrap .header_left_logo h4{
    color: #fff;
    font-size: 24px;
    line-height: 34px;
    font-weight: 600;
    letter-spacing: 1px;
    margin: 0 !important;
}

.logo_wrap .header_left_logo img{
    margin-right: 20px;
    margin-left: 0 !important;
    max-width: 100px; 
}


.logo_wrap img {
  max-width: 250px;
  margin: 0 auto;
  object-fit: contain;
}
.logo_wrap .login_btn{
        position: absolute;
    right: 20px;
    top: 50%;
    transform: translate(0, -50%);
}

.footer {
  padding: 10px 15px;
  background: var(--primary);
  box-shadow: 0 0 4px 0px #9d9d9d87;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}

.footer ul li{
    padding: 0 5px;
}
.footer ul li:last-child{
   padding-right: 0;
}

.form-check-input{
    cursor: pointer;
}

.ui-datepicker-title{
    display: flex;
    max-width: 180px;
    margin: 0 auto;
    gap: 10px;
}

.ui-datepicker-title .ui-datepicker-month,
.ui-datepicker-title .ui-datepicker-year{
    padding: 5px 10px;
    font-size: 14px;
}

#ui-datepicker-div {
  display: none;
  background-color: #fff;
  box-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.1);
  margin-top: 0.25rem;
  border-radius: 0.5rem;
  padding: 0.5rem;
  z-index: 100 !important;
}
.ui-datepicker-calendar table {
  border-collapse: collapse;
  border-spacing: 0;
}
.ui-datepicker-calendar thead th {
  padding: 0.25rem 0;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 400;
  color: #78909c;
}
.ui-datepicker-calendar tbody td {
  width: 2.5rem;
  text-align: center;
  padding: 0;
}
.ui-datepicker-calendar tbody td a {
  display: block;
  border-radius: 0.25rem;
  line-height: 2rem;
  transition: 0.3s all;
  color: #546e7a;
  font-size: 0.875rem;
  text-decoration: none;
}
.ui-datepicker-calendar tbody td a.ui-state-highlight{
   background-color:#ddd;
}
.ui-datepicker-calendar tbody td a:hover {
  background-color: #00142814;
}
.ui-datepicker-calendar tbody td a.ui-state-active {
   background-color: var(--primary);
   color: var(--white);
}
.ui-datepicker-header a.ui-corner-all {
  cursor: pointer;
  position: absolute;
  top: 0;
  width: 2rem;
  height: 2rem;
  margin: 0.5rem;
  border-radius: 0.25rem;
  transition: 0.3s all;
}
.ui-datepicker-header a.ui-corner-all:hover {
  background-color: #00142814;
}
.ui-datepicker-header a.ui-datepicker-prev {
  left: 0;
  background: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMyIgaGVpZ2h0PSIxMyIgdmlld0JveD0iMCAwIDEzIDEzIj48cGF0aCBmaWxsPSIjNDI0NzcwIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik03LjI4OCA2LjI5NkwzLjIwMiAyLjIxYS43MS43MSAwIDAgMSAuMDA3LS45OTljLjI4LS4yOC43MjUtLjI4Ljk5OS0uMDA3TDguODAzIDUuOGEuNjk1LjY5NSAwIDAgMSAuMjAyLjQ5Ni42OTUuNjk1IDAgMCAxLS4yMDIuNDk3bC00LjU5NSA0LjU5NWEuNzA0LjcwNCAwIDAgMS0xLS4wMDcuNzEuNzEgMCAwIDEtLjAwNi0uOTk5bDQuMDg2LTQuMDg2eiIvPjwvc3ZnPg==");
  background-repeat: no-repeat;
  background-size: 0.5rem;
  background-position: 50%;
  transform: rotate(180deg);
}
.ui-datepicker-header a.ui-datepicker-next {
  right: 0;
  background: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMyIgaGVpZ2h0PSIxMyIgdmlld0JveD0iMCAwIDEzIDEzIj48cGF0aCBmaWxsPSIjNDI0NzcwIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik03LjI4OCA2LjI5NkwzLjIwMiAyLjIxYS43MS43MSAwIDAgMSAuMDA3LS45OTljLjI4LS4yOC43MjUtLjI4Ljk5OS0uMDA3TDguODAzIDUuOGEuNjk1LjY5NSAwIDAgMSAuMjAyLjQ5Ni42OTUuNjk1IDAgMCAxLS4yMDIuNDk3bC00LjU5NSA0LjU5NWEuNzA0LjcwNCAwIDAgMS0xLS4wMDcuNzEuNzEgMCAwIDEtLjAwNi0uOTk5bDQuMDg2LTQuMDg2eiIvPjwvc3ZnPg==");
  background-repeat: no-repeat;
  background-size: 10px;
  background-position: 50%;
}
.ui-datepicker-header a > span {
  display: none;
}
.ui-datepicker-title {
  text-align: center;
  line-height: 2rem;
  margin-bottom: 0.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  padding-bottom: 0.25rem;
}
.ui-datepicker-week-col {
  color: #78909c;
  font-weight: 400;
  font-size: 0.75rem;
}
.date_wrapper {
  position: relative;
}
/*.date_wrapper::after {
  content: "";
  position: absolute;
  top: 45px;
  right: 10px;
  background-image: url(../images/calender.svg);
  width: 15px;
  height: 15px;
  background-size: 15px;
}*/

.date_wrapper .form-control{
    background-image: url(../images/calender.svg);
    background-repeat: no-repeat;
    background-position: right 10px top 12px;
    cursor: pointer;
}

.login_left_wrapper {
  background: var(--primary);
  width: 50%;
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  color: #fff;
}
.login_left_wrapper .login_left_content {
  text-align: center;
  z-index: 2;
  height: 100%;
    width: 100%;
}

.login_left_wrapper .login_left_content img {
     width: 100%;
     height: 100%;
     object-fit: cover;
}


.logo_img {
  max-width: 300px;
}

.login_right_wrapper {
  width: 50%;
}
.login_wrapper {
  display: flex;
  align-items: center;
  position: relative;
}

.login_box_mian_wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}
.login_box_wrap {
  max-width: 600px;
  width: 100%;
  padding: 20px;
  border-radius: 10px;
}
.login_wrapper .form_control {
  background: #f7f7f7;
  width: 100%;
  border: 1px solid #e8e8e8;
  border-radius: 5px;
  padding: 12px 15px;
  font-size: 14px;
  line-height: 14px;
  color: var(--primary);
}
.login_wrapper .form_control:focus {
  outline: 0;
}
.login_wrapper .form_group {
  margin-top: 18px;
}
.login_wrapper .form_group label {
  margin-bottom: 7px;
  font-size: 15px;
}
.login_box_wrap ul {
  display: flex;
  justify-content: space-between;
}
.login_box_wrap ul li {
  margin-top: 7px;
}
.login_box_wrap ul li a {
  color: var(--primary);
  display: inline-block;
  font-weight: 500;
  font-size: 14px;
  line-height: 14px;
}
.login_wrapper .btn_primary {
  background: var(--primary);
  border-radius: 10px;
  padding: 13px 32px;
  font-size: 16px;
  line-height: 16px;
  color: #fff;
  display: inline-block;
  transition: 0.5s ease;
  width: 100%;
  text-align: center;
  margin: 20px 0;
  display: inline-block;
}
.login_wrapper .btn_primary:hover {
  color: #fff;
  box-shadow: 0px 8px 28px rgba(0, 0, 0, 0.1);
  transition: 0.5s ease;
}
.login_box_wrap p {
  margin-bottom: 7px;
  font-size: 13px;
  color: #999999;
  text-align: center;
}
.login_box_wrap h4 {
  margin-bottom: 15px;
  font-size: 36px;
  font-weight: 700;
}

.grid_wrapper .report_grid .jqx-grid-header .jqx-widget-header, .report_grid .jqx-grid-pager.jqx-widget-header {
    color: var(--white);
    background: var(--primary);
    font-weight: 600;
}

.grid_wrapper .jqx-fill-state-normal{
       background: var(--primary);
    color: var(--white);
    border-color: var(--white);
}

.grid_wrapper .jqx-fill-state-normal.jqx-rc-all{
    background: transparent;
    color: var(--primary);
    border-color: var(--primary)
}


.grid_wrapper .jqx-fill-state-pressed,
.grid_wrapper .jqxbg-curr {
    background: #738ca5 !important;
    color: var(--white) !important;
    border-color: var(--white) !important;
}

.grid_wrapper  #pagerjqxgrid .jqx-widget-content{
   background: transparent;
   color: var(--white);
   border-color: var(--white);
}

/*.grid_wrapper .jqx-checkbox-check-checked{
        filter: invert(1);
}*/

/* bootstrap datepicker css */

.datepicker.datepicker-dropdown{
    height: 240px;
    width: 100%;
    max-width: 300px;
    z-index: 100 !important;
}

.datepicker.datepicker-dropdown table{
    font-size: 13px;
    width: 100%;
    color: #546e7a;
}

.datepicker.datepicker-dropdown table tr td.today{
    background-color:#ddd;
}

.datepicker.datepicker-dropdown  table tr td.today:hover {
    color: var(--white);
    background-color: var(--primary);
    border-color: var(--primary);
}

.datepicker.datepicker-dropdown .datepicker-days table tr td,
 .datepicker.datepicker-dropdown .datepicker-days table tr th {
    width: 29px;
    height: 29px;
}

.btn_same_Add{
    padding: 5px 10px !important;
    font-size: 11px !important;
}

.overlay{	
  position: fixed;
  top: 0;
  z-index: 100;
  width: 100%;
  height:100%;
  background: rgba(0,0,0,0.6);
  display: none;
}
.overlay .cv-spinner {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;  
}
.overlay .spinner {
  width: 40px;
  height: 40px;
  border: 4px #ddd solid;
  border-top: 4px #2e93e6 solid;
  border-radius: 50%;
  animation: sp-anime 0.8s infinite linear;
}
@keyframes sp-anime {
  100% { 
    transform: rotate(360deg); 
  }
}
.is-hide{
  display:none;
}

::-webkit-scrollbar {
  width: 5px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1; 
}
 
/* Handle */
::-webkit-scrollbar-thumb {
  background: var(--primary); 
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555; 
}



/* responsive css */

@media (max-width: 1600px) {
    .logo_wrap img {
    max-width: 230px;
}

    .registration_wrap {
    padding-top: 123px !important;
    margin-bottom: 52px;
}

  .container {
    max-width: 1320px;
  }
  h5 {
    font-size: 20px;
    line-height: 31px;
  }
  label {
    font-size: 14px;
    line-height: 16px;
    margin-bottom: 10px;
  }
  .registration_table table tr th {
    font-size: 14px;
  }
}

@media (max-width: 1441px){
    .form-control, textarea {
    padding: 10px 12px;
    font-size: 13px;
}
    .select2-container .select2-selection.select2-selection--single{
        height: 40px;
        font-size: 13px;
    }
}

@media (max-width: 1400px) {
  .container {
    max-width: 1200px;
  }
  .logo_wrap .header_left_logo img {
    max-width: 80px;
}
}

@media (max-width: 1280px) {
    .upload_wrap .view_button {
    padding: 12px 10px;
}

    .date_wrapper .form-control {
    background-position: right 10px top 10px;
}


  .container {
    max-width: 991px;
  }
  .form-control,
  textarea {
    padding: 10px 16px;
    font-size: 13px;
  }

  label {
    font-size: 13px;
    line-height: 16px;
    margin-bottom: 8px;
  }


  .registration_table table tr th {
    font-size: 14px;
  }

  h5 {
    font-size: 18px;
    line-height: 28px;
  }

  .form-select {
    font-size: 13px;
  }

  .iti__selected-dial-code {
    font-size: 14px;
    line-height: 18px;
  }

  .logo_wrap img {
    max-width: 200px;
  }

  .logo_wrap {
    padding: 15px;
  }

  .registration_wrap {
       padding-top: 104px !important;
  }

  .date_wrapper::after {
    top: 41px;
}

  .select2-container .select2-selection.select2-selection--single{
      height: 40px;
  }


}

@media (max-width: 991px) {
    .registration_wrap {
    padding-top: 95px !important;
        padding: 10px 20px 10px;
}

    .upload_wrap .view_button {
    padding: 10px 8px;
}

    .upload_wrap .view_button img {
    width: 18px;
}

    .date_wrapper .form-control {
    background-position: right 10px top 10px;
    background-size: 15px;
}

    .select2-container .select2-selection.select2-selection--single {
    height: 38px;
}

    .upload_wrap .file_wrap .input-file{
       padding: 9px 12px 9px 20px;
    }

    .logo_img_mobile {
    max-width: 200px;
    margin: 0 auto 10px;
  }
  .login_box_mian_wrapper {
    flex-direction: column;
  }
  .navbar-collapse {
    position: fixed;
    height: 100vh;
    top: 100px;
    width: 300px;
    box-shadow: 0 0 5px 1px #20202042;
    right: -300px;
    transition: 0.2s ease;
    z-index: 999;
    background: var(--white);
  }
  .navbar-collapse.show {
    right: 0;
    transition: 0.2s ease;
  }
  header .navbar-nav .nav-item .nav-link {
    padding: 15px 10px;
    text-align: center;
  }
  .navbar-toggler {
    order: 3;
  }
  .header_right {
    margin-left: auto;
  }
  .logo_wrap img {
    max-width: 180px;
  }
  .form-control,
  textarea {
    padding: 9px 12px;
    font-size: 12px;
  }
  /*.login_wrapper {
    flex-direction: column;
    background: var(--primary);
    min-height: 100vh;
    padding-bottom: 20px;
    justify-content: center;
  }*/
  .login_wrapper {
    background-image: url(../images/login-left.png);
    background-size: cover;
    height: 100%;
    width: 100%;
  }
  .login_left_wrapper:after {
    display: none;
  }
  .login_left_wrapper {
    display: none;
  }
  .login_right_wrapper {
    width: 100%;
    margin-top: 20px;
    z-index: 2;
    padding: 0 15px;
  }
  .login_left_img {
    width: 100%;
    margin: 0 auto;
    max-width: 590px;
  }
  .login_box_wrap {
    max-width: 450px;
    box-shadow: 0px 8px 28px rgba(0, 0, 0, 0.3);
    background: #fff;
  }
  .login_left_wrapper .login_left_content {
    width: 100%;
  }
  .registration_wrap .title {
    margin: 20px 0 15px;
}
  h6 {
    font-size: 16px;
    line-height: 26px;
}
  .logo_wrap .header_left_logo img {
    max-width: 70px;
}
  .logo_wrap .header_left_logo h4 {
    font-size: 22px;
    line-height: 30px;
}

}

@media (max-width: 767px) {

}

@media (max-width: 575px) {
    .logo_wrap .header_left_logo img {
    max-width: 60px;
}

    .logo_wrap .header_left_logo h4 {
    font-size: 20px;
    line-height: 30px;
}

    .select2-container .select2-selection.select2-selection--single {
    height: 34px;
    padding: 7px 12px;
    font-size: 12px;
}

    .select2-container.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 12px;
    right: 10px;
    width: 12px;
    background-size: 12px;
}

    .date_wrapper .form-control {
    background-position: right 10px top 8px;
}


    .upload_wrap .upload_input_wrap {
    width: 80%;
    max-width: 100%;
}

    .upload_wrap .file_wrap {
    width: 80%;
     max-width: 100%;
}

    .validation_text {
    font-size: 10px;
}
    .registration_wrap .title .title_validation_text{
         font-size: 10px;
    }

    sup {
    font-size: 10px;
}

    label {
    font-size: 13px;
    line-height: 16px;
    margin-bottom: 5px;
}

    .form-control, textarea {
    padding: 7px 12px;
    font-size: 12px;
}
    .form-select {
    font-size: 12px;
    padding: 7px 12px;
}

    /*.logo_wrap {
      text-align: left;
    }*/

    .logo_wrap img {
     margin: 0;
    }

  .registration_wrap {
    padding: 10px 15px 10px;
    padding-top: 80px;
    margin-bottom: 50px;
  }


  .file_upload {
    margin-left: 0;
  }
  .logo_wrap img {
    max-width: 160px;
  }
  .registration_wrap .title {
    margin: 15px 0 10px;
}
  h5 {
    font-size: 16px;
    line-height: 24px;
  }
  h6 {
    font-size: 15px;
    line-height: 26px;
  }
  .iti__selected-dial-code {
    font-size: 13px;
    line-height: 16px;
  }
  .registration_table table tr th {
    font-size: 12px;
  }

  .btn_white,
  .btn_primary,
  .btn_outline_primary {
    padding: 6px 15px;
    font-size: 13px;
  }

  .btn_outline_white {
    padding: 6px 15px;
    font-size: 13px;
  }

  .login_left_wrapper:after {
    display: none;
  }
.date_wrapper::after {
    top: 36px;
}
.footer {
    padding: 10px 10px;
}


}

@media (max-width: 480px) {
  .login_box_wrap h4 {
    font-size: 30px;
  }
  .login_left_img {
    margin-top: 15px;
  }
  .login_wrapper .form_control {
    padding: 12px 15px;
  }
  .login_box_wrap ul li a {
    font-size: 12px;
    line-height: 14px;
  }
  .login_box_wrap h4 {
    font-size: 30px;
    line-height: 32px;
  }
  .login_wrapper .form_group label {
    margin-bottom: 5px;
    font-size: 14px;
    line-height: 14px;
  }
  .login_wrapper .btn_primary {
    padding: 12px 32px;
    font-size: 14px;
    line-height: 14px;
  }
  .file_upload label {
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 12px;
  }
  .registration_table table tr th {
    padding: 8px 12px;
  }
  .registration_table table .form-control {
    padding: 8px 12px;
    font-size: 12px;
  }
}

@media (max-width: 400px) {
  .logo_wrap img {
    max-width: 130px;
  }
  .registration_wrap {
       padding-top: 81px !important;
  }
  /*.registration_wrap.admin_wrap {
    min-height: calc(100vh - 71px);
}*/
      .upload_wrap .upload_input_wrap {
    width: 70%;
}

    .upload_wrap .file_wrap {
    width: 70%;
}
    .footer ul li {
    padding: 0 3px;
}
    .btn_same_Add {
    padding: 3px 10px !important;
    font-size: 10px !important;
}

}
