﻿/* Support page*/
.support-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: 68px;
    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;
}*/
/*#support-plus-sign
{
    color:#fff;
}
#support-minus-sign
{
    color:#fff;
}*/

#support-image-caption {
    /*top:150px;
    left:110px;*/
    position: absolute;
    font-size:36px;
    color:#fff; 
    font-weight: bold;

    top: 5%;
    left: 50%;
    /* margin-left: 8%; */
    padding-top: 10%;
    padding-bottom: 10%;
    /*min-width: 250px;*/
    /*width: 100%;
    height: 680px;*/
    /*background-color: rgba(0, 0, 0, 0.3);*/
    display: none;

}

/*.navbar-toggle-support
{
    display: none;
}*/

#support-toggle-caption {
    display: none;
}

@media only screen and (device-width: 768px), only screen and (max-width: 768px) {
    #support-image-caption
    {
        display: none;
    }
    #support-toggle-caption
    {
        width:  100%;
        padding: 10px; 
        margin: 0 auto;
        position: relative; 
        color:#fff; 
        display:inline-block;
        /*top: 5px;*/
        font-weight:bold;
    }

    /*.navbar-toggle-support
    {
        display:inline-block;
        padding: 0; 
        margin-top: 0;
        margin-right: 0;
    }*/

    .navbar-toggle:hover, .navbar-toggle:active, navbar-toggle:visited {
        background-color: transparent !important;
    }

    .navbar-support-container{
       padding: 0 !important;
       margin: 0 !important;
       width: 100%;
    }
}

/******** accordion ********/
.panel{
    overflow:visible !important;
}
.support-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:#3ac98f;
    color:#fff;
}

.panel-heading.accordion-toggle
{
    border-radius: 10px;
}


/* alternate row styling */
@media only screen and (min-width: 760px) {
    .support-header {
        background-color: #9ca99b;
    }

    .support-row:not(.support-header):nth-child(odd) {
        background-color: #eee;
    }

    .support-row:not(.support-header):nth-child(even) {
        background-color: #fff;
    }

    /* highlight */
    .support-row:not(.support-header):hover {
        background-color: #3ac98f;
        /*cursor: pointer;*/
        color: #fff;
    }
}

.panel-heading.accordion-toggle.active {
    background-color:#3ac98f;
    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-support>ul>li>a:focus, #navbar-collapse-support>ul>li>a:hover {
    color: #7ad98f;
    border-bottom: 3px solid #7ad98f;
    background-color: transparent;
}

#navbar-collapse-support>ul>li:not(.disabled).active>a{
    color: #7ad98f;
}

@media(max-width:738px) {
    #navbar-collapse-support>ul>li>a:focus, #navbar-collapse-support>ul>li>a:hover
    {
        border-left: 3px solid #7ad98f;
        border-bottom: 0;
        color: #7ad98f;
    }
}

 #navbar-collapse-support>ul>li>a
{
    padding-left: 10px;
    margin-left: 0;
}

/* plus/minus switch */
.accordion-toggle-support {
    display:inline-block;
    position: relative;
    padding: 0; 
    margin-top: 10px;
    margin-right: 0px;
}
.accordion-toggle-support::before,
.accordion-toggle-support::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-support::before {
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
}
.accordion-toggle-support.collapsed::before {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
    opacity: 1;
}
.accordion-toggle-support.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-support
    {
        display:inline-block;
        padding: 0; 
        margin-top: 0;
        margin-right: 0;
        color:#fff;
        top: -2px;
    }
}

/* tab */
#qualityassurance_certifications, #factory_certifications{
    min-height: 150px;
}

#ul_card, #sgs_report, #msds, #technical_documents{
    min-height: 150px;
}

#support-list-ul
{
    list-style-type: none;
}

.support-col{
    /*border-bottom: 1px #888 solid;*/
    padding: 4px;
    font-size: 12px;
}
#support{
    margin-top: 30px;
}

.support-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 */
    .support-header { background-color: #9ca99b; }
    .support-row:not(.support-header):nth-child(odd)    { background-color:#fff; }
    .support-row:not(.support-header):nth-child(even)   { background-color:#fff; }

    /* Force table to not be like tables anymore */
    .support-list-view, .support-caption, .support-header, .support-row, .support-col {
        display: block;
    }

    /* Hide table headers (but not display: none;, for accessibility) */
    .support-header .support-row, .support-header .support-col {
        position: absolute;
        top: -9999px;
        left: -9999px;
    }

    .support-row:not(.support-header) {
        border: 1px solid #ccc;
        margin-bottom:10px;
    }
    
    .support-row:not(.support-header):hover
    {
        border: 1px solid #3ac98f;
        box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
        cursor: pointer;
    }

    .support-col {
        /* Behave  like a "row" */
        border: none;
        /*border-bottom: 1px solid #eee;*/
        position: relative;
        padding-left: 40%;
        width:100%;
        display: inline-block;
    }

    .support-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 */
    .support-col:after {
        content: ".";
        visibility: hidden;
    }

    /*
	Label the data
	*/
    /*.support-col-view-details {
        display: block;
        width: 100%;
        background-color: #0096d6;
        color: #fff;
        padding: 1.125em 0;
        text-align: center;
        font-weight: bold;
    }*/
    /*.support-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:'FontAwesome';
    /* essential for enabling glyphicon */
    content:"\f15c";
    /* adjust as needed, taken from bootstrap.css */
    /*float: right;*/
    /*position: relative;*/
    /*bottom: 23px;*/
    font-size: 12pt;
    /* adjust as needed */
    color: #ccc;
    /* adjust as needed */
    text-decoration: none;
}

/* For non-https */
.report-popup-non-https:link, .report-popup-non-https:visited, .report-popup-non-https:hover, .report-popup-non-https:active{
    text-decoration: none;
}
.report-popup-non-https:before {
    /* symbol for "opening" panels */
    font-family:'FontAwesome';
    /* essential for enabling glyphicon */
    content:"\f15c";
    /* adjust as needed, taken from bootstrap.css */
    /*float: right;*/
    /*position: relative;*/
    /*bottom: 23px;*/
    font-size: 12pt;
    /* adjust as needed */
    color: #ccc;
    /* adjust as needed */
    text-decoration: none;
}



/***************************/
.svg.radial-progress {
  position: relative;
  display: inline-block;
}

svg {
  /*transform: rotate(270deg);*/
}



.svg-container { 
	display: inline-block;
	position: relative;
	width: 100%;
	padding-bottom: 500px; 
	vertical-align: middle; 
	overflow: hidden; 
}

.svg-content { 
	display: inline-block;
	position: absolute;
	top: 0;
	left: 0;
}

@media only screen and (max-width: 760px), (min-device-width: 768px) and (max-device-width: 1024px) {
    svg {
        margin: 0;
        padding: 0;
        max-width: 340px;
    }

    .svg-container { 
	    display: inline-block;
	    position: relative;
	    width: 100%;
	    padding-bottom: 240px; 
	    vertical-align: middle; 
	    overflow: hidden; 
    }
}

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%);
}


#img-ru, #img-sgs, #img-pb, #img-rohs, #img-wsc, #img-iatf
{
    height:50px;
}

.custom-nav-tabs >li > a {
    font-weight: bolder;
    font-size: 14px;
}

.custom-nav-tabs >li.active > a {
    color: #fff !important;
    background-color: #a0a0a0 !important;
    font-weight: bolder;
    font-size: 14px;
    -webkit-box-shadow: 0 10px 6px -6px #777;
       -moz-box-shadow: 0 10px 6px -6px #777;
            box-shadow: 0 10px 6px -6px #777;
    /*box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102,175,233,.6);*/
}

.support-header {
    color: #fff;
    background-color: #7ad98f; 
}

.section-title {
    font-family: 'Open Sans',Calibri,Candara,Arial,sans-serif;
}

.panel-title {
    font-size: 14px;
}

.panel-body {
    font-size: 14px;
}

@media screen and (min-width: 769px){
    .support-img-header {
        background: url(../../images/support_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) {
    .support-img-header
    {
        background: url(../../images/support_bg_sm.jpg) no-repeat;
        min-height:200px;
        width: 100%;
        background-size:100% 100%;
        max-height: 300px;
    }
}
