/* Go crazy with your own styles here */
/* EDITOR PROPERTIES - PLEASE DON'T DELETE THIS LINE TO AVOID DUPLICATE PROPERTIES */
.olaBackground {
    background: #203864;
}


/* override fanoe.css line:570 */
.brand {
    margin: 0 auto;
    width: 100px;
    height: 70px;
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: left center;
}

.logoLabel {
    position: relative;
    margin: 0px;
    color: white;
    text-shadow: black 0.3em 0.3em 0.4em;
}

.logoLabel1 {
    font-family: "Times New Roman";
    color: white;
    font-size: 45px;
}

.logoLabel2 {
    margin: 5px 0px;
    font-family: "Times New Roman";
    color: white;
    font-size: 24px;
}

.logoLabel3 {
    margin: 5px 0px;
    font-family: "Times New Roman";
    color: white;
    font-size: 24px;
}

.legislativeAuditor {
    font-family: "Times New Roman";
    /*margin-right: -50px;*/
    font-size: 15px;
    color: white;
    text-shadow: black 0.3em 0.3em 0.4em;
}


/*
	Beginning of Google transalte style
*/
div#google_translate_element {
    display: inline-block;
}

    div#google_translate_element div.goog-te-gadget-simple {
        display: inline-block;
        margin: 0;
        padding: 5px 10px;
        border-width: 0;
        height: auto;
        /*background-color: #203864;*/
        background-color: black;
        border-radius: 5px;
    }

        div#google_translate_element div.goog-te-gadget-simple img {
            display: none;
        }

        div#google_translate_element div.goog-te-gadget-simple a {
            text-decoration: none;
        }

    div#google_translate_element div.goog-te-gadget {
        display: inline-block;
    }

    div#google_translate_element div.goog-te-gadget-simple a.goog-te-menu-value {
        margin: 0;
        padding: 0;
    }

        div#google_translate_element div.goog-te-gadget-simple a.goog-te-menu-value span {
            border-width: 0;
            margin: 0;
            padding: 0;
            color: white;
            text-decoration: none;
        }

            div#google_translate_element div.goog-te-gadget-simple a.goog-te-menu-value span:nth-child(3) {
                display: none;
            }

            div#google_translate_element div.goog-te-gadget-simple a.goog-te-menu-value span:hover {
                border-width: 0;
                color: white;
            }
/*
	End of Google transalte style
*/


/**
 * CSSReset.com - How To Keep Footer At Bottom of Page with CSS
 * 
 * Original Tutorial: http://www.cssreset.com/2010/css-tutorials/how-to-keep-footer-at-bottom-of-page-with-css/
 * License: Free - do whatever you like with it! Credit and linkbacks much appreciated.
 *
 * NB: Make sure the value for 'padding-bottom' on #content is equal to or greater than the height of #footer.
 */
html,
body {
    margin: 0;
    padding: 0;
    background: #203864;
}

#wrapper {
    /*min-height: 50vh;*/
    position: relative;
}

#header {
    padding: 10px;
}

#content {
    /*padding-bottom:100px; /* Height of the footer element */
}

#footer {
    margin: 0 auto;
    width: 100%;
    position: relative;
    bottom: 0;
    left: 0;
}


/* Recent Reports heading*/
.recent-reports-heading {
    font-size: 18px;
    font-weight: bold;
    color: blue;
}

.validationError1 {
    color: red;
    font-size: 0.8em;
}

.orgTableReset {
    border-spacing: unset;
    border-collapse: unset;
    border: unset;
}

.orgTableReset {
    border-spacing: 10px;
    border-collapse: separate;
    border: 10px;
}

    .orgTableReset tbody > tr > td {
        border-top: 1px solid #203864;
        border: 1px solid #203864;
    }

/* override light a style from fanoe */
.light a, .light a:visited {
    color: #203864 !important;
}

    .light a:hover {
        color: #203864 !important;
        text-decoration: underline;
    }


/* Tooltips1 style */
.tooltip1 {
    position: relative;
    display: inline-block;
    /*border-bottom: 1px dotted black;*/
}

    .tooltip1 .tooltiptext {
        visibility: hidden;
        font-size: 11pt;
        width: 350px;
        background-color: #202020;
        color: #fff;
        text-align: center;
        border-radius: 6px;
        padding: 15px;
        position: absolute;
        z-index: 1;
        top: 130%;
        left: 50%;
        margin-left: -190px;
    }

        .tooltip1 .tooltiptext::after {
            content: "";
            position: absolute;
            bottom: 100%;
            left: 50%;
            margin-left: -5px;
            border-width: 5px;
            border-style: solid;
            border-color: transparent transparent #202020 transparent;
        }

    .tooltip1:hover .tooltiptext {
        visibility: visible;
    }

    .tooltip1:active .tooltiptext {
        visibility: hidden;
    }
/* Tooltips1 style */



/*pure css popup*/
span.popup {
    height: 0;
    color: #fff;
    position: relative;
    cursor: pointer;
}

    span.popup:after {
        content: attr(data-popuptext);
        background: rgba(0, 0, 0, 0.85);
        border-radius: 3px;
        opacity: 0;
        top: 0;
        left: 0;
        position: absolute;
        transition: 500ms ease;
        white-space: nowrap;
        max-height: 0;
    }

    span.popup:hover:after {
        display: block;
        opacity: 1;
        top: 1.5em;
        max-height: 500px;
        padding: 0.4em;
        font-size: 14pt;
        width: 450px;
        word-break: break-word;
    }


/* custom modal style
https://teamtreehouse.com/community/modal-window-appear-but-doesnt-work
 */
.modal::after {
    content: "";
    background: black;
    opacity: 0.6;
    top: 0;
    left: 0;
    bottom: -300px;
    right: 0;
    position: absolute;
    z-index: -1;
}

.modal-body a.modallink:link,
.modal-body a.modallink:visited {
    color: #203864 !important;
    font-weight: bold;
    text-decoration: none;
}

.modal-body a.modallink:hover {
    color: #D600FF !important;
    text-decoration: underline;
}

.modal-body ul {
    margin: 15px;
}

    .modal-body ul li {
        display: list-item; /* bullet fix*/
        padding: 10px 15px;
        line-height: 25px;
    }
/* custom modal style */


/* Material design tab style 
https://bootsnipp.com/snippets/featured/material-design-tab-style
*/
.nav-tabs7 {
    border-bottom: 2px solid #DDD;
}

.nav-tabs > li.active > a,
.nav-tabs > li.active > a:focus,
.nav-tabs > li.active > a:hover {
    border-width: 0;
}

.nav-tabs > li > a {
    border: none;
    color: #666;
}

    .nav-tabs > li.active > a,
    .nav-tabs > li > a:hover {
        border: none;
        color: #4285F4 !important;
        background: transparent;
    }

    .nav-tabs > li > a::after {
        content: "";
        background: #4285F4;
        height: 2px;
        position: absolute;
        width: 100%;
        left: 0px;
        bottom: -1px;
        transition: all 250ms ease 0s;
        transform: scale(0);
    }

.nav-tabs > li.active > a::after,
.nav-tabs > li:hover > a::after {
    transform: scale(1);
}

.tab-nav7 > li > a::after {
    background: #21527d none repeat scroll 0% 0%;
    color: #fff;
}

.tab-pane {
    padding: 15px 0;
}

.tab-content {
    padding: 20px
}

/*.card7 {background: #FFF none repeat scroll 0% 0%; box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.3); margin-bottom: 30px; }*/
.card7 {
    padding: 5px;
}
/* Material design tab style end */

ul .nav-tabs {
    border-bottom: 1px solid #ddd;
    margin-left: 25px;
}


/* vertical tabs style */
@media (min-width: 768px) {

    .brand-pills > li > a {
        border-top-right-radius: 0px;
        border-bottom-right-radius: 0px;
    }

    li.brand-nav.active a:after {
        content: " ";
        display: block;
        width: 0;
        height: 0;
        border-top: 21px solid transparent;
        border-bottom: 21px solid transparent;
        border-left: 9px solid #337AB7;
        position: absolute;
        top: 50%;
        margin-top: -20px;
        left: 100%;
        z-index: 2;
    }

    .tab-content {
        padding: 0px 15px;
    }
}
/* vertical tabs style - end;


/* override page width */
/*@media (min-width: 768px){
	header .container {
		max-width: 1000px;
		padding: 0;
	}

	.container {
		max-width: 1000px;
		padding: 0;
	}
}*/



@media screen and (max-width: 768px) {
    .olaBackground {
        background: #203864;
    }

    .brand {
        margin: 0 auto;
        width: 80px;
        height: 55px;
        background-size: 100%;
        background-repeat: no-repeat;
        background-position: left center;
    }

    .logoLabel1 {
        font-family: "Times New Roman";
        color: white;
        font-size: 24px;
    }

    .logoLabel2 {
        margin-left: -20px;
        font-family: "Times New Roman";
        color: white;
        font-size: 16px;
    }

    .logoLabel3 {
        margin-left: -20px;
        font-family: "Times New Roman";
        color: white;
        font-size: 16px;
    }

    .legislativeAuditor {
        font-family: "Times New Roman";
        font-size: 11px;
        color: white;
        text-shadow: black 0.3em 0.3em 0.4em;
        margin-right: 15px;
    }
}

/* Page curl effect */
.page-curl {
    background: #FFFFFF;
    background: -moz-linear-gradient(0deg, #F5F5F5 0%, #FFF 25%, #FFF 75%, #F5F5F5 100%);
    background: -ms-linear-gradient(0deg, #F5F5F5 0%, #FFF 25%, #FFF 75%, #F5F5F5 100%);
    background: -webkit-linear-gradient(0deg, #F5F5F5 0%, #FFF 25%, #FFF 75%, #F5F5F5 100%);
    background: linear-gradient(0deg, #F5F5F5 0%, #FFF 25%, #FFF 75%, #F5F5F5 100%);
    border: 1px solid #777777;
    -moz-border-radius: 6px 6px 6px 6px;
    -webkit-border-radius: 6px 6px 6px 6px;
    border-radius: 6px 6px 6px 6px;
    -moz-box-shadow: 0 0 6px rgba(0, 0, 0, 0.5);
    -webkit-box-shadow: 0 0 6px rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.5);
    margin: 15px auto;
    padding: 15px;
    position: relative;
    width: auto;
}

    .page-curl:before, .page-curl:after {
        background: none;
        bottom: 12px;
        -moz-box-shadow: 0 10px 12px rgba(0, 0, 0, 0.5);
        -webkit-box-shadow: 0 10px 12px rgba(0, 0, 0, 0.5);
        box-shadow: 0 10px 12px rgba(0, 0, 0, 0.5);
        content: "";
        height: 10px;
        left: 12px;
        position: absolute;
        width: 40%;
        z-index: -1;
        -moz-transform: skew(-4deg) rotate(-4deg);
        -webkit-transform: skew(-4deg) rotate(-4deg);
        transform: skew(-4deg) rotate(-4deg);
    }

    .page-curl:after {
        -moz-transform: skew(4deg) rotate(4deg);
        -webkit-transform: skew(4deg) rotate(4deg);
        transform: skew(4deg) rotate(4deg);
        left: auto;
        right: 12px;
    }

    .page-curl.shadow-left {
        background: -moz-linear-gradient(0deg, #F5F5F5 0%, #FFF 50%) !important;
        background: -ms-linear-gradient(0deg, #F5F5F5 0%, #FFF 50%) !important;
        background: -webkit-linear-gradient(0deg, #F5F5F5 0%, #FFF 50%) !important;
        background: linear-gradient(0deg, #F5F5F5 0%, #FFF 50%) !important;
    }

    .page-curl.shadow-right {
        background: -moz-linear-gradient(0deg, #FFF 50%, #F5F5F5 100%) !important;
        background: -ms-linear-gradient(0deg, #FFF 50%, #F5F5F5 100%) !important;
        background: -webkit-linear-gradient(0deg, #FFF 50%, #F5F5F5 100%) !important;
        background: linear-gradient(0deg, #FFF 50%, #F5F5F5 100%) !important;
    }

.shadow-bottom:before, .shadow-bottom:after {
    top: auto;
    bottom: 12px;
    -moz-box-shadow: 0 10px 12px rgba(0, 0, 0, 0.5);
    -webkit-box-shadow: 0 10px 12px rgba(0, 0, 0, 0.5);
    box-shadow: 0 10px 12px rgba(0, 0, 0, 0.5);
}

.shadow-left:after {
    display: none;
}

.shadow-right:before {
    display: none;
}

.shadow-top-bottom.shadow-left:after {
    display: block;
    bottom: auto;
    top: 15px;
    right: auto;
    left: 12px;
    -moz-box-shadow: 0 -10px 12px rgba(0, 0, 0, 0.5);
    -webkit-box-shadow: 0 -10px 12px rgba(0, 0, 0, 0.5);
    box-shadow: 0 -10px 12px rgba(0, 0, 0, 0.5);
}

.shadow-top-bottom.shadow-right:before {
    display: block;
    bottom: auto;
    top: 15px;
    right: 12px;
    left: auto;
    -moz-box-shadow: 0 -10px 12px rgba(0, 0, 0, 0.5);
    -webkit-box-shadow: 0 -10px 12px rgba(0, 0, 0, 0.5);
    box-shadow: 0 -10px 12px rgba(0, 0, 0, 0.5);
}
