﻿/* Please see documentation at https://docs.microsoft.com/aspnet/core/client-side/bundling-and-minification
for details on configuring this project to bundle and minify static web assets. */

a.navbar-brand {
  white-space: normal;
  text-align: center;
  word-break: break-all;
}

/* Provide sufficient contrast against white background */
a {
  color: #0366d6;
}

.btn-primary {
  color: #fff;
  background-color: #1b6ec2;
  border-color: #1861ac;
}

.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
  color: #fff;
  background-color: #1b6ec2;
  border-color: #1861ac;
}

/* Sticky footer styles
-------------------------------------------------- */
html {
  font-size: 14px;
}
@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.border-top {
  border-top: 1px solid #e5e5e5;
}
.border-bottom {
  border-bottom: 1px solid #e5e5e5;
}

.box-shadow {
  box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05);
}

button.accept-policy {
  font-size: 1rem;
  line-height: inherit;
}

/* Sticky footer styles
-------------------------------------------------- */
html {
  position: relative;
  min-height: 100%;
}

body {
  /* Margin bottom by footer height */
  margin-bottom: 60px;
}
.footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  white-space: nowrap;
  line-height: 60px; /* Vertically center the text there */
}


/* Material Symbols */
.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24
}

.material-symbols-outlined.fw-100 {font-variation-settings: 'FILL' 0, 'wght' 100, 'GRAD' 0, 'opsz' 24 }
.material-symbols-outlined.fw-200 {font-variation-settings: 'FILL' 0, 'wght' 200, 'GRAD' 0, 'opsz' 24 }
.material-symbols-outlined.fw-300 {font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 24 }
.material-symbols-outlined.fw-400 {font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24 }
.material-symbols-outlined.fw-500 {font-variation-settings: 'FILL' 0, 'wght' 500, 'GRAD' 0, 'opsz' 24 }
.material-symbols-outlined.fw-600 {font-variation-settings: 'FILL' 0, 'wght' 600, 'GRAD' 0, 'opsz' 24 }
.material-symbols-outlined.fw-700 {font-variation-settings: 'FILL' 0, 'wght' 700, 'GRAD' 0, 'opsz' 24 }

.material-symbols-outlined.fw-100.fill {font-variation-settings: 'FILL' 1, 'wght' 100, 'GRAD' 0, 'opsz' 24 }
.material-symbols-outlined.fw-200.fill {font-variation-settings: 'FILL' 1, 'wght' 200, 'GRAD' 0, 'opsz' 24 }
.material-symbols-outlined.fw-300.fill {font-variation-settings: 'FILL' 1, 'wght' 300, 'GRAD' 0, 'opsz' 24 }
.material-symbols-outlined.fw-400.fill {font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 24 }
.material-symbols-outlined.fw-500.fill {font-variation-settings: 'FILL' 1, 'wght' 500, 'GRAD' 0, 'opsz' 24 }
.material-symbols-outlined.fw-600.fill {font-variation-settings: 'FILL' 1, 'wght' 600, 'GRAD' 0, 'opsz' 24 }
.material-symbols-outlined.fw-700.fill {font-variation-settings: 'FILL' 1, 'wght' 700, 'GRAD' 0, 'opsz' 24 }


/* TEMP RODEO STYLES UNTIL AWS CACHE IS UPDATED */
[id^="rodeo-"].Div.d-none {
    display: none !important;
}

.rodeo-accordion-item {
    margin-top: -1px;
}

.rodeo-accordion-header {
    cursor: pointer;
    width: 100%;
}

    .rodeo-accordion-header.active .rodeo-icon-expand,
    .rodeo-accordion-header:not(.active) .rodeo-icon-collapse {
        display: none !important;
    }

.rodeo-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.rodeo-marquee {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    box-sizing: border-box;
}

.rodeo-marquee-inner {
    display: inline-block;
    white-space: nowrap;
    animation: marquee 75s linear infinite;
}

    .rodeo-marquee-inner span {
        display: inline-block;
    }

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}