/* cards */
.main-content {
  padding: 0 35px;
  margin-bottom: 2.6rem;
}

.card {
  border-radius: 0.5rem;
  background: var(--background);
  border: var(--card-border);
}

.card.card_blank {
  background: transparent;
  border: none;
}

.shadow {
  box-shadow: var(--box-shadow) !important;
}

.card-header {
  border-top-left-radius: 0.5rem !important;
  border-top-right-radius: 0.5rem !important;
  background: transparent;
  border: none;
}

.card-footer {
  background: var(--background);
  border: none;
  padding: 20px 20px 5px;
}

.card-footer.with_button {
  text-align: center;
}

.card-title {
  margin-top: 6px;
  font-weight: 500;
  font-size: 1.125rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.card-title_buttons {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.btnfilt-group {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.btnfilt-group a {
  box-shadow: var(--button-shadow);
  color: var(--dark);
  border-radius: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2px 2rem;
  font-weight: 400;
  font-size: 0.93rem;
  width: 100%;
  max-width: max-content;
  transition: 0.2s;
  outline: none;
  height: 32px;
  border: 1px solid var(--green);
}

.btnfilt-group a:hover {
  box-shadow: var(--button-hover-shadow);
}

.btnfilt-group_buttons {
  margin-right: 19px;
  color: var(--dark);
}

.btnfilt-group_buttons i {
  margin: 0 7px;
}

.info_more {
  background: var(--red);
  width: 29px;
  height: 29px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 14px;
  box-shadow: 0 1px 1px -1px rgb(0 0 0 / 18%), 0 1px 1px 1px rgb(0 0 0 / 22%);
}

.info_more i {
  color: #fff;
}

.info_more.collapsed {
  box-shadow: var(--link-button-shadow);
  background: var(--link);
}

.info_more:hover {
  box-shadow: 0 1px 1px -1px rgb(0 0 0 / 18%), 0 1px 1px 1px rgb(0 0 0 / 22%);
}

/* protection_2fa */
.protection_2fa {
  position: relative;
  margin-top: 3rem;
  padding-left: 58px;
}

.protection_2fa .card-title {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.protection_2fa img {
  position: absolute;
  width: 41px;
  left: 0;
  top: -3px;
}


.protection_2fa p {
  font-size: 12px;
  font-weight: 500;
  margin-right: 3.5rem;
}

.protection_2fa_switch {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 15px 0 0;
  width: 100%;
}

.protection_2fa_switch button.btn.btn-success,
.protection_2fa_switch button.btn.btn-danger {
  border-radius: 50px;
  margin-left: 3rem;
  padding: 8px 14px;
  background: var(--green);
  color: var(--white);
  width: 170px;
}

.protection_2fa_switch button.btn.btn-danger {
  background: var(--red) !important;
  color: var(--bkack);
}

.protection_2fa_switch button.btn.btn-success svg {
  width: 20px;
  margin-right: 12px;
  fill: var(--white);
}

/* current projects */
.projects {
  height: 395px;
  overflow: hidden;
  overflow-y: auto;
}

.projects svg.empty_icon {
  max-width: 100px;
}

svg.empty_icon {
  width: 100%;
  max-width: 200px;
}

svg.empty_icon .blue {
  fill: var(--blue);
}

svg.empty_icon .dark {
  fill: var(--svg-fill);
}

.projects_card {
  border-radius: 0.5rem;
  background: var(--background);
  border: var(--border-light-dark);
  transition: 0.2s;
  overflow: hidden;
}

.projects_card:hover {
  background: var(--block-hover);
}

.projects_card .c-details {
  width: 100%;
  max-width: calc(100% - 50px);
}

.projects_card .c-details span {
  width: 100%;
}

.projects_card .c-details p {
  font-size: 0.85rem;
}

.web-badge {
  align-items: center;
  padding: 2px;
  display: flex;
  margin-top: 4px;
}

.web-badge span {
  font-size: 12px;
  font-weight: 500;
}

.web-badge svg {
  width: 24px;
  fill: var(--green);
  margin-right: 5px;
}

.web-badge.verified span {
  color: var(--green);
}

.web-badge span {
  color: var(--link);
}

.web-icon {
  width: 50px;
  height: 50px;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
  background: var(--dark-gray-icon);
  flex: 1 0 auto;
}

.web-icon svg {
  width: 45px;
  height: 45px;
  position: relative;
  fill: var(--link);
}

/* statistics_cards */
.statistics_cards {
  padding: 0;
  align-items: center;
  justify-content: space-between;
}

.cards {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  margin: 0px auto 12px auto;
}

.stat-card-left {
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 10px;
  flex: 1 0 55px;
}

.stat-card-left.green {
  background-color: #4baa6c;
}

.stat-card-left.red {
  background-color: #df5552;
}

.stat-card-left.blue {
  background-color: #6e6cca;
}

.stat-card-left.yellow {
  background-color: #e9aa28;
}

.stat-card-left svg {
  fill: #fff;
  width: 70%;
}

.stat-card-right {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin-left: 10px;
  flex: 1 0 calc(100% - 75px);
  flex-direction: column;
  color: var(--title-text-color-dark);
}

.stat-card-right .name {
  font-size: 0.985rem;
}

.cards > .stat-card {
  width: calc(100% / 3 - 8px) ;
  height: 100px;
}

.stat-card {
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--dark-primary);
  margin: 0 0 7px 0;
  box-shadow: var(--box-big-shadow);
}

.cards > .stat-card > p {
  color: #fff;
  margin: 2px auto;
  text-align: center;
}

@media (max-width: 1200px) {
  .cards > .stat-card {
    flex: 0 0 auto;
    width: 31.33333333%;
  }
}

/* theme-manager-btn */
.theme-manager-btn {
  width: 54px;
  height: 25px;
  background: var(--dark-light-icon);
  border-radius: 50px;
  position: relative;
  outline: none;
  border: none;
  box-shadow: 0px 0px 0px 1px rgb(255 255 255 / 40%);
  margin: 0 15px;
}

.light .theme-manager-btn {
  box-shadow: 0px 0px 0px 1px rgb(0 0 0 / 40%);
  background: #ffffff;
}

.dark .theme-manager-btn_switch {
  box-shadow: 3px 0px 0 -1px rgb(0 0 0 / 17%), 3px 1px 3px 2px rgb(0 0 0 / 20%);
}

.theme-manager-btn_switch {
  width: 21px;
  height: 21px;
  background: #fff;
  border-radius: 100%;
  position: absolute;
  top: 2px;
  left: 4px;
  transition: 0.3s all cubic-bezier(0.86, 0, 0.07, 1);
  z-index: 10;
  box-shadow: -3px 0px 0 -1px rgb(0 0 0 / 17%),
    -3px 1px 3px 2px rgb(0 0 0 / 20%);
}

.theme-manager-btn_switch svg {
  width: 19px;
  height: 19px;
  position: relative;
  display: block;
  fill: #000;
  transition: 0.01s;
}

.light .theme-manager-btn_switch {
  transform: translateX(26px);
}

.theme-manager-btn_svg {
  z-index: 20;
  position: absolute;
  left: 0;
  top: 0;
  padding: 0;
  width: 21px;
  height: 21px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: 0s all ease;
  opacity: 1;
}

.dark .theme-manager-btn_svg.__light {
  opacity: 0;
}

.light .theme-manager-btn_svg.__dark {
  opacity: 0;
}

.login {
  min-height: 100vh;
  background-color: #252d34;
}

.bg-image {
  background-image: url(/assets/img/bg.jpg);
  background-size: cover;
  background-position: center;
  background-blend-mode: multiply;
  background-color: #4baa6c;
  background-repeat: no-repeat;
}

.bg-image:after {
  content: "";
  position: absolute;
  width: calc(50% - 6px);
  height: 100%;
  backdrop-filter: blur(7px);
  pointer-events: none;
}

.login-heading {
  font-weight: 300;
}

.btn-login {
  font-size: 0.9rem;
  letter-spacing: 0.05rem;
  padding: 0.75rem 1rem;
}

/* check slider */
.set_checker {
  display: flex;
  margin: 10px 10px 10px 45px;
  align-items: center;
}

.set_checker > p {
  margin-left: 67px;
  line-height: 28px;
}

.dark .slider {
  background: #6c6c6c;
  box-shadow: inset 0 3px 6px 0px rgba(0, 0, 0, 0.8),
    inset 0px -1px 3px rgba(0, 0, 0, 0.7);
}

.switch {
  position: relative;
  display: inline-block;
  height: 100%;
  z-index: 50;
  width: 100%;
  max-width: max-content;
  margin-top: 8px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 54px;
  height: 21px;
  position: relative;
  display: inline-block;
  box-shadow: inset 0 3px 3px rgba(0, 0, 0, 0.25),
    inset 0px -1px 3px rgba(0, 0, 0, 0.25);
  border-radius: 50px;
}

.slider:before {
  content: "\F62A";
  border-radius: 50px;
  font-family: "bootstrap-icons";
  font-weight: bold;
  font-size: 24px;
  background-color: white;
  color: var(--red);
  overflow: hidden;
  position: absolute;
  display: inline-block;
  vertical-align: middle;
  line-height: 30px;
  text-align: center;
  width: 28px;
  height: 28px;
  top: -4px;
  -webkit-box-shadow: 0px 0px 6px 1px rgb(0 0 0 / 20%),
    0px 0px 1px 1px rgb(0 0 0 / 23%);
  box-shadow: 0px 0px 6px 1px rgb(0 0 0 / 20%), 0px 0px 1px 1px rgb(0 0 0 / 23%);
  -webkit-transition: 0.3s all cubic-bezier(0.86, 0, 0.07, 1);
  transition: 0.3s all cubic-bezier(0.86, 0, 0.07, 1);
}

.dark .slider:before {
  -webkit-box-shadow: 0px 0px 8px 1px rgb(0 0 0 / 45%),
    0px 0px 1px 1px rgb(0 0 0 / 27%);
  box-shadow: 0px 0px 8px 1px rgb(0 0 0 / 45%), 0px 0px 1px 1px rgb(0 0 0 / 27%);
}

.switch input:checked + .slider {
  background: #00e751;
}

.dark .switch input:checked + .slider {
  background: #298b4b;
}

.switch input:checked + .slider:before {
  content: "\F633";
  background: var(--green);
  color: #fff;
  font-size: 19px;
}

.switch input:checked + .slider:before {
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transform: translateX(100%);
}

.indicators {
  text-transform: uppercase;
  font-weight: bold;
}

.indicators::before,
.indicators::after {
  position: absolute;
  line-height: 22px;
  cursor: pointer;
}

.indicators::before {
  left: -40px;
  text-align: right;
  content: attr(data-label-off);
}

.indicators::after {
  right: -40px;
  text-align: left;
  content: attr(data-label-on);
}

.switch input:not(:checked) ~ .indicators::before {
  color: var(--red);
}

.switch input:checked ~ .indicators::after {
  color: var(--green);
}

/* --*/
.container-window {
  background-color: #fff;
  margin: 6px;
  box-shadow: 0px 0px 10px #00000021;
  border-radius: 3px;
}

.container-window > .topbar {
  border-bottom: 1px solid #e3e3e3;
  padding: 16px 21px;
  font-size: 16px;
}

.container-window > .content {
  padding: 20px;
}

/* header */
.header {
  width: 100%;
  max-width: 100%;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  padding: 0.2rem 2rem;
}

.header_left {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.back_header {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 34px;
  width: 34px;
  border-radius: 50%;
  background: var(--dark-light-icon);
  font-size: 16px;
  box-shadow: var(--link-button-shadow);
}

.back_header i {
  color: var(--dark);
}

.back_header:hover {
  box-shadow: 0 1px 1px -1px rgb(0 0 0 / 18%), 0 1px 1px 1px rgb(0 0 0 / 22%);
}

.header_right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.settingsmenu {
  width: 100%;
  max-width: max-content;
  min-width: 260px;
}

.settings_body {
  width: 100%;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  margin: 7px 0;
}

.settings_link {
  padding: 7px 15px;
  width: 100%;
  margin: 9px 0;
  color: var(--dark);
}

.settings_link svg {
  width: 1.25rem;
  margin-right: 14px;
  fill: var(--svg-fill);
}

.settings_footer {
  border-top: var(--border-light-dark);
  width: 100%;
  text-align: center;
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
}

.settings_footer svg {
  width: 1.25rem;
  margin-right: 9px;
  fill: var(--red);
}

.settings_footer:hover {
  color: var(--red);
  background: var(--block-hover);
}

.settings_link:hover svg {
  fill: var(--link-hover);
}

.settings_link:last-child {
  border: none;
}

.settings_wrapper {
  margin: 0 0.45rem;
}

.settings-bell {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  padding: 8px;
  height: 34px;
  width: 34px;
  background: var(--dark-light-icon);
  box-shadow: var(--link-button-shadow);
  position: relative;
}

.settings-bell:hover {
  box-shadow: 0 1px 1px -1px rgb(0 0 0 / 18%), 0 1px 1px 1px rgb(0 0 0 / 22%);
}

.dropdown-toggle.settings-bell:after {
  display: none;
}

.settings-bell svg {
  height: 1.5rem;
  fill: var(--svg-fill);
}

.settings_header {
  border-bottom: var(--border-light-dark) !important;
  width: 100%;
  display: block;
  text-align: center;
  padding: 15px;
}

.settings_wrapper .dropdown-menu {
  font-size: 0.875rem;
  color: #374151;
  text-align: left;
  list-style: none;
  background-color: var(--background);
  background-clip: padding-box;
  border-radius: 0.35rem;
  box-shadow: var(--shadow-menu);
  padding: 0;
  margin-top: 15px !important;
  border: none;
}

.notifications_wrapper {
  margin: 0 0.85rem;
}

.notification_button {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.notification-bell {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  padding: 8px;
  height: 34px;
  width: 34px;
  background: var(--dark-light-icon);
  box-shadow: var(--link-button-shadow);
  position: relative;
}

.notification-bell:hover {
  box-shadow: 0 1px 1px -1px rgb(0 0 0 / 18%), 0 1px 1px 1px rgb(0 0 0 / 22%);
}

.notification-bell svg {
  fill: var(--svg-fill);
  width: 100%;
  height: 100%;
}

.dropdown-toggle.notification-bell:after {
  display: none;
}

.notifications_wrapper .dropdown-menu {
  font-size: 0.875rem;
  color: #374151;
  text-align: left;
  list-style: none;
  background-color: var(--background);
  background-clip: padding-box;
  border-radius: 0.35rem;
  box-shadow: var(--shadow-menu);
  padding: 0;
  margin-top: 15px !important;
  border: none;
}

.dropdown-menu[data-bs-popper] {
  right: 0;
  left: inherit;
}

.notifications {
  width: 100%;
  max-width: max-content;
  min-width: 260px;
}

.notifications_header {
  border-bottom: var(--border-light-dark) !important;
  width: 100%;
  display: block;
  text-align: center;
  padding: 15px;
}

.notifications_body {
  width: 100%;
  max-width: 100%;
  display: flex;
  flex-direction: column;
}

.notifications_message {
  padding: 15px;
  width: 100%;
  border-bottom: var(--border-light-dark);
}

.notifications_message:last-child {
  border: none;
}

.notifications_footer {
  border-top: var(--border-light-dark);
  width: 100%;
  text-align: center;
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.notifications_footer svg {
  width: 15px;
  fill: var(--link);
  margin-right: 0.15rem;
}

.notifications a:hover {
  background: var(--block-hover);
}

.main-header h1 {
  display: flex;
  align-items: center;
  font-size: 1.425rem;
}

.main-header h1 svg {
  fill: var(--svg-fill);
  width: 1.25rem;
  margin-right: 1rem;
}

.main-header .badge {
  color: var(--text-color-dark);
  font-size: 0.92rem;
  padding: 0;
  font-weight: 400;
  margin-top: 0.45rem;
  width: 100%;
  text-align: left;
}

.main-header .badge strong {
  color: var(--dark);
  font-weight: 500;
  font-size: 0.94rem;
}

.main-header {
  width: 100%;
  padding: 1rem 39px;
  margin-top: 0;
  margin-bottom: 0.5rem;
  position: relative;
}

.main-header p {
  line-height: 10px;
  color: #686868;
}

main:not(.ws) {
  width: calc(100% - 296px);
  margin-left: var(--sidebar-width);
}

/* sidebar */
.sidebar {
  width: var(--sidebar-width);
  height: 100vh;
  position: fixed;
  background: var(--dark-primary);
}

.sidebar-header {
  display: flex;
  margin: 29px 12px;
  justify-content: start;
  padding: 10px;
}

.mobile {
  display: none;
}

.logo-text {
  margin: 4px 13px;
  color: var(--white);
}

.logo-text h1 {
  font-size: 18px;
}

.logo-text p {
  line-height: 5px;
  font-size: 14px;
}

.logo-image {
  width: 55px;
  height: 55px;
  position: relative;
  display: block;
}

.logo-image:after {
  content: "";
  background: url(/assets/img/waf_logo.svg);
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.dark .logo-image:after {
  background: url(/assets/img/waf_logo_white.svg);
}

.sidebar_menu {
  margin: 0;
  margin-left: 20px;
  height: 100%;
}

.menu-item-title {
  color: #7c7c7c;
  margin: 34px 12px 0px 11px;
  text-transform: uppercase;
}

.menu-item-title:first-child {
  margin: 2rem 12px 2rem 7px;
}

.menu-item_sidebar {
  border-top-left-radius: 0.5rem;
  border-bottom-left-radius: 0.5rem;
  margin-top: 12px;
  position: relative;
}

.menu-item_sidebar:hover {
  background-color: var(--menu-hover-black);
}

.menu-item_sidebar.active {
  background: var(--dark-icon);
}

.menu-item_sidebar:after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 2px;
  height: 100%;
  background: transparent;
}

.menu-item_sidebar:hover:after {
  background: var(--red);
  opacity: 0.5;
}

.menu-item_sidebar.active:hover:after {
  opacity: 1;
}

.menu-item_sidebar.active a {
  color: var(--red);
}

.menu-item_sidebar svg {
  fill: var(--svg-fill);
  margin-right: 15px;
  width: 19px;
  height: 19px;
}

.menu-item_sidebar.active svg {
  fill: var(--red);
}

.menu-item_sidebar a {
  color: var(--title-text-color-dark);
  display: block;
  font-size: 16px;
  padding: 12px 17px;
  display: flex;
  align-items: center;
}

.menu-items {
  list-style-type: none;
  overflow: auto;
  height: calc(100% - 152px);
}

/* modules */
.modules span {
  width: 100%;
  display: block;
  padding: 3px 25px;
  text-align: center;
  margin-bottom: 2rem;
}

.modules a {
  display: block;
  margin: 0 auto;
  width: 100%;
  max-width: max-content;
}

.modules .nonactive {
  display: block;
  margin: 0 auto;
  width: 100%;
  max-width: max-content;
}

.modules .nonactive button {
  margin: 2rem auto 1rem;
  background: var(--dark-primary);
  color: var(--gray);
  border: 2px solid var(--red);
}

.modules .nonactive button i {
  display: none;
}

.modules button {
  margin: 2rem auto 1rem;
}

.modules_header {
  width: 100%;
  height: 100%;
  max-height: 200px;
  align-items: center;
  justify-content: center;
  display: flex;
  padding: 1rem;
  margin-bottom: 0.5rem;
}

.modules_header svg {
  width: 100%;
  max-width: 75px;
}

.modules-on svg {
  fill: var(--green);
}

.modules-off svg {
  fill: var(--red);
}

.modules_name {
  text-align: center;
  padding: 7px 25px 20px;
  font-size: 1.1rem;
}

.modules-on .modules_name i {
  color: var(--green);
  margin-left: 7px;
}

.modules-off .modules_name i {
  color: var(--red);
  margin-left: 7px;
}

.module_description h3 {
  font-size: 1.125rem;
  color: var(--title-text-color-dark);
}

.module_description p {
  line-height: inherit;
  color: var(--gray);
}

.module_description {
  margin: 30px 0;
  display: block;
  width: 100%;
  max-width: 465px;
}

.module_status {
  width: 100%;
  max-width: max-content;
  padding: 1rem 2.2rem;
  margin: 2rem 0;
  border-radius: 0.25rem;
}

.module_status i {
  font-size: 19px;
}

/* navbar home page */
.home_wrapper {
  width: 100%;
}

.navbar {
  padding: 12px 25px;
  width: 100%;
  max-width: 1260px;
  margin: 0 auto;
  height: 60px;
}

.logo-container {
  display: flex;
  align-items: center;
}

.logo-container .logo-image {
  width: 40px;
  height: 40px;
}

.navbar-left {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.navbar-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.home_inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  height: auto;
  min-height: 85vh;
  max-height: 100%;
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  position: relative;
}

.home_inner.projects_page {
  height: 85vh;
}

.home_inner-header {
  margin: 20px auto;
  width: 100%;
  text-align: center;
  padding: 2rem 35px 1rem;
}

.home_inner-header h2 {
  font-size: 32px;
}

.home_inner-header span {
  padding: 13px 0;
  display: block;
}

.home_inner-body {
  margin: 0 auto;
  padding: 0.2rem 2px;
}

.projects_page .home_inner-body .row {
  height: 100%;
  max-height: 53vh;
  overflow: hidden;
  overflow-y: auto;
}

.home_inner .butn.add-new-button {
  position: absolute;
  bottom: 2rem;
  left: 100px;
}

.no-link,
.no-link:hover {
  text-decoration: none;
  color: inherit;
}
