/**
 * Referenced often
 */

/** Mobile */
@media only screen and (max-width: 767px) {

    .mobileHide {
        display: none;
    }

    .btn-success, .btn-danger {
        width: 100%;
    }
}

/** Tablet */
@media only screen and (max-width: 991px) {

    .tabletHide {
        display: none;
    }
}

/** Desktop */
@media only screen and (min-width: 767px) {

    .desktopHide {
        display: none;
    }
}

.hideMe {
    display: none;
}
.displayNone {
    display: none;
}

.width100 {
    width: 100%;
}

.textCenter {
    text-align: center !important;
}

.textLeft {
    text-align: left !important;
}

.textRight {
    text-align: right !important;
}

.textShadow {
    text-shadow: 0 3px 19px #000000DE;
}

.boxShadow {
    box-shadow: 2px 2px 5px #00000029;
}

.tylerBlue {
    color: #0466BC !important;
}
.tylerBlueBg {
    /*background-color: #004B8D; OLD */
    background-color: #0466BC;
}

.tylerGray {
    color: #EFEFEF;
}
.tylerGrayBg {
    background-color: #EFEFEF;
}

.tylerDarkGray {
    color: gray;
}
.tylerDarkGrayBg {
    background-color: gray;
}

.tylerOrange {
    color: #FF6600;
}
.tylerOrangeBg {
    background-color: #FF6600;
}

.blueButton {
    background-color: #0466BC;
    color: white !important;
    border-radius: 35px;
    padding: 10px 30px 10px 30px;
    border: none;
}

.white {
    color: white !important;
}

.black {
    color: black;
}

.charcoalBg {
    background-color: #000000DE;
}

.noWrap {
    white-space: nowrap;
}

.bigCheck {
    height: 24px;
    width: 24px;
    margin-top: 5px;
}

.hoverPoint:hover {
    cursor: pointer;
}

.round {
    border-radius: 25px;
}
.softCorners {
    border-radius: 5px;
}

.verticalTop {
    vertical-align: top;
}

.pad10 {
    padding: 10px;
}
.pad20 {
    padding: 20px;
}
.pad30 {
    padding: 30px;
}

.squareBtn {
    border-radius: 0;
}

.blueBorderBtn {
    border: 3px solid #0466BC;
}

.wideButton {
    padding-left: 30px;
    padding-right: 30px;
}

.noBorder {
    border: none;
}

.boldText {
    font-weight: bold;
}

.alfa {
    font-family: 'Alfa Slab One', cursive;
}

/**
 * Bootstrap Classes
 */
.nav-link {
    font-weight: bold;
}

.nav-link.active {
    text-decoration: underline !important;
}

.btn-success, .btn-danger {
    color: white !important;
}

.paginate_button.page-item.active > a {
    background: #28a745;
    border: 1px solid green !important;
}

.btn-outline-primary:hover {
    color: white !important;
}

.bootstrap-select.btn-group .btn .caret {
    left: 40px !important;
}
.bootstrap-select.btn-group .btn .filter-option {
    text-align: right !important;
}

.modal-content {
    background: #0466BC;
    /*background: lightblue;*/
}

.modal-body,
.modal-body > div,
.modal-body > p,
.modal-body > span {
    color: white;
}

.close > span {
    /* X button on dialogs */
    color: white !important;
}

/**
 * Baseplate
 */
html {
    scroll-behavior: smooth;
}

body {
    background: white;
}

p, li, a, button, div, span, .btn {
    font-size: 20px;
    color: #000000DE;
}

a:hover {
    text-decoration: none;
}

footer {
    text-align: center !important;
    padding-top: 50px;
    background: lightslategray;
    width: 100%;
    min-height: 400px;
}

footer .vibrantWebDesign > a {
    font-weight: bold;
    color: white;
}

footer .vibrantWebDesign > a:hover {
    color: deeppink;
}

footer .row {
    min-height: 300px;
}

.modal-header {
    border-bottom: 0 none;
}

.modal-footer {
    border-top: 0 none;
}
