html {
    overflow-y: scroll;
}
body {
    padding-top: 10px;
    background: url(/Uploads/Public/Homepage/Audience.jpg) no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

footer {
    margin: 50px 0;
}

.navbar-nav .hsnNavLink {
    text-transform: uppercase;
    font-weight: bold;
    color: #000;
}

.hsnBody {
    background: #fff;
}

#webcastStatus {
    padding: 20px;
}

/* Set width on the form input elements since they're 100% wide by default */
input,
select,
textarea {
    max-width: 280px;
}

/* styles for validation helpers */
.field-validation-error {
    color: #b94a48;
}

.field-validation-valid {
    display: none;
}

input.input-validation-error {
    border: 1px solid #b94a48;
}

input[type="checkbox"].input-validation-error {
    border: 0 none;
}

.validation-summary-errors {
    color: #b94a48;
}

.validation-summary-valid {
    display: none;
}

/* http://www.colorzilla.com/gradient-editor/#eeeeee+0,cccccc+100;Gren+3D */
.navbar-ex1-collapse {
    background: #eeeeee; /* Old browsers */
    background: -moz-linear-gradient(top,  #eeeeee 0%, #cccccc 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#eeeeee), color-stop(100%,#cccccc)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top,  #eeeeee 0%,#cccccc 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top,  #eeeeee 0%,#cccccc 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top,  #eeeeee 0%,#cccccc 100%); /* IE10+ */
    background: linear-gradient(to bottom,  #eeeeee 0%,#cccccc 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#eeeeee', endColorstr='#cccccc',GradientType=0 ); /* IE6-9 */

    -webkit-border-top-left-radius: 5px;
    -webkit-border-top-right-radius: 5px;
    -moz-border-radius-topleft: 5px;
    -moz-border-radius-topright: 5px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

.homepageBg {
    background: #000 url('/Uploads/Public/Homepage/racer_black5.jpg') no-repeat top;
    background-size: 1170px;
    height: 280px;
    z-index: 50;
    box-shadow: 3px 3px 5px 1px #2A2A2A inset;
    margin-left: auto;
    margin-right: auto;
    text-align:right;
    padding-right:10px;
}

.homepageHeader {
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(100, 100, 100, .3);
    font-size: 22px;
    color: #000000;
}

.webcast-section {
    margin-bottom: 28px;
}

.webcast-section-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
    padding-bottom: 8px;
    border-bottom: 3px solid #002D66;
}

.webcast-section-header .homepageHeader {
    margin: 0;
    font-size: 22px;
}

.webcast-section-all {
    font-size: 14px;
    font-weight: 600;
    color: #002D66;
    text-decoration: none;
    white-space: nowrap;
}

.webcast-section-all:hover,
.webcast-section-all:focus {
    color: #001a3d;
    text-decoration: underline;
}

.webcast-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 16px;
}

.webcast-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid #e6e6e6;
    border-radius: 10px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .08);
    transition: transform .18s ease, box-shadow .18s ease;
    height: 100%;
}

.webcast-card:hover,
.webcast-card:focus {
    text-decoration: none;
    color: inherit;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, .12);
}

.webcast-card:focus-visible {
    outline: 3px solid #002D66;
    outline-offset: 2px;
}

.webcast-card-media {
    position: relative;
    aspect-ratio: 1 / 1;
    background: #1a1a1a;
    overflow: hidden;
}

.webcast-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.webcast-card-media--fallback {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(160deg, #002D66 0%, #2c2756 100%);
    color: #fff;
}

.webcast-card-calendar {
    text-align: center;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.webcast-card-calendar-month {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: #e8c56b;
}

.webcast-card-calendar-day {
    display: block;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: 0;
}

.webcast-card-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #002D66;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    padding: 3px 8px;
    border-radius: 999px;
}

.webcast-card-badge--live {
    background: #c0392b;
}

.webcast-card-body {
    padding: 10px 12px 12px;
}

.webcast-card-name {
    font-weight: 700;
    font-size: 14px;
    line-height: 1.3;
    color: #111;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 4px;
}

.webcast-card-meta {
    font-size: 12px;
    color: #666;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.webcast-card-dates {
    font-weight: 600;
    color: #002D66;
}

.webcast-card-date-label {
    display: inline-block;
    min-width: 2.6em;
    font-weight: 700;
    color: #666;
}

@media (max-width: 576px) {
    .webcast-card-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .webcast-card-calendar-day {
        font-size: 28px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .webcast-card {
        transition: none;
    }

    .webcast-card:hover,
    .webcast-card:focus {
        transform: none;
    }
}

.homepageNewHorseClassifiedsHeader, .homepageNewTrailerClassifiedsHeader {
    text-align: center;
    background-color: #002D66;
    color: #ffffff;
    font-weight: bold;
    font-family: arial;
    font-size: 18px;
}

.homepageNewHorseClassifiedsHeader a, .homepageNewTrailerClassifiedsHeader a {
    color: #FFF;
}

.bhwTheaterMainOLD {
    width: 1043px;
    background: #000000 url('/Uploads/Public/Classifieds/BarrelHorseTheaterBackground.jpg') no-repeat scroll;
    margin: 0 auto;
    padding: 20px;
    height: 575px;
    color: #FFF;
}

.theaterVideoBox {
	background-color:#666666;
	padding-top:10px;
	text-align:center;
}

.bhwTheaterContent {
    background: #c0c0c0;
    color: #000;
}

.hsnNormalContent {
    background: #000;
    color: #EEE;
}

.hsnNormalContentInverse {
    background: #FFF;
    color: #000;
    padding: 20px 0;
}

.hsnNormalContentInverse:after, .hsnNormalContentInverse:before {
    display: table;
    content: " ";
}

.hsnSidebarContent {
    text-align: center;
    background: #F0F0F0;
    color: #000;
    padding: 20px 10px;
    width: 100%;
    margin: 0 auto;
}

table.webcastLinks {
    margin: 20px auto; 
    width:90%;
    max-width:90%; 
    color: rgb(68, 68, 68); 
    font-family: Verdana, Geneva, Arial, Helvetica, sans-serif; 
    background-color: rgb(255, 255, 204);
}

table.webcastLinks td {
    border-bottom-style: solid; 
    border-bottom-color: rgb(221, 221, 221); 
    font-size: 12px; 
    vertical-align: middle; 
    padding: 3px;
}

.footer {
    background: #eeeeee; /* Old browsers */
    background: -moz-linear-gradient(top,  #cccccc 0%, #eeeeee 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#cccccc), color-stop(100%,#eeeeee)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top,  #cccccc 0%,#eeeeee 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top,  #cccccc 0%,#eeeeee 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top,  #cccccc 0%,#eeeeee 100%); /* IE10+ */
    background: linear-gradient(to bottom,  #cccccc 0%,#eeeeee 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#eeeeee', endColorstr='#cccccc',GradientType=0 ); /* IE6-9 */
    padding-top: 10px;
    padding-bottom: 10px;
}

.navbar {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: 0;
    border-left: 0;
    border-right: 0;
}

#webcastRacers {
    max-height: 350px;
    overflow: auto;
}

.panel-body {
	color:black;
}
