/* Sidebar responsive implementation */

a {
  text-decoration: none;
  background-color: transparent;
}

a:hover {
  color: #375898;
  text-decoration: none;
}

.wrapper .main_container .top_navbar .right_bar .fas:hover {
  color: #375898;
  text-decoration: none;
}

.wrapper {
  display: flex;
  width: 100%;
}

.wrapper .sidebar {
  position: relative;
}

.wrapper .sidebar .bg_shadow {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: #000;
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.wrapper .sidebar__inner {
  width: 250px;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  background: rgba(255, 255, 255, 1);
  box-shadow: 0 0 7px rgba(0, 0, 0, 0.125);
  z-index: 999;
  transition: all 0.3s ease;
}

.wrapper .main_container {
  margin-left: 250px;
  width: calc(100% - 250px);
  transition: all 0.3s ease;
}

.wrapper .sidebar__inner .profile_info {
  padding: 30px 0 10px 0;
  text-align: center;
}

.wrapper .sidebar__inner .profile_info .profile_img {
  width: 100%;
  margin: 0 auto 15px;
  padding: 20px;
}

.wrapper .sidebar__inner .profile_info .profile_data .role {
  font-weight: bold;
  color: #000;
}

.wrapper .sidebar__inner .siderbar_menu li a {
  padding: 19px 11px;
  display: block;
  height: 54px;
  position: relative;
  margin-bottom: 1px;
  color: rgb(100, 108, 120);
  opacity: 0.8;
  margin: 5px 10px;
  border-radius: 8px;
}

.wrapper .sidebar__inner .siderbar_menu li a .icon {
  height: 100%;
}

.title {
  font-size: 14px;
}

.wrapper .sidebar__inner .siderbar_menu li a.active {
  background: #f3f2f2;
  color: rgb(35, 127, 71);
  text-decoration: none;
  font-weight: bold;
}

.wrapper .sidebar__inner .siderbar_menu li a:hover {
  background: rgba(255, 255, 255, 0.23);
  background: #f3f2f2;
}

.wrapper .sidebar__inner .siderbar_menu li a:hover:before, .wrapper .sidebar__inner .siderbar_menu li a.active:before {
  display: block;
}

.wrapper .sidebar__inner .siderbar_menu li a.submenu {
  font-size: 15px;
  margin-left: 50px;
}

.wrapper .main_container .top_navbar {
  width: calc(100% - 250px);
  height: 60px;
  background: #fff;
  display: flex;
  justify-content: space-between;
  padding: 15px 25px;
  position: fixed;
  top: 0;
  left: 250px;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.125);
  transition: all 0.3s ease;
  z-index: 1;
  align-items: center;
}

.wrapper .main_container .top_navbar .hamburger {
  width: 30px;
  height: 30px;
  position: relative;
  display: none;
}

.wrapper .main_container .top_navbar .hamburger .fas {
  color: #96b768;
  font-size: 25px;
  cursor: pointer;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.wrapper .main_container .top_navbar .menu {
  display: flex;
  align-items: center;
}

.wrapper .main_container .top_navbar .menu li a {
  padding: 0 15px;
  margin-left: 28px;
  position: relative;
  color: #88a3d0;
  font-weight: bold;
  text-align: center;
  font-size: 18px;
}

.wrapper .main_container .top_navbar .menu li a:before {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 0;
  width: 100%;
  height: 3px;
  background: #42a5f5;
  display: none;
}

.wrapper .main_container .top_navbar .menu li a.active, .wrapper .main_container .top_navbar .menu li a:hover {
  color: #42a5f5;
  font-weight: bold;
  font-size: 18px;
  text-decoration: none;
}

.wrapper .main_container .top_navbar .menu li a:hover:before, .wrapper .main_container .top_navbar .menu li a.active:before {
  display: block;
}

.wrapper .main_container .top_navbar .right_bar {
  display: flex;
  align-item: center;
}

.wrapper .main_container .top_navbar .right_bar li {
  margin: 0 10px;
}

.wrapper .main_container .top_navbar .right_bar .fas {
  font-size: 25px;
  cursor: pointer;
}

.wrapper .main_container .container {
  padding: 50px;
  margin-top: 40px;
}

.wrapper .main_container .container .item {
  background: #fff;
  border-bottom: 1px solid #d9e2e7;
  font-size: 14px;
  line-height: 22px;
  margin-bottom: 15px;
}

.wrapper .sidebar__inner .close {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 25px;
  color: #000;
  display: none;
  cursor: pointer;
}

.sidebar-dropdown-toggle.dropdown-toggle::after {
  position: absolute;
  bottom: 25px;
  right:  20px;
}

.wrapper .sidebar__inner .close:hover {
  opacity: 0.5;
}

@media screen and (max-width: 800px) {
  .wrapper .sidebar__inner {
    left: -100%;
  }
  .wrapper .main_container, .wrapper .main_container .top_navbar {
    margin-left: 0;
    width: 100%;
  }
  .wrapper .main_container .top_navbar {
    left: 0;
  }
  .wrapper.active .sidebar__inner {
    left: 0;
  }
  .wrapper .sidebar__inner .close, .wrapper .main_container .top_navbar .hamburger {
    display: block;
  }
  .wrapper.active .sidebar .bg_shadow {
    visibility: visible;
    opacity: 0.7;
  }
  .wrapper .main_container .container {
    padding: 0px;
    margin-top: 81px !important;
  }
}

@media screen and (max-width: 767px) {
  .container, .container-sm {
    max-width: 683px;
  }
}

@media screen and (max-width: 600px) {
  .wrapper .main_container .container {
    padding: 32px;
    margin-top: 64px !important;
  }
}

@media screen and (max-width: 575px) {
  .wrapper .main_container .container {
    padding: 29px;
    margin-top: 53px !important;
  }
}

@media screen and (max-width: 530px) {
  .wrapper .main_container .top_navbar .menu {
    display: none;
  }
  .wrapper .main_container .container {
    padding: 20px;
    margin-top: 60px !important;
  }
  .wrapper .sidebar__inner {
    overflow: scroll;
  }
}

@media screen and (max-width: 480px) {
  .login-img {
    height: 195vh;
  }
}

@media screen and (max-width: 320px) {
  .login-img {
    height: 140vh;
  }
}

.table {
  width: 100%;
  display: table;
  margin: 0;
}

.sign-out {
  display: flex;
  position: relative;
  align-items: center;
}

.link-signout {
  margin: 0 8px;
  font-size: 18px;
  font-weight: bold;
  display: flex;
  align-items: center;
}

.link-signout span {
  margin-right: 10px;
}

@media (orientation: landscape) {
  .wrapper .sidebar__inner {
    overflow: scroll;
  }
}

@media (orientation: portrait) {
  .wrapper .sidebar__inner {
    overflow: scroll;
  }
}

.table-row.header {
  color: #ffffff;
  background: rgb(35, 127, 71);
}

.icon {
  margin: 0 10px;
  width: 25px;
}

.icon-menu {
  margin: 0 5px;
  display: flex;
  align-items: center;
}

.btn-group {
  cursor: pointer;
}

.icon-lines {
  margin: 0;
  width: 25px;
}