/* General */
body {
  background-color: #f7f7f7;
}

/* Header */

.notification-banner {
  background: var(--accent-color);
}

.dashboard-header {
  background-color: var(--primary-color);
  padding-top: 32px;
  padding-bottom: 32px;
  color: white;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.dashboard-header .dashboard-icon {
  width: 100%;
  max-width: 24px;
}

.dashboard-header a {
  text-decoration: none !important;
}

.dashboard-logo {
  max-width: 175px;
  width: 100%;
  height: auto;
}

.dashboard-header .dashboard-logo-abs {
  position: absolute;
  bottom: 0;
  left: 0;
  top: 0;
  right: 0;
  z-index: 1;
}

.dashboard-header .dashboard-logo-abs .dashboard-logo {
  position: absolute;
  bottom: 0;
  left: 0;
  transform: translateY(50%);
  z-index: 3;
}

.dashboard-header .btn {
  font-size: 20px;
}

/* Hero */
.dashboard-hero {
  padding-top: 100px;
  padding-bottom: 160px;
  background-color: var(--primary-color);
  color: white;
  position: relative;
  margin-bottom: -180px;
}
.dashboard-hero .yellow-lines img {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  height: 100%;
  width: auto;
}

/* Login */
.login-overlay {
  position: fixed;
  overflow-y: auto;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99;
  background-color: var(--primary-color);
  color: white;
}

.login-overlay label {
  display: block;
  font-size: 28px;
  font-weight: 500;
}

.login-overlay input[type="email"],
.login-overlay input[type="password"] {
  border: 1px solid white;
  background-color: white;
  color: var(--text-color);
}

.login-overlay .login-remember label {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  cursor: pointer;
  position: relative;
  justify-content: center;
}

.login-overlay .login-remember input {
  position: relative;
  width: 28px;
  height: 28px;
}

.login-overlay .login-remember input::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  display: block;
  border: 1px solid white;
  position: relative;
  border-radius: var(--border-radius-input);
  background-color: var(--primary-color);
}

.login-overlay .login-remember input:checked::after {
  background-color: white;
}

/* Main */
.dashboard-wrapper {
  padding: 36px;
  background-color: white;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 3px 6px;
  border-radius: var(--border-radius-element);
  height: 100%;
}

.download-card {
  padding: 36px;
  background-color: white;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 3px 6px;
  border-radius: var(--border-radius-element);
  height: 100%;
  display: flex;
  gap: 28px;
  align-items: center;
}

.download-card .file-icon {
  max-width: 50px;
  height: auto;
}

.download-card .download-icon {
  max-width: 32px;
  height: auto;
}

.gfield_label {
  font-size: 24px !important;
  font-weight: 500 !important;
  color: var(--primary-color) !important;
}

.ginput_container input,
.ginput_container textarea {
  border-radius: var(--border-radius-input) !important;
  border: 1px solid var(--primary-color) !important;
  background-color: transparent !important;
  padding: 6px 24px !important;
  width: 100% !important;
  color: var(--text-color) !important;
  max-width: var(--max-width-register) !important;
  font-size: 20px !important;
}

.ginput_container textarea {
  min-height: 160px !important;
}

.previous-image img {
  width: 200px;
  height: auto;
  margin: 25px;
}

/* Mobile */
.mobile-header .dashboard-logo {
  max-width: 80px;
  height: auto;
}
.mobile-header .dashboard-icon {
  height: 36px;
  width: auto;
  max-width: none;
}
.mobile-header .dashboard-menu {
  height: 24px;
  width: auto;
  max-width: none;
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow-y: auto;
  transition: transform 250ms ease-in-out;
  transform: translateX(120%);
  z-index: 20;
  background-color: var(--primary-color);
  color: white;
}

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-menu .dashboard-logo {
  max-width: 100px;
}

.mobile-menu-close {
  position: fixed;
  top: 0;
  right: 0;
  padding: 24px;
  font-size: 28px;
}

.mobile-menu-links {
  font-size: 32px;
  text-align: center;
  font-weight: 500;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-top: 24px;
}

.mobile-menu a {
  text-decoration: none;
  padding: 8px;
}

.mobile-menu-footer  {
  display: block;
  margin: auto;
  text-align: start;
}

.mobile-menu-footer .dashboard-icon{
  max-width: 50px;
}

@media screen and (max-width: 991px) {
  .dashboard-header {
    padding-top: 20px;
    padding-bottom: 20px;
    border-bottom: none !important;
  }

  .dashboard-hero {
    padding-top: 20px;
  }
}

input.gform_button[type=submit] {
  --bs-btn-padding-x: 0.75rem;
  --bs-btn-padding-y: 0.375rem;
  --bs-btn-font-family: ;
  --bs-btn-font-size: 1rem;
  --bs-btn-font-weight: 400;
  --bs-btn-line-height: 1.5;
  --bs-btn-color: var(--bs-body-color);
  --bs-btn-bg: transparent;
  --bs-btn-border-width: var(--bs-border-width);
  --bs-btn-border-color: transparent;
  --bs-btn-border-radius: var(--bs-border-radius);
  --bs-btn-hover-border-color: transparent;
  --bs-btn-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);
  --bs-btn-disabled-opacity: 0.65;
  --bs-btn-focus-box-shadow: 0 0 0 0.25rem rgba(var(--bs-btn-focus-shadow-rgb), 0.5);
  display: inline-block;
  padding: var(--bs-btn-padding-y) var(--bs-btn-padding-x) !important;
  font-family: var(--bs-btn-font-family);
  font-size: var(--bs-btn-font-size);
  font-weight: var(--bs-btn-font-weight);
  line-height: var(--bs-btn-line-height);
  color: var(--bs-btn-color);
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  border: var(--bs-btn-border-width) solid var(--bs-btn-border-color);
  border-radius: var(--bs-btn-border-radius);
  background-color: var(--bs-btn-bg);
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out,
    box-shadow 0.15s ease-in-out;

  box-shadow: none !important;
  font-weight: 700 !important;
  font-size: 26px !important;
  --bs-btn-padding-x: 2rem !important;
  border-radius: var(--border-radius-button) !important;
  border: 2px solid var(--accent-color) !important;
  background: var(--accent-color) !important;
  color: var(--accent-contrast-color) !important;
  margin: auto !important;
  display: block !important;
}