/* Embed font face 'Symbola' to display unicode glyphs consistently. Free for non-commercial use */
@font-face {
    font-family: Symbola;
    src: url("/Style%20Library/dep/Symbola.otf");
}

@font-face {
    font-family: FontAwesome;
    src: url("/Style%20Library/dep/FontAwesome.otf");
}

/* Bold Class Because I'm Lazy */
.bold {
    font-weight: bold;
}


/* Division Logos and Containers for "About Page" */
/* 
These are deprecated and need to be removed after they're no longer
referenced on pages.

Use class "flexipic" and "logocontainer" classes instead

*/
.division-info {

}    

.division-logo {
    max-width: 75%;
}

.division-logo-container {
max-width: 125px;
height:auto;
float:right;
margin-left: 5px;
margin-right: 5px;
}


/* FlexRow Div Classes to Reflow vertically as needed */
.flexrow {
    max-width: 100%; 
    page-break-inside: avoid; 
    display: flex; 
    flex-direction: row; 
}

.flexcol {
    width: -moz-fit-content; 
    width: -webkit-fit-content; 
    width: fit-content;
    width: 100%;
    height: -moz-fit-content; 
    height: -webkit-fit-content; 
    height: fit-content; 
    overflow: none; 
    padding-right: 15px;
}



.flexcol-10 {
    min-width:10%;
}

.flexcol-15 {
    min-width: 15;
}

.flexcol-25 {
    min-width:25%;
}
.flexcol-33 {
    min-width:33.3%;
}

.flexcol-40 {
    min-width:40%;
}

.flexcol-45 {
    min-width:45%;
}

.flexcol-50 {
    min-width:50%;
}


.flexcol-60 {
    min-width:60%;
}

.flexcol-66 {
    min-width:66.6%;
}

.flexcol-75 {
    min-width:75%;
}

.flexcol-80 {
    min-width:80%;
}


.flexcol-85 {
    min-width:85%;
}

.flexcol-90 {
    min-width:90%;
}

/* Container to wrap iframes so they auto size to a flexcol*/
.flexcontainer {
    position: relative;
    overflow: hidden;
    padding-top: 56.25%;
}

/* Class to apply to iframes inside a "flexcontainer" div */
.flexiframe {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    border:0;
}

/* Like "flexcontainer" but strictly for images */
.flexipiccontainer {
    position: relative;
    overflow: hidden;
   
}

/* Class to apply to img tags inside a flexipiccontainer div */
.flexipic {
    width:100%;
    height:auto;
}

.logocontainer {
    float:right;
    height: auto;
    width: 25%;
    margin: 5px;
}


/*Info Cards */
.infocardContainer, .infocardContainer-3 {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 1rem;
    margin: 1rem;
}

.infocardContainer-2 {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 1rem;
    margin: 1rem;
}

.infocardContainer-1 {
    display: grid;
    grid-template-columns: repeat(1,1fr);
    gap: 1rem;
    margin: 1rem;
}

.infocardContainer-4 {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 1rem;
    margin: 1rem;
}

.infocardContainer-5 {
    display: grid;
    grid-template-columns: repeat(5,1fr);
    gap: 1rem;
    margin: 1rem;
}

.infocard {
    display: flex;
    flex-direction: column;
    padding: 1rem 1rem;
    box-shadow:0px 15px 15px gray;
    background-color: #fefefe;
}

.infocard-image {
    height: auto;
    max-width: 50%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 15px;

}

.infocardBottomWrapper {
    margin-top: auto;
}

/* Set the buttons for infocards to have a better color */
.infocard .btn {
    background: #4aa966 !important;
    border-radius: 5px !important;
    /*background: #79acc1 !important;*/
}



/* Figure Captions */
figcaption {
    font-size: 90%;
    text-align: center;
}


/* Create an H5 Element Since WVI's theme stops at 4 */
h5 {
    font-size: 1.0em !important;
    padding-bottom: 0px !important;
    line-height: 1.0 !important;
}


.panel-collapse-buton {
    text-align: right;
}


/* Add a white background to divs such as panel bodies */

.bg-white {
    /*background-color: ededed;*/
}


/* Indent contents of panel body */
.panel-body-outer {
    /*padding-left:15px;*/
    padding-left: 15px;
    /*border-left:1px solid #79acc1;*/
}

/* Indent contents of nested panel body and apply a vertical line on the left border */
.panel-body-nested-1 {
    padding-left:15px;
}

.panel-body-nested-1-border {
    padding-left:15px;
    border-left:1px solid #79acc1;
}

.panel-collapse-button {
    text-align: center;
    width: 250px;
    margin: auto;
    padding-top: 10px;
    
    
}


/* Make Ordered List Numbers Bold */
ol > li::marker {
    font-weight: bold;
}

/* WVI has UL at 20px and OL at 40px. Match UL to OL's 40*/
/*
ol {
    padding-left: 20px !important;
} 
*/

/* Generic Indent by Pixel */
.indent-15 {
    padding-left:15px;
}

.indent-20 {
    padding-left:20px;
}

.indent-23 {
    padding-left:23px;
}


.indent-25 {
    padding-left:25px;
}

/* Unordered List of URL Links */
.ul-url {
    list-style: none;
    padding-left: 5px;
}

.ul-url li::before {
    /*content: "🌎"; */
    content: "\1F30e"; /* Regular Globe*/
    /*content: "\1F517";*/ /*Chain link*/
    /*content: "\1F310";*/ /* Globe with Meridians*/
    color: black;
    padding-right: 5px;
    font-weight: bold;
    font-family: 'Symbola';
}


/* Unordered List for Telephone Links */
.ul-telephone {
    list-style: none;
    padding-left: 5px;
}

.ul-telephone li::before {
    content: "\1F4DE";
    color: black;
    padding-right: 5px;
    font-weight: bold;
    font-family: 'Symbola';
}

/* Unordered List: Custom -- Has no "before" elements. Must assign class to each li element manually */
.ul-custom {
    list-style: none;
    padding-left: 5px;
    list-style-position: outside;
    /* Keep the second line indented same as the first */
    text-indent: -20px;
    margin-left: 20px; 
    
}


.ul-custom li {
    list-style-position: inside;
    padding-bottom: 5px;
}


.ul-custom p {
    padding-left: 24px;
    text-indent: 0px;
    margin-left: -20px; 
}

/* Icons for URL, Email, and Telephone*/
/* Can be used as an empty span or to class a <li> */

/* Calendar Icon */
.icons-cal::before {
    content: "\1F4C5";
    font-weight: normal;
    color: black;
    padding-right: 5px;
    padding-left: 0px;
    font-family: 'Symbola';
}

/* Code Icon */
.icons-code::before {
    /*content: "\2B24 "; */
    content: "{}";
    font-weight: bold;
    font-family: 'Symbola';
    font-size:20px;
    padding-right:5px;
}

/* Document Icon */
.icons-doc::before {
    /*content: "🖹";*/
    content: "\1F5B9";
    font-weight: bold;
    color: black;
    padding-right: 5px;
    padding-left: 2px;
    font-family: 'Symbola';
}

/* Down Arrow Icon */
.icons-down::before {
    content: "\25BC "; /* Down Arrow "▼" */
    font-weight: bold;
    color: black;
    padding-right: 5px;
    font-family: 'Symbola';
}

/* Email Icon */
.icons-email::before {
    /*content: "🖂";*/
    content: "\1F4E7";
    font-weight: bold;
    color: black;
    padding-right: 5px;
    font-family: 'Symbola';
}

/* Fax Icon */
.icons-fax::before {
    /*content: "🖷";*/
    content: "\1F5B7";
    font-weight: bold;
    color: black;
    padding-right: 5px;
    font-family: 'Symbola';
}


/* Folder Icon */
.icons-folder::before {
    content: "\f07b "; 
    font-weight: bold;
    color:#eada98;
    padding-right: 5px;
    /*font-family: 'Symbola';*/
    font-family: 'FontAwesome';
}

/* World Map Icon */
.icons-map::before {
    /*content: "🖷";*/
    content: "\1F5FA";
    font-weight: bold;
    color: black;
    padding-right: 5px;
    padding-left: -5px;
    font-family: 'Symbola';
}

/* Phone Icon */
.icons-phone::before  {
    content: "\1F4DE";
    font-weight: bold;
    color: black;
    padding-right: 5px;
    font-family: 'Symbola';
    text-decoration: none !important;
}

/* Square Icon */
.icons-square::before {
    /*content: "\2B24 "; */
    content: "\25A3";
    font-weight: bold;
    font-family: 'Symbola';
    font-size:24px;

}

.icons-box::before {
    /*content: "\2B24 "; */
    content: "\2610";
    font-weight: bold;
    color: black;
    padding-right: 5px;
    font-family: 'Symbola';
    text-decoration: none !important;
}

.icons-box-checked::before {
    /*content: "\2B24 "; */
    content: "\2611";
    font-weight: bold;
    color: black;
    padding-right: 5px;
    font-family: 'Symbola';
    text-decoration: none !important;
}


/* Search Icon */
.icons-search::before {
    content: "\1F50D";
    font-weight: bold;
    color: black;
    padding-right: 5px;
    font-family: 'Symbola';
}

/* Up Arrow Icon */
.icons-up::before {
    content: "\25B2 "; /* Up Arrow "▲" */
    font-weight: bold;
    /*color: black;*/
    padding-right: 5px;
    font-family: 'Symbola';
}


/* URL Icon */
.icons-url::before {
    content: "\1F30e"; /* Regular Globe "🌎" */
    /*content: "\1F517";*/ /*Chain link*/
    /*content: "\1F310";*/ /* Globe with Meridians*/
    font-weight: bold;
    color: black;
    padding-right: 5px;
    font-family: 'Symbola';
}


/* Tables */
.dep-table {
    border: 2px solid black;
    border-collapse: collapse;
    min-width: 50%;
    max-width: 100%;
}

.dep-table th {
    border: 1px solid black;
    background-color: #79acc1;
    font-weight: bold;
    color: #FFFFFF;
    padding: 5px;
    vertical-align: middle;
}

.dep-table td {
    border: 1px solid black;
    padding: 3px;
    vertical-align: middle;
}









/* Modal Dialogs for Embedded Apps */

.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: hidden; /* Enable scroll if needed */
 
}

.modal-content {
  background-color: #ededed;
  margin: 2% auto; /* 15% from the top and centered */
  padding: 10px;
  border: 1px solid #888;
  border-radius:8px;
  overflow-x: hidden;
  overflow-y: auto;
  font-size: 99%;
  max-width: 95%; /* Could be more or less, depending on screen size */
}

.close {
  color: #aaa;
  float:right;
  font-size: 28px;
  font-weight: bold;
  width:32px;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

.hideOnMobile {
    display: block;
}

details summary > * {
    display: inline;
}


/* Medium Large Screen Width */
@media screen and (max-width:97em) {
    .infocardContainer, .infocardContainer-4, .infocardContainer-5 { 
        grid-template-columns: repeat(3,1fr);
    }

}

/*Medium screen width */
@media screen and (max-width:87em) {
    .infocardContainer, .infocardContainer-3, .infocardContainer-4, .infocardContainer-5 { 
        grid-template-columns: repeat(2,1fr);
    }

    .infocardContainer-2 { 
        grid-template-columns: repeat(1,1fr);
    }

}

/* Small Screen / Mobile Switch */
@media screen and (max-width:67em) {
    .flexrow { 
        flex-direction: column; 
        /*align-items: center; */
        align-items: left;
    }
    
    .infocardContainer, .infocardContainer-2, .infocardContainer-3, .infocardContainer-4, .infocardContainer-5 { 
        grid-template-columns: repeat(1,1fr);
    }

    .hideOnMobile {
        display: none;
    }

}


