/*===================== Info Section =========================*/
.info-section {
    width: 98%;
    margin: .25em auto;
}

.info-section p {
    width: 92%;
    text-align: justify;
    max-width: 1200px;
    margin: auto;
    padding: .5em;
}

/*========================== Module Section ============================ */
.neutral-border {
    border-top: 2px solid gray;
    border-bottom: 2px solid gray;
    max-width: 1200px;
}

.sub-item {
    list-style: circle !important;
    margin-left: 10%;
}

.sub-item:before{
    content: "" !important;
}

.learning-outcomes {
    border: 1px solid var(--primary);
    border-radius: 3px;
    background-color: var(--compliment-tint-6);
    margin-bottom: 1em;
}

/*========================== Outcomes Section =========================== */
.service-benefits {
    margin-left: 10%;
    font-size: 1.25rem;
}

.service-benefits li{
    padding: .25em;
    text-align: left;
    list-style: disc;
}

/*========================== Backgrounds And Borders =========================== */

.alt-background {
    background: var(--primary-tint-6);
    border-radius: 6px;
}

.compliment-background {
    background: var(--compliment-tint-6);
    border-radius: 6px;
}

.primary-section {
    border: 2px var(--primary) solid;
    border-radius: 4px;
}

.compliment-section {
    border: 2px var(--compliment-tint-3) solid;
    border-radius: 4px;
}

/*==================== Emphasis Decorations ==========================*/
h1.emphasis-primary{
    display: inline-block;
    margin-block-end: .25em;
}

h2.emphasis-primary{
    display: inline-block;
}

h3.emphasis-primary{
    display: inline-block;
}

.emphasis-primary:after {
    content: " ";
    background-color: var(--primary);
    display: block;
    margin: auto;
    height: 2px;
    width: 98%;
    border: 1px solid var(--primary);
    border-radius: 3px;
}

h1.emphasis-secondary{
    display: inline-block;
}

h2.emphasis-secondary{
    display: inline-block;
}

h3.emphasis-secondary{
    display: inline-block;
}

.emphasis-secondary:after {
    content: " ";
    background-color: var(--compliment);
    display: block;
    margin: auto;
    height: 3px;
    width: 100%;
    border: 1px solid var(--compliment);
    border-radius: 3px;
}

/*============================== Document List =============================*/
.gray-scale {
    filter: grayscale(1);
}

/**===================== Button Setup ============================**/
.apt-button {
    width: 150px;
    height: 30px;
    margin-left: auto;
    margin-right: auto;
}

.apt-button:hover {
    cursor: pointer;
}

/**===================== Border Shadow ============================**/
.box-shadow-low {
    box-shadow: 0 0 3px rgba(0,0,0,0.6);
    -moz-box-shadow: 0 0 3px rgba(0,0,0,0.6);
    -webkit-box-shadow: 0 0 3px rgba(0,0,0,0.6);
    -o-box-shadow: 0 0 3px rgba(0,0,0,0.6);
}

.box-shadow-med {
    box-shadow: 0 0 6px rgba(0,0,0,0.6);
    -moz-box-shadow: 0 0 6px rgba(0,0,0,0.6);
    -webkit-box-shadow: 0 0 6px rgba(0,0,0,0.6);
    -o-box-shadow: 0 0 6px rgba(0,0,0,0.6);
}



/**===================== Hoverable ============================**/
.hover-shadow:hover {
    box-shadow:  0 0 10px  rgba(0,0,0,0.6);
    -moz-box-shadow: 0 0 10px  rgba(0,0,0,0.6);
    -webkit-box-shadow: 0 0 10px  rgba(0,0,0,0.6);
    -o-box-shadow: 0 0 10px  rgba(0,0,0,0.6);
}