html {
  font-size: 14px;
  overflow-x: hidden;
}

body {
  background-color: var(--theme-primary-color);
}

footer {
  width: 100vw;
  background-color: var(--theme-primary-color);
  color: var(--theme-text-color);
}

footer a {
  color: var(--theme-text-color);
}

main {
  background-color: var(--bs-body-bg);
  min-height: 90vh;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus,
.btn:active:focus,
.btn-link.nav-link:focus,
.form-control:focus,
.form-check-input:focus {
  box-shadow: 0 0 0 0.1rem var(--theme-text-color), 0 0 0 0.25rem #575e94;
}

/* html,
body {
  position: relative;
  height: 100vh;
} */

.navbar {
  background-color: var(--theme-primary-color) !important;
}

.navbar a {
  color: var(--theme-text-color) !important;
}

.dropdown-menu {
  background-color: var(--theme-primary-color);
}

a.dropdown-item:hover {
  background-color: #6c757d;
}

.btn-primary {
  background-color: var(--theme-primary-color);
  border-color: var(--theme-primary-color);
}

.btn-primary:hover {
  background-color: var(--theme-secondary-color);
}

.btn-icon {
  color: var(--theme-primary-lighter-color);
}

.btn-icon:hover {
  color: var(--theme-secondary-color);
}

.nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
  color: #fff;
  background-color: var(--theme-primary-color);
}

.nav-link {
  color: var(--theme-primary-color);
}

table {
  border-collapse: separate;
  border-radius: 5px;
  border: 1px solid #ced4da;
}

td,
th {
  padding: 0.5rem !important;
}

th {
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  font-weight: 300 !important;
}

th {
  font-weight: bolder;
  border: none !important;
}

td:first-child,
th:first-child {
  border-left: none;
}

.selected {
  background-color: #0033a122;
}

small {
  font-size: 0.6rem;
}

@media screen and (max-width: 768px) {
  h2 {
    font-size: 1.5rem !important;
  }
}

.checkbox-lg {
  transform: scale(2);
}

[ng\:cloak],
[ng-cloak],
[data-ng-cloak],
[x-ng-cloak],
.ng-cloak,
.x-ng-cloak {
  display: none !important;
}

.brand_logo_container {
  position: absolute;
  /* top: -75px; */
  border-radius: 50%;
  background: var(--theme-primary-color);
  padding: 10px;
  text-align: center;
}

.brand_logo_container.danger {
  background: #dc3545 !important;
}

.brand_logo {
  height: 150px;
  width: 150px;
  border-radius: 50%;
  border: 2px solid var(--theme-text-color);
}

.arrow-down {
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #585656;
  animation: arrow-down-animation 1s infinite;
}

.arrow-down-color1 {
  border-top: 10px solid #d2cfcf;
  margin-top: -30px;
}

.arrow-down-color2 {
  border-top: 10px solid #969292;
}

.arrow-down-color3 {
  border-top: 10px solid #585656;
}

@keyframes arrow-down-animation {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(0);
  }
}

@media (max-width: 330px) {
  .hide-xxs {
    display: none;
  }
}

 .hero-gradient-bg {
      /* Fallback color for very old browsers */
      background-color: var(--theme-primary-color); 
      /* The gradient */
      background: linear-gradient(to bottom, var(--theme-primary-color), var(--theme-primary-lighter-color));
  }