﻿/* 
    https://developer.mozilla.org/en-US/docs/Web/CSS/var 

    CSS variables, like SASS, but just CSS
*/

:root {
    --morley-gold-color: #B58500;
}


body {
    padding-top: 50px;
    padding-bottom: 0;
}

/* Set padding to keep content from hitting the edges */
.body-content {
    padding-left: 15px;
    padding-right: 15px;
}

/* Override the default bootstrap behavior where horizontal description lists 
   will truncate terms that are too long to fit in the left column 
*/
.dl-horizontal dt {
    white-space: normal;
}

/* Set width on the form input elements since they're 100% wide by default */
/* RWB 6/16/2022 this may override bootstrap in ways we don't want, or we should adjust this or add/make classes for fixed width*/
/*input,
select,
textarea {
    max-width: 280px;
}*/

.form-control.mw-280 {
    max-width: 280px;
}

.morley-gold-text {
    color: var(--morley-gold-color);
}

.morley-gold-bg {
    background-color: var(--morley-gold-color);
}

.morley-gold-border {
    border-color: var(--morley-gold-color) !important;
}

/* 
    https://getbootstrap.com/docs/5.0/layout/breakpoints/ 
    standard min-width based media queries for boostrap

    https://getbootstrap.com/docs/5.0/layout/grid/
    anything not in media query below would be applied to
    col- aka xs/extra-small and propagates up unless overriden
*/

/* col-sm- */
@media (min-width: 576px) {

}

/* col-md- */
@media (min-width: 768px) {

}

/* col-lg- */
@media (min-width: 992px) {
    .border-separator-right {
        border-right: 1px solid #6c757d !important;
    }
}

/* col-xl- */
@media (min-width: 1200px) {

}

/* col-xxl-*/
@media (min-width: 1400px) {

}

.required:after {
    content: "*";
    font-weight: bold;
    color: red;
}