/*
 * *** You can say something about your file if you need it!
 * Template Name
 * Description
 * Vertion
 * Copyright
 * Author
 * Last Modified Date
 *
 */
/*-------------------------*/
/* $Catalog 
---------------------------*/
/** 
 * Catalog
 * Button
 * Navigation bar
 * Jumbotron
 * Thumbnail
 * Footer
**/

/*-------------------------*/
/* $Button 
---------------------------*/
.btn{
	/* structure */
	display: inline-block;
	vertical-align: middle;
	position: relative;
	margin: 0;
	height: 36px;
	line-height: 36px;
	padding: 0 16px;
	min-width: 64px;
    box-sizing: border-box;
	/* style */
	font-size: 14px;
	text-align: center;
	font-weight: 500;
	font-family: "Helvetica", "Noto Sans TC", "Roboto", "Arial", sans-serif;
	letter-spacing: 0;
	/*text-transform: uppercase;*/
	text-decoration: none;
	color: #353630;
	background: linear-gradient(90deg, #F2F4F7 0%, #fff 100%); 
	background: -moz-linear-gradient(90deg, #F2F4F7 0%, #fff 100%); 
	background: -webkit-linear-gradient(90deg, #F2F4F7 0%, #fff 100%); 
	background: -o-linear-gradient(90deg, #F2F4F7 0%, #fff 100%); 
	border: 1px solid #EBEBEB;
	/*border-radius: 50px;*/
	outline: none;
	/* interact */
	cursor: pointer;
	overflow: hidden;
	-webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    -webkit-user-drag: none;
    transition: background 0.8s;
    border-radius:2px;
}
.btn--hover,
.btn:hover{
	background: #dfdfdf;
	/*border: 1px solid #D2D2D2;*/
}
.btn--hover,
.btn:active{
	background: #cacbcd;
}
.btn--disabled,
.btn--disabled:hover,
.btn--disabled:active,
.btn--disabled:focus{
	color: #bfbfbf;
	pointer-events: none;
	background: #E9EDF1;
	border: 1px solid #e4e4e4;
}

.btn.btn--primary,
.btn.btn--secondary,
.btn.btn--positive,
.btn.btn--negative{
	color: #fff;
}
.btn.btn--primary{
	background: #09C199;
	border: 1px solid #08B791;
}
.btn.btn--primary.btn--hover,
.btn.btn--primary:hover{
	background: #04A884;
}

.btn.btn.btn--secondary{
	/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#fd395c+0,ff8068+98 */
background: #EF5568;
	border: 1px solid #e55264;
	transition: all .25s ease;
}
.btn.btn--secondary.btn--hover,
.btn.btn--secondary:hover{
	/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#dd2326+1,ed4747+100 */
background: #D33E50;
}
.btn.btn--positive{
	background: #3eb5ac;
}
.btn.btn--positive.btn--hover,
.btn.btn--positive:hover{
	background: #38a59d;
}
.btn.btn--negative{
	background: #f84545;
}
.btn.btn--negative.btn--hover,
.btn.btn--negative:hover{
	background: #db3d3d;
}

.btn.btn--outline{
	border: 1px solid #FD395C;
	background: rgba(255,255,255,0);
	color:#EF5568;
	transition: all .25s ease;
}
.btn.btn--outline:hover{
	color:#fff;
	/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#fd395c+0,ff8068+98 */
background: #fd395c; /* Old browsers */
background: -moz-linear-gradient(left, #fd395c 0%, #ff8068 98%); /* FF3.6-15 */
background: -webkit-linear-gradient(left, #fd395c 0%,#ff8068 98%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to right, #fd395c 0%,#ff8068 98%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fd395c', endColorstr='#ff8068',GradientType=1 ); /* IE6-9 */
	border: 1px solid;
}
/* Size */
.btn.btn--lg{
	font-size: 16px;
	line-height: 42px;
	height: 42px;
	font-weight: 400;
}
.btn.btn--md{
	font-size: 14px;
	line-height: 36px;
	height: 36px;
}
.btn.btn--sm{
	font-size: 12px;
	line-height: 30px;
	height: 30px;
	border-radius: 2px;
}
.btn.btn--xs{
	font-size: 12px;
	line-height: 24px;
	height: 24px;
	border-radius: 2px;
}
/* group */
.btn-group .btn{
	margin-left: 8px;
	margin-right: 8px;
	margin-bottom: 16px;
}
.btn-group--center{
	text-align: center;
}
.btn-group--right{
	text-align: right;
}
.btn-group--right .btn{
	margin-right: 0;
	margin-left: 16px;
}
/* Form */

.form input[type="text"],
.form input[type="password"],
.form input[type="email"],
.form input[type="url"],
.form input[type="date"],
.form input[type="month"],
.form input[type="time"],
.form input[type="datetime"],
.form input[type="datetime-local"],
.form input[type="week"],
.form input[type="number"],
.form input[type="search"],
.form input[type="tel"],
.form input[type="color"],
.form select,
.form textarea {
    padding: 7px 7px;
    display: inline-block;
    border: 1px solid #ccc;
    background-color: #fff;
    border-radius: 3px;
    /*vertical-align: middle;*/
    box-sizing: border-box;
    line-height: 12px;
    /*width: 100%;*/
    color: #000;
    height: 36px;
}
.form input[type="text"]:focus,
.form input[type="password"]:focus,
.form input[type="email"]:focus,
.form input[type="url"]:focus,
.form input[type="date"]:focus,
.form input[type="month"]:focus,
.form input[type="time"]:focus,
.form input[type="datetime"]:focus,
.form input[type="datetime-local"]:focus,
.form input[type="week"]:focus,
.form input[type="number"]:focus,
.form input[type="search"]:focus,
.form input[type="tel"]:focus,
.form input[type="color"]:focus,
.form select:focus,
.form textarea:focus {
    outline: 0;
    border-color: #999;
    outline:none!important;
}
.form input.succeed{
	border-color: #09C199!important;
}
.form input.error{
	border-color: #EF5568!important;
}
.form input.disable{
	border-color: #e7e7e7;
	cursor: default;
	background:#fafafa; 
}
.form input::-webkit-input-placeholder, 
.form textarea::-webkit-input-placeholder {
  color: #999;
  opacity: 1;
}
.form input:-moz-placeholder, 
.form textarea:-moz-placeholder {
  color: #999;
  opacity: 1;
}
.form input.disable::-webkit-input-placeholder, 
.form textarea.disable::-webkit-input-placeholder {
  color: #e7e7e7;
  opacity: 1;
}
.form input.disable:-moz-placeholder, 
.form textarea.disable:-moz-placeholder {
  color: #e7e7e7;
  opacity: 1;
}
.form input:focus::-webkit-input-placeholder{
    color: #6D6D6D;
}
.form input:focus:-moz-placeholder {
    color: #6D6D6D;
    opacity: 1;
}
.form input:focus::-moz-placeholder {
    color: #6D6D6D;
    opacity: 1;
}
.form input:focus:-ms-input-placeholder{
	color: #6D6D6D;
}
.form button[type="login"]:focus{
	outline: 0;
}


/* The radio */
.radio {
    display: inline-block;
    position: relative;
    margin:0;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Hide the browser's default radio button */
.radio input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

/* Create a custom radio button */
.checkmark {
    position: absolute;
    top: 3px;
    left: 0;
    height: 14px;
    width: 14px;
    background-color: #fff;
    border-radius: 50%;
    border:1px solid #DCDDDF;
}
.radio-disable .checkmark{
	background-color: #F2F4F7;
	border: 1px solid #e7e7e7;
	cursor: default;
}
label.radio-disable{
	cursor: default;
}
/* On mouse-over, add a grey background color */
.radio:hover input ~ .checkmark {
    background-color: #eee;
}
.radio-disable:hover input ~ .checkmark {
	background-color: #F2F4F7;
}
/* When the radio button is checked, add a green background */
.radio input:checked ~ .checkmark {
    background: linear-gradient(180deg, #09C199 0%, #08B791 100%);
    border:0px;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the indicator (dot/circle) when checked */
.radio input:checked ~ .checkmark:after {
    display: block;
}

/* Style the indicator (dot/circle) */
.radio .checkmark:after {
  top: 4px;
  left: 4px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: white;
}
input[type="checkbox"] {
    line-height: normal;
    box-sizing: border-box;
	overflow: visible;
	opacity: 0;
}

label{
  /*position: relative;*/
  cursor: pointer;
  font-weight: 400;
}
label input{
  cursor: pointer;
}
input:checked + .show-box {
    background: #09C199;
    border:1px solid #08B791;
  }
.show-box {
    top: 0;
    width: 15px;
    height: 15px;
    border-radius: 3px;
    border: 1px solid #e7e7e7;
    background: white;
}
.checkbox-disable .show-box{
	background-color: #F2F4F7;
	border: 1px solid #e7e7e7;
	cursor: default;
}
label.checkbox-disable{
	cursor: default;
}
.checkbox-disable .show-box:before{
	opacity: 0;
}
.show-box:before { 
      content: '';
      position: absolute;
      top: 1px;
      left: 4px;
      width: 5px; 
      height: 8px; 
      border: solid white; 
      border-width: 0 2px 2px 0; 
      transform: rotate(45deg); 
}

/* The switch - the box around the slider */
.switch {
  position: relative;
  display: inline-block;
  width: 36px;
  height: 20px;
}

/* Hide default HTML checkbox */
.switch input {display:none;}

/* The slider */
.switch .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.switch .slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 2px;
  bottom: 2px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: #09C199;
}

input:focus + .slider {
  box-shadow: 0 0 1px #09C199;
}

input:checked + .slider:before {
  -webkit-transform: translateX(16px);
  -ms-transform: translateX(16px);
  transform: translateX(16px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 24px;
}

.slider.round:before {
  border-radius: 50%;
}


/*-------------------------*/
/* Navigation bar 
---------------------------*/
/* logo */
.logo__image{
	display: inline-block;
    margin: 16px 14px 0 35px;
}
.navbar__logo{
	float: left;
	z-index: 6;
}
.logo__image img {
	width:149px;
	height: 38px;
	vertical-align: middle;
}
@media (min-width: 768px){
	.navbar {
	    border-radius: 0px;
	}
}


/* menu */
.menu{
	list-style: none;
	margin: 0;
	padding: 0;
    display: inline-block;
	flex-direction: row;
	align-items: center;
}
.menu.menu--horizontal > li{
	float: left;
	line-height: 64px;
	
}
.menu.nav-tool > li{
	line-height: 24px;
	float: left;
}
.menu.products-menu ul{
	margin-left:-18px;
}

 #menuitems {
    padding-top: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav-toolitem .dropdown-menu{
	left:auto;
	right: 0;
}
.nav-toolitem .device-name{
	border-left:0px;
}
.nav-toolitem li{
	border-left: 1px solid #E7E7E7;	
}
.nav-toolitem li .menu__item{
	text-transform:none;
}
.menu.menu--horizontal.nav-toolitem .menu__item,.nav-toolitem .device-name{
	padding: 0 30px;
}
#nav-toolitem{
	display: inline-block;
}
#nav-toolitem .nav-tool{
	float: right;
}
.nav-tool .menu__item{
	text-transform:none;
}
.menu__item{
	color: #4A4A4A;
	display: block;
	transition: all 0.2s;
	font-size: 1rem;
	/*text-transform:uppercase;*/
	font-weight: 400;
}
.menu.menu--horizontal .menu__item,.menu.nav-tool .menu__item{
	padding: 0 18px;
}
.menu.nav-tool .menu__item{
	font-size:1rem;
	font-weight: 100;
	color: #9b9b9b;
}

.navbar__nav .menu__item{
	color: #4A4D70;
}
.navbar__nav .menu__item:hover{
	/*color: #f95c3c;*/
}
.navbar__nav .menu__item i {
	color: #C0C6D2;
	font-size: 1.2rem;
}
.navbar__nav .menu__item .dropdown-icon{
	font-size:14px;
	padding-left: 14px;
}
/* navbar */
.navbar{
	background-color: #fff;
	min-height: 48px;
	border:0px;
	border-bottom: 1px solid #E7E7E7;
	position: fixed;
    z-index: 2;
    top: 0;
    left: 0;
    width: 100vw;
}

.navbar__nav{
	max-height: 64px;
}
.productname {
    display: inline-block;
    font-weight:900;
    color: #4A4A4A;
    font-size: 15px;
    padding-left: 16px;
}

/* menu-toggle */
.menu-toggle{
	width: 48px;
	height: 48px;
	padding: 0 8px;
	text-align: center;
	display: none;
}

.menu-toggle .icon{
	color: #f4f4f4;
	line-height: 48px;
}
.menu-toggle i{
	font-size: 18px;
	line-height: 48px;
	color: #BFC5D1;
}
.notifi .badge{
	background-color: #EF5568;
	display: inline-block;
	min-width: 8px;
	line-height: 1;
	text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    border-radius: 10px;
    position: absolute;
    top:12px;
    padding: 2px 5px;
    right: 18px;
}
.admin-dropdown .notifi{
	display: none;
}
/* image */
.imageWrapper{
	width: 100%;
    overflow: hidden;
    position: relative;
}
.imageWrapper img{
	max-width: 100%;
	vertical-align: middle;
}
/* responsive-popup */
@media (max-width: 1321px){
	.agent .dropdown-menu{
		display: block;
		border: 0;
		box-shadow: none;
		width: 100%;
	}
	.agent .dropdown-icon{
		display: none;
	}
	.agent .dropdown-menu li a{
		padding: 0 18px 0 36px;
		line-height: 48px;
		background: #fbfbfb;
	}
	.notifi .badge{
		position: relative;
    	float: right;
    	margin-top: 4px;
	}
	.menu-toggle{
		display: block;
	}
	.responsive-popup{
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background-color: #fff;
		z-index: 1000;
		padding-top: 56px;
		opacity: 0;
		visibility: hidden;
		transition: all 0.3s;
		z-index: 3;
	}
	.nav-toolitem {
		/*height: auto;*/
		border-bottom: 0px;
	}
	#popup-menu:target{
		opacity: 1;
		visibility: visible;
	}
	#nav-toolitem:target{
		opacity: 1;
		visibility: visible;
	}
	.menu.responsive-popup li{
		float: none;
		display: block;
		width: 100%;
	}
	.menu.responsive-popup .menu__item{
		text-align: left;
	}
	.menu.responsive-popup li.notifi{
		display: none;
	}
	.menu.responsive-popup li .admin-dropdown .notifi{
		display: block;
	}
	.responsive-popup-close{
		display: block;
		width: 48px;
		height: 48px;
		padding: 0 8px;
		text-align: center;
		position: absolute;
		top: 0;
		right: 0;
	}
	.nav-toolitem .admin-dropdown{
		display: block;
		left:0;
		border: 0;
		box-shadow: none;
		padding: 0;
		margin:0;
	}
	.nav-toolitem .admin-dropdown li a{
		line-height: 48px;
		padding: 0 30px;
	}
	.nav-toolitem .dropdown-icon{
		display: none;
	}
	.responsive-popup-close .icon{
		color: #4A4D70;
		line-height: 48px;
	}
	.left-side {
		padding: 0;
	}
	.menu.nav-tool > li,.menu.menu--horizontal > li {
		line-height: 48px;
		border-left:0px;
	}
		.navbar__logo .logo__image{
		display: inline;
		height: 48px;
		margin: 0;
		z-index:99;
	}
	.navbar__logo{
		margin: 0 auto;
		padding-top: 13px;
		position: absolute;
	    
	    z-index: 1;
	    left: 50%;
	    transform: translateX(-50%);
	    text-align: center;
		float: none;
	}
	.navbar__logo .logo__image img{
		height: 24px;
		width: 94px;
	}
	.nav.navbar__nav{
		float: none;
		line-height: 48px;
	}
	.more{
		right: 0;
	    position: absolute;
	    top: 0;
	    float: right;
	}
	.navbar__logo .productname{
		padding-left:8px;
	}
}
@media (min-width: 1321px){
	.responsive-popup-close {
		display: none;
		visibility: hidden;
	}
}
/* Arrow Box style */
.arrow_box,.arrow_box2,.arrow_box3{
	color: #fff;
	font-size:11px; -webkit-transform:scale(0.91);
	font-weight: 100;
	text-align: center;
	box-sizing: border-box;
	padding: 4px 3px 2px 3px;
}

.arrow_box,.arrow_box2,.arrow_box3 {
	min-width: 95px;
	max-width: 105px;
    min-height: 24px;
    border-radius: 3px;
	position: relative;
	background: #4A90E2;
}
.arrow_box:after,.arrow_box2:after {
	top: 100%;
	left: 50%;
	border: solid transparent;
	content: " ";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
	border-color: rgba(74, 144, 226, 0);
	border-top-color: #4A90E2;
	border-width: 4px;
	margin-left: -4px;
}
.arrow_box2 {
	background: #00CA9D;
}
.arrow_box2:before,.arrow_box3:before {
	top: -1%;
	left: 50%;
	border: solid transparent;
	content: " ";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
	border-color: rgba(74, 144, 226, 0);
	border-top-color: #fff;
	border-width: 4px;
	margin-left: -4px;
}
.arrow_box2:after {
	border-top-color: #00CA9D;
}


/*-------------------------*/
/* $Select
---------------------------*/

/* Remove, change to fit your needs */
@import url(http://fonts.googleapis.com/css?family=Lato:400,700);

.sod_select,
.sod_select *
    {
        -webkit-box-sizing: border-box;
           -moz-box-sizing: border-box;
                box-sizing: border-box;
        -webkit-user-select: none;
           -moz-user-select: none;
            -ms-user-select: none;
    }

/* The SoD - Please keep this first three lines intact, otherwise all hell will break looooooose */
.sod_select
    {
        display: inline-block;
        position: relative;
        line-height: 1;
		vertical-align: middle;
		height:36px;
        min-width: 120px;
        padding:11px 15px;
        background-color: #ffffff;
        border: 1px solid #d6d6d6;
        border-radius: 3px;
        color: #828282;
        font-size: 11px;
        font-weight: 400;
        text-align: left;
        text-transform: uppercase;
        outline: 0;
        outline-offset: -2px; /* Opera */
        cursor: default;
    }
.select_sm .sod_label,.select_sm .sod_list {
	padding:10px 15px  !important;
}
.elect_sm .sod_select{
	padding:8px 15px ;
}
.elect_sm .sod_select:after{
	bottom: 8px;
}
    /* Up/Down arrows */
    @font-face {
	  font-family: 'icomoon';
	  src:  url('../fonts/icomoon.eot?jggiy3');
	  src:  url('../fonts/icomoon.eot?jggiy3#iefix') format('embedded-opentype'),
	  url('../fonts/icomoon.ttf?jggiy3') format('truetype'),
	  url('../fonts/icomoon.woff?jggiy3') format('woff'),
	  url('../fonts/icomoon.svg?jggiy3#icomoon') format('svg');
	  font-weight: normal;
	  font-style: normal;
	}
	[class^="sod_"], [class*=" sod_"] {
	  /* use !important to prevent issues with browser extensions that change fonts */
	  
	  speak: none;
	  font-style: normal;
	  font-weight: normal;
	  font-variant: normal;
	  text-transform: none;
	  line-height: 1;

	  /* Better Font Rendering =========== */
	  -webkit-font-smoothing: antialiased;
	  -moz-osx-font-smoothing: grayscale;
	}
    .sod_select:after
        {
            /*content: "\25B2";*/
            font-family: 'icomoon' !important;
            content: "\e926";
            position: absolute;
            right: 8px;
            top: 12px;
            font-size: 8px;
            -webkit-transform:scale(0.75);
        }

        /* Down arrow */
        .sod_select:after
            {   font-family: 'icomoon' !important;
            	/*content: "\25BC";*/
                content: "\e923";
                top: auto;
                bottom: 9px;
            }

    /* Change the border color on hover, focus and when open */
    .sod_select:hover,
    .sod_select.open,
    .sod_select.focus
        {
            border-color: #dbdbdb;
            z-index: 5
        }

        .sod_select.focus { box-shadow: 0 0 2px rgba(0,0,0,.1); }

        .sod_select.open
            {
                border-radius: 3px 3px 0 0;
                color: #919191;
                box-shadow: 1px 2px 5px rgba(0,0,0,.1);
            }

            .sod_select.open.above
                {
                    border-radius: 0 0 3px 3px;
                    box-shadow: 1px -2px 5px rgba(0,0,0,.1);
                }
	.sod_select:hover {
		cursor: pointer;
	}
    /* When the entire SoD is disabled, go crazy! */
    .sod_select.disabled,
    .sod_select.disabled:hover
        {
            opacity: .8;
            color: #b2b2b2;
            cursor: not-allowed;
        }

    /* The "label", or whatever we should call it. Keep the first three lines for truncating. */
    .sod_select .sod_label
        {
            /*overflow: hidden;*/
            white-space: nowrap;
            text-overflow: ellipsis;

            padding-right: 25px;
        }

        .sod_select .sod_prefix { /* Use this if you're using a prefix and want to style it */ }
        .sod_select .sod_placeholder { /* Use this if you're using a placeholder and want to style it */ }



    /* Options list wrapper */
    .sod_select .sod_list
        {
            position: absolute;
            top: 100%;
            left: 0;
            display: none;
            height: auto;
            min-width:inherit;
            margin: 0 0 0 -1px;
            background: #ffffff;
            border: 1px solid #dbdbdb;
            border-top: none;
            border-radius: 0 0 3px 3px;
            box-shadow: 1px 2px 5px rgba(0,0,0,.1);
            z-index: 1;
        }

        /* The "divider" shown above the list */
        .sod_select .sod_list:before
            {
                content: "";
                position: absolute;
                left: 10px;
                right: 10px;
                height: 1px;
                top: -1px;
                background: #dbdbdb;
            }

        /* Shows the option list (don't edit) */
        .sod_select.open .sod_list { display: block;  }

        /* Don't display the options when  */
        .sod_select.disabled.open .sod_list { display: none;  }

        /* When the option list is displayed above the SoD */
        .sod_select.above .sod_list
            {
                top: auto;
                bottom: 100%;
                border-radius: 3px 3px 0 0;
                border-top: 1px solid #dbdbdb;
                border-bottom: none;
                box-shadow: 1px -2px 5px rgba(0,0,0,.1);
            }

            .sod_select.above .sod_list:before
                {
                    content: "";
                    position: absolute;
                    left: 10px;
                    right: 10px;
                    height: 1px;
                    bottom: -1px;
                    top: auto;
                    background: #dbdbdb;
                }


    /* Options list container */
    .sod_select .sod_list ul
        {
            overflow-y: auto;
            padding: 0;
            margin: 0;
            border-radius: 3px;
			max-height:252px
        }

        /* All the options. Keep the first three lines for truncating... */
        .sod_select .sod_list li
            {
                overflow: hidden;
                white-space: nowrap;
                text-overflow: ellipsis;

                position: relative;
                padding: 12px 15px;
                list-style-type: none;
                color: #676767;
            }

            /* Optgroups */
            .sod_select .sod_list .optgroup,
            .sod_select .sod_list .optgroup.disabled
                {
                    background: inherit;
                    color: #939393;
                    font-size: 10px;
                    font-style: italic;
                }

                /* Children of an optgroup */
                .sod_select .sod_list .groupchild { padding-left: 20px; }

            /* Disabled option */
            .sod_select .sod_list .disabled
                {
                    background: inherit;
                    color: #cccccc;
                }

            /* Hover state for options, also used when a user uses his/hers up/down keys */
            .sod_select .sod_list .active
                {
                    background: #fafafa;
                    color: #00A4ED;
                }

            /*Make room for the check mark */
            .sod_select .sod_list .selected
                {
                    padding-right: 30px;
                    font-weight: 700;
                }

                /* Displays a check mark for the selected option */
                .sod_select .sod_list .selected:before
                    {
                        content: "";
                        position: absolute;
                        right: 15px;
                        top: 50%;
                        -webkit-transform: translateY(-50%);
                            -ms-transform: translateY(-50%);
                                transform: translateY(-50%);
                        display: inline-block;
                        color: #808080;
                        height: 9px;
                        width: 10px;
                        background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAxNy4xLjAsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjwhRE9DVFlQRSBzdmcgUFVCTElDICItLy9XM0MvL0RURCBTVkcgMS4xLy9FTiIgImh0dHA6Ly93d3cudzMub3JnL0dyYXBoaWNzL1NWRy8xLjEvRFREL3N2ZzExLmR0ZCI+DQo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9IkxheWVyXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4Ig0KCSB2aWV3Qm94PSIwIDAgMTAgOSIgZW5hYmxlLWJhY2tncm91bmQ9Im5ldyAwIDAgMTAgOSIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+DQo8Zz4NCgk8cGF0aCBmaWxsPSIjRDlEOUQ4IiBkPSJNNCw2LjdDMy42LDYuMywzLjUsNi4xLDMuMSw1LjdDMi42LDUuMiwyLDQuNiwxLjUsNC4xYy0wLjgtMC44LTIsMC40LTEuMiwxLjJjMC45LDAuOSwxLjksMS45LDIuOCwyLjgNCgkJYzAuNywwLjcsMS4zLDEsMiwwQzYuNyw2LDguMywzLjcsOS44LDEuNUMxMC41LDAuNSw5LTAuMyw4LjMsMC42bDAsMEM2LjcsMi45LDUuNyw0LjQsNCw2LjciLz4NCjwvZz4NCjwvc3ZnPg0K);
                    }

                /* Add a .no_highlight class to you SoD to hide the check mark */
                .sod_select.no_highlight .sod_list .selected:before { display: none; }

            .sod_select .sod_list .link { /* If data-link is set on a specific option */ }
            .sod_select .sod_list .linkexternal { /* If data-link-external is set on a specific option */ }


    /* Hide native select */
    .sod_select select { display: none !important; }

        /* The native select in touch mode. Keep this first line. Sorry, keep everything. */
        .sod_select.touch select
            {
                -webkit-appearance: menulist-button;

                position: absolute;
                top: 0;
                left: 0;
                display: block !important;
                height: 100%;
                width: 100%;
                opacity: 0;
                z-index: 1;
            }

/*-------------------------*/
/* $Jumbotron
---------------------------*/
.homepage {
	margin-top:65px;
	min-height: calc(100vh - 118px);
}
@media (max-width: 1321px){
	.homepage {
	    margin-top: 48px;
	    min-height: calc(100vh - 101px);
	}
}


.comProductPageHero__productText__container {
    width: 100%;
}

/*-------------------------*/
/* $Thumbnail 
---------------------------*/

/* imgbox */

/* imgbox */
.imgbox{
	width: 100%;
	display: block;
	overflow: hidden;
}
.imgbox__inner{
	width: 100%;
	height: 0;
	position: relative;
}
.imgbox__inner-4-3{
	padding-top: calc(100% * 9 / 16);
}
.imgbox__inner .image{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	background-color: #F4F4F4;
}
.imgbox__inner .image img{
	max-height: 100%;
    max-width: 100%;
    width: auto;
    height: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    padding:10px 30px;
}

/*-------------------------*/
/* $table
---------------------------*/

.var .imgbox__inner .image {
	background-color: rgba(255,255,255,0);
}

/*-------------------------*/
/* $Footer 
---------------------------*/
.footer-small-nav > li {
    font-size: 13px;
    display: inline-block;
}
.text-left {
    text-align: left!important;
}
.text-left {
    text-align: right!important;
}
footer {
	background-color: #2F313D;
	color:#E7E7E7;
	bottom: 0;
}

.footer-small-nav a:hover{
	color: #a0b3db;
}



footer .copyright{
	background-color: #616A76;
}
footer .copyright-item{
	color: #E7E7E7;
}
footer .copyright-item a {
	color: #E7E7E7;
}
@media (max-width: 767px){
	.copyright-item{
		text-align: center!important;
		line-height: 2em;
		
	}
	.col-xs-12.copyright-item{
		padding: 8px 8px 0 8px;
	}
	.u-text-right.copyright-item{
		padding: 0 8px 8px 0;
	}
}

/* 5 Columns */

.col-xs-15,
.col-sm-15,
.col-md-15,
.col-lg-15 {
    position: relative;
    min-height: 1px;
    padding-right: 10px;
    padding-left: 10px;
}

.col-xs-15 {
    width: 20%;
    float: left;
}
@media (min-width: 768px) {
    .col-sm-15 {
        width: 20%;
        float: left;
    }
}
@media (min-width: 992px) {
    .col-md-15 {
        width: 20%;
        float: left;
    }
}
@media (min-width: 1200px) {
    .col-lg-15 {
        width: 20%;
        float: left;
    }
}

/* Products menu */
.product-title {
	padding-bottom: 24px;
}
.product-title img{
	width: 80px;
	margin-right: 24px;
}
@media (max-width: 768px) {
	.product-title img{
		width: 60px;
		margin-right: 16px;
	}
}

#module {
  width:auto;
  font-size: 14px;
  line-height: 1.5;
}

#module p.collapse[aria-expanded="false"] {
    height: 42px !important;
    overflow: hidden;
  
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;  
}

#module p.collapsing[aria-expanded="false"] {
    height: 42px !important;
}

#module a.collapsed:after  {
	color: #496D87;
    content: '+ Show More';
}

#module a:not(.collapsed):after {
	color: #496D87;
    content: '- Show Less';
}