﻿/* Solutions page*/
.solutions-header-container
{
    margin: 0;
    padding: 0;
    display: table;
    width: 100%;
    height: auto;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    -o-background-size: cover;
}


/* bootstrap 3 helpers */
#nav.affix {
    position: fixed;
    top: 64px;
    width: 100%;
    z-index:1000;
}
@media only screen and (max-width: 760px), (min-device-width: 768px) and (max-device-width: 1024px) {
    #nav.affix {
        top: 50px;
    }
}

.btn-submit{
    background-size: 20px;
    border: 0 none;
    color:#000;
    background-color: transparent;
    cursor: pointer;
    height: 30px;
    min-width: 20px;
    padding: 0;
    position: absolute;
    right: 20px;
    top: 10px;
    width: 30px;
}
@media only screen and (max-width: 760px), (min-device-width: 768px) and (max-device-width: 1024px) {
    .btn-submit {
        top: 8px;
        right: 10px;
    }
}
.btn-submit.hover {
    color:#000;
    background-color: transparent;
}

.navbar-form {
    padding:0;
}



/*************************/
/*#nav{
    margin-top:-50px;
}*/

/*#solutions-plus-sign
{
    color:#fff;
}
#solutions-minus-sign
{
    color:#fff;
}*/

#solutions-image-caption {
    top:150px;
    left:110px;
    position: absolute; 
    font-size:36px;
    color:#fff; 
    font-weight: bold;
}

/*.navbar-toggle-solutions
{
    display: none;
}*/

#solutions-toggle-caption {
    display: none;
}

@media only screen and (device-width: 768px), only screen and (max-width: 768px) {
    #solutions-image-caption
    {
        display: none;
    }
    #solutions-toggle-caption
    {
        width:  100%;
        padding: 10px; 
        margin: 0 auto;
        position: relative; 
        color:#fff; 
        display:inline-block;
        font-weight:bold;
        /*top: 4px;*/
    }

    /*.navbar-toggle-solutions
    {
        display:inline-block;
        padding: 0; 
        margin-top: 0;
        margin-right: 0;
    }*/

    .navbar-toggle:hover, .navbar-toggle:active, navbar-toggle:visited {
        background-color: transparent !important;
    }
}

/******** accordion ********/
.panel{
    overflow:visible !important;
}
.solutions-col::after {
    content: ".";
    visibility: hidden;
}

.panel.panel-default{
    border-radius: 10px;
}

.panel-heading.accordion-toggle:after {
    /* symbol for "opening" panels */
    font-family:'Glyphicons Halflings';
    /* essential for enabling glyphicon */
    content:"\e114";
    /* adjust as needed, taken from bootstrap.css */
    float: right;
    position: relative;
    bottom: 23px;
    font-size: 15pt;
    /* adjust as needed */
    color: grey;
    /* adjust as needed */
}
.panel-heading.accordion-toggle.active:after {
    color:#fff;
}
.panel-heading.accordion-toggle.collapsed:after {
    content:"\e080";
}
.panel-heading.accordion-toggle.collapsed:hover:after {
    content:"\e080";
    color:#fff;
}
.panel-heading:hover {
    cursor: pointer;
    background-color:#8a90d5;
    color:#fff;
}

.panel-heading.accordion-toggle
{
    border-radius: 10px;
}


/* alternate row styling */
@media only screen and (min-width: 760px) {
    .solutions-header {
        background-color: #9ca99b;
    }

    .solutions-row:not(.solutions-header):nth-child(odd) {
        background-color: #eee;
    }

    .solutions-row:not(.solutions-header):nth-child(even) {
        background-color: #fff;
    }

    /* highlight */
    .solutions-row:not(.solutions-header):hover {
        background-color: rgb(0,120,186);
        /*cursor: pointer;*/
        color: #fff;
    }
}

.panel-heading.accordion-toggle.active {
    background-color:#8a90d5;
    color:#fff;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}


/* sub menu bar */
#navbar-collapse-solutions>ul>li>a:focus, #navbar-collapse-solutions>ul>li>a:hover {
    color: #7ad98f;
    border-bottom: 3px solid #7ad98f;
    background-color: transparent;
}

#navbar-collapse-solutions>ul>li:not(.disabled).active>a{
    color: #7ad98f;
}

@media(max-width:738px) {
    #navbar-collapse-solutions>ul>li>a:focus, #navbar-collapse-solutions>ul>li>a:hover
    {
        border-left: 3px solid #7ad98f;
        border-bottom: 0;
        color: #7ad98f;
        /*padding-left: 10px;*/
    }
}


 #navbar-collapse-solutions>ul>li>a
{
    padding-left: 10px;
    margin-left: 0;
}

/* plus/minus switch */
.accordion-toggle-solutions {
    display:inline-block;
    position: relative;
    padding: 0; 
    margin-top: 10px;
    margin-right: 0px;
}
.accordion-toggle-solutions::before,
.accordion-toggle-solutions::after {
    content: '';
    display: block;
    width: 16px;
    height: 2px;
    margin-top: -2px;
    margin-right: 0px;

    background-color: #fff;
    -webkit-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    -webkit-transition: all 0.25s;
    transition: all 0.25s;
}
.accordion-toggle-solutions::before {
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
}
.accordion-toggle-solutions.collapsed::before {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
    opacity: 1;
}
.accordion-toggle-solutions.collapsed::after {
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
}
@media only screen and (device-width: 768px), only screen and (max-width: 768px) {
    .accordion-toggle-solutions
    {
        display:inline-block;
        padding: 0; 
        margin-top: 0;
        margin-right: 0;
        color:#fff;
        top: -2px;
    }
}

/* tab */
#qualityassurance_certifications, #factory_certifications{
    min-height: 100px;
}

#ul_card, #sgs_report, #msds, #technical_documents{
    min-height: 250px;
}

#solutions-list-ul
{
    list-style-type: none;
}

.solutions-col{
    /*border-bottom: 1px #888 solid;*/
    padding:2px;
}
#solutions{
    margin-top: 30px;
}

.solutions-col:after{
    content: ".";
    visibility: hidden;
}


/* fancy box print button */
div#fancy_print {
    /* set proper path for your print image */
    background: url("../../images/printer.png")  no-repeat scroll left top transparent;
    background-size:cover;        /* Sets background image to cover entire element */

    /*position: absolute;*/
    /*top: 712px;
    right: 450px;*/
    width: 36px;
    height: 36px;
    cursor: pointer;
    z-index: 9999;
    display: inline-block;
    /*margin-right: -120%;*/
    position: absolute;
    bottom: -4px;
    left: 180px;
    /*padding: 2px 20px;*/
    /*background: transparent;
    background: rgba(0, 0, 0, 0.8);*/
    /*-webkit-border-radius: 15px;*/
    /*-moz-border-radius: 15px;*/
    /*border-radius: 15px;*/
    /*text-shadow: 0 1px 2px #222;*/
    /*color: #FFF;
    font-weight: bold;
    line-height: 24px;
    white-space: nowrap;*/
}



@media only screen and (max-width: 760px), (min-device-width: 768px) and (max-device-width: 1024px) {
    /* alternate row styling */
    .solutions-header { background-color: #9ca99b; }
    .solutions-row:not(.solutions-header):nth-child(odd)    { background-color:#fff; }
    .solutions-row:not(.solutions-header):nth-child(even)   { background-color:#fff; }

    /* Force table to not be like tables anymore */
    .solutions-list-view, .solutions-caption, .solutions-header, .solutions-row, .solutions-col {
        display: block;
    }

    /* Hide table headers (but not display: none;, for accessibility) */
    .solutions-header .solutions-row, .solutions-header .solutions-col {
        position: absolute;
        top: -9999px;
        left: -9999px;
    }

    .solutions-row:not(.solutions-header) {
        border: 1px solid #ccc;
        margin-bottom:10px;
    }
    
    .solutions-row:not(.solutions-header):hover
    {
        border: 1px solid rgb(0,120,186);
        box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
        cursor: pointer;
    }

    .solutions-col {
        /* Behave  like a "row" */
        border: none;
        /*border-bottom: 1px solid #eee;*/
        position: relative;
        padding-left: 40%;
        width:100%;
        display: inline-block;
    }

    .solutions-col:before {
        /*  Now like a table header  */
        position: absolute;
        /* Top/left values mimic padding  */
        top: 6px;
        left: 6px;
        /*width: 45%;*/
        padding-right: 10px;
        white-space: nowrap;
        color: rgba(0, 0, 0, 0.5);
        font-weight: bold;
    }
    /* Use for empty cell to take space */
    .solutions-col:after {
        content: ".";
        visibility: hidden;
    }

    /*
	Label the data
	*/
    /*.solutions-col-view-details {
        display: block;
        width: 100%;
        background-color: #0096d6;
        color: #fff;
        padding: 1.125em 0;
        text-align: center;
        font-weight: bold;
    }*/
    /*.solutions-view-detail-text
    {
        visibility:visible;
    }*/
}


.report-popup:link, .report-popup:visited, .report-popup:hover, .report-popup:active{
    text-decoration: none;
}
.report-popup:before {
    /* symbol for "opening" panels */
    font-family:'Glyphicons Halflings';
    /* essential for enabling glyphicon */
    content:"\e022";
    /* adjust as needed, taken from bootstrap.css */
    /*float: right;*/
    /*position: relative;*/
    /*bottom: 23px;*/
    font-size: 15pt;
    /* adjust as needed */
    color: #ccc;
    /* adjust as needed */
    text-decoration: none;
}




/***************************/
.svg.radial-progress {
  position: relative;
  display: inline-block;
}

svg {
  /*transform: rotate(270deg);*/
}

@media only screen and (max-width: 760px), (min-device-width: 768px) and (max-device-width: 1024px) {
    svg {
        margin: 0;
        padding: 0;
        max-width: 350px;
    }
}

circle {
  stroke-width: 2em;
  fill: transparent;
  transform: rotate(-0.1deg); /* to fix Firefox 8 */
}

.radial-progress-background {
  stroke: orange;
}

.radial-progress-cover {
  stroke: #DEDEDE;
  stroke-width: 2.01em;
    border: 12px solid red;
}

.radial-progress-center {
  fill: #CCC;
}

.radial-fill {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}


@media only screen and (device-width: 768px), only screen and (max-width: 768px) {
    .navbar-solutions-container {
        padding: 0 !important;
        margin: 0 !important;
        width: 100%;
    }
}


@media screen and (min-width: 769px){
    .solutions-img-header {
        background: url(../../images/solutions_bg.jpg) no-repeat;
        width: 100%;
        height: 400px;
        max-height: 400px;
        background-size:100% 100%;
    }
}

@media only screen and (device-width: 768px), only screen and (max-width: 768px) {
    .solutions-img-header
    {
        background: url(../../images/solutions_bg_sm.jpg) no-repeat;
        min-height:200px;
        width: 100%;
        background-size:100% 100%;
        max-height: 300px;
    }
}