@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
/* Hover Transistion */
/* Custom scroll Bar */
/* Custom scroll Bar Inner */
/* Custom scroll Bar Inner */
.header_wrapper {
  transition: box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
  width: 100%;
  box-sizing: border-box;
  flex-shrink: 0;
  position: fixed;
  top: 0px;
  left: 0;
  background: white;
  z-index: 1201;
  box-shadow: none;
  border-bottom: 1px solid lightgray;
  padding: 13px 24px;
}
@media all and (max-width: 991px) {
  .header_wrapper {
    transition: 0.5s;
    padding: 11px 20px;
  }
}
.header_wrapper .logo img {
  max-width: 36px;
  max-height: 40px;
}
@media all and (max-width: 767px) {
  .header_wrapper .logo img {
    transition: 0.5s;
    max-width: 30px;
  }
}
.header_wrapper .logo span {
  margin: 0px;
  font-size: 1.5rem;
  line-height: 1.334;
  letter-spacing: 0em;
  font-weight: 700;
  color: #ed1b24;
}
@media all and (max-width: 767px) {
  .header_wrapper .logo span {
    transition: 0.5s;
    font-size: 1rem;
  }
}
.header_wrapper .toggle_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
}
.header_wrapper .toggle_btn:hover {
  background-color: rgba(0, 0, 0, 0.04);
}
@media all and (max-width: 767px) {
  .header_wrapper .toggle_btn {
    transition: 0.5s;
    width: 30px;
    height: 30px;
  }
}
.header_wrapper .right_area {
  gap: 10px 20px;
}
@media all and (max-width: 767px) {
  .header_wrapper .right_area {
    transition: 0.5s;
    gap: 10px 10px;
  }
}
.header_wrapper .btn_group_area {
  transition: box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
  color: rgb(255, 255, 255);
  background: white;
  box-shadow: none;
  border: 1px solid lightgray;
  border-radius: 4px;
  padding: 0px;
}
.header_wrapper .btn_group_area button,
.header_wrapper .btn_group_area a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
  background-color: transparent;
  outline: 0px;
  margin: 0px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  vertical-align: middle;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  text-decoration: none;
  font-size: 0.8125rem;
  line-height: 1.75;
  letter-spacing: 0.02857em;
  text-transform: uppercase;
  padding: 7px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  color: rgba(0, 0, 0, 0.54);
  font-weight: 700;
  border-right: 1px solid lightgray !important;
}
@media all and (max-width: 767px) {
  .header_wrapper .btn_group_area button,
  .header_wrapper .btn_group_area a {
    transition: 0.5s;
    font-size: 0.7125rem;
    padding: 4px;
  }
}
.header_wrapper .btn_group_area button:last-of-type,
.header_wrapper .btn_group_area a:last-of-type {
  border-right: none;
}
.header_wrapper .btn_group_area button:hover,
.header_wrapper .btn_group_area a:hover {
  text-decoration: none;
  background-color: rgba(0, 0, 0, 0.04);
}
.header_wrapper .btn_group_area button.active,
.header_wrapper .btn_group_area a.active {
  color: rgba(0, 0, 0, 0.87);
  background-color: rgba(0, 0, 0, 0.08);
}
.header_wrapper .user_img_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  cursor: pointer;
}
.header_wrapper .user_img_btn:hover {
  opacity: 0.8;
}
.header_wrapper .user_img_btn img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
@media all and (max-width: 767px) {
  .header_wrapper .user_img_btn img {
    transition: 0.5s;
    width: 30px;
    height: 30px;
  }
}
.header_wrapper .dropdown-menu {
  position: relative;
  background-color: rgb(255, 255, 255);
  color: rgba(0, 0, 0, 0.87);
  border-radius: 4px;
  outline: 0px;
  overflow: visible;
  filter: drop-shadow(rgba(0, 0, 0, 0.32) 0px 2px 8px);
}
.header_wrapper .dropdown-menu::after {
  content: "";
  position: absolute;
  top: -3px;
  right: 18px;
  width: 12px;
  height: 12px;
  background-color: white;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
}
.header_wrapper .dropdown-menu .dropdown-item {
  -webkit-tap-highlight-color: transparent;
  background-color: transparent;
  outline: 0px;
  border: 0px;
  margin: 0px;
  border-radius: 0px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  vertical-align: middle;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  color: inherit;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: 0.00938em;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  text-decoration: none;
  min-height: 38px;
  padding: 6px 16px;
  box-sizing: border-box;
  white-space: nowrap;
  -moz-column-gap: 12px;
       column-gap: 12px;
}
.header_wrapper .dropdown-menu .dropdown-item:hover {
  background-color: rgba(0, 0, 0, 0.04);
}
.header_wrapper .dropdown-menu .logout_btn {
  border-top: 1px solid rgba(0, 0, 0, 0.12) !important;
}

.sidebar_wrapper {
  position: fixed;
  top: 69px;
  left: 0;
  width: 264px;
  z-index: 1200;
  height: calc(100vh - 69px);
  background-color: white;
  color: rgba(0, 0, 0, 0.87);
  transition: box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
  box-shadow: none;
  border-right: 1px solid rgba(0, 0, 0, 0.12);
  -webkit-transition: box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
  -moz-transition: box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
  -ms-transition: box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
  -o-transition: box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
  overflow-y: scroll;
  /* width */
  /* Track */
  /* Handle */
  /* Handle on hover */
  overflow-y: auto;
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
}
.sidebar_wrapper::-webkit-scrollbar {
  width: 5px;
}
.sidebar_wrapper::-webkit-scrollbar-track {
  background: #f9fafb;
  border-radius: 5px;
}
.sidebar_wrapper::-webkit-scrollbar-thumb {
  background: #428df5;
  border-radius: 5px;
}
.sidebar_wrapper::-webkit-scrollbar-thumb:hover {
  background: #f84f4f;
  cursor: grab;
}
@media all and (max-width: 991px) {
  .sidebar_wrapper {
    transition: 0.5s;
    top: 65px;
    left: -100%;
    opacity: 0;
    visibility: hidden;
    height: calc(100vh - 65px);
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
  }
  .sidebar_wrapper.active_sidebar {
    left: 0;
    opacity: 1;
    visibility: visible;
  }
}
@media all and (max-width: 767px) {
  .sidebar_wrapper {
    transition: 0.5s;
    top: 56px;
    height: calc(100vh - 56px);
  }
}
.sidebar_wrapper.hie_sidebar {
  top: 65px;
  left: -100%;
  opacity: 0;
  visibility: hidden;
  height: calc(100vh - 65px);
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
}
.sidebar_wrapper .sidebar_logo_area {
  text-align: center;
  padding: 24px 10px;
  background-color: #daeaf8;
}
.sidebar_wrapper .sidebar_logo_area .logo {
  max-width: 69px;
  max-height: 90px;
}
.sidebar_wrapper .sidebar_logo_area h5 {
  font-size: 0.875rem;
  line-height: 1.43;
  letter-spacing: 0.01071em;
  text-align: center;
  font-weight: 700;
  color: green;
  margin-top: 9px;
}
.sidebar_wrapper .sidebar_logo_area h6 {
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: 0.00938em;
  text-align: center;
  font-weight: 700;
  color: #428df5;
  margin-top: 9px;
}
.sidebar_wrapper .accordion-item {
  border: none;
}
.sidebar_wrapper .accordion-button {
  display: grid;
  grid-template-columns: minmax(0, 30px) repeat(1, minmax(0, 1fr)) minmax(0, 20px);
  align-items: center;
  gap: 10px;
}
.sidebar_wrapper .accordion-button i {
  font-size: 18px;
}
.sidebar_wrapper .accordion-button span {
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: 0.00938em;
  display: block;
}
.sidebar_wrapper .accordion-button::after {
  width: 12px;
  height: 12px;
  background-size: 12px;
}
.sidebar_wrapper .accordion-button:focus {
  outline: none;
  box-shadow: none;
}
.sidebar_wrapper .accordion-button:hover {
  background-color: rgba(0, 0, 0, 0.04);
}
.sidebar_wrapper .single_accordion .accordion-button {
  grid-template-columns: minmax(0, 30px) repeat(1, minmax(0, 1fr));
}
.sidebar_wrapper .single_accordion .accordion-button::after {
  display: none;
}
.sidebar_wrapper .accordion-button:not(.collapsed) {
  box-shadow: none;
}
.sidebar_wrapper .accordion-body {
  padding-left: 0;
  padding-right: 0;
  border-bottom: 1px solid lightgray;
}
.sidebar_wrapper .inner_menu_list a {
  margin: 0px;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.75;
  letter-spacing: 0.00938em;
  color: #0c1e5b;
  display: block;
  padding: 10px 0;
  padding-left: 60px;
}
.sidebar_wrapper .inner_menu_list a:hover {
  background-color: rgba(0, 0, 0, 0.08);
}
.sidebar_wrapper .outer_active .accordion-button i,
.sidebar_wrapper .outer_active .accordion-button span {
  color: #3f80ea;
}
.sidebar_wrapper .inner_active a {
  color: #3f80ea;
}

.overview_wrapper {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: start;
  gap: 30px 24px;
}
@media all and (max-width: 767px) {
  .overview_wrapper {
    transition: 0.5s;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px 14px;
  }
}
.overview_wrapper .overview_item {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: 20px 15px;
  color: rgba(0, 0, 0, 0.87);
  transition: box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
  border-radius: 4px;
  box-shadow: none;
  padding: 24px;
  background-color: #428df5;
}
@media all and (max-width: 1199px) {
  .overview_wrapper .overview_item {
    transition: 0.5s;
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .overview_wrapper .overview_item {
    transition: 0.5s;
    padding: 20px;
    gap: 20px 10px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .overview_wrapper .overview_item {
    transition: 0.5s;
    padding: 16px;
  }
}
@media all and (max-width: 767px) {
  .overview_wrapper .overview_item {
    transition: 0.5s;
    padding: 20px 10px;
  }
}
.overview_wrapper .overview_item .icon {
  max-width: 96px;
  max-height: 100px;
  margin-left: auto;
  margin-right: auto;
}
@media all and (max-width: 767px) {
  .overview_wrapper .overview_item .icon {
    transition: 0.5s;
    max-width: 50px;
    max-height: 60px;
  }
}
.overview_wrapper .content h4 {
  margin: 0px;
  font-size: 1.25rem;
  line-height: 1.6;
  letter-spacing: 0.0075em;
  font-weight: 700;
  word-wrap: break-word;
}
.overview_wrapper .content h5 {
  margin: 8px 0px;
  font-size: 2.125rem;
  line-height: 1.235;
  letter-spacing: 0.00735em;
  font-weight: 700;
  color: green;
}

/* Chart Section */
.dashboard_chart_wrapper {
  margin-top: 24px;
}
.dashboard_chart_wrapper .chart_grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: 20px 24px;
}
@media all and (max-width: 767px) {
  .dashboard_chart_wrapper .chart_grid {
    transition: 0.5s;
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
.dashboard_chart_wrapper .chart_item {
  background-color: white;
  color: rgba(0, 0, 0, 0.87);
  transition: box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
  border-radius: 4px;
  box-shadow: none;
  padding: 16px;
  -webkit-transition: box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
  -moz-transition: box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
  -ms-transition: box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
  -o-transition: box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
}
.dashboard_chart_wrapper .chart_item h4 {
  font-size: 1.25rem;
  line-height: 1.6;
  letter-spacing: 0.0075em;
  font-weight: 700;
  color: #0f3f62;
  margin-bottom: 20px;
}
.dashboard_chart_wrapper .bar_chart {
  width: 100%;
  height: 500px;
}
@media all and (max-width: 767px) {
  .dashboard_chart_wrapper .bar_chart {
    transition: 0.5s;
    height: 300px;
  }
}

.my_profile_wrapper {
  background-color: white;
  color: rgba(0, 0, 0, 0.87);
  transition: box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
  border-radius: 4px;
  box-shadow: none;
  padding: 24px;
}
.my_profile_wrapper .user_grid {
  display: grid;
  grid-template-columns: minmax(0, 80px) repeat(1, minmax(0, 1fr));
  align-items: start;
  gap: 20px 16px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .my_profile_wrapper .user_grid {
    transition: 0.5s;
    grid-template-columns: minmax(0, 60px) repeat(1, minmax(0, 1fr));
  }
}
@media all and (max-width: 767px) {
  .my_profile_wrapper .user_grid {
    transition: 0.5s;
    grid-template-columns: minmax(0, 40px) repeat(1, minmax(0, 1fr));
  }
}
.my_profile_wrapper .user_grid .user_img {
  width: 100%;
  height: 80px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
@media (min-width: 768px) and (max-width: 991px) {
  .my_profile_wrapper .user_grid .user_img {
    transition: 0.5s;
    height: 60px;
  }
}
@media all and (max-width: 767px) {
  .my_profile_wrapper .user_grid .user_img {
    transition: 0.5s;
    height: 40px;
  }
}
.my_profile_wrapper .user_grid h6 {
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.57;
  letter-spacing: 0.00714em;
  color: gray;
}
.my_profile_wrapper .info_list {
  margin-top: 40px;
}
.my_profile_wrapper .info_list li {
  font-weight: 400;
  font-size: 1.1rem;
  line-height: 1.75;
  letter-spacing: 0.00938em;
  margin-top: 5px;
}
.my_profile_wrapper .social_list {
  margin-top: 40px;
}
.my_profile_wrapper #passwordRow {
  display: none;
}
@media all and (min-width: 992px) {
  .my_profile_wrapper .setting_tab_area {
    transition: 0.5s;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
    display: grid;
    grid-template-columns: minmax(0, 170px) repeat(1, minmax(0, 1fr));
    align-items: start;
    gap: 20px 30px;
  }
}
.my_profile_wrapper .setting_tab_area .nav-pills {
  gap: 10px;
}
@media all and (min-width: 992px) {
  .my_profile_wrapper .setting_tab_area .nav-pills {
    transition: 0.5s;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
    flex-direction: column;
  }
}
.my_profile_wrapper .setting_tab_area .nav-link {
  border: 1px solid #428df5 !important;
  width: 100%;
}
@media all and (max-width: 991px) {
  .my_profile_wrapper .setting_tab_area .nav-link {
    transition: 0.5s;
    font-size: 14px;
  }
}
.my_profile_wrapper .setting_tab_area .form_area {
  max-width: 400px;
  width: 100%;
}
@media all and (max-width: 991px) {
  .my_profile_wrapper .setting_tab_area .form_area {
    transition: 0.5s;
    max-width: 100%;
  }
}
.my_profile_wrapper .setting_tab_area .tab-content {
  position: relative;
  margin-top: 20px;
}
@media all and (min-width: 992px) {
  .my_profile_wrapper .setting_tab_area .tab-content {
    transition: 0.5s;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
    margin-top: 0;
  }
  .my_profile_wrapper .setting_tab_area .tab-content::after {
    content: "";
    position: absolute;
    top: 0;
    left: -15px;
    width: 2px;
    height: 100%;
    background-color: rgb(238, 238, 238);
  }
}

/* Sing In */
.sing_in_wrapper {
  width: 100vw;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  align-items: center;
  gap: 20px 30px;
  margin: 10px;
}
@media all and (max-width: 991px) {
  .sing_in_wrapper {
    transition: 0.5s;
    grid-template-columns: minmax(0, 1fr);
    margin: 0;
  }
}
.sing_in_wrapper .swiper,
.sing_in_wrapper .slider_area {
  height: 100%;
}
.sing_in_wrapper .slider_area {
  height: calc(100vh - 20px);
}
@media all and (max-width: 991px) {
  .sing_in_wrapper .slider_area {
    transition: 0.5s;
    display: none;
  }
}
.sing_in_wrapper .slider_item {
  width: 100%;
  height: 100%;
}
.sing_in_wrapper .slider_item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  vertical-align: top;
  display: inline-block;
}
.sing_in_wrapper .forget_img {
  width: 100%;
  height: 100%;
}
.sing_in_wrapper .sing_in_form_area {
  padding-right: 20px;
  padding-left: 20px;
}
@media all and (max-width: 991px) {
  .sing_in_wrapper .sing_in_form_area {
    transition: 0.5s;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
  }
}

/*
!Utilities Or Helper CSS
*/
*,
::before,
::after {
  box-sizing: border-box;
}

body {
  background-color: #f9fafb;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  overflow-y: auto;
  /* width */
  /* Track */
  /* Handle */
  /* Handle on hover */
}
body::-webkit-scrollbar {
  width: 5px;
}
body::-webkit-scrollbar-track {
  background: rgba(153, 153, 153, 0.2);
  border-radius: 5px;
}
body::-webkit-scrollbar-thumb {
  background: #999999;
  border-radius: 5px;
}
body::-webkit-scrollbar-thumb:hover {
  background: #f84f4f;
  cursor: grab;
}

html,
body {
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: "Roboto", sans-serif;
}

p {
  font-weight: 400;
  font-size: 16px;
  line-height: 27px;
  color: #000000;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin-bottom: 0;
}

img,
svg {
  max-width: 100%;
}

a {
  color: unset;
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}

a,
span {
  display: inline-block;
}

ul {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

:focus {
  outline: none !important;
}

input,
select,
textarea {
  font-weight: 400;
  font-size: 14px;
  color: #101010;
}

input:focus,
select:focus {
  outline: none !important;
  box-shadow: none !important;
  border: 1px solid #3f80ea !important;
}

textarea:focus {
  box-shadow: none !important;
  outline: none !important;
}

.btn:focus {
  outline: none !important;
  box-shadow: none !important;
}

button:focus {
  outline: none !important;
  box-shadow: none !important;
}

button {
  cursor: pointer;
  border: none !important;
  background-color: transparent;
}

button:hover {
  border: none !important;
}

*::-moz-placeholder {
  font-weight: normal;
  font-size: 14px;
  line-height: 22px;
  color: #707070;
}

*::placeholder,
*::-moz-placeholder {
  font-weight: normal;
  font-size: 14px;
  line-height: 22px;
  color: #707070;
}

::-moz-selection {
  color: rgb(255, 255, 255);
  background: rgb(159, 4, 255);
}

::selection,
::-moz-selection {
  color: rgb(255, 255, 255);
  background: rgb(159, 4, 255);
}

/*  Chrome, Safari, Edge, Opera */
input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

/* Common Class */
@media all and (max-width: 575px) {
  .container {
    transition: 0.5s;
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
}

.d-flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 7px 12px;
}

.g-sm {
  gap: 8px 12px;
}

.g-lg {
  gap: 10px 15px;
}

@media all and (max-width: 767px) {
  .mm-30 {
    transition: 0.5s;
    margin-top: 30px;
  }
}

@media all and (max-width: 991px) {
  .mlg-30 {
    transition: 0.5s;
    margin-top: 30px;
  }
}

.default_section_gap {
  margin-top: 80px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .default_section_gap {
    transition: 0.5s;
    margin-top: 60px;
  }
}
@media all and (max-width: 767px) {
  .default_section_gap {
    transition: 0.5s;
    margin-top: 50px;
  }
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 100;
  display: none;
}

.main_content_area {
  margin-left: 300px;
  margin-top: 100px;
  margin-right: 24px;
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
}
@media all and (max-width: 991px) {
  .main_content_area {
    transition: 0.5s;
    margin-left: 20px;
    margin-top: 80px;
    margin-right: 20px;
  }
}
@media all and (min-width: 992px) {
  .main_content_area.expand_main_content {
    transition: 0.5s;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
    margin-left: 20px;
  }
}

.header_title {
  margin: 0px;
  font-size: 1.4rem;
  line-height: 1.6;
  letter-spacing: 0.0075em;
  font-weight: 700;
}

.profile_title {
  margin: 0px;
  font-size: 1.5rem;
  line-height: 1.334;
  letter-spacing: 0em;
  font-weight: 700;
}
@media all and (max-width: 767px) {
  .profile_title {
    transition: 0.5s;
    font-size: 1.2rem;
  }
}

.add_form_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
  outline: 0px;
  border: 0px;
  margin: 0px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  vertical-align: middle;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.75;
  letter-spacing: 0.02857em;
  text-transform: uppercase;
  min-width: 64px;
  padding: 6px 16px;
  border-radius: 4px;
  transition: background-color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms, box-shadow 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms, border-color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms, color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
  color: rgb(255, 255, 255);
  background-color: rgb(2, 136, 209);
  box-shadow: rgba(0, 0, 0, 0.2) 0px 3px 1px -2px, rgba(0, 0, 0, 0.14) 0px 2px 2px 0px, rgba(0, 0, 0, 0.12) 0px 1px 5px 0px;
  width: 100%;
  max-width: 240px;
}
.add_form_btn span {
  margin-left: 10px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .add_form_btn {
    transition: 0.5s;
    max-width: 200px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .add_form_btn {
    transition: 0.5s;
    max-width: 150px;
  }
}
@media all and (max-width: 767px) {
  .add_form_btn {
    transition: 0.5s;
    max-width: 100%;
  }
}

.profile_header {
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  padding-bottom: 5px;
  margin-bottom: 20px;
}
.profile_header .edit_icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
.profile_header .edit_icon i {
  font-size: 18px;
}
.profile_header .edit_icon:hover {
  background-color: rgba(0, 0, 0, 0.04);
}

.swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: white;
  opacity: 0.7;
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
}
.swiper-pagination .swiper-pagination-bullet-active {
  background-color: white;
  opacity: 1;
}

.niceSelect .list {
  width: 100%;
  max-height: 250px;
  overflow: auto;
  /* width */
  /* Track */
  /* Handle */
  /* Handle on hover */
}
.niceSelect .list::-webkit-scrollbar {
  width: 5px;
  height: 10px;
}
.niceSelect .list::-webkit-scrollbar-track {
  background: rgba(153, 153, 153, 0.2);
  border-radius: 5px;
}
.niceSelect .list::-webkit-scrollbar-thumb {
  background: #999999;
  border-radius: 5px;
}
.niceSelect .list::-webkit-scrollbar-thumb:hover {
  background: #f84f4f;
  cursor: grab;
}
.niceSelect .current {
  display: flex;
  align-items: center;
  height: 100%;
}

.hide_chart_logo {
  position: absolute;
  left: 14px;
  bottom: 15px;
  width: 61px;
  height: 20px;
  background: white;
}

.breadcrumb .breadcrumb-item {
  font-size: 16px;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.87);
}
.breadcrumb .breadcrumb-item a {
  font-size: 16.5px;
  font-weight: 400;
  color: green;
}
.breadcrumb .breadcrumb-item a:hover {
  opacity: 0.8;
}

.export_btn_area {
  margin-top: 10px;
}
.export_btn_area button,
.export_btn_area a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
  background-color: transparent;
  outline: 0px;
  margin: 0px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  vertical-align: middle;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  text-decoration: none;
  font-size: 0.8125rem;
  line-height: 1.75;
  letter-spacing: 0.02857em;
  min-width: 64px;
  padding: 3px 9px;
  border-radius: 4px;
  transition: background-color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms, box-shadow 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms, border-color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms, color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
  border: 1px solid rgba(25, 118, 210, 0.5) !important;
  color: rgb(25, 118, 210);
  text-transform: unset;
  font-weight: 700;
}
.export_btn_area button:hover,
.export_btn_area a:hover {
  color: white;
  background-color: rgba(25, 118, 210, 0.5);
}
.export_btn_area button.csv_btn,
.export_btn_area a.csv_btn {
  border: 1px solid rgba(237, 108, 2, 0.5) !important;
  color: rgb(237, 108, 2);
}
.export_btn_area button.csv_btn:hover,
.export_btn_area a.csv_btn:hover {
  color: white;
  background-color: rgba(237, 108, 2, 0.5);
}

.filter_area {
  margin-bottom: 20px;
}
.filter_area .select2 {
  width: 400px !important;
  height: 40px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .filter_area .select2 {
    transition: 0.5s;
    width: 300px !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .filter_area .select2 {
    transition: 0.5s;
    width: 260px !important;
  }
}
@media all and (max-width: 767px) {
  .filter_area .select2 {
    transition: 0.5s;
    width: 100% !important;
  }
}
.filter_area .selection,
.filter_area .select2-selection {
  height: 100%;
  width: 100% !important;
}
.filter_area .select2-selection {
  border: 1px solid rgba(0, 0, 0, 0.23);
  padding-left: 10px;
  padding-right: 10px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}
.filter_area .select2-selection__rendered {
  font-size: 14px;
  line-height: 40px !important;
}
.filter_area .select2-selection__arrow {
  top: 8px !important;
  right: 6px !important;
}
.filter_area .input_filed {
  width: 400px;
  height: 40px;
  border: 1px solid rgba(0, 0, 0, 0.23);
  padding-left: 10px;
  padding-right: 10px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .filter_area .input_filed {
    transition: 0.5s;
    width: 300px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .filter_area .input_filed {
    transition: 0.5s;
    width: 260px;
  }
}
@media all and (max-width: 767px) {
  .filter_area .input_filed {
    transition: 0.5s;
    width: 100%;
  }
}

.table-responsive {
  overflow: auto;
  /* width */
  /* Track */
  /* Handle */
  /* Handle on hover */
}
.table-responsive::-webkit-scrollbar {
  width: 5px;
  height: 10px;
}
.table-responsive::-webkit-scrollbar-track {
  background: rgba(153, 153, 153, 0.2);
  border-radius: 5px;
}
.table-responsive::-webkit-scrollbar-thumb {
  background: #999999;
  border-radius: 5px;
}
.table-responsive::-webkit-scrollbar-thumb:hover {
  background: #f84f4f;
  cursor: grab;
}

.manage_table_area {
  background-color: white;
  color: rgba(0, 0, 0, 0.87);
  transition: box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
  border-radius: 4px;
  box-shadow: none;
  padding: 24px;
  padding-bottom: 60px;
  margin-top: 20px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .manage_table_area {
    transition: 0.5s;
    padding: 20px;
    padding-bottom: 40px;
  }
}
@media all and (max-width: 767px) {
  .manage_table_area {
    transition: 0.5s;
    padding: 20px 12px;
    padding-bottom: 40px;
  }
}
.manage_table_area table {
  width: 100%;
  min-height: 300px;
}
.manage_table_area table thead {
  display: table-header-group;
  background-color: rgb(245, 245, 245);
}
.manage_table_area table th {
  font-size: 0.875rem;
  line-height: 1.5rem;
  letter-spacing: 0.01071em;
  display: table-cell;
  vertical-align: inherit;
  border-bottom: 1px solid rgb(224, 224, 224);
  text-align: center;
  padding: 16px;
  color: rgba(0, 0, 0, 0.87);
  font-weight: 700;
}
.manage_table_area table td {
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.43;
  letter-spacing: 0.01071em;
  display: table-cell;
  vertical-align: inherit;
  border-bottom: 1px solid rgb(224, 224, 224);
  text-align: center;
  padding: 16px;
  color: rgba(0, 0, 0, 0.87);
}
.manage_table_area table tbody tr:hover {
  background-color: rgba(0, 0, 0, 0.04);
}
.manage_table_area .action_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
.manage_table_area .action_btn i {
  font-size: 18px;
}
.manage_table_area .action_btn:hover {
  background-color: rgba(0, 0, 0, 0.04);
}
.manage_table_area .dropdown-item {
  -webkit-tap-highlight-color: transparent;
  background-color: transparent;
  outline: 0px;
  border: 0px;
  margin: 0px;
  border-radius: 0px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  vertical-align: middle;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  color: inherit;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: 0.00938em;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  text-decoration: none;
  min-height: 38px;
  padding: 6px 16px;
  box-sizing: border-box;
  white-space: nowrap;
  -moz-column-gap: 12px;
       column-gap: 12px;
}
.manage_table_area .dropdown-item:hover {
  background-color: rgba(0, 0, 0, 0.04);
}
.manage_table_area .dropdown-item.delete-item {
  color: #ed1b24;
}

.pagination_area {
  margin-top: 50px;
}

.select2-results__options .select2-results__option {
  font-size: 14px;
}

.form_area .upload_img_area {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.form_area .upload_img_area .upload_area {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 120px;
  height: 120px;
  background-color: rgb(234, 245, 255);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  margin-left: auto;
  margin-right: auto;
  cursor: pointer;
  overflow: hidden;
}
.form_area .upload_img_area .upload_area:hover {
  opacity: 0.8;
}
.form_area .upload_img_area .user_img {
  width: 100%;
  height: 100%;
}
.form_area .upload_img_area .icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  z-index: 10;
}
.form_area .upload_img_area .icon i {
  font-size: 20px;
  color: #428df5;
}
.form_area .form_title {
  margin: 0px;
  font-size: 1.25rem;
  line-height: 1.6;
  letter-spacing: 0.0075em;
  font-weight: 700;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}
.form_area .form_group_area {
  margin-bottom: 20px;
}
.form_area .input_row {
  position: relative;
  margin-bottom: 20px;
  width: 100%;
}
@media all and (max-width: 767px) {
  .form_area .input_row {
    transition: 0.5s;
    margin-bottom: 10px;
  }
}
.form_area .input_row label {
  margin: 0px;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: 0.00938em;
}
.form_area .input_row .input_filed {
  width: 100%;
  height: 40px;
  border: 1px solid rgba(0, 0, 0, 0.23);
  padding-left: 10px;
  padding-right: 10px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}
.form_area .input_row .input_filed[type=file] {
  padding-top: 6px;
}
.form_area .input_row .input_filed[type=password] {
  padding-right: 30px;
}
.form_area .input_row textarea {
  padding-top: 5px;
  height: auto !important;
}
.form_area .input_row .select2 {
  width: 100% !important;
}
.form_area .input_row .selection,
.form_area .input_row .select2-selection {
  height: 100%;
  width: 100% !important;
}
.form_area .input_row .select2-selection {
  border: 1px solid rgba(0, 0, 0, 0.23);
  padding-left: 10px;
  padding-right: 10px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  height: 40px !important;
}
.form_area .input_row .select2-selection__rendered {
  font-size: 14px;
  line-height: 40px !important;
}
.form_area .input_row .select2-selection__arrow {
  top: 8px !important;
  right: 6px !important;
}
.form_area .input_row .select2-selection--multiple {
  height: auto !important;
}
.form_area .input_row .select2-selection--multiple .select2-selection__rendered {
  line-height: unset !important;
}
.form_area .input_row .niceSelect {
  width: 100%;
  height: 40px;
}
.form_area .form-check-label {
  cursor: pointer;
}
.form_area .password_area {
  position: absolute;
  right: 5px;
  top: 31px;
  display: none;
}
.form_area .password_area button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
.form_area .password_area button i {
  font-size: 14px;
}
.form_area .password_area button:hover {
  background-color: lightgray;
}
.form_area .password_area .eye_close_icon {
  display: none;
}
.form_area .action_btn_row {
  margin-top: 40px;
}
.form_area .back_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
  background-color: transparent;
  outline: 0px;
  margin: 0px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  vertical-align: middle;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9375rem;
  line-height: 1.75;
  letter-spacing: 0.02857em;
  text-transform: uppercase;
  min-width: 64px;
  padding: 7px 21px;
  border-radius: 4px;
  transition: background-color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms, box-shadow 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms, border-color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms, color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
  border: 1px solid rgba(46, 125, 50, 0.5) !important;
  color: rgb(46, 125, 50);
  width: 100%;
}
.form_area .back_btn:hover {
  background-color: rgba(46, 125, 50, 0.2);
}
.form_area .submit_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
  gap: 10px;
  outline: 0px;
  border: 0px;
  margin: 0px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  vertical-align: middle;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9375rem;
  line-height: 1.75;
  letter-spacing: 0.02857em;
  text-transform: uppercase;
  min-width: 64px;
  padding: 8px 22px;
  border-radius: 4px;
  transition: background-color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms, box-shadow 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms, border-color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms, color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
  color: rgb(255, 255, 255);
  background-color: rgb(25, 118, 210);
  box-shadow: rgba(0, 0, 0, 0.2) 0px 3px 1px -2px, rgba(0, 0, 0, 0.14) 0px 2px 2px 0px, rgba(0, 0, 0, 0.12) 0px 1px 5px 0px;
  width: 100%;
}
.form_area .submit_btn:hover {
  opacity: 0.8;
}
@media all and (max-width: 767px) {
  .form_area .submit_btn {
    transition: 0.5s;
    margin-bottom: 10px;
  }
}
.form_area .sing_in_header {
  margin-bottom: 40px;
}
.form_area .sing_in_header img {
  max-width: 420px;
  max-height: 150px;
}
.form_area .sing_in_header .form_title {
  margin-top: 20px;
  border: none;
  padding: 0;
}
.form_area.sing_in_form_area {
  max-width: 450px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.form_area.sing_in_form_area .input_row .input_filed {
  height: 56px;
  padding-left: 15px;
}
.form_area.sing_in_form_area .password_area {
  right: 10px;
  top: 15px;
}
.form_area .forget_text {
  margin-top: 16px;
  font-weight: 400;
  font-size: 1rem;
  letter-spacing: 0.00938em;
}
.form_area .forget_text a {
  font-weight: 500;
  color: #3f80ea;
}
.form_area .forget_text a:hover {
  opacity: 0.8;
}
.form_area .sing_in_btn {
  display: inline-flex;
  justify-content: center;
  position: relative;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
  outline: 0px;
  border: 0px;
  margin: 0px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  vertical-align: middle;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  text-decoration: none;
  font-family: SolaimanLipi, Roboto, sans-serif;
  font-size: 0.9375rem;
  line-height: 1.75;
  letter-spacing: 0.02857em;
  min-width: 64px;
  padding: 8px 22px;
  border-radius: 4px;
  transition: background-color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms, box-shadow 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms, border-color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms, color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
  color: rgb(255, 255, 255);
  background-color: rgb(25, 118, 210);
  box-shadow: rgba(0, 0, 0, 0.2) 0px 3px 1px -2px, rgba(0, 0, 0, 0.14) 0px 2px 2px 0px, rgba(0, 0, 0, 0.12) 0px 1px 5px 0px;
  width: 100%;
  text-transform: capitalize;
  font-weight: 700;
  align-items: center;
  margin-top: 30px;
}

.manage_form_area .form_area {
  max-width: 800px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.manage_form_area.manage_form_area_sm .form_area {
  max-width: 512px;
}

.social_list {
  gap: 2px;
}
.social_list li {
  font-weight: 400;
  font-size: 1.1rem;
  line-height: 1.75;
  letter-spacing: 0.00938em;
}
.social_list .social_text {
  margin-right: 10px;
}
.social_list a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
.social_list a i {
  font-size: 16px;
}
.social_list a:hover {
  background-color: rgba(0, 0, 0, 0.04);
}/*# sourceMappingURL=style.css.map */