/* Variables
======================*/
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;800&display=swap");
:root {
  --main_color: #01aaeb;
  --second_color: #22427d;
  --black_color: #212121;
}
/* Setting Style
======================*/
*,
:focus {
  outline: 0 !important;
  scroll-behavior: smooth;
}

::selection {
  background-color: var(--main_color) !important;
  color: #fff !important;
}

/* Scroll Bar
======================*/
/* width */
::-webkit-scrollbar {
  background-color: var(--black_color);
  width: 5px;
  height: 2px;
}

/* Track */
::-webkit-scrollbar-track {
  background-color: var(--black_color);
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  border-radius: 25px;
  height: 2px;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background-color: var(--main_color);
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  border-radius: 25px;
  height: 2px;
}

body {
  font-family: "Montserrat", sans-serif;
  overflow-x: hidden;
  width: 100%;
  background-color: #eee;
  font-weight: 400;
}
.loading {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: 9999;
}
section {
  position: relative;
}
.widget {
  background-color: #fff;
  padding: 25px 15px 25px;
  box-shadow: 0px 0px 5px 0px rgb(225 225 225 / 60%);
  margin-bottom: 25px;
  border: 1px solid #eeeeee;
  border-radius: 5px;
}
.widget h3 {
  margin-bottom: 15px;
  color: var(--second_color);
  text-transform: uppercase;
  font-size: 16px;
  letter-spacing: 1px;
  font-weight: 600;
}
.mb-0 {
  margin-bottom: 0;
}
@media all and (max-width: 1200px) {
  .container {
    max-width: 1360px;
  }
}

/* Lists  
======================*/
ul {
  display: block;
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
}
ul li {
  display: inline-block;
}

/* Links 
======================*/
a,
a:hover,
a:focus {
  cursor: pointer;
  text-decoration: none;
}

/*Images
======================*/
img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}

.link {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  overflow: hidden;
  margin: 15px auto;
  line-height: 40px;
  text-align: center;
  font-size: 12px;
  padding: 0 15px;
  background-color: var(--main_color);
  color: #fff;
  font-weight: 600;
  border: 0;
  text-transform: capitalize;
  letter-spacing: 1px;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  -ms-box-shadow: none;
  -o-box-shadow: none;
  box-shadow: none;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  -webkit-transition: 0.3s color linear;
  -moz-transition: 0.3s color linear;
  -ms-transition: 0.3s color linear;
  -o-transition: 0.3s color linear;
  transition: 0.3s color linear;
}
.link:hover {
  background-color: var(--second_color);
}

/*Form
==========================*/
form .row {
  margin: 0;
}
.form-group {
  position: relative;
  margin-bottom: 20px;
  text-align: start;
}
.form-group .d-inline-block {
  margin-inline-end: 15px;
}

label {
  display: block;
  font-weight: 600;
  font-size: 12px;
  line-height: 20px;
  margin: 0 0 10px 0;
  text-align: start;
  letter-spacing: 1px;
  color: var(--black_color);
}
.form-control {
  width: 100%;
  color: var(--black_color);
  background-color: #fff;
  border: 1px solid #dedede;
  margin: 0;
  padding: 0 15px;
  line-height: 45px;
  height: 45px;
  font-size: 14px;
  outline: 0;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  -ms-box-shadow: none;
  -o-box-shadow: none;
  box-shadow: none;
  font-weight: 400;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
}
.form-control:hover,
.form-control:focus {
  outline: 0;
  border: 1px solid #dedede;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  -ms-box-shadow: none;
  -o-box-shadow: none;
  box-shadow: none;
}

input::-webkit-inner-spin-button,
input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="number"] {
  -moz-appearance: textfield;
}

textarea.form-control {
  padding: 15px;
  resize: none;
  min-height: 80px;
  line-height: 25px !important;
}
textarea.form-control.black:hover,
textarea.form-control.black:focus {
  color: var(--black_color);
}

.hint {
  display: block;
  margin: 0 0 5px;
  font-size: 12px;
}

.time_input,
.flatpickr-input-rang,
.flatpickr-input[readonly] {
  background-color: transparent;
}

input[type="checkbox"],
input[type="radio"] {
  display: none;
}

input[type="checkbox"] + label,
input[type="radio"] + label {
  position: relative;
  padding-inline-start: 30px;
  cursor: pointer;
  margin: 0;
  line-height: 35px;
  font-weight: 600;
}

input[type="checkbox"] + label::before,
input[type="radio"] + label::before {
  content: "";
  display: block;
  font-family: "icons_font" !important;
  text-align: center;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 20px;
  height: 20px;
  border: 1px solid #dedede;
  line-height: 20px;
  font-size: 15px;
  z-index: 99;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}

/* aside
====================*/
aside {
  position: fixed;
  top: 0;
  left: 0;
  width: 240px;
  height: 100%;
  background-color: var(--second_color);
  z-index: 9998;
}
aside img {
  margin: 25px auto;
  width: 170px;
  background-color: #fff;
  border-radius: 50%;
  border: 10px solid #375b9e;
  overflow: hidden;
}
aside ul {
  padding: 25px;
  margin: auto;
  border-top: 1px solid #fff2;
}
aside li {
  display: block;
}
aside li.active a {
  background-color: #fff !important;
  color: var(--main_color) !important;
  padding: 0 15px;
  border-radius: 3px;
}
aside li a {
  text-transform: uppercase;
  color: #fff;
  display: block;
  margin-bottom: 15px;
  line-height: 45px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-align: center;
}
aside li a:hover {
  background-color: #fff1;
  color: #fff;
}
main {
  position: fixed;
  top: 0;
  left: 240px;
  height: 100%;
  width: calc(100% - 240px);
  padding: 25px;
  overflow-y: auto;
  font-style: n;
}
.counter {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  position: relative;
  color: var(--black_color);
  margin-bottom: 15px;
  text-align: start;
  overflow: hidden;
  background-color: rgba(34, 66, 125, 0.3);
  padding: 25px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}
.counter h3 {
  font-size: 16px;
  margin: 0;
  width: 100%;
  text-transform: uppercase;
  color: var(--black_color);
}
.counter h3 span {
  margin-top: 15px;
  display: block;
  font-size: 28px;
  letter-spacing: 1px;
  font-weight: 800;
}
.counter i {
  font-size: 18px;
  min-width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  margin: 0;
  color: var(--main_color);
  background-color: #fff;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}
.data_view {
  border: 1px solid #eee;
  padding: 15px;
  margin: 15px auto;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}
.data_view span {
  font-weight: 600;
  margin-top: 10px;
  display: block;
  letter-spacing: 2px;
  font-size: 14px;
}
.login {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--second_color);
  height: 100vh;
}
.login form {
  background-color: #fff;
  padding: 0 25px 15px;
  max-width: 380px;
  width: 96%;
  border-radius: 5px;
}
.login form img {
  margin-top: -80px;
  border-radius: 50%;
}
.top_header {
  background-color: #22427d;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px;
  width: 100%;
  margin-bottom: 25px;
  border-radius: 5px;
  display: none;
}
.top_header img {
  margin: 0;
  width: 60px;
  border-radius: 50%;
}
.top_header button {
  border: 0;
  background-color: #fff;
  width: 40px;
  height: 40px;
  font-size: 14px;
  border-radius: 50%;
}

@media all and (max-width: 1199px) {
  .top_header {
    display: flex;
  }
  aside {
    left: -240px;
    transition: 0.4s left linear;
  }
  aside.move {
    left: 0;
  }
  main {
    left: 0;
    width: 100%;
  }
}
@media all and (max-width: 576px) {
}
