﻿/*****************************************
fss.css 
Table of Contents
-----------------
05. typography
10. accordion
20. generic modal
30. borders and miscellaneous
40. margin adjustments
50. lists
55. buttons
60. boxes
70. table
80. media queries (mobile style)

/*****************************************
05. typography  
*****************************************/
@font-face {
    font-family: Oswald;
    src: url('/media/wltjnabt/fss-oswald-regular.ttf') format('truetype');
}
h2 {
    text-transform: uppercase;
    font-size: 1.875em;
    padding: 0.5em 0 0 0;
}
.large-h2 {
    font-size: 2.5em;
}
h3 {
    font-size: 1.5em;
    padding: 0;
    margin: 0;
    margin-bottom: 0.8em;
}
.small-h3 {
    font-size: 1.2em;
}
h4 {
    font-size: 1.17em;
    padding: 0.5em 0 0.3em 0;
}
h5 {
    font-size: 1.12em;
    padding: 0;
}
h6 {
    font-size: .83em;
}
.go-to-establishment {
    position: relative;
    font-size: 0.7em;
    margin-top: 0.8em;
    margin-bottom: 0;
    z-index: 3;
}

/*****************************************
10. accordion  
*****************************************/
.accordion-blue {
    background-color: #194a6b;
    color: #fff;
    cursor: pointer;
    padding: 10px;
    width: 100%;
    text-align: left;
    font-size: 15px;
    transition: 0.4s;
}
    .accordion-blue.active,
    .accordion-blue:hover {
        background-color: #194a6b;
        color: #fd0;
    }
    .accordion-blue:after {
        content: "\002B";
        color: #fff;
        font-weight: 700;
        float: right;
        margin-left: 5px;
    }
    .accordion-blue.active:after {
        content: "\2212";
        color: #fd0;
    }
.accordion-white {
    background-color: #ffffff;
    border-bottom: 2px solid #eeeeee;
    color: #194a6b;
    cursor: pointer;
    padding: 10px;
    width: 100%;
    text-align: left;
    font-size: 15px;
    font-weight: 600;
    transition: 0.4s;
}
    .accordion-white.active, .accordion-white:hover {
        background-color: #fffff6;
        font-weight: bold;
        color: #000;
    }
    .accordion-white:after {
        content: "\002B";
        color: #194a6b;
        font-weight: 700;
        float: right;
        margin-left: 5px;
    }
    .accordion-white.active:after {
        content: "\2212";
        color: #194a6b;
    }
.panel {
    padding: 0;
    background-color: #fff;
    max-height: 0;
    overflow-x: auto;
    transition: max-height 0.2s ease-out;
}


/*****************************************
20. modal for pH graphic
*****************************************/
.ph-modal {
    display: none;
    position: fixed;
    z-index: 1;
    padding-top: 100px;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.4);
}
.ph-modal-content {
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
    width: 60%;
    text-align: center;
}
#ph-imgBtn {
    border-radius: 5px;
    cursor: pointer;
    float: right;
    display: block;
}
    #ph-imgBtn:hover {
        opacity: 0.5;
    }
.ph-close {
    float: right;
    font-weight: 700;
    line-height: 1;
    color: #aaaaaa;
    text-align: right;
    font-size: 28px;
    font-weight: bold;
}
    .ph-close:hover,
    .ph-close:focus {
        color: #000;
        text-decoration: none;
        cursor: pointer;
    }
/* see media query for other modal style */


/*****************************************
30. borders and miscellaneous
*****************************************/
/* local.css overide */
.image-border {
    border: 0.5px solid #194a6b;
}
.blue-border-big {
    border: 3px solid #194a6b;
    padding: 0;
    margin: 1em 0;
}
.decision-tree ol {
    margin-left: 10px;
    padding-left: 10px;
}
    .decision-tree ol li {
        font-size: larger;
        font-weight: 700;
    }
.decision-tree p, .decision-tree ul {
    margin-bottom: .5em;
}
.decision-tree hr {
    border-top: .75px solid gray;
    margin: 1em -8px;
}
.yuck-frame {
    background-image: url("/media/dvbictaq/yuck-line-frame-small.png");
    background-size: 100%;
    padding-bottom: .3em;
    background-repeat: no-repeat;
    background-origin: content-box, padding-box;
}
    .yuck-frame ul.info {
        list-style-type: none;
        margin-left: 0;
        padding: 0;
        margin-right: 4.4em;
        text-align: center;
        line-height: 1.5;
    }
    .yuck-frame li.call-text {
        padding-top: 0.5em;
        font-size: 1.5em;
        font-weight: 500;
        font-family: Oswald, sans-serif;
        letter-spacing: 1px;
    }
    .yuck-frame li.number {
        font-size: 1.9em;
        font-weight: bold;
        font-family: Oswald, sans-serif;
        letter-spacing: 2px;
        padding-bottom: 0.13em;
    }
    .yuck-frame li.report {
        font-size: 1em;
        font-style: italic;
    }
.yellow-title-border {
    border-bottom: 3px solid #edbd03;
    border-left: none;
    border-right: none;
    width: 100%;
    margin-bottom: 0.8em;
}
.yellow-full-line {
    border-top: 3px solid #edbd03 !important;
    border-left: none;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}
.title-main {
    text-align: center;
    font-size: 3.2em;
    font-weight: 900;
    margin-bottom: 0.5em;
    padding-bottom: 0.3em;
    padding-top: 0;
}

a.no-show-link {
    color: #000000;
}

    a.no-show-link:hover {
        text-decoration: none;
    }
.clearfix::after {
    clear: right;
}

/*****************************************
40. margin adjustments
*****************************************/
.small-bottom-margin {
    margin-bottom: 1em;
}
.extra-top-margin {
    margin-top: 40px;
}
.xs-bottom-margin {
    margin-bottom: 6px;
}
.left-margin-list-match {
    margin-left: 1.2em;
}


/*****************************************
50. lists
*****************************************/
dl.custom-list-spacing dd:not(:last-child) {
    margin-bottom: 2em;
}
dl.remove-indent dd {
    margin-left: 0;
    padding-left: 0;
}
ul.checkbox {
    margin-right: .8em;
    margin-left: 0;
    padding-left: 2.4em;
}
ul.checkbox li::marker {
    content: '\2610  ';
}
ul.small-left-margin {
    margin-left: 10px;
    padding-left: 10px;
}
.list-reset li::marker {
    content: initial !important;
}
.list-markers-bold > li::marker {
    font-weight: bold;
}
.gray-list li {
    list-style: none;
    border-bottom: 1px solid #cccccc;
    padding-top: 0.5em;
    padding-bottom: 0.5em;
    padding-left: 0.3em;
}

/*****************************************
55. buttons
*****************************************/
ul.buttons li span.greenBtn {
    background: #476b6b !important;
}
ul.buttons li span.yuckBtn {
    background: #ede9cd !important;
    font-size: 1.3em;
    color: #474A1C;
    font-weight: 700;
}
ul.buttons li span.darkBlueBtn {
    background: #194a6b !important;
    color: #ffffff;
}


/*****************************************
60. boxes
*****************************************/
.blue-box {
    border: 1.5px solid #194a6b;
    padding: 0;
}
.blue-gray-box {
    border: 1.5px solid #194a6b;
}

    .blue-gray-box ul li {
        border-bottom: 1px solid #ececec;
        margin-left: 10px;
    }
        .blue-gray-box ul li:not(:first-of-type) {
            padding-top: .6em;
        }
        .blue-gray-box ul li:last-of-type {
            border: none;
        }
/* see media query for more blue-gray-box style */
.yellow-box {
    border: 1px solid #edbd03;
    padding: 1em;
    margin-bottom: 4em;
}
a:hover div.box-hover {
    opacity: 0.5;
}

.topic-box {
    position: relative;
    border-top: 2px solid #194a6b;
    border-right: 2px solid #194a6b;
    border-bottom: 2px solid #194a6b;
    border-left: 25px solid #194a6b;
    padding: 1.5em;
    margin-bottom: 1em;
}
.topic-box-hover:hover, a:focus .topic-box-hover {
    box-shadow: 0 0 6px grey;
    -webkit-transition: all 200ms ease-out 0s;
    transition: all 200ms ease-out 0s;
}
.topic-box a:hover {
    text-decoration: none;
}
.topic-box-image {
    margin-top: 0;
    margin-bottom: 2em;
    float: left;
    border: solid 1px #3f78a7;
    width: 9em;
    margin-right: 1.5em;
}
.topic-box-heading {
    font-size: 1.4em;
    font-weight: 900;
    margin-bottom: 0.1em;
    margin-top: 0;
    padding-top: 0;
    color: #194a6b;
}
.topic-box-subheading {
    color: #194a6b;
    margin-bottom: 0.5em;
    font-size: 0.8em;
    font-weight: 600;
    text-transform: uppercase;
}
.topic-box-text {
    margin-left: 0;
    margin-bottom: 0;
}

/*****************************************
70. table
*****************************************/
main table {
    margin-bottom: 1em !important;
}
    main table th {
        text-align: center !important;
        vertical-align: middle;
    }
        main table th:last-child {
            border-right: 1px solid black;
        }
    main table.white-row-background tr {
        background: white !important; /* all white rows (instead of alternating) */
    }
/* end table style */


/*****************************************
80. media queries
*****************************************/
/* Mobile first. All the time */
@media only screen and (max-width: 62em) {
    .blue-gray-box ul li.add-border-for-mobile {
        border-bottom: 1px solid #ececec !important;
    }
    dl {
        margin-bottom: 0;
    }
    /* modal style for mobile screens */
    .ph-modal-content {
        width: 80% !important;
    }
    #ph-imgBtn {
        float: none !important;
        margin: 1em auto;
    }
    /* end mobile modal style */

    /* yuck-line mobile style */
    .yuck-frame {
        margin-top: 1.5em;
        margin-bottom: .2em;
        background-size: 100%;
        background-position: center;
    }
        .yuck-frame ul.info {
            margin-right: 4.5em;
        }
        .yuck-frame li.call-text {
            padding-top: 0.5em;
            font-size: 1.5em;
        }
        .yuck-frame li.number {
            font-size: 2em;
        }
        .yuck-frame li.report {
            font-size: 1.1em;
        }
    /* end yuck-line mobile style */

    .medical-emergency {
        width: 100%;
        margin: 0 auto;
    }
    .mobile-spacing {
        margin-top: 3em;
    }

    /* 12-29-23 new stuff */
    .title-mobile-2-5 {
        font-size: 2.5em;
    }
    .topic-box {
        border: 5px solid #194a6b;
        padding: 1em 1em 0 1em;
        margin-bottom: 1em;
    }
    .topic-box-text {
        margin-bottom: 1em;
    }
    .topic-box-image {
        display: block;
        float: none;
        width: 100%;
        margin: 0 auto 1em;
        padding-top: 0;
    }
    .heading-mobile-1-3 {
        font-size: 1.3em;
    }

    .no-bottom-margin-mobile {
        margin-bottom: 0;
    }

    .clear-left-mobile {
        clear: left;
    }

    .mobile-display-none {
        display: none;
    }

    .mobile-inline-block {
        display: inline-block;
    }

    .yellow-box {
        margin-top: 2em;
        margin-bottom: 3em;
    }
}
@media screen and (max-width: 54em) {
    .center-mobile-image {
        display: block;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 1.8em;
        width: 60%;
    }
}

/* end */
