@charset "UTF-8";
/* CSS Document */

/* -------------------- HERO SECTION -------------------- */
/* ------------------------------------------------------ */
.hero__background-image--container{
    width: 100%;
    height: 510px;
    position: absolute;
	background: rgb(255,255,255);
	background: linear-gradient(170deg, rgba(255,255,255,1) 0%, rgba(236,241,245,1) 80%);
	
	-webkit-animation: animate-slide-down .6s ease-out;
    animation: animate-slide-down .6s ease-out;
    opacity: 0;
    animation-delay: .5s;
    -webkit-animation-fill-mode: forwards; 
    -moz-animation-fill-mode: forwards;    
    -o-animation-fill-mode: forwards;      
    -ms-animation-fill-mode: forwards;     
    animation-fill-mode: forwards;
	
}

#shape-1{
	width: auto;
	position: absolute;
	height: 201.23px;
	bottom: 0;
	left: 0;
}

#shape-2{
	width: auto;
	position: absolute;
	height: 510px;
	bottom: 0;
	left: 0;
}

#shape-3{
	width: auto;
	position: absolute;
	height: 510px;
	top: 0;
	right: 0;
}

#shape-4{
	width: auto;
	position: absolute;
	height: 235.43px;
	top: 0;
	right: 0;
}

.hero__background-image{
	width: 100%;
	height: 100%;
}

.hero__container--transparent {
    max-width: 1190px;
    height: 560px;
    padding: 0 5em 60px 5em;
    margin: 0 auto;
    position: relative;
    display: flex;
    align-items: flex-start;
}


#mob__main-image {
    display: none ;
}

.news-items__tablet {
    display: none;
}

.hero__left-container--text {
    max-width: 35%;
    float: left;
    margin-top: 120px;
    padding-top: 15px;
}

.hero__left-container--NEW {
    padding: 5px 7px 3px 4px;
    border-radius: 20px;
    background-color: rgba(236,241,245,.4);
    width: 450px;
    transition: all .2s ease-in-out;
    margin-bottom: 2.5em;
}

.hero__left-container--NEW:hover {
    transform: translateY(-2px);
    box-shadow: 0 2px 6px rgba(0,0,0,.12);
    cursor: pointer;
}

.hero__left-container--NEW p {
    font-size: .8em;
}

.hero__NEW-text {
    background-color: var(--ge-bright-blue);
    padding: 2px 5px 1px 5px;
    border-radius: 10px;
    color: var(--white);
}


/*HERO SECTION - MEDIA QUERIES*/
@media only screen and (max-width: 1350px) and (min-width : 1150px) {
    
 
	#shape-3{
		display: none;
	}

	#shape-4{
		display: none;
	} 	
    
       
}

/*HERO SECTION - MEDIA QUERIES*/
@media only screen and (max-width: 1200px) and (min-width : 1100px) {
     .hero__container--transparent {
        max-width: 1190px;
        height: 500px;
        padding: 15px 5em 60px 5em;
        margin: 0 auto;
        position: relative;
        display: inline-flex;
        align-items: center;
    }
    
    .hero__left-container--text {
        max-width: 35%;
        float: left;
        margin-top: 120px;
        padding-top: 15px;
    }  
}

@media only screen and (max-width: 1100px) and (min-width : 600px) {
    .hero__background-image--container{
    }
    .hero__container--transparent {
        width: 100%;
        height: auto;
        padding: 100px 5em 3em 5em;
        margin: 0 auto;
        position: relative;
        display: block;
        box-sizing: border-box;
    }
	
	#shape-3{
		display: none;
	}

	#shape-4{
		display: none;
	}  	
    
    .hero__left-container--text {
        max-width: 1190px;
        height: auto;
        background-color: transparent;
        margin-top: 0px;
        padding: 1em 5em;
        margin-bottom: 45px;
        float: none;
        text-align: center;
    }    
    
    .hero-container__main-image--right {
        display: none;
    }
    
    .news-items__tablet {
        display: block;
        padding: 0em;
    }
    
    .hero-news-container--tablet__grid {
        display: grid;
        grid-auto-rows: 280px; /*AUTO ROWS*/
        grid-template-columns: repeat(auto-fit, minmax(150px, auto)); 
        justify-content: center;
        grid-gap: 15px;
        max-width: 1190px;
        margin: 0 auto ;
    }
    
    .news-item--grid-item{
        position: relative;
        height: auto;
        justify-self: center;
        background-color: var(--white);
        box-sizing: border-box;
        float: left;
        -webkit-transition: all .2s;
        transition: all .3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        cursor: pointer;
        padding: 15px;
        text-align: left;
        border: 1px solid var(--light-grey);
    }
    .news-item--grid-item:hover{
        border: 1px solid var(--mid-grey);
        box-shadow: 0 10px 20px rgba(0,20,60,0.1);
    }
    
    .news-item__image {
        width: calc(100% + 30px);
        margin: -20px 0 10px -15px;
    }
    
    .news-button__ghost {
        position: absolute;
        padding: 11px 0px 10px 0px;
        bottom: 0;
        left: 15px;
        width: auto;
        font-family: var(--web-font);
        font-weight: 600;
        font-style: normal;
        font-size: .7em;
        line-height: 1em;
        text-align: left;
        letter-spacing: 0.01em;
        text-decoration: underline;
        color: var(--ge-bright-blue);
        border-radius: 30px;
        text-transform: uppercase;
        transition: all 0.25s ease-in-out;
    }

    .news-button__ghost:hover {
        color: var(--ge-bright-blue-hover);
        cursor: pointer;
    }
}

@media only screen and (max-width: 600px) and (min-width : 300px) {
    
    .hero__container--transparent {
        max-width: 1190px;
        height: auto;
        padding: 8em 3em 0 3em;
        margin: 0;
        position: relative;
    }
	
	#shape-2{
		display: none;
	}
    
    #mob__main-image {
        display: block;
        margin: 20px auto 0 auto;
        
    }
    
    .hero__left-container--text {
        max-width: 100%;
        float: left;
        text-align: center;
        margin-top: 0em;
    }
    
    .hero-container__main-image--right {
        display: none;
    
    }
		
}

/* ----------------------- GE PRODUCT CATEGORIES - HOME PAGE ------------------- */
/* ------------------------------------------------------------------------------*/

.GE-product-cat__ScreenWidth {
    width: 100%;
    height: auto;
    float: left;
    padding:86px 0;
}

.GE-products__container {
    width: auto;
    margin: 0 auto;
    text-align: center;
}

.product-container__background-dots {
    position: absolute;
    left: 50px;
    top: -100px;
}


/* GE PRODUCT CATEGORIES - GRID  */
.GE-products__container--transparent {
    width: 100%;
    display: inline-grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    grid-template-rows: 150px 150px;
    grid-row-gap: 10px;
    grid-column-gap: 10px;
    justify-content: center;
    align-content: center;
    background-color: transparent;
}


/* GE PRODUCT CATEGORIES - MEDIA QUERIES */
@media only screen  and (max-width : 1400px) {
    .GE-products__container--transparent {
        display: inline-grid;
        grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
        grid-template-rows: 150px 150px;
        grid-row-gap: 10px;
        grid-column-gap: 10px;
    }

}
	

/* ----------  TABLET SCREEN SIZE ------ */
@media only screen  and (max-width : 1200px) {
    .GE-products__container {
        padding: 0 10px;
    }
    
    .GE-products__container--transparent {
        display: inline-grid;
        grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
        grid-template-rows: 150px 150px;
        grid-row-gap: 10px;
        grid-column-gap: 10px;
    }

  
}

/* ----------  PHONE SCREEN SIZE ------ */
@media only screen  and (max-width : 800px) {
    .GE-products__container {
        padding: 0 10px;
    }
    
    .GE-products__container--transparent {
        display: inline-grid;
        grid-template-columns: 170px 170px;
        grid-template-rows: 185px 185px 185px 185px 185px;
        grid-gap: 10px;
    }

}

/* ----------  PHONE SCREEN SIZE ------ */
@media only screen  and (max-width : 600px) {
   .GE-product-cat__ScreenWidth {
        width: 100%;
        height: auto;
        float: left;
        padding:110px 0 86px 0;
    }
}



/* ----------- LATEST NEWS AND EVENTS ----------------*/
/* ------------------------------------------------------------*/
.New-Products-news__grey-box--lightgrey {
    background-color: rgba(236, 241, 245, 0.7);
    width: 100%;
    height: auto;
    float: left;
    padding: 86px 0;
}

.news__ScreenWidth {
    width: auto;
    margin: 0 auto;
    text-align: center;
}

/* LATEST PRODUCTS NEWS AND EVENTS - GRID */
.New-Products-news__container {
  display: inline-grid;
  grid-template-columns: 282px 282px 282px 282px;
  grid-template-rows: 380px;
  grid-gap: 10px;
  justify-content: center;
  align-content: center;
}

.New-Products-news__container > div {
  background-color: rgba(255, 255, 255, 0.8);
}


/* LATEST PRODUCTS NEWS AND EVENTS - MEDIA QUERIES */
@media only screen  and (max-width : 1224px) {
       
    .New-Products-news__container {
        display: inline-grid;
        grid-template-columns: 282px 282px;
        grid-template-rows: 380px 380px;
        grid-gap: 20px;
        justify-content: center;
        align-content: center;
    }
    
    .news__ScreenWidth  {
        width: auto;
        margin: 0 auto;
        text-align: center;
        padding: 0 10px;
    }
    
    
}

/* ----------  PHONE SCREEN SIZE ------ */
@media only screen  and (max-width : 600px) {
	.New-Products-news__container {
	  display: inline-grid;
	  grid-template-columns: 282px;
	  grid-template-rows: 380px 380px 380px 380px;
	  grid-gap: 20px;
	  justify-content: center;
	  align-content: center;
	}

	.news__ScreenWidth  {
	  width: auto;
	  margin: 0 auto;
	  text-align: center;
	}
}


/* -----------------  PRODUCTS BY MANUFACTURER - SELECT VERSION --------------- */
/* -----------------------------------------------------------------------------*/

.outside-container__ICP-select {
    width: 100%;
	height: auto;
	background-color: transparent;
	/*text-align: center;*/
    position: relative;
    padding-bottom: 43px;
    border-bottom: 1px solid rgba(76, 112, 144, 0.30);
}

.ICP-Background {
    position: absolute;
    bottom: 0px;
    z-index: 1;
    width: 100%;
    height: auto;
    
}

.view-products__page_container{
	display: grid;
	width: auto;
	grid-template-columns: 300px 300px 250px;
    grid-template-rows: auto;
	grid-column-gap: 20px;
	justify-content: center;
    background-color: var(--white);
    border-radius: 4px;
    box-shadow: var(--tile-drop-shadow-hover);
    z-index: 2;
    position: relative;
    padding: 60px 40px;
}


.ICP-select__tile{
    min-height: 150px;
    position: relative;
    z-index: 10;
    text-align: left;
}

.ICP-select__tile-NoBefore{
    min-height: 150px;
    position: relative;
    z-index: 10;
    text-align: left;
}

.ICP-select__tile::before {
    content: "";
    position: absolute;
    width: 65%;
    height: 1px;
    background-color: var(--dark-grey);
    left: 90px;
    top: 30px;
    text-align: left;
}


/*---------BUTTON MANUFACTURER_______________*/
.ICP-select {
    -webkit-transition: all .2s; /* Safari */
    transition: all .2s ease-in-out;
    cursor: pointer;
    text-align: center;

}

#selectICP, #selectAgilent, #selectAnalytik, #selectGBC, #selectHitachi, #selectHoriba, #selectLeeman, #selectNu, #selectPKE, #selectShimadzu, #selectSpectro, #selectThermo {
    width: 80%;
	height: 60px;
    padding: 0 10px;
    font-family: var(--web-font);
    font-weight: 400;
    font-style: normal;
    font-size: 1em;
    color: var(--white);
    background-color: var(--ge-bright-blue); 
    border:none;
    border-radius: 60px;
    text-align-last:center;
    cursor: pointer;
    -webkit-appearance: none;
}

#selectICP:hover, #selectAgilent:hover, #selectAnalytik:hover, #selectGBC:hover, #selectHitachi:hover, #selectHoriba:hover, #selectLeeman:hover, #selectNu:hover, #selectPKE:hover, #selectShimadzu:hover, #selectSpectro:hover, #selectThermo:hover {
    background-color: var(--ge-bright-blue-hover); 

}

.select-container__grey {
    width: 80%;
    height: 60px;
    background-color: var(--light-grey);
    border-radius: 60px;
    position: absolute;
    bottom: 3px;
    z-index: -1;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: .5;
}

.select-container__grey p{
    opacity: .4;
    
}

.select-container__grey_100 {
    width: 100%;
    height: 60px;
    background-color: var(--light-grey);
    border-radius: 60px;
    position: absolute;
    bottom: 3px;
    z-index: -1;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: .5;
}

.select-container__grey_100 p{
    opacity: .4;
    
}


.subheading1{
    width: 64px;
    height: 60px;
    border-radius: 70px;
    border: 1px solid var(--dark-grey);
	font-family: var(--web-font);
    font-weight: 400;
    font-style: normal;
    font-size: 1.3em;
    line-height: 1.2em;
    color: var(--dark-grey);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0px 0 20px 0;
    padding-top: 4px;
    z-index: 50;
}

.subheading2{
    font-family: var(--web-font);
    font-weight: 400;
    font-style: normal;
    font-size: .9em;
    line-height: 1.5em;
    color: var(--mid-grey);
    text-align: left;
    margin: 0 0 20px 0;
    padding: 0;
    text-rendering: optimizeLegibility;
}


/*  ---------  PINK BUTTON  ---------  */
button {
    background-color: transparent;
    border: none;
	padding: 0px;
    margin: 0;
}

.button-container--pink_select {
    width: 100%;
    height: 62px;
    text-align: center;
}

.button--pink_select {
    width: 100%;
	height: 60px;
    background: var(--coral); 
    border: none;
    border-radius: 60px; 
    padding: 0px 10px;
    text-align: center;
    -webkit-transition: all .2s; /* Safari */
    transition: all .2s ease-in-out;
    cursor: pointer;
    margin: 0;
    display: flex;
    align-items: center;
    box-sizing: border-box
}

.button--pink_select:hover {
    background: var(--coral-hover);
    transform: translateY(-2px);
    box-shadow: 0 7px 20px rgba(0,0,0,.15); 
}


.button-text a {
    color: #fff;
    font-family: var(--web-font);
    font-weight: 500;
    font-style: normal;
    font-size: 1.4em;
    line-height: 1.5em;
    text-align: center;
    margin: 0 auto;
    padding: 0;
}

.button--pink_select a:hover {
    color: #fff;
}


/* -----------------  PRODUCTS BY MANUFACTURER --------------- */
/* ------------------------------------------------------------*/
.by-manufacturer__ScreenWidth {
    width: 100%;
    height: auto;
    float: left;
    padding: 86px 0;
}

.by-manufacturer__container {
    width: auto;
    margin: 0 auto;
    text-align: center;
}

/* PRODUCTS BY MANUFACTURER - GRID */
.by-manufacturer__container--transparent {
    display: inline-grid;
    grid-template-columns: 222px 222px 222px 222px 222px;
    grid-template-rows: 185px 185px;
    grid-gap: 20px;
    justify-content: center;
    align-content: center;
    background-color: #FFFFFF;
}

.by-manufacturer__container--transparent > div {
    background-color: rgba(255, 255, 255, 0.8);
    text-align: center;
    padding: 20px 0;
    font-size: 30px;
}


/* PRODUCTS BY MANUFACTURER - MEDIA QUERIES */
@media only screen  and (max-width : 1224px) {
    
    .by-manufacturer__container--transparent {
        display: inline-grid;
        grid-template-columns: 222px 222px 222px 222px;
        grid-template-rows: 185px 185px 185px;
        grid-gap: 20px;
        justify-content: center;
        align-content: center;
        background-color: transparent;
    }
   
	
    #spectro {
        grid-column-start: 3;
        grid-column-end: 2;
    }
	
    #thermo {
        grid-column-start: 3;
        grid-column-end: 3;
    }
}


/* GE PRODUCT CATEGORIES - MEDIA QUERIES */
@media only screen  and (max-width : 1000px) {
     .by-manufacturer__container {
        width: auto;
        margin: 0 auto;
        text-align: center;
        padding: 0 10px;
    }
    
    .by-manufacturer__container--transparent {
        display: inline-grid;
        grid-template-columns: 222px 222px 222px;
        grid-template-rows: 185px 185px 185px 185px;
        grid-gap: 20px;
        justify-content: center;
        align-content: center;
        background-color: #FFFFFF;
    }

    #spectro {
        grid-column-start: 2;
        grid-column-end: 2;
    }
	
    #thermo {
        grid-column-start: 3;
        grid-column-end: 3;
    }
}
	

/* ----------  PHONE SCREEN SIZE ------ */
@media only screen  and (max-width : 800px) {
    .by-manufacturer__container {
        width: auto;
        margin: 0 auto;
        text-align: center;
        padding: 0 10px;
    }
    
    .by-manufacturer__container--transparent {
        display: inline-grid;
        grid-template-columns: 180px 180px;
        grid-template-rows: 185px 185px 185px 185px 185px;
        grid-gap: 10px;
        justify-content: center;
        align-content: center;
        background-color: transparent;
    }
    
    
    #thermo {
        grid-column-start: 2;
        grid-column-end: 2;
    }
}



/* ------------------ PRODUCT FEATURE PAGES ----------------*/
/* ---------------------------------------------------------*/

/*---------------- FEATURES HERO SECTION ----------*/
/*---- FEATURES HERO FLEXBOX CONTAINER ----*/
.accessories_hero--container {
    padding: 86px 8em;
    list-style: none;
    margin: 0 auto;
    max-width: 1190px;

    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;

    -webkit-flex-flow: row wrap;
    justify-content: space-between;
}

/*---- HERO FLEXBOX CHILD ----*/
.accessories_flex-item {
    width: 530px;  /* Or whatever */
    height: auto; /* Or whatever */
    /*margin: auto;  /* Magic! */
    /*margin-top: 20px;*/
}

.product-features__button-container {
    width: auto;
    margin-top: 30px;
}

.product-features-image--size{
    width: 100%;
}

@media only screen  and (max-width : 1315px) {
    .accessories_flex-item {
        width: 450px;
    }
}

@media only screen  and (max-width : 1200px) {
    .accessories_hero--container {
        padding: 86px 5em;
    }
}

/*----HIDE IMG----*/
/*@media only screen  and (max-width : 1155px) {
    .accessories_flex-item {
        margin: auto;
    }
        
    .product-features-image--size{
        margin-top: 4em;
    }
}*/

/*-------VIDEO POP UP------*/
#fade {
  display: none;
  position: fixed;
  top: 0%;
  left: 0%;
  width: 100%;
  height: 100%;
  background-color: black;
  z-index: 1001;
  -moz-opacity: 0.8;
  opacity: .80;
  filter: alpha(opacity=80);
    transition: all .2s ease-in-out;
}

#light {
  display: none;
  position: absolute;
  top: 40%;
  left: 50%;
  max-width: 720px;
  max-height: 400px;
  margin-left: -360px;
  margin-top: -180px;
  background: #FFF;
  z-index: 1002;
  overflow: visible;
  transition: all .2s ease-in-out;
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);  
}

#boxclose {
  float: right;
  cursor: pointer;
  color: #fff;
  border-radius: 3px;
  font-size: 31px;
  font-weight: bold;
  display: inline-block;
  line-height: 0px;
  padding: 11px 3px;
  position: absolute;
  right: -30px;
  top: -30px;
  z-index: 1002;
  opacity: 0.9;
    transition: all .2s ease-in-out;
}

.boxclose:before {
  content: "×";
}

.boxclose:before {
  content: "×";
}

.video_container{
	display: none;
}

.embed-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    max-width: 100%;
}

.embed-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

@media only screen  and (max-width : 900px) {
	.product-features__button-container {
        margin-bottom: 60px;
    }
    
    .watch_video{
        display: none;	
	}
	
	.video_container{
        display: block;
    }
}


/* ----------PRODUCT FEATURE PAGES - FEATURES SECTION --------- */
.product-features__background-grey{
    background-color: var(--light-grey);
    width: 100%;
    height: auto;
    padding: 86px 0;
}

.product-features__container--transparent{
	display: grid;
	width: auto;
	grid-template-columns: 530px 530px;
	grid-template-rows: auto auto;
	grid-column-gap: 130px;
	justify-content: center;
}

.product-features__container--transparent > div {
  	text-align: left;
}

/*PRODUCT FEATURE PAGES - FEATURES SECTION - MEDIA QUERIES*/
@media only screen  and (max-width : 1224px) {
	.product-features__container--transparent  {
		display: grid;
		width: auto;
		grid-template-columns: 70%;
		grid-template-rows: auto;
		grid-row-gap: 10px;
		justify-content: center;  
	}
}

@media only screen  and (max-width : 990px) {
	.product-features__container--transparent{
		display: grid;
		width: auto;
		grid-template-columns: 90%;
		grid-row-gap: 10px;
		grid-template-rows: auto;
		justify-content: center; 
	}
}



/* ----------------PRODUCT FEATURE PAGES - INFORMATION BODY TEXT-------------*/
.product__info--grid-_container {
	display: grid;
	width: auto;
	grid-template-columns: 530px 530px;
	grid-template-rows: auto auto auto auto auto;
	grid-column-gap: 130px;
	grid-row-gap: 60px;
	justify-content: center;
    padding: 86px;
}

.product__info--grid-_container > div {
	background-color: rgba(255, 255, 255, 0.8);
	text-align: left;
}

.product-info__grid--item2{ /*Positions item2 to span 2 rows*/
	grid-row-start: 1;
	grid-row-end: 3;
	grid-column-start: 2;
	grid-column-end: 2;
}

.product-info__grid--item8{ /*Positions item8 to span 2 rows*/
	grid-row-start: 4;
	grid-row-end: 6;
	grid-column-start: 2;
	grid-column-end: 2;
}

.product-info__img{
	width: 80%;
	height: auto;	
}



/*PRODUCT FEATURE PAGES - INFO BODY TEXT - MEDIA QUERIES*/
@media only screen  and (max-width : 1224px) {
	.product__info--grid-_container {
		display: grid;
		width: auto;
		grid-template-columns: 70%;
		grid-template-rows: auto;
		grid-column-gap: 40px;
		grid-row-gap: 20px;
		justify-content: center;  
	}

	.product-info__grid--item2{
		grid-row-start: auto;
		grid-row-end: auto;
		grid-column-start: 1;
		grid-column-end: 1;
	}

	.product-info__grid--item8{
		grid-row-start: auto;
		grid-row-end: auto;
		grid-column-start: 1;
		grid-column-end: 1;
	}

	.product-info__img{
		width: 60%;
		height: auto;
		margin: 0 10%;	
	}
}

@media only screen  and (max-width : 990px) {
	.product__info--grid-_container {
		display: grid;
		width: auto;
		grid-template-columns: 90%;
		grid-template-rows: auto;
		grid-column-gap: 40px;
		grid-row-gap: 20px;
		justify-content: center; 
	}

	.product-info__grid--item2{
		grid-row-start: auto;
		grid-row-end: auto;
		grid-column-start: 1;
		grid-column-end: 1;
	}

	.product-info__grid--item8{
		grid-row-start: auto;
		grid-row-end: auto;
		grid-column-start: 1;
		grid-column-end: 1;
	}
}

@media only screen  and (max-width : 990px) {
	.product-info__img{
		width: 80%;
		height: auto;
	}
}


/* -------------------CUSTOMER COMMENTS--------------------*/
/* --------------------------------------------------------*/

/* CUSTOMER COMMENTS - MEDIA QUERIES*/


/*--------------------- ICP MODEL PRODUCT PAGE TILES ---------------------*/
/*------------------------------------------------------------------------*/

/*GRID DATA TILES*/

/*ICP MODEL PRODUCT PAGE TILES - GRID*/

/*ICP MODEL PRODUCT PAGE TILES - GRID - MEDIA QUERIES*/



/*-------------------- PRODUCT PART NUMBER PAGE ------------------*/
/*----------------------------------------------------------------*/
.part-no__page--screenwidth{
	width: 100%;
	height: auto;
    padding: 86px 0;
}

.part-no__page--container{
	display: grid;
	max-width: 1190px;
    margin: 0 auto;
    padding: 0 8em;
	grid-template-columns: 530px 530px;
	grid-template-rows: auto auto;
    grid-row-gap: 20px;
	justify-content: space-between;
}

.part-no__page--container > div {
  	text-align: left;
}

.part-no_img{ /*Aligns image right in grid*/
	grid-column-start: 2;
	grid-column-end: 2;
	grid-row-start: 1;
	grid-row-end: 3;
}

.product-image--size{
	width: 100%;
	height: auto;
}
.part-no_description {
    padding: 25px 0;
    border-top: 1px solid var(--light-grey);
}

.part-no_note {
    border-top: 1px solid var(--light-grey);
    list-style: none;
    padding: 25px 0 0 0;
    margin: 25px 0 0 0;
}

.part-no_note--li {
    padding: 5px 0;
}

.part-no__advantages-list {
    list-style: none;
    padding: 25px 0 0 0;
    margin: 25px 0 0 0;
    border-top: 1px solid var(--light-grey);
}

.part-no__advantages-list--li {
    padding: 5px 0;
}

.fa-check-circle {
    color: var(--ge-bright-blue);
}


/*PRODUCT PART NUMBER PAGE - MEDIA QUERIES*/
@media only screen  and (max-width : 1200px) {
	.part-no__page--container {
        display: grid;
        max-width: 1190px;
        margin: 0 auto;
        padding: 0 5em;
        grid-template-columns: 500px 400px;
        grid-template-rows: auto auto;
        grid-row-gap: 20px;
        justify-content: space-between;
	}

	.part-no_img{ /*Aligns image right in grid*/
		grid-column-start: 2;
		grid-column-end: 3;
		grid-row-start: 1;
		grid-row-end: 3;
	}

	.product-image--size {
		width: 100%;
		height: auto;
	}
}

@media only screen  and (max-width : 1000px) {
    
    .part-no__page--screenwidth{
        width: 100%;
        height: auto;
        padding: 172px 0;
    }
    
	.part-no__page--container{
		display: grid;
		width: auto;
		grid-template-columns: 55% 45% ;
		grid-row-gap: 20px;
		grid-template-rows: auto;
		justify-content: center;
        padding: 0 5em;
	}
    
    .part-no_heading {
        grid-column-start: 1;
		grid-column-end: 1;
		grid-row-start: 1;
		grid-row-end: 1;
    }
    
    .part-no_img{ /*Positions image in row 2 of column*/
		grid-column-start: 2;
		grid-column-end: 2;
		grid-row-start: 1;
		grid-row-end: 1;
	}
    
    .part-no_description {
        grid-column-start: 1;
		grid-column-end: span 2;
		grid-row-start: 2;
		grid-row-end:  2;
    }

	.product-image--size{
		width: 100%;
		height: auto;
	}
}

@media only screen  and (max-width : 760px) {
	.part-no__page--container{
		display: grid;
		width: auto;
		grid-template-columns: 100% ;
		grid-row-gap: 20px;
		grid-template-rows: auto;
		justify-content: center;
	}

	.product-image--size{
		width: 80%;
		height: auto;
        margin-left: 10%;
	}
    
      .part-no_heading {
        grid-column-start: 1;
		grid-column-end: 1;
		grid-row-start: 1;
		grid-row-end: 1;
    }
    
 	.part-no_img{ /*Positions image in row 2 of column*/
		grid-column-start: 1;
		grid-column-end: 1;
		grid-row-start: 2;
		grid-row-end: 3;
	}
    
       .part-no_description {
        grid-column-start: 1;
		grid-column-end: 2;
		grid-row-start: 3;
		grid-row-end:  3;
    }
}


/*---------------------------- ACCESSORIES ----------------------------*/
/*---------------------------------------------------------------------*/



.product-item__-image {
	width: auto;
	height: 150px;
}

/*ACCESSORIES - MEDIA QUERIES*/



/*---------------- PRODUCT INFORMATION - NEBS, SPRAY CHAMBERS, TORCHES, CONES & COILS ----------*/
/*---------------- PRODUCT INFO HERO SECTION ----------*/

.product_info__hero--container {
    padding: 0 8em;
    list-style: none;
    margin: 0 auto;
    max-width: 1190px;

    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;

    -webkit-flex-flow: row wrap;
    justify-content: space-between;
}


/*---- HERO FLEXBOX CHILD ----*/


.product_info__flex-item {
    width: 530px; 
    height: auto; 
}

.product-info__button-container {
    width: auto;
    margin-top: 40px;
}

.resp-container {
    position: relative;
    overflow: hidden;
    padding-top: 56.25%;
}

.video-right {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.watch_video{ /*IF IMAGE HERO REMOVE THIS*/
	display: none;
}

/*-------VIDEO POP UP------*/

.video_container{
	display: none;
}



/*------- HERO MEDIA QUERIES------*/
@media only screen  and (max-width : 1315px) {
	.product_info__flex-item {
		width: 450px;
    }
}

@media only screen  and (max-width : 1200px) {
    .product_info__hero--container {
        padding: 86px 5em;
    }
}

@media only screen  and (max-width : 1080px) {
    .resp-container {
        display: none;
    }
	.product_info__flex-item{
		margin: 0 auto;
		width: 100%;
	}
    
    .watch_video{
        display: block;
        height: 50px;
        float: left;
        margin-bottom: 30px;
	}
}

@media only screen  and (max-width : 1000px) {
    .product_info__hero--container {
        padding: 86px 5em;
    }
}

@media only screen  and (max-width : 900px) {
    .product_info__hero--container {
        list-style: none;
        margin: 0 auto;
        max-width: 1190px;

        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;

        -webkit-flex-flow: row wrap;
        justify-content: space-between;
    }
	.product-info__button-container {
        margin-bottom: 0px;
    }
  
	
}

/*---------------- PRODUCT INFO OPTIONS SECTION ----------*/
/*---- PRODUCT INFO OPTIONS FLEXBOX CONTAINER ----*/
.product-info__background--grey{
	width: 100%;
	height: auto;
	background-color: var(--light-grey);
	padding: 86px 0px;
    float: left;
}

.product-info__container {
    max-width: 1190px;
    height: auto;
    margin: 0 auto;
    padding: 0 8em; 
}

.h5_header__1190 {
    max-width: 1190px;
    margin: 0 auto 43px 0;
    text-align: center;
}


.max-width__214px {
    width: 214px;
}

.tile-item__image {
    width: 180px;
    height: auto;
    display: block;
    margin: 0 auto 10px auto;
}





/*---------- PRODUCT INFO FITTINGS OPTIONS ------*/

@media only screen  and (max-width : 800px) {
    .product-info__container {
        padding: 0 0em;
    }
}

/*----- FOR EZYLOK PAGE VIDEO SECTION ----*/

video{
	box-shadow: var(--nav-drop-shadow);
}

@media only screen  and (max-width : 900px) {
	video{
		width: 400px;
		height: auto;
	}
}



/* --------------- NEBULIZER TYPES --------------------*/

/*------- GRID 1 & 2 SCFEENWIDTH -----------*/


/*------- GRID 1 CONTAINER -----------*/


/*------- GRID 2 CONTAINER -----------*/

/*--------- PRODUCT TILE ----------*/

/*-- IMAGES ----*/



/* ---------------------------------- NEBULIZER SAMPLE UPTAKE OPTIONS -------------------------------*/
/*------- OTHER NEBULIZERS TILES------*/
.nebs_bytype_types--transparent{
	width: 100%;
	height: auto;
	background-color: var(--white);
	float: left;
	padding: 43px 0px 86px 0px;
	text-align: center;
}
.nebs_bytype_types--container{
	display: grid;
	grid-auto-rows: 350px;
	/*AUTO ROWS*/
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	grid-gap: 50px;
	justify-content: center;
	align-content: center;
	max-width: 900px;
	margin: 0 auto;
	padding: 0px 3em;
}
.nebs_bytype--tile{
	position: relative;
	height: 350px;
	background-color: var(--white);
	box-sizing: border-box;
	float: left;
	box-shadow: var(--tile-drop-shadow);
	-webkit-transition: all .2s;
	transition: all .2s ease-in-out;
	cursor: pointer;
	padding: 20px;
}

.neb_img-size{
	height: 120px;
}

.nebs_bytype--tile:last-child {
	margin-right: 0px;
}
.nebs_bytype--tile:hover{
	transform: translateY(-3px);
	box-shadow: var(--tile-drop-shadow-hover);
}
.nebs_bytype--tile:hover .button--product_page{
	background: var(--ge-bright-blue-hover);
	display: inline-block;
	color: var(--white);
}
.nebs_bytype--tile:active{
	transform: translateY(0px);
	box-shadow: var(--tile-drop-shadow);
}
.nebs_bytype--tile h4{
	text-align: left;
	margin-top: 10px;
}
/*-------------- BODY TEXT -----------------*/
.neb-bytype-body--screenwidth{
	width: 100%;
	height: auto;
	background-color: transparent;
	text-align: left;
	padding: 86px 0px;
}
.neb-bytype-body--container{
	padding: 0px 8em;
	list-style: none;
	max-width: 1190px;
	margin: 0 auto;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-flow: row wrap;
	justify-content: space-between;
}

/*-------------- MEDIA QUERIES-----------------*/
@media only screen and (max-width : 1200px) {
	.neb-bytype-body--container{
		padding: 0px 5em;
	}
}
@media only screen and (max-width : 900px) {
	.neb-bytype-body--container{
		padding: 0px 3em;
		list-style: none;
		max-width: 1190px;
		margin: 0 auto;
		display: -webkit-box;
		display: -moz-box;
		display: -ms-flexbox;
		display: -webkit-flex;
		display: flex;
		-webkit-flex-flow: row wrap;
		justify-content: space-between;
	}
}






/*---------------------------- GE NEB PART NUMBER ------------------------------*/

/*---- MULTI-COLOURED HEADERS ----*/
.coral-text-color{
	color: var(--coral);
}

.light-blue-text{
	color: var(--ge-bright-blue);
}

.orange-text{
	color: #FF9966;
}

.blue-text-color{
	color: var(--ge-blue);
}

.yellow-text-color{
	color: #FFCB05;
}

.grey-text-color{
	color: var(--mid-grey);
}


/*------ TITLE SCREENWIDTH-----*/
.ge_partno_screenwidth {
    padding: 86px 0;
}

.text-container{
	padding: 0px 8em 10px 8em;
    list-style: none;
    margin: 0 auto;
    max-width: 1190px;	
}

/*------ NOTES SCREENWIDTH-----*/
.text-container2{
	padding: 43px 8em;
    list-style: none;
    margin: 0 auto;
    max-width: 1190px;	
}

/*------ TITLE & NOTES MEDIA QUERIES-----*/
@media only screen  and (max-width : 1200px) {
	.text-container{
		padding: 43px 3em 0px 3em;
	}
	.text-container2{
	padding: 43px 3em;
	}
}


/*------------ GE NEB PART NUMBER TABLE FORMAT ------------*/
/*---- FLEXBOX -------*/
.ge_partno_screenwidth{
    width: 100%;
	height: auto;
}

.ge-partno_container{
	padding: 43px 3em 0px 3em;
    list-style: none;
    margin: 0 auto;
    max-width: 1190px;

    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;

    -webkit-flex-flow: row wrap;
    justify-content: space-between;
	
}

/*--- CHILD ---*/
.ge-partno__flex-item{
    width: 530px; 
    height: auto;
	margin: 0 auto;
}

/*-------- TABLE CONTAINER ---------*/
.ge-partno_table--small-container{
	width: 530px;
	padding: 0;
	margin: 0 auto;
	text-align: left;	
}

/*---- GREY BACKGROUND for every second cell----*/
.back-grey{
	background-color: #F4F5F8;
}


/*----- LEFT FIXED COLUMN-----*/
.ge-product_info-table-fixed-left{
	float: left;
	border-collapse: collapse;
	width: 80px;	
}

.ge-table_col1-heading{
	font-family: var(--web-font);
    font-weight: 600;
    font-style: normal;
    font-size: 1em;
    line-height: 1.4em;
    text-align: left;
    margin: 0;	
}

.ge-partno_fixed_left-td{
	height: 36px;
	width: 40px;
	padding: 0px 10px 0px 10px;
}


/*---RIGHT SCROLLABLE COLUMN---*/
.ge-partno_table-overflow{
	overflow-x: scroll;
}

.ge-partno_table-right-scroll{
	border-collapse: collapse;
	width: 800px;
}

.ge-partno_table-data{
	width: auto;
	height: 36px;
	padding: 0px 10px 0px 10px;
}


/*----- MEDIA QUERIES -----*/
@media screen and (max-width: 1224px) {
    .ge-partno_container{
        width: 80%;
		margin: 0 auto;
    }
	.ge-partno_table-overflow{
		overflow-x: scroll;
	}
	
	.ge-partno_table--small-container{
		width:400px;
		margin: 0 auto;
	}
}

/*-------------- PRODUCT INFO TABLE SMALL VERSION ----------*/
/*----- LEFT FIXED COLUMN -----*/

/*--- RIGHT SCROLLABLE COLUMN ---*/

/*----- MEDIA QUERIES -----*/


/* ----------------------------- CARE OF NEBULIZERS ----------------------------*/

/*-------- HERO SECTION --------*/

.product_img{
    width: 100%;
}


/*-------- HERO SECTION MEDIA QUERIES --------*/



/*---------- VIDEO SECTION ---------*/

.video-container-care{
	box-shadow: var(--tile-drop-shadow);
}

.button_container--select-guide{
	width: 100%;
	height: auto;
	text-align: center;
	
}


@media only screen  and (max-width : 600px) {
	.video-container-care{
	box-shadow: var(--tile-drop-shadow);
	width: 400px;
	height: 225px;
	}
}

@media only screen  and (max-width : 700px) {
	.button_container--select-guide{
		justify-content: center;
		margin: 0 auto;
		width: 400px;
	}
}




/*------------------- DISTRIBUTORS ----------------------*/

/*------- MAIN DISTRIBUTOR -----------*/
.main-distributor--transparent{
	width: 100%;
    height: auto;
    background-color: var(--white);
    padding: 86px 0;
}

.main-distributor--1190{
	max-width: 1190px;
    height: auto;
    margin: 0 auto;
    padding: 0 8em;
    text-align: center;
}

.main-distributor--container-row{
	display: grid;
    grid-auto-rows: 294px; /*AUTO ROWS*/
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
    grid-gap: 50px;
    max-width: 800px;
    margin: 0 auto;
}

.main-distributor--company{
	position: relative;
    background-color: var(--white);
    box-sizing: border-box;
    float: left;
    justify-self: center;
    padding: 30px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    text-align: left;
    width: 100%;
}



/* DISTRIBUTOR CONTINENT SLECTION */

.distributor-options--grey{
	width: 100%;
	height: auto;
	background-color: var(--light-grey);
	padding: 43px 0px;
}

.distributor-options__container {
    width: auto;
    margin: 0 auto;
    text-align: center;
}

.distributor-options__buttons--container {
    display: grid;
    grid-auto-rows: 50px; /*AUTO ROWS*/
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); 
    grid-gap: 20px;
    justify-content: center;
    align-content: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 8em;
}

.distributor-continent__item-button {
    background: var(--ge-bright-blue); 
    border: none;
    border-radius: 40px; 
    display: inline-block;
	height: auto;
    color: var(--white);
    text-align: center;
    -webkit-transition: all .2s; /* Safari */
    transition: all .2s ease-in-out;
    cursor: pointer;
	float: left;
}

.distributor-continent__item-button:hover {
        background: var(--ge-bright-blue-hover);
        transform: translateY(-2px);
        box-shadow: 0 7px 20px rgba(0,0,0,.15);
}

.blue-button-arrow {
    -webkit-transition: all .2s; /* Safari */
    transition: all .2s ease-in-out; 
}

.distributor-continent__item-button:hover .blue-button-arrow{
    display: inline-block;
    transform: translateX(5px);
}

.distributor-continent__item-button p {
    font-family: var(--web-font);
    font-weight: 500;
    font-style: normal;
    font-size: 1em;
    padding: 15px 0;
    margin: 0 auto;
	text-align: center;
	color: var(--white);
}

/*------- DISTRIBUTOR DETAILS -----------*/
.distributor-details--transparent{
	width: 100%;
    height: auto;
    background-color: var(--white);
    padding: 86px 0;
}

.distributor-details--1190{
	max-width: 1190px;
    height: auto;
    margin: 0 auto;
    padding: 0 8em;
}

.distributor-details--container-row{
	display: grid;
    grid-auto-rows: 294px; /*AUTO ROWS*/
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); 
    grid-gap: 50px;
    justify-content: center;
    align-content: center;
    max-width: 1190px;
    margin: 0 auto;
}

.distributor-details--company{
	position: relative;
    background-color: var(--white);
    box-sizing: border-box;
    float: left;
    max-width: 240px;
    padding: 0px;
	text-align: left;
}


/*---------------- PRODUCT INFO/NEBULIZER PAGES HERO SECTIONS ----------*/
/*---- PRODUCT INFO HERO FLEXBOX CONTAINER ----*/
.product_img{
        display: block;
	}
    
.product_img_1000px{
    display: none;
}



.product_info__hero--screenwidth{
	width: 100%;
	height: auto;
	background-color: transparent;
	text-align: left;
	padding: 86px 0px;
}

.product_info__hero--container {
    padding: 0px 8em;
    list-style: none;
    margin: 0 auto;
    max-width: 1190px;

    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;

    -webkit-flex-flow: row wrap;
    justify-content: space-between;
}


/*---- HERO FLEXBOX CHILD ----*/
.product_info__flex-item {
    width: 530px; 
    height: auto; 
}

.product-info__button-container {
    width: auto;
    margin-top: 40px;
}

.resp-container {
    position: relative;
    overflow: hidden;
    padding-top: 56.25%;
}

.video-right {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.watch_video{ /*IF IMAGE HERO REMOVE THIS*/
	display: none;
}


.img-size{
	width: 530px;
}

/*------- HERO MEDIA QUERIES------*/


@media only screen  and (max-width : 1080px) {
    .resp-container {
        display: none;
    }
	.product_info__flex-item{
		margin: 0 auto;
		width: 100%;
	}
    
    .watch_video{
        display: block;
        height: 50px;
        float: left;
        margin-bottom: 30px;
	}
}

@media only screen  and (max-width : 900px) {
    .product_info__hero--container {
        padding: 0px 3em;
        list-style: none;
        margin: 0 auto;
        max-width: 1190px;

        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;

        -webkit-flex-flow: row wrap;
        justify-content: space-between;
    }
	.product-info__button-container {
        margin-bottom: 0px;
    }	
	.img-size{
		width: 400px;
}
}

/*-------------- FOR IMAGES ------------*/
@media only screen  and (max-width : 1000px) {
	.product_img{
        display: none;
	}
    
    .product_img_1000px{
        display: block;
        padding: 10px 0 30px 0;
        width: 90%;
	}
}

/* ------------ NEB COMPARISON --------------- */

.neb-comparison__header {
    width: 100%;
    height: 100px;
    display: flex;
    justify-content: center;
    align-content: center;
}

.neb-comparison__header h3{
    margin: auto;
    text-align: center;
}

/*--Inner Container---*/
.neb__comparison-inner-grid{
	display: grid;
	grid-template-columns: 1fr 9fr;
    grid-template-rows: 60px;
	grid-column-gap: 20px;
    padding: 20px 30px;
	text-align: center;
	align-items: center;
}

.light-grey__background {
    background-color: rgba(236, 241, 245, 0.4);
}




.GE-Logo__neb-comparison {
    width: 200px;
    height: auto;
}

.icons{
	height: 44px;
}

.grid-item_vertical-align{
	display: flex;
	align-items: center;
	justify-content: center;
}

.nebulizer_img{
	max-width: 530px;
    height: 150px;
    display: block;
	margin: 0 auto;
    padding: 30px 0 30px 0;
}

/*--Media queries---*/
@media only screen and (max-width: 900px) and (min-width : 600px) {
	.neb__comparison-outer-grid {
		display: grid;
		grid-template-rows: 1fr 1fr 1fr 1fr;
		grid-template-columns: 1fr;
		grid-row-gap: 20px;
		margin: 0 auto;
		max-width: 500px;
	}


	.neb__comparison-outer-grid > div {
		border:none;
		padding: 10px;
	}
	
	
	
	#neb__comparison-ge-neb {
		padding-right: 50px;
		padding-left: 50px;
	}

	
}

@media only screen and (max-width: 700px) and (min-width : 300px) {
	.neb__comparison-outer-grid {
		display: grid;
		grid-template-rows: 1fr 1fr 1fr 1fr;
		grid-template-columns: 1fr;
		margin: 0 auto;
   }

	.neb__comparison-outer-grid > div {
		 border:none;
		 padding: 10px;
   }
	
	#neb__comparison-other-brands:after {
		content: "";
		position: absolute;
		width: 0; 
		height: 0;
		top: 100%;
		right: 50%;
		margin-right: -20px;
		margin-top: 0px; 
		z-index: 100;
   }
	
	#neb__comparison-ge-neb {
		padding-right: 80px;
		padding-left: 80px;
   }
	
	#neb__comparison-ge-neb:after {
		content: "";
		position: absolute;
		width: 0; 
		height: 0;
		top: 100%;
		right: 50%;
		margin-right: -20px;
		margin-top: 0px; 
		z-index: 100;

	}
}

/*------------------- FITTINGS & CONNECTORS ------------------- */

/*--Grid Container---*/
.grid-2col__fittings {
    display: grid;
    grid-auto-rows: auto; /*AUTO ROWS*/
    grid-template-columns: 3fr 1fr; 
    /*grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)); */
    justify-content: start;
    align-content: start;
    max-width: 1190px;
    margin: 0 auto ;
	text-align: left;
}


/*--Grid Item---*/
.grid-2col__fittings--item {
	position: relative;
    height: auto;
    box-sizing: border-box;
    float: left;
    text-align: left;
	padding: 60px 0px;
}

.border-bottom{
	border-bottom: 2px solid #F5F8FA;
}

/*-------------- FOR IMAGES ------------*/
.fittings-img{
	width: 200px;
	margin-left: 50%;
	transform:translateX(-100px);
	display: block;
}

.fittings_img_200px{
    display: none;
}

@media only screen  and (max-width : 1000px) {
	.fittings-img{
        display: none;
	}
    
    .fittings_img_200px{
        display: block;
        padding: 10px 0 30px 0;
        width: 200px;
		margin: 0 auto;
	}
}


/*-------------- MEDIA QUERIES FOR GRID LAYOUT------------*/
@media only screen and (max-width: 1200px) and (min-width : 1000px) {
    .grid-2col__fittings {
        display: grid;
        grid-auto-rows: auto; /*AUTO ROWS*/
        grid-template-columns: 2fr 1fr; 
        /*grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)); */
        justify-content: center;
        align-content: center;
        max-width: 1190px;
        margin: 0 auto ;
    }
}

@media only screen and (max-width: 1000px) and (min-width : 300px) {
	.grid-2col__fittings {
		display: grid;
		grid-auto-rows: auto; /*AUTO ROWS*/
		grid-template-columns: 1fr; 
		/*grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)); */
		justify-content: start;
		align-content: start;
		max-width: 1190px;
		margin: 0 auto ;
		text-align: left;
	}
	
	.grid-2col__fittings--item{
		position: relative;
		height: auto;
		justify-self: center;
		box-sizing: border-box;
		max-width: 530px;
		text-align: left;
	    padding: 0px 0px 60px 0px;
	}
	
	.button-align_center{
		text-align: center; /*Makes button center on phone/tablet devices */
	}

}

/* -----------------Peristaltic Pump Tubing ---------------------*/
.heading-tubing {
    font-family: var(--web-font);
    font-weight: 600;
    font-style: normal;
    font-size: 1.2em;
    line-height: 1em;
    letter-spacing: 0.01em;
    color: var(--ge-bright-blue);
    margin: 0;
	padding-bottom: 10px;
}


.tubing-flex--container{
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content:  flex-start;
	max-width: 1000px;
	margin: 0 auto;
}

.tubing-flex__item{
	flex-grow: 2;
	width: auto;
	height: auto;
	text-align: left;
}

.tubing-img{
	width: 200px;
}


/*@media only screen and (max-width: 1000px) and (min-width : 300px) {
 .tubing-img{
	width: 100px;
}
}*/


/*----- IMPORTANT NOTE CONTAINER  ------*/
.important_note-container{
	background-color: var(--white);
	text-align: left;
	box-shadow: var(--tile-drop-shadow);
	border-radius: 4px;
	max-width: 530px;
	padding: 20px;
	position: relative;
}

.important_note-header {
	background-color: var(--coral);
	width: calc(100% + 40px);
    margin: -20px 0 10px -20px;
	box-sizing: border-box;
	padding: 10px 20px;
}



/* --------------------------- CALCULATORS -----------------------------*/


/* ----------------- PUMP FLOW CALC. -------------------*/

	
/*--------------------------- TWO COLUMN GRID --------------------------- */

/*--Grid Container---*/
.grid-2col__Calc {
    display: grid;
    grid-auto-rows: auto; /*AUTO ROWS*/
    grid-template-columns: 2fr 4fr; 
    /*grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)); */
    column-gap: 0px;
    row-gap: 0px;
    justify-content: center;
    align-content: center;
    max-width: 1190px;
    margin: 0 auto ;
}

/*--Grid Item---*/
.grid-2col-Calc__item-left{
	position: relative;
    height: auto;
    justify-self: center;
    box-sizing: border-box;
    float: left;
    width: 297.5px;
    width: 100%;
    text-align: left;
    background: var(--mid-grey);
    padding: 30px;
}
.grid-2col-Calc__item-left p{
	color: var(--white);
    font-size: .9em;
    line-height: 1.4em;
}

.grid-2col-Calc__item-left:after {
    content: "";
    position: absolute;
    width: 0; 
    height: 0; 
    right: -15px;
    top: 50%;
    margin-top: -20px; 
    z-index: 100;
    border-top: 20px solid transparent;
    border-bottom: 20px solid transparent;
    border-left: 15px solid var(--mid-grey);
}

.grid-2col-Calc__item-right{
	position: relative;
    height: auto;
    justify-self: center;
    box-sizing: border-box;
    float: left;
    width: 100%;
    text-align: left;
    background: var(--light-grey);
    padding: 30px 55px;
}

#tridentcalculator                 { max-width: 891px; }
#pumpflowcalculator                { max-width: 891px; }

.border-bottom__calc-left {
    border-bottom: 3px solid var(--light-grey);
}

.border-bottom__calc-right {
    border-bottom: 3px solid var(--white);
}


.heading-secondary__calc-grey {
    font-family: var(--web-font);
    font-weight: 600;
    font-style: normal;
    font-size: 1.15em;
    line-height: 1em;
    letter-spacing: .0em;
    color: var(--dark-grey);
    padding: 0 0 10px 0;
    margin: 0;
}

.heading-secondary__calc-white {
    font-family: var(--web-font);
    font-weight: 600;
    font-style: normal;
    font-size: 1.15em;
    line-height: 1em;
    letter-spacing: .03em;
    color: var(--white);
    padding: 0 0 10px 0;
    margin: 0;
}



/* --------- Select Styiling --------------*/

.select-css {
	display: block;
	font-size: 16px;
    font-family: var(--web-font);
    font-weight: 400;
	color: var(--mid-grey);
	line-height: 1.3;
	padding: .6em 1.4em .5em .8em;
    width: 90%;
	max-width: 90%;
	box-sizing: border-box;
	margin: 5px 0 15px 0;
	border: 1px solid var(--grey);
	border-radius: 2px;
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	background-color: #fff;
    background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%2300A5C9%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E');
	background-repeat: no-repeat, repeat;
	background-position: right .7em top 50%, 0 0;
	background-size: .65em auto, 100%;
    cursor: pointer;
    transition: all .25s ease-in;
}

.select-css::-ms-expand {
	display: none;
}
.select-css:hover {
	border-color: var(--dark-grey);
    box-shadow: 0 10px 20px rgba(0, 20, 60, .1);
    transition: all .25s ease-in;
}
.select-css:focus {
	border-color: #aaa;
	box-shadow: 0 0 1px 3px rgba(59, 153, 252, .7);
	box-shadow: 0 0 0 3px -moz-mac-focusring;
	color: #222;
	outline: none;
}
.select-css option {
	font-weight:normal;
}

/*--------End of Select ---------*/

.clalc--input__right {
    float: right;
    background-color: var(--white);
    border: 1px solid var(--grey);
    border-radius: 2px;
    height: 2em;
    transition: all .25s ease-in;
}

.clalc--input__right:hover {
    border-color: var(--dark-grey);
    box-shadow: 0 10px 20px rgba(0, 20, 60, .1);
    transition: all .25s ease-in;
}

.clalc--input{
    background-color: var(--white);
    border: 1px solid var(--mid-grey);
    border-radius: 2px;
    height: 2em;
}

.roller-measurements--pump-config__ol li {
    position: relative;
}

.calc-input__label {
    width: 15%;
    position: absolute;
    right: -70px;
    top: 0;
    z-index: 1000;
}

.label-box{
    text-align: left;
}

.roller-measurements--pump-config__ol {
    list-style: none;
    padding: 0;
    width: 90%;
    margin: 0;
}

.roller-measurements--pump-config__ol p{
    line-height: 2.5em;
}

.optional_calculation {
    padding: 20px;
    border-radius: 2px;
    border: 1px solid var(--grey);
    margin: 15px 0;
}

.optional_calculation p{
    text-align: center;
}

button.submit {
    padding: 10px 20px;
    border-radius: 30px;
    color: var(--white);
    font-family: var(--web-font);
    font-weight: 600;
    font-size: 1.1em;
    border: none;
    background: var(--ge-bright-blue);
    transition: all .25s ease-in;
}

button.submit:hover {
    background: var(--ge-bright-blue-hover);
    box-shadow: 0 10px 20px rgba(0, 20, 60, .1);
    cursor: pointer;
}

.fa-redo-alt {
    transition: all .25s ease-in;
}

button.submit:hover .fa-redo-alt {
    transform: rotate(360deg);
}




	

