/* ===================================== Import Fonts ================================== */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&display=swap');

*,
::after,
::before {
  box-sizing: border-box;
}
body {
  background-color: #fff;
  font-size: 16px;
  font-family: 'Roboto', sans-serif;
}

.menubar{
  width: 220px;
  background: #f4f4f4;
  min-height: 100vh;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
  border-right: 1px solid #c3c3c3;
  font-family: 'Lato', sans-serif;
  transition: 0.3s all ease-in-out;
}
.menubar.hider{
  width: 0;
  transform: translateX(-50px);
  overflow: hidden;
}
.menubar.hider .logo_box{
  width: 0;
}
main.content{
  width: calc(100% - 220px);
  background: #dce9f4;
  transition: 0.3s all ease-in-out;
}
main.content.wider{
  width: 100%;
}
.menu_hider{
 color: #1658A5;
  font-size: 24px;
  cursor: pointer;
}
.menubar .logo_box{
  padding: 15px 20px;
  box-sizing: border-box;
  text-align: center;
  border-bottom: 1px solid #1658A5;
  height: 80px;
}
.menubar .menu_box{
    margin: 0;
    height: 500px;
    background-color: #f4f4f4;
    overflow-y: scroll;
}
.menu_box .menulist,
.menu_box .sublist{
  list-style-type: none;
  padding: 0;
}
.btn.btn-raised {
  background: #fff;
  border: 1px solid #1163ac;
  font-size: 14px;
}
.btn.btn-raised:hover{
  background: #1163ac;
  color: #fff;
  border-color: #fff;
}
.menu_box .menulist .list_item{  
  transition: 0.2s all ease-in-out;
  margin-bottom: 3px;
  cursor: pointer;
  background: transparent linear-gradient(89deg, #0089C2 0%, #1658A5 100%) 0% 0% no-repeat padding-box;
  color: #fff;
  font-size: 16px;
}
.menu_box .menulist .list_item i.fa{
  color: #fff;
}
.menu_box .menulist .list_item a{
  font-size: 16px;
  color: #fff;
  text-decoration: none;
  padding: 10px 20px;
  display: inline-block;
  width: 100%;
}
.menu_box .sub_item{    
    margin-left: 10px;
    transition: 0.2s all ease-in-out;
    margin-bottom: 3px;
    cursor: pointer;
    background-color: #f4f4f4;
}
.menu_box .sub_item a{
  font-size: 15px;
  color: #333;
  text-decoration: none;
  transition: 0.2s all ease-in-out;
  padding: 10px 20px;
  display: inline-block;
  width: 100%;
}
.menu_box .sub_item:hover a,
.menu_box .sub_item.active a{
  color: #1658A5;
 
    display: inline-block;
}
.wrapper .menubar .menu_box::-webkit-scrollbar {
  width: 6px;
  height: 100px;
}
.wrapper .menubar .menu_box::-webkit-scrollbar-track {
  background: #f1f1f1;
}
.wrapper .menubar .menu_box::-webkit-scrollbar-thumb {
  background: #97b0fc;
}
.wrapper .menubar .menu_box::-webkit-scrollbar-thumb:hover {
  background: #1658A5;
}
.content .topbar{
  background: #f4f4f4;
    padding: 20px;
    border-bottom: 1px solid #ccc;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}
.content .topbar p{
  margin: 0;
  letter-spacing: 1px;
  color: #333;
  font-weight: 600;
  font-size: 18px;
}
.content .topbar .btngroup .btn{
  background-color: #1658A5;
  color: #fff;
  border: 1px solid #1658A5;
  border-radius: 4px;
  box-shadow: none;
  padding: 3px 8px;
  text-decoration: none;
  height: 32px;
  display: inline-block;
  margin-left: 10px;
  text-decoration: none;
}
.content .main_content{
  padding: 20px;
}
.content .greetings{
  padding: 16px 20px  ;
  background: #b2c8da;
  margin-bottom: 16px;
}
.content .greetings h3{
  font-size: 24px;
  margin-bottom: 0;
}
.content .greetings marquee{
  margin: 10px auto 0;
    color: #fff;
    background-color: rgb(255, 65, 58);
    animation: dashboard_blinker__EOXBy 2s linear infinite;
}
@keyframes blinker {
  50% {           
      opacity: 0.5;
  }
}

.main_content .counterbox{
  box-shadow: 0 4px 6px -2px rgb(0 0 0 / 12%), 0 2px 2px -1px rgb(0 0 0 / 5%);
    background: #fff;
    margin: 0 5px;
    border-radius: 10px;
    margin-bottom: 20px;
    border-left: 4px solid #1658A5;
    position: relative;
}
.main_content .counterbox .counterdata{
  padding: 12px;
  min-height: 110px;
}
.main_content .counterbox .counterdata h3{
  font-size: 20px;
}
.main_content .counterbox .counterdata p.mb-0{
  font-size: 15px;
}
.main_content .counterbox .counterdata span{
  font-size: 15px;
  position: absolute;
  top: 5px;
  right: 10px;
}
.main_content .counterbox .counterbtn{
    background: rgb(255, 65, 58);
    padding: 9.6px;
    text-align: center;
    padding-left: 20px;
    padding-right: 20px;
    border-radius: 0 0 10px 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
}

.main_content .table_card{
  box-shadow: 0 4px 6px -2px rgb(0 0 0 / 12%), 0 2px 2px -1px rgb(0 0 0 / 5%);
    background: #fff;
    margin: 30px 0 0 0;
    border-radius: 10px;
    overflow: hidden;
}
.main_content .title-table{
  background: transparent linear-gradient(89deg, #1658A5 0%, #0089C2 100%) 0% 0% no-repeat padding-box;
  padding: 10px 20px;
  color: #fff;
  margin-bottom: 20px;
}
/* --------------------Login PAGE---------------------------- */
.login_page{
  padding: 0;
  margin: 0;  
}
.login_section{
  height: 100vh;
  overflow: hidden;
}
.login_section .image_side{
  /* background: url(../images/earth1.jpg) no-repeat center center; */
  /* height: 100vh; */
  width: 100%;
  border-right: 1px solid #1658A5;
  /* background-size: cover;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center; */
}
.login_section .top_bar{
  padding-bottom: 30px;
}
.login_section .image_side h1{
  font-size: 60px;
  line-height: 70px;
  color: #fff;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
  z-index: 1;
}
/* .login_section .image_side::before{
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  position: absolute;
  top: 0;
  left: 0;
} */
.login_section .login_side{
  background: #f9f9f9;
  background: url(../images/ebg\ 1.png) no-repeat center;
  min-height: 100vh;
  padding: 20px 20px;
  background-size: cover;  
}
.login_section .login_side .log_form{
  background: #1658A5;
  padding: 20px 30px;
  border-radius: 10px;
  position: relative;
  color: #fff;
}
.login_section .login_side .log_form h4{
  border-bottom: 1px solid #ccc;
  padding-bottom: 10px;
  margin-bottom: 15px;
}

.login_section .login_btn{
  background: #fff;
  border: 1px solid #0094b7;
  color: #fff;
  padding: 8px 40px;
  font-weight: 500;
  display: block;
  margin-left: auto;
  width: 100%;
  color: #0094b7;
}
.login_section .login_btn:hover{
  background: #0094b7;
  border-color: #fff;
  color: #fff
}
.log_form .form-control{
  height: 45px;
}
.title-table i.fa{
  font-size: 18px;
}
.log_form .form-control:focus{
  border-color: #ffc600;
}
.form-control:focus,
.form-select:focus{
  border-color: #1658A5;
  box-shadow: none;
}
/* --------------------ADD PAGE---------------------------- */
.main_content .main_card{
  box-shadow: 0 4px 6px -2px rgb(0 0 0 / 12%), 0 2px 2px -1px rgb(0 0 0 / 5%);
  background: #fff;
  border-radius: 10px;
  padding: 16px;
  margin-bottom: 30px;
}
.main_content .main_card .main_card_heading{
  padding: 5px 20px;
    background-color: #303030;
    display: flex;
    justify-content: space-between;
    align-items: center;  
}
.main_content .main_card .main_card_heading p{
  color: #fff;
  font-size: 18px;
  margin: 0;
}
.main_content .main_card .add_data{
  margin: 20px 0;
}
.main_content .main_card .add_data p{
  font-weight: 500;
  display: inline-block;
}
.main_content .main_card .add_data a{
  color: #1658A5;
  font-weight: 600;
}
.main_content .main_card form.input_file{
  padding: 16px;
  width: 100%;
  border: 3px dashed #1658A5;
  box-shadow: 1px 3px 6px 1px #a8032a48;
}
button.addbtn{
  background: #1658A5;
  border: 1px solid #1658A5;
  padding: 8px 40px;
    color: #fff;
    margin-right: 7px;
    box-sizing: border-box;
    border-radius: 4px;
    cursor: pointer;
}
button.addbtn:hover{
  background: #fff;
  color: #1658A5;
}
.form-control:focus{
  box-shadow: none;
  border-color: #1658A5;
}
table{
  border: 1px solid #ccc;
}
table thead tr th {
  background: #1199d5 !important;
  color: #fff;
}
i.fa{
  color: #1658A5;
}
.sm_btn{
  padding: 3px 7px;
    color: #fff;
    margin-right: 7px;
    box-sizing: border-box;
    border-radius: 4px;
    cursor: pointer;
}
.bluebtn{
  background: #1658A5;
  border: 1px solid #1658A5;
}
.greenbtn{
  background: green;
  border: 1px solid green;
}
.redbtn{
  background: red;
  border: 1px solid red;
}
.badge {
  display: inline-block;
  padding: 0.25em 0.4em;
  font-size: 75%;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 0.25rem;
}
.badge.block {
  font-size: 13px;
  font-weight: 400;
  padding: 3px 5px;
  color: #e20e02;
  background: rgb(226 14 2 / 20%);
}
.badge.active {
  font-size: 13px;
  font-weight: 400;
  padding: 3px 5px;
  color: #14e788;
  background: rgb(20 231 136 / 20%);
}
.table_button_edit, .table_button_delete {
  width: 30px;
  display: inline-block;
  text-align: center;
}
.table_button_edit {
  border: 1px solid #17a2b8;
  color: #17a2b8;
}
.table_button_delete {
  border: 1px solid #dc3545;
  color: #dc3545;
}

/* -------------------User Dashboard--------------------------- */
.main_content .add_complain{
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 6px -2px rgb(0 0 0 / 12%), 0 2px 2px -1px rgb(0 0 0 / 5%); 
}
.main_content .complain_form{
  padding: 20px;
  /* border: 3px dashed #1658A5;
  box-shadow: 1px 3px 6px 1px #a8032a48; */
}
.submit_btn{
  padding: 10px 30px;
  background: transparent linear-gradient(89deg, #1658A5 0%, #0089C2 100%) 0% 0% no-repeat padding-box;
  border: 1px solid #1658A5;
  color: #fff;
  font-weight: 500;
  font-size: 16px;
}
.submit_btn:hover{
  color: #fff;
  background: transparent linear-gradient(89deg, #0089C2 0%, #1658A5 100%) 0% 0% no-repeat padding-box;
}
.dataTables_length{
  margin-bottom: 15px;
}
.offcanvas-start{
  width: 600px;
}
.form-group-check  input {
  padding: 0;
  height: initial;
  width: initial;
  margin-bottom: 0;
  display: none;
  cursor: pointer;
}

.form-group-check label {
  position: relative;
  cursor: pointer;
}

.form-group-check label:before {
  content: '';
  background-color: transparent;
  border: 3px solid #1658A5;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
  padding: 10px;
  display: inline-block;
  position: relative;
  vertical-align: middle;
  cursor: pointer;
  margin-right: 10px;
}

.form-group-check input:checked + label:after {
  content: '';
  display: block;
  position: absolute;
  top: 3px;
  left: 9px;
  width: 7px;
  height: 14px;
  border: solid #1658A5;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}
.chart_box{
  background: #fff;
  box-shadow: 0 4px 6px -2px rgb(0 0 0 / 12%), 0 2px 2px -1px rgb(0 0 0 / 5%);
  padding: 20px;
  border-radius: 10px;
}
.fa-flip {
  transform: rotateX(-180deg);
}

table thead th {
  padding: 0.75rem 1.5rem;
  text-transform: capitalize;
  letter-spacing: 0;
  border-bottom: 1px solid #e9ecef;
  border-bottom-color: #e9ecef !important;
  background: blue !important;
  color: #fff;
}
.table td, .table th {
  white-space: nowrap;
}
.table.align-items-center td, .table.align-items-center th {
  vertical-align: middle;
}
.text-bold{
  font-weight: 500;
}
table tbody tr td:first-child{
  font-weight: 500;
}

@media only screen and (max-width: 600px) {
  .menubar {
      width: 120px;
  }
  main.content {
      width: calc(100% - 120px);
  }
  .content .topbar p {
      display: none;
  }
  .content .greetings h3 {
      font-size: 20px;
      margin-bottom: 0;
  }
  .menu_box .menulist .list_item a,
  .menu_box .sub_item a {
      text-align: center;
  }
  .menu_box .sub_item{
    margin-left:0;
  }
  .menu_box .menulist .list_item a i.fa,
  .menu_box .sub_item a i.fa{
      color: #1658A5;
      display: block;
  }
  .menubar .logo_box{
     padding: 10px;
  }
  .menubar .logo_box img {
      width: 100px;
  }
  .main_content .title-table {
      display: block !important;
  }
  .main_content .title-table h5 {
      margin-bottom: 15px !important;
  }
  .main_content .title-table .btn {
      margin-right: 0 !important;
      display: block;   
  }
  .main_content .title-table .btn:first-child{
      margin-bottom: 8px ;
  }
  .table_filters{
     display: block !important;
  }
  .table_filters input,
  .table_filters select{
    margin-bottom: 8px
  }
  .table_filters .btn {
      display: block;
      width: 100%;
      margin-top: 8px;
  }
  .table_data form[name="importvles"] .btn {
      width: 100%;
      margin-bottom: 10px;
  }
  }
