body {
    font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
    font-size: 14px;
    line-height: 1.42857143;
    color: #333;
    background-color: #fff;
}

footer {
    /* bottom: 0; */
    margin: auto;
    width: 100%;
    margin-top: 50px;
    background-color: lightgray;
}

.bg-modal {
    width: 100%;
    /* height:100%; */
    background-color: rgba(0,0,0,0.5); /* make it half transparent */
    position: absolute;
    top:0px;
    z-index: 1;
    display: none;  /* It will remain invisible until you open */
    justify-content: center; /*center horizontally*/ 
    align-items: center ; /* center vertically */
    overflow-y: auto;
}

.modal-content {
    /* width:600px;
    height:400px; */
    background-color: white;
    border:none; 
    border-radius: 15px;
    padding:15px;
    position: relative;
}

.TOS-container {
    overflow-y: scroll;
}

.content {
    margin-top: 100px;
    margin-bottom: 100px;
}

.navbar {
    position: relative;
    min-height: 50px;
    margin-bottom: 20px;
    border: 1px solid transparent;
}

.navbar-collapse.collapse {
    display: block!important;
    height: auto!important;
    padding-bottom: 0;
    overflow: visible!important;
    visibility: visible!important;
}

#mainNavbar {
    font-size: 1.5rem;
    font-weight: 100;    
}

#mainNavbar .nav-link {
    color: black;
    font-size: 2rem;
}

#mainNavbar .nav-link:hover {
    color: #EA1C2C;
}

/* #mainNavbar .navbar-brand {
    color: #EA1C2C;
    font-size: 4rem;
} */

.sidebar-nav {
    margin-top: 20px;
    padding: 0;
    list-style: none;
}

#headingGroup span {
    color: #EA1C2C;
}

#headingGroup h1 {
    font-family: inherit;
    font-weight: 100;
    margin-top: 20px;
    margin-bottom: 10px;
    line-height: 1.1;
    color: inherit;
}

@media (max-width: 1200px) {
    /* #headingGroup h1 {
        font-weight: 100;
        font-size: 3rem;
    } */
    .blurb h2 {
        font-size: 2rem;
    }
}


.checkbox label {
    min-height: 20px;
    padding-left: 20px;
    margin-bottom: 0;
    font-weight: 400;
    cursor: pointer;
}

.checkbox label:after, 
.radio label:after {
    content: '';
    display: table;
    clear: both;
}

.checkbox .cr,
.radio .cr {
    position: relative;
    display: inline-block;
    border: 1px solid #a9a9a9;
    border-radius: .25em;
    width: 1.3em;
    height: 1.3em;
    float: left;
    margin-right: .5em;
}

.radio .cr {
    border-radius: 50%;
}

.checkbox .cr .cr-icon,
.radio .cr .cr-icon {
    position: center;
    font-size: 2.5em;
    line-height: 0;
    color: black;
    top: 20%;
    /* right: 1%; */
    left: 1%;
}

.radio .cr .cr-icon {
    margin-left: 0.04em;
}

/* Hide the default checkbox */
.checkbox label input[type="checkbox"],
.radio label input[type="radio"] {
    display: none;
}

/* When its uncheck hide our custom checkmark */
.checkbox label input[type="checkbox"] + .cr > .cr-icon,
.radio label input[type="radio"] + .cr > .cr-icon {
    transform: scale(3) rotateZ(-20deg);
    opacity: 0;
    transition: all .3s ease-in;
}

/* When its checked show our checkbox */
.checkbox label input[type="checkbox"]:checked + .cr > .cr-icon,
.radio label input[type="radio"]:checked + .cr > .cr-icon {
    transform: scale(1) rotateZ(0deg);
    opacity: 1;
}

.checkbox label input[type="checkbox"]:disabled + .cr,
.radio label input[type="radio"]:disabled + .cr {
    opacity: .5;
}




