﻿/* ----------------------------------------------------------------
	Custom AG Styles
-----------------------------------------------------------------*/
img.games{
    margin-bottom: 20px;
}
table.table-condensed th,
table.table-condensed td{
    padding: .25rem;
}
ul.sidenav {
    margin-left: 0;
}
.form-check-input {
    margin-top: 0.4rem;
}
.form-check label{
    text-transform: none;
    font-size: 1rem;
    font-weight: 400;
}
.widget.ag-subscribe-widget {
    background-color: #285aa6;
    margin-top: 0px;
    padding-top: 50px;
}
ol{
    margin-left: 30px;
}

/* UAT - 20200520 - reduce left margin for ul tags on smaller screens */
@media (max-width: 767px){
    ul {
        margin-left: 0px;
    }
}

/* UAT - 20200520 - hide this whenever #mid-social is displayed */
@media only screen and (max-width: 767px) {
    .ag-subscribe-widget .col-las {
        display: none;
    }
}

/* UAT - 20200528 - display news list bullet symbols on smaller screens and add margin between list items */
/* No bullets ever for first li tag displaying the year */
.news-body ul li:first-child {
    list-style: none;
}
@media (max-width: 767px) {
    .news-body ul li {
        margin-bottom: 10px;
    }
}
@media (min-width: 575.99px) {
    .news-body ul {
        list-style: none;
    }
}

/* UAT - 20200528 - remove indent from promo content */ 
/* Center content on smaller screens */
.promos-body ol{
    margin-left: 0;
}
@media (max-width: 767px){
    .promos-body .row{
        text-align: center;
    }
}

/* prevent stretched images in winner list under promos */
.promos-winner-list img {
    width: 100%;
    height: 100%;
}

/* reduce bottom margins for smaller headers */
h3, h4, h5, h6{
    margin: 0 0 10px 0;
}