﻿/* use to override any styles, sitewide */
/* Breadcrumb Overrides */
nav.breadcrumb {
  padding: 0 0;
  background: rgba(0, 0, 0, 0);
  margin: -6px 0 6px;
}

nav.breadcrumb ol {
  margin: 0;
  padding-left: 0;
  list-style: none;
}

nav.breadcrumb li {
  display: inline;
}

nav.breadcrumb li + li::before {
  display: inline-block;
  margin: 0 0.25em;
  height: 0.8em;
  content: '>';
}

nav.breadcrumb [aria-current="page"] {
  font-weight: 700;
  text-decoration: none;
}
/* Round Button Overrides*/
a.button-L p{
    color:white;
}
.button-L{
    padding: 3px 6px;
    display: flex;
    background: #37246b;
    color: white;
    font-weight: bold;
    border-radius: 67px;
    height: 4em;
    text-align: center;
    margin: 5px 27px 25px;
}
.button-L p{
    margin: auto;   
    font-weight: bold;
    font-size: 17px;
    line-height: 22px;
}
.button-L:hover{
    opacity: 0.8;
}
.bottom-margin{
    margin-bottom: 12px;
}

.button-L-short{
	height: 100%;
}

@media screen and (min-width:575px) and (max-width:991px){
  .button-L{
    margin:13px 5px;
    padding: 8px;
  }
}
@media screen and (max-width:575px){

  .button-L{
      margin: 5px -1px 25px;
  }
}
@media screen and (max-width:376px){

  .button-L p{
      font-size: 14px;
  }
}

/* Chevron Overrides*/
.chevron-parent{
    margin-top: 59px;
    margin-bottom: 70px;
    text-align: center;
    color: white;
}
.chevron{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 110%;
}
.center-in-previous-sibling{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
@media screen and (min-width:992px){
  .chevron-parent{
    padding: 0 2%;
    font-size: 20px;
    line-height: 30px;
  }
}
@media screen and (min-width:575px) and (max-width:991px){
  .chevron-parent{
      margin-bottom: 43px;
  }
}

@media screen and (max-width:767px){
  .chevron-parent{
    margin-top: 37px;
    margin-bottom: 40px;
  }
    
}
@media screen and (max-width:575px){
  .chevron-parent{
    font-size: 10px;
    line-height: 14px;
  }
}
@media screen and (max-width:376px){
  .chevron-parent{
    font-size:8px;
  }
}

/* Right/Left Image Overrides*/
.left-img-container{
    float: left;
    clear: left;
    margin: 0 24px 0 0;
}
.right-img-container{
    float: right;
    clear: right;
    margin: 0 0 0 24px;
}
.left-img-container>img{
    margin-bottom: 20px;
}
.right-img-container>img{
    margin-bottom: 20px;
}
.float-img-icon{
       width: 92px;
}
.float-img-small{
       width: 192px;
}
.float-img-medium{
       width: 300px;
}
.float-img-large{
       width: 372px;
}
.float-img-extra-large{
	width: 593px
}

@media screen and (max-width:991px){
        .left-img-container{
            text-align: center;
            float: none;
            margin: auto;
        }
        .left-img-container>img{
           display: inline-block; 
           margin-bottom: 20px;
        }
        .right-img-container{
            text-align: center;
            float: none;
            margin: auto;
        }
        .right-img-container>img{
           display: inline-block; 
           margin-bottom: 20px;
        }
        .float-img-medium{
            width: 70%;
        }
        .float-img-large{
            width: 75%;
        }
        .float-img-extra-large{
            width: 80%;
        }
}

/* Homepage Overrides 2/16/2022*/
@media screen and (min-width:992px){
	.image-boxes{
		margin-bottom: -30px;
		margin-top: 50px;
	}
	.full-hero:not(.gutter-igx){
		margin-bottom: 25px;
	}
	.stripe{
		margin: 50px 0;
	}
	.tiles{
		margin-bottom: 38px;
	}
	.icon-wrap {
		margin: 19px 0 -12px 0;
	}
	.stripe+.container .icon-wrap{
		margin: 0 0 50px 0;
	}
	.tiles .tile {
        height: 260px;
    }
}

/* Form Carrot Fix */
select.styled-select {
    z-index: 1;
    background: transparent;
}

/* Dropdown Menu (No Animation) Overrides*/
.dropdown-nav-wgt{
        background-color: #006277;
        color: white;
        padding: 16px 4px;
        font-size: 16px;
        /*border-radius: 5px;*/
        text-align: center;
        display: inline-block;
    }
    
    .dropdown-wgt{
        position: relative;
        display: inline-block;
        margin: 10px 5px;
    }
    
    .dropdown-item-wgt{
        display: none;
        position: absolute;
        background-color: white;
        width: 100%;
        box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
        z-index: 1;
        border: 1px solid black;
    }
    
    .dropdown-item-wgt a{
        color:#3b4985;
        padding: 12px 16px;
        text-decoration: none;
        display: block;
    }
    
    .dropdown-item-wgt a:hover{background-color: #e2e5eb;}

    .dropdown-wgt:hover .dropdown-item-wgt {display: block;}
    .dropdown-wgt:focus .dropdown-item-wgt {display: block;}
    .dropdown-wgt:focus-within .dropdown-item-wgt {display: block;}
    
    .dropdown-wgt:hover .dropdown-nav-wgt {opacity: 0.8; border-bottom-left-radius: 0; border-bottom-right-radius: 0;}
    .dropdown-wgt:focus-within .dropdown-nav-wgt {opacity: 0.8; border-bottom-left-radius: 0; border-bottom-right-radius: 0;}
    
    @media screen and (max-width:767px){
        .dropdown-item-wgt {display: block; position: static; box-shadow: none;}
        .dropdown-wgt {position: static}
        .dropdown-wgt .dropdown-nav-wgt {border-bottom-left-radius: 0; border-bottom-right-radius: 0;}
    }
/* Content Button Overrides*/
.content_button{
        background-color:#ebe9f0;
    border-color:#968cb1;
    border-style: solid;
    border-width: 1px;
    padding: 17px 17px 0px 17px;
    margin-bottom: 12px;
}
.content_button>.col-lg-8>p{
    font-weight: 600;
    margin: 0;
    margin-top: 5px;
    margin-bottom: 17px;
}
/* Color Col Overrides */
.color_row{
	display: flex;
    align-items: stretch;
}
.color_col{
    padding: 7px;
    /*background-color: green;*/
}
.color_col>div{
	border-style: solid;
    border-width: 1px;
    padding: 20px;height: 100%;
    width: 100%;
}
.color_col.purple_col>div{
    background-color:#ebe9f0;
    border-color:#4e3d7c;
}
.color_col.blue_col>div{
    background-color: #e2f3f6;
    border-color: #2c90a6;
}
.color_col.green_col>div{
    background-color: #e9efe2;
    border-color: #93b26f;
}

.color_col hr{
    margin: 10px 0;
}
/* Leadership Page Overrides*/
.leader-cell {
    padding: 0 20px 40px 20px;
}
.opened .roll-dropdown-icon{
    -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.opened{
    border-bottom: 1px solid #C1B6AB !important;
}
.leader-box {
    margin-top: 60px;
}
.drop100.w100 {
    margin-bottom: 5px;
}
.roll-dropdown-icon {
    position: relative;
    margin-right: 20px;
    margin-top: -28px;
    height: 50px;
    -webkit-transition: -webkit-transform .4s ease-in-out;
          transition:         tranRsform .4s ease-in-out;
}
.toggle{
    cursor: pointer;
}
@media screen and (max-width:1199px)and (min-width:992px){
    .roll-dropdown-icon {
        height:40px;
    }
}
div.section{
    padding: 0px 0px 1px 0px!important;
}

.dropdown-icon-container{
    text-align: right;
    height: 0px;
    margin-bottom: 3px;
}

/* IGP Stakeholder Overrides */
.igp_email_box{
        background-color:#ebe9f0;
    border-color:#968cb1;
    border-style: solid;
    border-width: 1px;
    padding: 17px 17px 0px 17px;
    margin-bottom: 12px;
}
.igp_email_box>.col-lg-8>p{
    font-weight: 600;
    margin: 0;
    margin-top: 5px;
    margin-bottom: 17px;
}
.igp_safety_box{
    background-color:#e9efe2;
    border-color:#c9d8b6;
    border-style: solid;
    border-width: 1px;
    padding: 17px 17px 0px 17px;
    margin-bottom: 12px;
}



.igp-dropdown-cell{
    padding: 0 20px 10px 20px;
    border-color: #633E65;
    border-style: solid;
    border-width: 1px;
    margin: 0px -6px;
    margin-bottom: 12px;
}
.igp-dropdown-cell div.accordion.opened{
    border-bottom: none !important;
    
}
.igp-dropdown-cell div.accordion.opened:after{
    bottom: 0px;
    content: none;
}
.igp-dropdown-cell h3{
    width: 93%;
    font-size: 18px;
    font-weight: 500;
    color: #37246B;
}

.igp-dropdown-cell .roll-dropdown-icon {
    height: 50px;
    -webkit-transition: -webkit-transform .4s ease-in-out;
          transition:         transform .4s ease-in-out;
              margin-top: 8px;
}

/* IGP Overrides*/

.igp_purple_box{
    padding: 7px;
    /*background-color: purple;*/
}
.igp_blue_box{
    padding: 7px;
    /*background-color: blue;*/
}
.igp_green_box{
    padding: 7px;
    /*background-color: green;*/
}
.igp_purple_box>div{
    background-color:#ebe9f0;
    border-color:#4e3d7c;
    border-style: solid;
    border-width: 1px;
    padding: 20px;height: 100%;
    width: 100%;
    
}
.igp_blue_box>div{
    background-color: #e2f3f6;
    border-color: #2c90a6;
    border-style: solid;
    border-width: 1px;
    padding: 20px;
    height: 100%;
    width: 100%;
    
}
.igp_green_box>div{
    background-color: #e9efe2;
    border-color: #93b26f;
    border-style: solid;
    border-width: 1px;
    padding: 20px;height: 100%;
    width: 100%;
    
}

.igp_green_box hr{
    margin: 10px 0;
}
.igp_blue_box .row{
    justify-content: space-around;
}
.split-column-box {
  display: flex;
  flex-wrap: wrap;
  /*background-color: Blue;*/
  flex-direction: column;
  height: 381px;
    align-content: space-around;
}

.split-column-box > div {
  /*background-color: Red;*/
  width: 45%;
}
.split-column-box hr {
    margin: 10px 0;
}
.split-column-box p {
    margin-bottom: 0;
}
a:hover .imgbtn, a:focus .imgbtn {
    opacity: 0.8;
}
.working_image{
    width: 100px;
}
.show_on_small{
    display: none;
}
.igp_today{
    border-color: black;
    border-style: solid;
    border-width: 1px;
    padding: 20px;
    margin: 36px 0;
}
@media screen and (min-width:1200px){
    .promo_right_from_vid{
        height: 395.766px;
    }
    .split-column-box{
        height: 322px
    }
}
@media screen and (min-width:992px){
    .igp_blue_box{
        height: 419px;
    }
    .igp_green_box{
        height: 419px;
    }
}
@media screen and (max-width:1199px)and (min-width:992px){
    .promo_right_from_vid{
        height: 332.266px;
    }
    .igp_blue_box {
        height: 477px;
    }
    .igp_green_box {
        height: 477px;
    }
}
@media screen and (max-width:575px){
    .split-column-box > div {
        width: auto;
    }
    .split-column-box{
        height: auto;
    }
    .show_on_small{
        display: block;
    }
}

/* Lightbox Overrides*/
.lb-black{
    position: fixed;
    bottom: 0;
    left: 0;
    background: #000;
    width: 100%;
    height: 100%;
    z-index: 1000;
    opacity: 40%;
}
.lb-inner{
  position: fixed;
  background: #FFF;
  padding: 0px;
  width: 77%;
  /*max-width: 500px;*/
  top: 50%;
  left: 50%;
z-index: 1001;
transform: translate(-50%, -50%);
max-width: 99%;
max-height: 99%;

}
.lb-header{
    background: #1F4389;
    color: white;
    width: 100%;
    padding: 10px 20px 3px 20px;
    position: relative;
}

.lb-header>h2{
    padding-right:22px;
}

.lb-text{
    padding: 20px;
    /*max-height: 500px;*/
    overflow: scroll;
    overflow-x: auto;
    overflow-y: auto;
    width: 100%;
}
.lb-x{
    font-family: Arial, Baskerville, monospace;
    color: #DDD;
    position: absolute;
    top: 13px;
    right: 13px;
    font-size: 43px;
    cursor: pointer;
}
.lb-x:hover{
    color: white;
    
}
.popup-source{
    cursor: pointer;
}