
/* variables */
:root {
    --text-color: #3d3d3d;
    --light-gray-color: #f5f5f5;
    --hospital-lightblue-color: #bfe7f9;
    --hospital-blue-color: #a4c5e8;
    --hospital-green-color: #8cf1a2;
    --disabled-color: #aaa;
}

body {
    font-family: 'Open Sans' !important;
    color: var(--text-color);
    position: relative;
    padding-top:    57px; /* for top nav bar */
}

section {
    padding-top:    70px;
    padding-bottom: 60px;
}

section#quotes {
    padding-top:    35px;
    padding-bottom: 40px;
}

h1 {
    font-weight: 300;
    margin-bottom: 2.0rem;
}

h5 {
    margin-top:    1.5rem;
    margin-bottom: 0.8rem;
}

hr {
    margin-top:    2.0rem;
    margin-bottom: 2.0rem;
}

a.disabled,
a.disabled:hover {
    color: var(--disabled-color) !important;
}

.bg-light-gray {
    background-color: var(--light-gray-color)
}

.bg-hospital-lightblue {
    background-color: var(--hospital-lightblue-color);
}

.bg-hospital-blue {
    background-color: var(--hospital-blue-color);
}

.bg-hospital-green {
    background-color: var(--hospital-green-color);
}

@media (min-width: 768px) { /* .md */
    .row {
        margin-bottom: 1.0rem;
    }
}

.card {
    border: none;
    border-radius: 1.0rem;
}

.card-header {
    background-color: rgba(0,0,0, .02);
}

.card-title {
    margin-top:    0.5rem !important;
    margin-bottom: 0.5rem !important;
}

.card-body ul {
    margin-left: -1.0rem;
    margin-bottom: 0px;
}

.card-img-top {
    border-top-left-radius:  1.0rem;
    border-top-right-radius: 1.0rem;
}

.card-header-icon {
    font-size: 1.75rem;
    margin-bottom: 0.3rem;
}

/* fix for Chrome (double underline) */
abbr {
    text-decoration: none !important;
    border-bottom: 1px dotted !important;
}

code {
    color: var(--text-color);
}

.quote {
    font-size: 1.25rem;
    font-weight: 300;
    margin-bottom: 0px;
}

.quote q {
    font-weight: 500;
}

input, textarea {
    padding: 1.2rem 1.0rem !important;
}

textarea#contact-message {
    height: 9.1rem; /* fix height */
}

#captcha-block {
    margin: auto; /* centered */
    /* init */
    display: none;
    transform: translate(1500px, 0px);
}

#captcha-image {
    height: 1.5rem;
}