:root {
  --theme-primary-color: #7a8d46;
  --theme-secondary-color: #f4b85d;
}

html, body {
  font-size: 14px;
  font-family: 'Montserrat', sans-serif !important;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

main {
  min-height: 500px;
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

.custom-toggler .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255,255,255, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
}

.custom-toggler.navbar-toggler {
  border-color: white;
} 

.letter-spacing {letter-spacing: 2px; line-height: 40px;}

.divider {
  border-top: 3px solid #7a8d46;
  max-width: 100px;
  height:3px;
}

.text-theme-primary {
  color:var(--theme-primary-color);
}

.brand_logo_container {
  position: absolute;
  border-radius: 50%;
  background: var(--theme-primary-color);
  text-align: center;
}

.brand_logo_container.danger {
  background: #dc3545 !important;
}

.brand_logo {
  height: 150px;
  width: 150px;
  margin-bottom: 1px;
  border-radius: 50%;
}

.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);
}

.nav-link:hover {
  color: var(--theme-secondary-color) !important;
}

.nav-link {
  position: relative;
  display: inline-block;
  text-decoration: none; /* Disable the default underline */
  color: inherit;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px; /* Distance below the text */
  width: 100%;
  height: 2px; /* Thickness of the underline */
  background-color: var(--theme-secondary-color);
  opacity: 0;
  transform: scaleX(0);
  transition: transform 0.2s ease, opacity 0.2s ease;
  transform-origin: left;
}

.nav-link:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-link.active::after {
  opacity: 1;
  transform: scaleX(1);
}



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;
}

.listing-item 
{
  position: relative;
  text-decoration: none !important;
  display: inline-block;        
  width: 400px;  
  height:600px;             
  margin: 10px;               
  text-align: left;          
  vertical-align: top;         
}

.listing-item a {
  text-decoration: none !important;
  color: var(--bs-body-color);
}

.listing-header {
  text-decoration: none !important;
  display: block;              
  width: 100%;    
  color: var(--theme-primary-color) !important;
  font-size: 1.6rem !important;
  font-weight: 500 !important;

  white-space: normal !important;          
  overflow-wrap: break-word !important;  
  word-break: break-word !important; 
}

.listing-footer {
  position: absolute;
  bottom: 0;
  padding-bottom: 8px;
  width: 90%;
  background-color: rgba(255, 255, 255, 0.635);
  text-align: center;
}

.btn-space {
  letter-spacing: 4px !important;
  padding: 1rem !important;
}

.space-menu {
  letter-spacing: 3px !important;
}

