@charset 'UTF-8';
body{
	font-size:14px;
	font-family:Arial, Helvetica, sans-serif;
	line-height:160%;
	color:#000;
    margin: 0;
}
::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color:000;
    opacity: 1; /* Firefox */
}
h2, .h2{
	font-size:24px;
}
.pointhand{
	
	cursor:pointer;
	cursor: hand;
}
.bold{
	font-weight: bold !important;
}
.error{
	color:#F00;
}
td, th {
    padding: 5px;
}
.img{
	max-width:100%;
}
.float-right{
	float:right;
}
.float-left{
	float:left;
}
.inline-block{
	display:inline-block;
}
.colimgright {
	float:right !important;
}
a{
	color:#000;
}
a:hover{
	color:#000;
	text-decoration:none;
}
.table-striped > tbody > tr:nth-of-type(2n+1) {

    background-color: #FFF;

}
.table-striped > tbody > tr:nth-of-type(2n){
	background-color: #ECF5FF;
}
.table-striped > tbody > tr:hover  {
	background-color:  #ffeff0;
}
.f-center{
	text-align: center;
}
.f-left{
	text-align: left;
}

.f-right{
	text-align: right;
}
.cls-1{fill:#999;}

.full{
		width:100%;
		height:100%;
		background-color: #000;
		display: block;
		position: absolute;
		top: 0;
		bottom: 0;
	}
.btn_small{
	display:inline-block;
		border-radius: 0;
		border: 1px solid #000;
		color: #fff;
		background-color: #000;
		font-weight: normal;
		font-size: 11px;
		text-transform: uppercase;
		padding: 4px 0;
		text-align:center;
		letter-spacing: 0.1em;
		width:90%;
	}
.btn_default_white{
		display:inline-block;
		border: 2px solid #000;
		color: #000;
		background-color: #FFF;
		font-weight: normal;
		font-size: 11px;
		text-transform: uppercase;
		padding: 8px 25px;
		letter-spacing: 0.1em;
		width:90%;
	}
.btn_default{
		font-family:Arial, Helvetica, sans-serif;
		display:inline-block;
		border: 1px solid #E03;
		color: #fff;
		background-color: #E03;
		font-weight: normal;
		font-size: 11px;
		text-transform: uppercase;
		padding: 8px 25px;
		letter-spacing: 0.1em;
		width:90%;
	}
	
	.btn_default:hover{
		background-color:#FFF;
		color: #E03 ;
}
.btn-second{
	border: 1px solid #E8E8E8;
	color: #000;
	background-color: #E8E8E8;
}
	.btn_inline{
		width:auto !important;
	}

.btn-white {

    font-size: 16px;
    font-weight: bold;
    padding: 10px 30px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    color: #009604;
    background-color: #FFF;
    box-shadow: 0 2px 2px 0 rgba(0,0,0,.14),0 3px 1px -2px rgba(0,0,0,.2),0 1px 5px 0 rgba(0,0,0,.12) !important;

}
.btncallnow{
	background-color:#f79320;
	border: 1px solid #f79320;
}
	.btncallnow:hover{
			background-color:#FFF;
			color: #f79320 ;
	}
.btn_messfacebook{
	font-size: 10px;
	text-transform: uppercase;
	padding: 4px 25px;
	letter-spacing: 0.1em;
	}	
.btn_small:hover,.btn_small:active,.btn_default:active{
	color:#FFF;
}
.animationbutton{
	text-transform:uppercase;
	
	/* Overriding the default underline styling of the links */
	text-decoration:none !important;
	white-space:nowrap;
	
	display:inline-block;
	vertical-align:baseline;
	position:relative;
	cursor:pointer;
	padding:10px 20px;
	
	background-repeat:no-repeat;

	/* The following two rules are fallbacks, in case
	   the browser does not support multiple backgrounds. */

	background-position:bottom left;
	
	/* Multiple backgrounds version. The background images
	   are defined individually in color classes */
	
	background-position:bottom left, top right, 0 0, 0 0;
	background-clip:border-box;
	
	/* Applying a default border raidus of 8px */
	
	-moz-border-radius:8px;
	-webkit-border-radius:8px;
	border-radius:8px;
	
	
	-webkit-transition:background-position 1s;
	-moz-transition:background-position 1s;
	transition:background-position 1s;
}

.animationbutton:hover{
	
	/* The first rule is a fallback, in case the browser
	   does not support multiple backgrounds
	*/
	
	background-position:top left;
	background-position:top left, bottom right, 0 0, 0 0;
}

.animationbutton:active{
	/* Moving the button 1px to the bottom when clicked */
	bottom:-1px;
}

/* The three buttons sizes */

.animationbutton.big		{ font-size:30px;}
.animationbutton.medium	{ font-size:18px;}
.animationbutton.small	{ font-size:13px;}

/* A more rounded button */

.animationbutton.rounded{
	-moz-border-radius:4em;
	-webkit-border-radius:4em;
	border-radius:4em;
}


/* Defining four button colors */


/* BlueButton */

.blue.animationbutton{
	color:#0f4b6d !important;
	
	border:1px solid #84acc3 !important;
	
	/* A fallback background color */
	background-color: #48b5f2;
	
	/* Specifying a version with gradients according to */
	
	background-image:	 
						-moz-radial-gradient(	center bottom, circle,
												rgba(89,208,244,1) 0,rgba(89,208,244,0) 100px),
						-moz-linear-gradient(#4fbbf7, #3faeeb);

	background-image:	 
						-webkit-gradient(	radial, 50% 100%, 0, 50% 100%, 100,
											from(rgba(89,208,244,1)), to(rgba(89,208,244,0))),
						-webkit-gradient(linear, 0% 0%, 0% 100%, from(#4fbbf7), to(#3faeeb));
}

.blue.animationbutton:hover{
	background-color:#63c7fe;
	
	background-image:	 
						-moz-radial-gradient(	center bottom, circle,
												rgba(109,217,250,1) 0,rgba(109,217,250,0) 100px),
						-moz-linear-gradient(#63c7fe, #58bef7);
						
	background-image:	 
						-webkit-gradient(	radial, 50% 100%, 0, 50% 100%, 100,
											from(rgba(109,217,250,1)), to(rgba(109,217,250,0))),
						-webkit-gradient(linear, 0% 0%, 0% 100%, from(#63c7fe), to(#58bef7));
}

/* Green Button */

.green.animationbutton{
	color:#345903 !important;
	border:1px solid #96a37b !important;	
	background-color: #79be1e;
	
	background-image: -moz-radial-gradient(center bottom, circle, rgba(162,211,30,1) 0,rgba(162,211,30,0) 100px),-moz-linear-gradient(#82cc27, #74b317);
	background-image: -webkit-gradient(radial, 50% 100%, 0, 50% 100%, 100, from(rgba(162,211,30,1)), to(rgba(162,211,30,0))),-webkit-gradient(linear, 0% 0%, 0% 100%, from(#82cc27), to(#74b317));
}

.green.animationbutton:hover{
	background-color:#89d228;
	
	background-image:  -moz-radial-gradient(center bottom, circle, rgba(183,229,45,1) 0,rgba(183,229,45,0) 100px),-moz-linear-gradient(#90de31, #7fc01e);
	background-image:  -webkit-gradient(radial, 50% 100%, 0, 50% 100%, 100, from(rgba(183,229,45,1)), to(rgba(183,229,45,0))),-webkit-gradient(linear, 0% 0%, 0% 100%, from(#90de31), to(#7fc01e));
}

/* Orange Button */

.orange.animationbutton{
	color:#693e0a !important;
	border:1px solid #bea280 !important;	
	background-color: #e38d27;
	
	background-image:  -moz-radial-gradient(center bottom, circle, rgba(232,189,45,1) 0,rgba(232,189,45,0) 100px),-moz-linear-gradient(#f1982f, #d4821f);
	background-image:  -webkit-gradient(radial, 50% 100%, 0, 50% 100%, 100, from(rgba(232,189,45,1)), to(rgba(232,189,45,0))),-webkit-gradient(linear, 0% 0%, 0% 100%, from(#f1982f), to(#d4821f));
}

.orange.animationbutton:hover{
	background-color:#ec9732;
	
	background-image:  -moz-radial-gradient(center bottom, circle, rgba(241,192,52,1) 0,rgba(241,192,52,0) 100px),-moz-linear-gradient(#f9a746, #e18f2b);
	background-image:  -webkit-gradient(radial, 50% 100%, 0, 50% 100%, 100, from(rgba(241,192,52,1)), to(rgba(241,192,52,0))),-webkit-gradient(linear, 0% 0%, 0% 100%, from(#f9a746), to(#e18f2b));
}

.gray.animationbutton{
	color:#525252 !important;
	border:1px solid #a5a5a5 !important;	
	background-color: #a9adb1;
	
	background-image:  -moz-radial-gradient(center bottom, circle, rgba(197,199,202,1) 0,rgba(197,199,202,0) 100px),-moz-linear-gradient(#c5c7ca, #92989c);
	background-image:  -webkit-gradient(radial, 50% 100%, 0, 50% 100%, 100, from(rgba(197,199,202,1)), to(rgba(197,199,202,0))),-webkit-gradient(linear, 0% 0%, 0% 100%, from(#c5c7ca), to(#92989c));
}

.gray.animationbutton:hover{
	background-color:#b6bbc0;
	
	background-image:  -moz-radial-gradient(center bottom, circle, rgba(202,205,208,1) 0,rgba(202,205,208,0) 100px),-moz-linear-gradient(#d1d3d6, #9fa5a9);
	background-image:  -webkit-gradient(radial, 50% 100%, 0, 50% 100%, 100, from(rgba(202,205,208,1)), to(rgba(202,205,208,0))),-webkit-gradient(linear, 0% 0%, 0% 100%, from(#d1d3d6), to(#9fa5a9));
}
.framepackofdata {
	padding: 10px;
}	
	
h1.pagetitle{
	text-transform:uppercase;
	font-size:22px;
	
}

.scrolltop {
	display:none;
	width:100%;
	margin:0 auto;
	position:fixed;
	bottom:20px;
	right:10px;	
}
.scrolltype {
 position:absolute;
	right:20px;
	bottom:80px;
	background:#b2b2b2;
	background:rgba(178,178,178,0.7);
	padding:10px;
	text-align: center;
	margin: 0 0 0 0;
	cursor:pointer;
	transition: 0.5s;
	-moz-transition: 0.5s;
	-webkit-transition: 0.5s;
	-o-transition: 0.5s; 
}

.scrolltype:hover {
	background:rgba(178,178,178,1.0);
	transition: 0.5s;
	-moz-transition: 0.5s;
	-webkit-transition: 0.5s;
	-o-transition: 0.5s; 		
}
.scrolltype:hover .fa {
	padding-top:-10px;
}
.scrolltype .fa {
	font-size:30px;
	margin-top:-5px;
	margin-left:1px;
	transition: 0.5s;
	-moz-transition: 0.5s;
	-webkit-transition: 0.5s;
	-o-transition: 0.5s; 	
}

.forgotpasssuccess{
	margin-top: 100px;
	border: 1px solid #000;
	padding: 30px;
}
.nopapge{
	border:1px solid #000;
	padding: 30px 20px 30px 20px;
	text-align: center;
	font-size: 20px;
	text-transform: uppercase;
}
/*prelooader */
/* line 3, ../scss/modules/_components.scss */
#loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #fff;
  /* change if the mask should have another color then white */
  z-index: 9999;
  /* makes sure it stays on top */
}

/* line 14, ../scss/modules/_components.scss */
#loader {
 width: 672px;
  height: 200px;
  position: absolute;
  left: 50%;
  /* centers the loading animation horizontally one the screen */
  top: 50%;
  /* centers the loading animation vertically one the screen */
  /* path to your loading animation */
  margin: -100px 0 0 -335px;
  color:#000;
  font-weight:500;
  line-height:1.6;
  font-style:italic;
  font-size:24px;
  text-align:center;
}

.f-center{
	text-align:center;
}
.f-right{
	text-align:right;
}
.framehidden{
	display: none;
}
.bg_banner{
	background-color: #41bdaf;
}
.container{
	
	max-width:1600px;
		
}
.container_small{
	padding-left:0;
	padding-right:0;
	max-width:1000px;
		
}
.container_product{
	max-width: 1140px;
}
.container-post{
	max-width:980px !important;
	margin:50px auto 0 auto;
}
.container-account,.container-page{
	max-width:1200px;
	margin:50px auto 0 auto;
}
.container-register{
	width:400px;
	margin:0 auto 0 auto;
}
.container-finish{
	position: relative;
	width: 800px  !important;
	margin:80px auto 0 auto;
}
	.form-register,.form-resendpass{
		padding-top:100px;
	}
.container_padding{
	padding-top:100px;
}
.pagecontentalert{
	min-height: 400px;
}
.container-page h1{
	margin-top: 0;
	padding-top: 0;
}

#fboverlay {
    opacity: 0.6;
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -o-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    filter: grayscale(100%);
}
.container_pagesmall{
	width:1000px;
	margin:50px auto 0 auto;
}
.nopadding{
	padding:0;
}
.nopaddingright{
	padding-right:0;
}
.nopaddingleft{
	padding-left:0;
}
.navbar{
	border:none;
	background:none;
}

.headericonlogin{
	margin-left:10px;
}
.frameform .framebutton{
	margin-top:40px;
}
.btnsearchbox{
	border: none;
	background: none;
}
.listpage{
	margin: 20px 0 20px 0;
}

/* small screen */
.block_close_menu {
	position: absolute;
	height: 100%;
	width: 100%;
	z-index: 99;
	left: 0;
	top: 0;
	display: none
}
.fixed{
	position:fixed;
}
.section-banner {
  
  margin-bottom: 0 !important;
}
.frame-breadcrumbs{
	position: relative;
	background-color: #FFF;
	-webkit-box-align: center;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: center;
-webkit-justify-content: center;
-ms-flex-pack: center;
justify-content: center;
margin: 0 auto;
max-width: 100%;
padding: 0 15px;
	box-shadow: 0 5px 10px rgba(129, 126, 126, 0.31);
}
.b-breadcrumbs {margin: 3px 0 3px;}
  .b-breadcrumbs ul {
	  display: inline-block;
    margin: 10px 0 9px;
    padding: 0; }
  .b-breadcrumbs li {
    display: inline-block;
    margin-right: 4px; }
    .b-breadcrumbs li:not(:first-child) i {
      margin-right: 7px; }
    .b-breadcrumbs li:first-child i:before {
      top: 1px; }
  .b-breadcrumbs i {
    margin-right: 10px; }
  .b-breadcrumbs i:before {
    position: relative;
    top: 2px; }

.f-breadcrumbs {
  color: #000;
  padding-left:15px;
	font-size:12px; 
  text-transform:uppercase !important; 
  }

  .f-breadcrumbs li:first-child i:before {
    font-size: 12px;
    line-height: 1.2;
    color: #000; }
  .f-breadcrumbs i:before {
    font-size: 1.38462em;
    line-height: 1.2;
    color: #000; }
  .f-breadcrumbs a, .f-breadcrumbs span {
    font-size: 12px;
    line-height: 2; }
  .f-breadcrumbs a {
    color: #000; }
    .f-breadcrumbs a:hover {
      color: #000; }
      .f-breadcrumbs a:hover i:before {
        color: #000; }

.b-breadcrumbs li a{
	display:inline-block;
}

.visible-title {
    visibility: visible;
}
header{
	height:45px;
	background-color: #E03;
	color: #FFF;
	margin-bottom:1px;
}
	header .header-logo{
		float: left;
		padding-left: 15px;
		padding-right: 30px;
		height:45px;
	}
	.framemenutop{
		float:left;
	}
		.header-logo img{
			height:20px;
			margin-top:10px;
		}
	.header-controls {
		float:right;
		min-width: 0;
		padding-left: 30px;
		padding-right: 15px;
		height: 45px;
		border-left: 1px solid #FFF;
	}
	
	.header-controls a{
	}
	
		.search-box input{
			color:#000 !important;
			text-transform:capitalize;
			border:none;
		}

.headericonbasket{
	margin-left: 10px;
	margin-right: 10px;

}

.headericonbasket .fa{
	font-size:16px;
}
ul.menutop-second {
	display: flex;
	justify-content: right;
	align-items: center;
}
ul.menutop-second li{
	list-style: none;
	
}
ul.menutop-second li a {
		position: relative;
	display: block;
	color: #FFF;
	font-size: 14px;
	font-weight: 500;
		
	padding: 10px 5px;
}	
ul.menutop {
	float:left;
	padding-left:30px;
}
ul.menutop , ul.menutop  li{
	list-style:none;
}
	
		ul.menutop  li:hover, ul.menutop  li a:hover {
		}
		ul.menutop  li{
			margin-right:30px;		
			float: left;
		}
		ul.menutop > li > a{
			color:#FFF;
			padding-top: 15px;
			padding-bottom: 10px;
			display: flex;
			padding-left: 10px;
			padding-right: 10px;
			justify-content: center;
			align-content: center;
}
		ul.menutop  li a{
			font-size:14px;
			font-weight:normal;
			text-transform:uppercase;
		}
.dropdown-menu li a:hover{
	text-decoration: none;
	border: none;

}
/*ul.menutop  li:active,ul.menutop  li:focus, ul.menutop  li a:active, ul.menutop  li a:focus {

    background-color:none;
}
*/
ul.menutop a.rootmenu:hover,a.rootmenu.active{
	 background-color: rgba(242,243,242,0.5);
    color: white;
}

 ul.menutop a.rootmenu:before {
	position: absolute;
	bottom: 0;
	left: 0;
	visibility: hidden;
	width: 100%;
	height: 2px;
	content: '';
	cursor:pointer;
	-webkit-transition: all .3s ease-in-out 0s;
	transition: all .3s ease-in-out 0s;
	-webkit-transform: scaleX(0);
	transform: scaleX(0);
	z-index: 1000;
	background-color: #f8ce50;
	color:#f8ce50;	

}
ul.menutop li:hover a.rootmenu:before,ul.menutop li a.rootmenu.active:before {
	visibility: visible;
	-webkit-transform: scaleX(1);
	transform: scaleX(1);
	
}
ul.menutop-second li:hover a.rootmenu:before,ul.menutop-second li a.rootmenu.active:before {
	visibility: visible;
	-webkit-transform: scaleX(1);
	transform: scaleX(1);
	
}


.dropdown-menu {
	margin: 0 0;
	background-color: rgba(243, 243, 243, 1);
	box-shadow: 0px 4px 2px 2px rgba(35,35,35,0.2);
}

@media (max-width: 767px) {
.dropdown-menu {
	box-shadow: none;
}
}
.dropdown-mobile {
	display: none;
}
.dropdown-menu > ul {
	list-style: none;
	padding: 10px 15px;
	color: #757575;
}
.dropdown-menu > ul.ul-style-support {
	padding: 10px 80px;
}

@media (max-width: 768px) {
.dropdown-menu > ul.ul-style-support {
	padding: 0 25px;
}
}
.dropdown-menu > ul > li {
	padding: 8px 10px 0px 10px;
	font-size: 15px;
	min-width: 210px;
}
.dropdown-menu > ul > li.item-top {
	font-size: 16px;
	font-weight: normal;
}
.dropdown-menu > ul > li.item-top a {
	color: #000000;
}
.dropdown-menu > ul > li.item-top a:hover {
	color: #E03;
}
.dropdown-menu > ul > li.item-images {
	text-align: center;
	height: 220px;
	position: relative;
}
.dropdown-menu > ul > li.item-images img {
	position: absolute;
	bottom: 0;
	margin-left: -45px;
}
.dropdown-menu > ul > li a {
	color: #676767;
}

@media (max-width: 768px) {
.dropdown-menu > ul > li a {
	color: #E03 !important;
}
}
.dropdown-menu > ul > li a:hover {
	color: #E03;
}
.dropdown-menu > ul > li.view-all {
	display: none;
}
.dropdown-menu > ul > li.view-all a {
	color: #f79420;
}
.dropdown-menu > ul > li.view-all a:hover {
	color: #ffffff;
}
.dropdown-menu > ul.ul-menu-mobile {
	display: none;
}
.dropdown-menu > ul.ul-menu-mobile .item-mobile .btn-dangky {
	color: #f79320;
}
.dropdown-menu > ul.ul-menu-mobile .item-mobile .input-login {
	background: none;
	border-bottom: 1px solid #3e3f50;
}

@media (max-width: 767px) {

.dropdown-menu {
	padding: 0 0 0 0;
}
.dropdown-mobile {
	display: block;
}
.dropdown-menu > ul {
	padding: 0 15px;
}
.dropdown-menu > ul > li.item-images {
	display: none;
}
.dropdown-menu > ul > li.center-text {
	display: block;
	text-align: left;
}
.dropdown-menu > ul > li.item-top {
	display: block;
	font-weight: normal;
	font-size: 15px;
}
.dropdown-menu > ul > li.item-mobile-hidden {
	display: none;
}
.dropdown-menu > ul > li.view-all {
	display: block;
}
.dropdown-menu > ul.ul-menu-mobile {
	display: block;
}
.dropdown-menu > ul > li.item-mobile {
	display: block;
}
.dropdown-menu > ul > li {
	padding: 8px 0;
}
}
.dropdown-menu .arrow-menu-bottom {
	background-color: #e7e7e6;
	text-align: center;
	display: block;
	padding: 5px;
}
.section-01 .header-menu-main2 .search-menu-main {
	margin-top: 5px;
	border-bottom: 1px solid #7c7c82;

	width: 200px;
	float: left;
	margin-left: 10px;
}

.boxtitle .tittleline {
  text-align: center;
  padding-bottom: 25px;
  margin-bottom: 35px;
  position: relative;
}
.boxtitle .tittleline::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 70px;
  background: #E03;
  border-radius: 18px;
  height: 3px;
}
.boxtitle h3 {
  font-size: 40px;
  line-height: 50px;
  font-weight: 700;
  text-transform: uppercase;
}
.homesectionsliderone{
	padding: 0 20px;
}
.homesectionslidercontent{
	margin: 20px 0;
	
}
.homesectionslidercontent h3{
	font-weight: bold;
}
.homesectionslidercontent .price{
	color: #E03;
	font-size: 26px;
	margin: 15px 0;
	font-weight: bold;
}
.internetboxtitle{
	border-radius: 8px 8px 0 0;
  height: 85px;
  position: relative;
	  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
}
.internetbox {
  background: #fff none repeat scroll 0 0;
  margin-bottom: 30px;
  transition: all .5s ease 0s;
  padding: 0;
  margin-top: 20px;
  box-shadow: 0px 0px 20px 0px rgba(0,0,0,.1);
  overflow: hidden;
  position: relative;
  border-bottom: 6px solid #ee0033;
}
.description{
	height: 150px;
	overflow: hidden;
}
.speed{
	font-weight: bold;
	font-size: 24px;
}
.boxinternetdescription{
	padding: 10px 15px;
}
.internetboxtitle img {
  display: block;
  width: 100%;
	 border-radius: 8px 8px 0 0;
  -o-object-fit: cover;
  object-fit: cover;
  height: 100%;
}
.internetboxtitle > h3 {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  color: #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  font-family: 'FS PFBeauSansPro', sans-serif;
  font-weight: 700;
  letter-spacing: 0.15px;
  padding: 0 15px;
  position: absolute;
  text-align: center;
  text-shadow: 2px 3px 2px rgba(0, 0, 0, 0.25);
  text-transform: uppercase;
  top: calc(35%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 100%;
}
.internetboxtitle > h3 {
  color: #fff;
  font-family: 'FS PFBeauSansPro', sans-serif;
  font-weight: 700;
  letter-spacing: 0.15px;
  text-align: center;
  text-shadow: 2px 3px 2px rgba(0, 0, 0, 0.25);
  text-transform: uppercase;
}
.internetbox .price {
  color: #E03;
  font-size: 26px;
  margin: 15px 0;
  font-weight: bold;
}
.em_single_testimonial {
  background: #fff none repeat scroll 0 0;
  margin-bottom: 30px;
  transition: all .5s ease 0s;
  padding: 37px 30px 26px;
  margin-top: 20px;
  box-shadow: 0px 0px 20px 0px rgba(0,0,0,.1);
  overflow: hidden;
  position: relative;
	border-bottom: 6px solid #ee0033;
}

.body_simproduct{
	margin-top: 30px;
}
.framesidebar{
	margin-bottom: 15px;
}
.framesidebar h4{
	padding: 8px 0 5px 10px;
	text-transform: uppercase;
	background-color: #000;
	color: #FFF;
}

.atreemenuleft ul{
	padding: 0;
	margin: 0;
	list-style: none;
	display:block;
	
}
.atreemenuleft li{
	border:none;
	padding: 0;
	margin: 0;
	list-style: none;
}
.atreemenuleft li a{
	border-bottom:1px solid #ececec;
	display:block;
	text-transform:capitalize;
	color:#333;
	font-weight:bold;	
	padding:8px 0 5px 10px;
}
.atreemenuleft li a:hover, .atreemenuleft li.menusideactive a{
	color:#0a5e95;
}
.atreemenuleft ul.dropdown-treeview li{
	
}

	.atreemenuleft ul.dropdown-treeview li a{
		padding-left:20px;	
		color:#333;
		font-weight:normal;
	}


/* style for waterfall grid */
.listpage-container {
    margin: 0 auto;
}
.listpage-container:before,.listpage-container:after {
    content: '';
    display: table;
}
.listpage-container:after {
    clear: both;
}
.wf-box {
    margin: 10px;
}
.wf-box img { 
    display: block;
    width: 100%;
}
.wf-box .content {
    padding: 5px 0;
}
.wf-column {
    float: left;
}
.wf-container:before,.wf-container:after {
    content: '';
    display: table;
}
.wf-container:after {
    clear: both;
}
.wf-column {
    float: left;
}
@media screen and (min-width: 768px) {
    .listpage-container { width: 750px; }
}
@media screen  and (min-width: 992px) {
    .listpage-container { width: 970px; }
}
@media screen and (min-width: 1200px) {
    .listpage-container { width: 1170px; }
}

#pinBoot {
  position: relative;
  max-width: 100%;
  width: 100%;
}
#pinBoot img {
  width: 100%;
  max-width: 100%;
  height: auto;
}
.white-panel {
  position: absolute;
  background: white;
  /*box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.3);*/
  padding: 10px;
}
/*
stylize any heading tags withing white-panel below
*/

.white-panel h1 {
  font-size: 1em;
}
.white-panel h1 a {
  color: #A92733;
}
.white-panel:hover {
  /*box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.5);
  margin-top: -5px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;*/
}


.pagelistone .framepagelistphoto{
	max-height: 300px;
	overflow-y: hidden;
	overflow-x: hidden;
}

.listgallery > div{
	display: flex;
	flex-wrap: wrap;
}

.galleryone{
	position: relative;
	float: left;
	width: 50%;
}
.galleryone.firstgalleryone{
	width: 100%;
	float: none;
}
.galleryone.firstgalleryone .textWrapper{
	bottom: 6%;
	top: auto;
	
}
.pagelistone{
	width: 25%;
	padding: 0 12px 20px;
}
.galleryone{
	margin-bottom: 20px;

}
.galleryone.galleryonebanner .galleryonebgphoto{
	padding: 20px;
	background-color: #000;
	margin: 20px 20px 20px 20px;
}
.galleryone .bggalleryone{
	background-color: #000;
	padding: 20px 0 20px 20px;
	margin: 20px;
}
.galleryone .bggalleryone .textWrapper .slot--title,.galleryone.galleryonebanner .textWrapper .slot--title{
	font-size: 18px;
	
}
.galleryone .galleryone_photoone{
	float: left;
	width: 50%;
	padding-right: 20px;
	
}
.page_content{
	position: relative;
}
.page_content table{
	position: relative;
	width: 100% !important;
}
.page_content table tr {
  border: 1px solid #DDD;
}
.page_content table tr:first-child td {
  background: #e03;
  color: #fff;
  text-align: center;
  padding-bottom: 7px;
  padding-top: 3px;
  font-weight: 700;
  padding-left: 0;
}
.page_content table tr td {
  border: 1px solid #DDD;
  padding-left: 10px;
}

.pagetitle > h1{
	color: #44494d;
	font-size: 24px; 
}
.page_content img{
	max-width: 100%;
	height: auto;
	
}
.producttitle{
	margin: 30px 0;
	line-height: 1.6;
	padding-bottom: 15px;
	border-bottom: 1px  dashed #ee0033;
}
	.producttitle h1{
		color: #ee0033;
		font-size: 26px;
		text-align: center;
	
	}
.productinfo{
	color: #44494d;
	line-height: 1.6;
	font-size: 18px;
	margin: 0 auto;
	width: 50%;
}
.pricebox{
	font-size: 30px;
	color: #ee0033;
	padding-top: 5px;
	font-weight: bold;
}
.speedbox{
	font-size: 30px;
	color: #ee0033;
	padding-top: 5px;
	font-weight: bold;
}
.product_content{
	width: 70%;
	margin: 30px auto 0 auto;
	font-size: 16px;
	line-height: 1.6;
	font-weight: normal;
}
.product_content ul{
	margin: 0;
	padding: 0;
	list-style: none;
}
/*
 .galleryone_photoone:nth-of-type(2n+1) {	
	clear: both;
}*/
.galleryone_photoone:last-child{
	
	padding-left: 20px;
	padding-right: 0 !important;
	
}
.galleryone .galleryone_photoone img{
	width: 100%;
}
.galleryone .textWrapper .slot--title p {
    padding: 20px 30px;
}
.galleryone .textWrapper .slot--title p a {
	text-decoration:none;
	color:#000;
}

.portfolio-gallery .photoone{
	float: left;
	padding: 15px;
	width: 25%;
	position: relative;
	margin-bottom:20px;
}
	.portfolio-gallery .photoone a{
		display:inline-block;
	}
	.portfolio-gallery .photoone a img{
		width: 100%;
		
	}	

/******* SLIDE HOME ************/
/* Slider */
.slick-slider
{
    position: relative;

    display: block;
    box-sizing: border-box;

    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;

    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list
{
    position: relative;

    display: block;
    overflow: hidden;

    margin: 0;
    padding: 0;
}
.slick-list:focus
{
    outline: none;
}
.slick-list.dragging
{
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

.slick-track
{
    position: relative;
    top: 0;
    left: 0;

    display: block;
    margin-left: auto;
    margin-right: auto;
}
.slick-track:before,
.slick-track:after
{
    display: table;

    content: '';
}
.slick-track:after
{
    clear: both;
}
.slick-loading .slick-track
{
    visibility: hidden;
}

.slick-slide
{
    display: none;
    float: left;

    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide
{
    float: right;
}
.slick-slide img
{
    display: block;
}
.slick-slide.slick-loading img
{
    display: none;
}
.slick-slide.dragging img
{
    pointer-events: none;
}
.slick-initialized .slick-slide
{
    display: block;
}
.slick-loading .slick-slide
{
    visibility: hidden;
}
.slick-vertical .slick-slide
{
    display: block;

    height: auto;

    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}
.slick-loading .slick-list
{
    background: #fff url('../images/preloader.gif') center center no-repeat;
}

/* Arrows */
.slick-prev,
.slick-next
{
    font-size: 0;
    line-height: 0;

    position: absolute;
    top: 50%;

    display: block;

    width: 25px;
    height: 20px;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, 0%);

    cursor: pointer;

    color: transparent;
    border: none;
    outline: none;
    background: transparent;
}
.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus
{
    color: transparent;
    outline: none;
    background: transparent;
}
.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before
{
    opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before
{
    opacity: .25;
}

.slick-prev:before,
.slick-next:before
{
    font-family: 'slick';
    font-size: 20px;
    line-height: 1;

    opacity: .75;
    color: white;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.slick-prev
{
    left: 15px;
	z-index: 100000;
}
[dir='rtl'] .slick-prev
{
    /*right: -25px;*/
    left: auto;
}
.slick-prev:before
{
    content:url(../images/icon/prev.png);
}
[dir='rtl'] .slick-prev:before
{
    content:url(../images/icon/next.png);
}

.slick-next
{
    right: 15px;
	z-index: 100000;
}
[dir='rtl'] .slick-next
{
    right: auto;
    left: -0;
}
.slick-next:before
{
    content:url(../images/icon/next.png);
}
[dir='rtl'] .slick-next:before
{
    content:url(../images/icon/prev.png);
}

/* Dots */
.slick-dotted.slick-slider
{
    margin-bottom: 10px;
}

.slick-dots
{
    position: absolute;
    bottom: -25px;

    display: block;

    width: 100%;
    padding: 0;
    margin: 0;

    list-style: none;

    text-align: center;
}
.slick-dots li
{
    position: relative;

    display: inline-block;

    width: 20px;
    height: 20px;
    margin: 0 15px;
    padding: 0;

    cursor: pointer;
}
.slick-dots li.slick-active button {
  background: #e03;
  width: 40px;
}
.slick-dots li button {
  background-color: transparent;
  font-size: 0;
  width: 30px;
  height: 10px;
  border: 1px solid #e03;
  margin: 0 5px;
  cursor: pointer;
  border-radius: 30px;
  padding: 0;
  transition: .5s;
  outline: none;
}
.slick-dots li button:hover,
.slick-dots li button:focus
{
    outline: none;
}
.slick-dots li button:hover:before,
.slick-dots li button:focus:before
{
    opacity: 1;
}

.slick-dots li.slick-active button:before
{
    opacity: .75;
    color: black;
}
.slider {
	width:100%;
	margin: 0 auto 0 auto;
}

.slick-slide {
  margin: 0px 0;
}

.slick-slide img {
  width: 100%;
}

.slick-prev:before,
.slick-next:before {
  color: black;
}
.slidephotoone{
	float:left;
	position:relative;
}
.slidehomebanner{
	display: flex;
}
.slidehomebanner .slick-dots{
	bottom: 0;
	
}
.slidehomebannermobile{
	display: none;
}
.slidehomebannermobile .slidephotoone{
	text-align: center;
	position:relative;
}
.slidehomebannermobile_one{
	position: relative;
}
.slidehomebannermobile_one .buttonslideitemhome{
	position:initial;
	 -webkit-transform: translate(-0%, -50%) scale(1, 1);
    transform: translate(-0, -50%) scale(1, 1);
}
.slidehomebannermobile .slidephotoonepart{
	width: 49%;
}
	.slidehomebannermobile .slidephotoone img{
		width: 100%;

	}
.textWrapper {
    z-index: 12;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%) scale(1, 1);
    transform: translate(-50%, -50%) scale(1, 1);
}
	.textWrapper .slot--title {
		text-align: center;
		line-height: 1.6;
		position: static;
		-webkit-transform: none;
		transform: none;
		font-size: 36px;
		background-color:#FFF;
		color:#000;
		text-transform:uppercase;
		font-weight:bold;
	}
	.textWrapper .slot--title p{
		padding:15px 30px;
		
	}
	.slot--text {
		-webkit-transition: opacity .5s .5s;
		transition: opacity .5s .5s;
		opacity: 1;
	}
	
	.buttonslideitemhome {
		z-index: 110;
		position:relative;
		display:inline-block;
		left: 50%;
		right:50%;
		-webkit-transform: translate(-50%, -50%) scale(1, 1);
		transform: translate(-50%, -50%) scale(1, 1);
	}
		.buttonslideitemhome a.buttonStyle--inverse {
			width: 100%;
			display:inline-block;
			text-transform:uppercase;
			font-weight:bold;
			color: #000;
			padding:15px 30px ;
			background-color:#fFF;
			border:3px solid #000;
			-webkit-transition: all .5s;
			transition: all .5s;
		}
		.buttonslideitemhome a.buttonStyle--inverse:hover {
			background-color:#000;
			color:#FFF;
			text-decoration:none;
		}
	
.slidephotoonepart{
	width:48%;
	display:block;
	margin-left:1%;
	margin-right:0;	
	
	}
		.slidephotoonepart:first-child{
			margin-right:1%;
			margin-left:0 !important;
		}
.slidehomebanner .slick-slide {
  transition: all ease-in-out .3s;
  opacity: .5;
}
.slick-slide {
		-webkit-transition: all .3s ease-in-out 0s;
	transition: all .3s ease-in-out 0s;
	-webkit-transform: scale(0.9);
	transform: scale(0.9);
}

.slidehomebanner .slick-current {
		-webkit-transition: all .3s ease-in-out 0s;
	transition: all .3s ease-in-out 0s;
	-webkit-transform: scale(1);
	transform: scale(1);
	opacity: 1;
	
	
}

.slidehomebanner .slick-prev,.slidehomebanner .slick-next{
	width: 50px;
	height: 75px;
	content: none;
	
	background-image: url("../images/icon/arrow-right.svg");
	background-repeat: no-repeat;
	background-size: contain;
}
	.slidehomebanner .slick-next:before,.slidehomebanner .slick-prev:before
		{
			content: none;
		}
	.slidehomebanner .slick-prev
		{
			-webkit-transform: rotate(180deg);

			transform: rotate(180deg);
		}

.slidehomebanner .slick-active {
  opacity: 1;
}

.slick-current {
  opacity: 1;
}		
.sliderdetail .slick-current {
		-webkit-transition: all .3s ease-in-out 0s;
	transition: all .3s ease-in-out 0s;
	-webkit-transform: scale(1);
	transform: scale(1);
	opacity: 1;
	
	
}
.sliderdetail .slick-prev,.sliderdetail .slick-next{
	width: 25px;
	height: 75px;
	content: none;
	
	background-image: url("../images/icon/arrow-right.svg");
	background-repeat: no-repeat;
	background-size: contain;
}
	.sliderdetail .slick-next:before,.sliderdetail .slick-prev:before
		{
			content: none;
		}
	.sliderdetail .slick-prev
		{
			-webkit-transform: rotate(180deg);

			transform: rotate(180deg);
		}
.sliderdetail  .slick-slide{
	text-align: center;
}
.sliderdetail .slick-slide img{
	width: 90% !important;
}
.sliderdetail .slick-active {
  opacity: 1;
}



.framebannerpadding{
	padding:50px 0;
	position:relative;	
}

.framebanneradspadding{
	padding:50px 50px;
	position:relative;	
}

.framebannerads,.collectionhotpc{
	position:relative;
	display:block;
}
.framebanneradsmobile,.collectionhotmobile{
	position:relative;
	display: none;
	
}
.bannerads-frametext{
	 position: absolute;
	bottom: 30px;
	width: 100%;
	text-align: center;
	color: #FFF;
}
.banneradstitle{
	font-size: 30px;
	color: #FFF;
	display: inline-block;
	font-weight: bold;
	text-transform: uppercase;
	border-bottom: 1px solid  #FFF;
	padding: 0 20px 5px 20px;
	margin-bottom: 8px;
}
.morediscover a{
	color: #FFF;
	font-size: 18px;
	text-transform: uppercase;
}
.bannerads-textWrapper {
    z-index: 12;
    position: absolute;
    top: 20%;
    left: 0;
	padding:15px 30px;
	background-color:#000;
	color:#FFF;
	max-width: 350px;
	line-height:1.2;
    -webkit-transform: translate(-20%, -20%) scale(1, 1);
    transform: translate(-20%, -20%) scale(1, 1);
}		
	.bannerads-textWrapper span{
		display: inline-block;
		font-size:50px;
		font-weight:bold;
	}
	
	.bannerads-framebutton {
		z-index: 15;
		position:relative;
		display:inline-block;
		left: 50%;
		right:50%;
		-webkit-transform: translate(-50%, -50%) scale(1, 1);
		transform: translate(-50%, -50%) scale(1, 1);
	}
		.bannerads-framebutton a {
			float:left;
			display:inline-block;
			text-transform:uppercase;
			font-weight:bold;
			color: #000;
			padding:10px 30px ;
			background-color:#fFF;
			border:3px solid #000;
			-webkit-transition: all .5s;
			transition: all .5s;
	  }
	  	.bannerads-framebutton a:first-child {
			margin-right:20px;
		}
		.bannerads-framebutton a:hover {
			background-color:#000;
			color:#FFF;
			text-decoration:none;
		}
.container-home-collection{
	max-width: 1400px;
}
.container-home-collection-product{
	max-width: 1400px;
	margin-bottom: 20px;
	padding: 0 50px;
	position: relative;
}


.frameslidecollectionphoto{
	  display: table;
}
.slidecollection-subject{
	max-width: 100%;
    font-size: 30px;
	text-align: center;
   
    background-color: transparent;
    letter-spacing: .04545rem;
    white-space: nowrap;
	color: #FFF;
    display: inline-block;
    width: auto;
    padding: 0 0 10px 10px;

}

.slidecollection .slick-dots li button::before {
	color: #FFF;
	content:none;
}
.slidecollection .slick-dots li button {
    border-radius: .90909rem;
    background-color: #000;
    display: block;
    width: .90909rem;
    height: .90909rem;
    outline: none;
    line-height: 0;
    font-size: 0;
    color: transparent;
    padding: 0;
    cursor: pointer;
	border: 2px solid #FFF;
}
.slidecollection  .slick-dots li.slick-active button {
    background-color: #FFF;
	
	border: 2px solid #000;
}

.slidecollection-photoone{
	width: 50%;
	vertical-align:middle;
  display: table-cell;
	position: relative;
	text-align: center;
	padding: 10px;
}
.slidecollection-photoone.home-colection-photoright{
	position: relative;
	top: 0;
	height: 100%;
	bottom: 0;
}
	.slidecollection-photoone.home-colection-photoright img{
		width: 80%;
		display:inline-block;
		top: 0;
		bottom: 0;
}
.slidecollection .slick-prev,.slidecollection .slick-next{
	bottom: -30px;
	top: auto;
	
}
	.slidecollection .slick-next:before
		{
			content:url(../images/icon/arrow-next.png);
		}
	.slidecollection .slick-prev:before
		{
			content:url(../images/icon/arrow-prev.png);
		}

.frameslidehomeproductcollection{
	margin-bottom: 30px;
}
.slidehomeproductcollection-subject{
	text-transform: uppercase;
	text-align: center;
	border-bottom: 1px solid #ccc;
    font-size: 30px;
    line-height: 1.6;
    font-weight: bold;
    padding: 15px 0;
    margin-bottom: 16px;

}

.homeproductone {

    padding: 30px 20px;
    margin: 0px 5px 20px 5px;
    border: 1px solid #e3e3e3;
    text-align: center;
    position: relative;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;

}
	.homeproductone:hover {
		webkit-box-shadow: 0px 3px 5px 3px rgba(231,231,231,1);
		-moz-box-shadow: 0px 3px 5px 3px rgba(231,231,231,1);
		box-shadow: 0px 3px 5px 3px rgba(231,231,231,1);
	}
	.homeproductone .productname{
		font-size: 24px;
		line-height: 24px;
		color: #E03;
		font-weight: bold;
	}
	.homeproductone .saleoff {
		background-color: #ed2024;
		color: #ffffff;
		width: 50px;
		height: 50px;
		border-radius: 50%;
		padding: 10px;
		position: absolute;
		right: 10px;
		top: 10px;
	}
	.homeproductone .productinfo{
		font-size: 18px;

		color: #E03;

		line-height: 24px;

		margin: 5px 0 10px 0;
	}
	.homeproductone .productpriceoff{
			font-size: 18px;
			color: #6e6d6d;
			margin: 20px 0 5px 0;
			line-height: 20px;
		}

	.homeproductone .productprice{
			font-size: 14px;
			color: #6e6d6d;
			margin: 5px 0 15px 0;
			line-height: 20px;
			text-decoration: line-through;
			height: 20px;
			overflow: hidden;
		}
.homesectionslider {
	margin-bottom: 50px !important;
}
.homenewsfirst{
	margin-bottom: 30px;
}
.homenewsfirst  h4 >a{
	font-size: 20px; 
	color: #e91a34;
	font-weight: 500;
}
.section-box-text > h4 {
	margin: 10px 0;
}
.section-box-text > h4 >a{
	font-size: 20px; 
	color: #e91a34;
	font-weight: 500;
}
.listpage article  h4{
	margin: 10px 0;
}
.listpage article h4>a{
	font-size: 20px; 
	color: #e91a34;
	font-weight: 500;
}
/****
.slidehomeproductcollection-subject{
    font-size: 30px;
    top: 50%;
    left: 40px;
    -webkit-transform: translate3d(0, -50%, 0) rotate(180deg) scale(1, 1);
    transform: translate3d(0, -50%, 0) rotate(180deg) scale(1, 1);
    -webkit-writing-mode: vertical-lr;
    -ms-writing-mode: tb-lr;
    writing-mode: vertical-lr;
	background-color: #FFF;
    white-space: nowrap;
	color: #000;
    display: inline-block;
    width: auto;
    text-transform: uppercase;
    z-index: 12;
    padding: 1.36364rem;
    letter-spacing: 1px;
    text-align: left;
    line-height: 1.55;
	font-weight: bold;
    max-width: 45%;
    position: absolute;

}
****/

.framecollectionhot{
	text-align: center;
	padding: 8px;
	
}
.collectionhotpc{
	display: flex;
	flex-wrap: wrap;
}
.frame_thumb{
	margin-bottom: 20px;
	position: relative;
}
	
	.frame_thumb a:hover > .overlay {
		width:100%;
		height:100%;
		position:absolute;
		background-color:#000;
		opacity:0.2;
	}
	.frame_thumb img{
		width: 100%;
	}
	
.collectionhot_rowone{
	float: left;
	width: 50%;
}
.collectionhot_rowtwo{
	float: left;
	width: 33.33%;
}

.collectionhotone{
	padding: 10px;
	overflow: hidden;
	position: relative;
	margin: 2px;
}
.frametitlecollectionhot{
	text-transform: uppercase;
	font-size: 14px;
	margin-top: 10px;
	
	font-weight:lighter;
}
.titlecollectionhot{
	font-size: 24px;
	font-weight: lighter;
	margin-top: 10px;
	padding-bottom: 10px;
}
.container-home-news{
	margin-top: 20px;
}

.framenews{
	margin-top: 10px;
}
.framenewsphoto{
	display: flex;
    flex-wrap: wrap;
}

.framenews-subject{
	text-transform: uppercase;
	font-size: 30px;
	line-height: 1.6;
	font-weight: bold;
	text-align: center;
	padding: 15px 0;
	margin-bottom: 16px;
}
.homenewsonephoto {
	position:relative;
	float:left;
	display: flex;
	flex-wrap: wrap;
	width:33.33%;
	padding: 10px;
	overflow: hidden;
	padding-left:0;
	font-size: 16px;
	margin-bottom: 20px;
	
}
.homenewsonephoto:nth-of-type(3n+1){	
	padding-left:20px;
	clear: both;
}

.homenewsonephoto  .thumbnews{
	width: 50%;
	height: 200px;
	float: left;
	display: block;
	position: relative;
	overflow: hidden;
}
	.homenewsonephoto .thumbnews img{
		width: 100%;
		height: auto;
	}
.homenewsonephoto .contentnews{
	float: left;
	width: 50%;
	position: relative;
	min-height: 100%;
	padding-left:20px;
	padding-top: 40px;
	text-align: left;
	text-transform: uppercase;
}
.contentnews .titlenews{
	font-weight: bold;
	margin-bottom: 10px;
}
.frame-subscriber{
	position: relative;
	margin-top: 10px;
}
.frame-img-subscriber{
	overflow: hidden;
	text-align: center;
	max-height: 400px;
	
}
.frame-img-subscriber img{
	width: 100%;
	position: relative;
	-webkit-filter: grayscale(100%); /* Safari 6.0 - 9.0 */
    filter: grayscale(100%);
	opacity: 0.8;
}
.frame-subscriber-form{
	position: absolute;
	z-index: 11;
	top: 0;
	right: 0;
	width: 100%;
	
	color: #FFF;
	text-align: center;
	
}
.formsubscriber{
	max-width: 400px;
	padding-top: 100px;
	line-height: 1.6;
	margin: 0 30px;
}
.formsubscriber input.error{
	border:1px solid #A20002;
}
.formsubscriber label.error{
	margin-top: 5px;
	background-color:#A20002;
	padding: 5px 0;
	display: block;
	color: #FFF;
}
.content-user .frameerror label.error{
	margin-top: 5px;
	background-color:#A20002;
	padding: 5px 10px;
	display: block;
	color: #FFF;
}
.subscriber_content{
	max-width:600px;
	margin: 0 auto;
	font-size: 18px;
	padding-top: 60px;
	text-align: left;
}
.subscriber_content h3{
	text-transform: uppercase;
	font-size: 30px;
	font-weight: 500;
	line-height: 1.6;
}
.subscriber_content h4{
	font-size: 18px;
	line-height: 1.6;
}
#btnsubscriber{
	font-weight: bold;
}

.formsubscriber .form-control{
	border: 1px solid #000;
	border-radius: 0;
	text-transform: capitalize;
}
.m_title {
    display: block;
}

.m_title:first-letter {
    text-transform: uppercase;
}
.frameloginform .formrow a:first-letter{
	text-transform: uppercase;

}
.framebreadcrumbs{
	float:left;
	width:auto !important;
}
.framebreadcrumbs ul{
	padding: 0;
	margin: 0;
	
	display:inline-block;
	width:auto;
}
.frameplugin{
	float:right;
	padding-top: 10px;
	display:inline-block;
	padding-right:20px;
}
.ordersize{
	font-size: 12px;
	display:inline-block;
	margin-left:10px;
	padding-top:3px;
	padding-bottom: 3px;
	height: auto;
	width:auto !important;
}

.pagelistone.galleryone.galleryonebanner .galleryonebgphoto{
	padding: 7px;
	background-color: #000;
}
.listnewsinfo{
	padding: 10px 0 20px 0;
}
.newstitlelist {
	font-size:16px;
	font-weight:400;
	
}
.listproduct{
	display: flex;
	flex-wrap: wrap;
}
	.listproduct .productone .productone__listsize{
		font-weight: normal;
		font-size: 12px;
}
.listproduct  .frameproductone{
	margin-bottom: 40px;
}
	.listproduct .productone{
		background-color: white;
		

		text-align: center;
		height: 100%;

		position: relative;

		border: 1px solid #e3e3e3;

		-webkit-transition: all .5s;

		-o-transition: all .5s;

		transition: all .5s;
	}
	.listproduct .productone:hover {
		-webkit-box-shadow: 0px 3px 5px 3px rgba(231,231,231,1);
		-moz-box-shadow: 0px 3px 5px 3px rgba(231,231,231,1);
		box-shadow: 0px 3px 5px 3px rgba(231,231,231,1);
	}	
	.listproduct__product_info{
		text-align:left;
		text-transform:uppercase;
		display:block;
		padding:5px 10px 5px 10px;
	}
	
	.listproduct__product_name{
		font-size: 20px;
	font-weight: bold;
	color: #ffffff;
	padding: 5px;
	background: -moz-linear-gradient(0deg, #E03 0%, #2dd0d0 50%, #26a7d2 70%, #1f85b1 100%);
	background: -webkit-gradient(linear, left top, right top, color-stop(0%, #E03), color-stop(100%, #1f85b1));
	background: -webkit-linear-gradient(0deg, #E03 0%, #2dd0d0 50%, #26a7d2 70%, #1f85b1 100%);
	background: -o-linear-gradient(0deg, #E03 0%, #2dd0d0 50%, #26a7d2 70%, #1f85b1 100%);
	background: -ms-linear-gradient(0deg, #E03 0%, #2dd0d0 50%, #26a7d2 70%, #1f85b1 100%);
	background: linear-gradient(90deg, #E03 0%, #2dd0d0 50%, #26a7d2 70%, #1f85b1 100%);
 filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#E03', endColorstr='#1f85b1', GradientType=1 );
	}
	.listproduct .productone .container-item {

    padding: 10px 10px 5px 10px;

}

.listproduct .productone .container-item .text2 {

    color: #E03;
    font-size: 13px;
    line-height: 18px;
	 height: 18px;

}
.listproduct .productone .container-item .text2 span {

    text-decoration: line-through;

}
.listproduct .productone .container-item .text1{
	padding: 10px   0   10px 0;
	color: #808080;

font-size: 18px;

line-height: 20px;
}

.listproduct .productone .container-item .text3 {

    color: #4d4d4e;
    font-size: 13px;
    line-height: 16px;
    margin-top: 10px;
	height: 35px;

}
	.listproduct .productone .container-item .text3 span {

    color: #4d4d4e;
    font-size: 18px;

}
	

.listproduct .productone .container-item .text5 {
    color: #808080;
    font-size: 13px;
    line-height: 18px;
    margin: 10px 0 30px 0;
	text-align: left;
}
	.listproduct .productone .promotion {
	position: absolute;
	right: 0;
	top: 0;
	width: 58px;
	height: 57px;
	/*background-image: url("../img/sec61_img_2.png");*/
	color: #ffffff;
		overflow: hidden;

}
	.listproduct .productone .promotion span {
		-webkit-transform: rotate(45deg) scale(1);
		-ms-transform: rotate(45deg) scale(1);
		transform: rotate(45deg) scale(1);
		-webkit-transition: -webkit-transform .3s ease-out;
		transition: transform .3s ease-out;
		background: #cf0404; /* Old browsers */
background: -moz-linear-gradient(top, #cf0404 0%, #ff3019 51%, #cf0404 100%); /* FF3.6-15 */
background: -webkit-linear-gradient(top, #cf0404 0%,#ff3019 51%,#cf0404 100%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to bottom, #cf0404 0%,#ff3019 51%,#cf0404 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#cf0404', endColorstr='#cf0404',GradientType=0 );
		position: absolute;
		right: 8px;
		top: 10px;
		display: block;
		width: 100%;
		height: 100%;
	}

	.productone .images {
	position: relative;
	line-height: 0px;
	margin: 15px 0 10px 0;
}
 .productone .images .images-icon {
	width: 40px;
	height: 40px;
	display: inline-block;
}
 .productone .images .images-icon path {
	fill: #d88430;
}

	.listproduct__product_price{
		font-size:14px;
		color:#000;
	}
		.listproduct__product_price .oldprice{
			text-decoration:line-through;			
		}
		.percentoff{
			color:#FF0004; 
		}
	.productone .productimage {
		margin-bottom: 5px;
	}
	.productone .productimage img {
		width:100%;
	}
	@media only screen and (min-width: 1024px) {
		.productone .productimage:hover .hover-image,.homeproductone  .productimage:hover .hover-image{
			display: block
		}
		.productone .productimage:hover .main-image,.homeproductone  .productimage:hover .main-image{
			display: none
		}
	}
	
	.productone .hover-image,.homeproductone  .hover-image{
		display: none
	}



  .framepackofdata{
	margin-bottom: 20px;
}
	 .packofdata{
		margin: 10px;
    border-radius: 10px;
    background: #fff;
    padding: 0;
    text-align: center;
    position: relative;
    min-width: 244px;
    box-shadow: 0px 1px 10px 0px rgba(219, 219, 219, 0.5);


	}
.packofdata-content{
	padding: 15px;
	line-height: 1.6;
}
	.packofdata .new {

    position: absolute;
    top: -10px;
    right: 20px;
    width: 50px;
		z-index: 1;

}
.packimage{
}
 .packimage a {
  display: block;
  position: relative;
  overflow: hidden;
  background: #fff;
  border-radius: 10px;
	 height: 250px;
}
	 .packofdata .name {
		color: #e03;
		font-size: 26px;
		font-weight: 500;
	}
.boxlistbutton{
	margin: 10px 0;
	display: flex;
	justify-content: center;
	align-items: center;
}
.packofdata  h5{
	font-size: 18px;
	color: #666;
	line-height: 1.6;
	
}
	 .packofdata ul{
		margin: 0;
		padding: 10px 15px 10px 15px;
}
	 .packofdata li {
		position: relative;
		padding: 5px 0px;
		font-weight: bold;
		list-style: none;
		border-bottom: 1px solid #EFEFEF;
	}
.dangkymobile{
	display: none;
}
.dangkypc{
}
.slider-nav-thumbnails .slick-slide img{
	opacity: 0.5;
}

.slider-nav-thumbnails .slick-slide.slick-current img {
	opacity: 1;
	border: 2px solid #000;
}

.product_detail_listphotos{
	display: block;
	text-align: center;
}
.product_detail_listphotos_mobile{
	display: none;
}
	.product_detail_listphotos img{
		width:65%;
		display: inline-block;
		
	}
	.product_detail_listphotos_mobile img{
		width:100%;
		
	}
.b-pagination {
    overflow: hidden;
    width: 100%;
}
.b-pagination ul {
    padding: 0;
    margin: 15px 0 0;
}
.b-pagination::after {
    visibility: hidden;
    display: block;
    font-size: 0;
    content: " ";
    clear: both;
    height: 0;
}
.f-pagination a {
    color: #8b8b8b;
    font-size: 1.07692em;
    line-height: 1.2;
}
.b-pagination li {
    list-style-type: none;
    margin-right: 6px;
    display: inline-block;
    border: 1px solid #dbdbdb;
    border-radius: 3px;
    box-shadow: 0 0 5px #dbdbdb;
    height: 32px;
    min-width: 32px;
}
.f-pagination-top ul{
	margin-top:0;
	padding-top:0;
}
.f-pagination a{
	color:#412110;
	font-weight:normal;
	font-family: Arial,Helvetica,"sans-serif";
}
.showpaginglimit .activecountpaging{
	background-color:#b1a197;
	font-weight:bold;
}
.b-pagination li:first-child a, .b-pagination li:last-child a {
    padding-left: 8px;
    padding-right: 8px;
}

.b-pagination li{

	
	background-color:transparent;
	box-shadow:none;
	border:none;
	border-radius:0;
	text-transform:capitalize;
	margin:0;
	padding:0;
	height:auto !important;
	min-width:inherit;
}
.b-pagination li.is-active-pagination{
	background-color:transparent;
	box-shadow:none;
	border:1px solid;
}
.f-pagination li.is-active-pagination a{
	color:#412110;
	font-weight:bold;
}
.b-pagination{
	color:#412110;
}
.b-pagination a, .b-pagination span {
    padding: 5px 5px 5px 5px;
   
}

.pertex_call_to_action_area{
	background-image: url(../images/vietteltphcm-min-scaled.jpg);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	padding: 120px 0px 130px;
	position: relative;
	color: #FFF;
}
.pertex_call_to_action_area::before {
  content: "";
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  position: absolute;
  background-color: #000;
  opacity: .6;
  transition: background .3s,border-radius .3s,opacity .3s;
}
.section-intro{
	text-align: center;
	padding: 30px 0;
	position: relative;
	margin-bottom: 20px;
	
}
	.section-intro h5{
		text-align: center;
		color: #FFF;
		font-size: 24px;
		font-style: normal;
		padding-bottom: 20px;
		line-height: 1.6;
		text-transform: uppercase;
		font-weight: 700;
	}
	.section-intro h6{
		text-align: center;
		font-size: 16px;
		margin-top: 20px;
		font-style: normal;
		line-height: 1.8;
		font-weight: 700;
	}


.product_detail{
}
.product_detail_frame{
	margin:10px 0 0 0;
}
	.product_detail_frame h1{
		font-size:32px;
		font-weight:700;
		text-transform: uppercase;
		padding:0;
		margin:0;
		margin-bottom:10px;
	}
.product-meta-container{
	position: relative;
		padding: 10px 30px 0 30px;
}
	.product_detail_frame .product-meta{
		position: relative;
	}
.alertbox{
	padding: 10px 0 10px 10px;
	text-transform:capitalize;
	background-color: #FFD8D8;
	color: #E80000;
	display: none;
}
.soldouttext{
	padding: 10px 0 10px 10px;
	text-transform:uppercase;
	background-color: #FFD8D8;
	color: #E80000;
	font-weight: bold;
}
.framesize{
	margin:5px 0 15px 0;
}
	.framesizetitle{
		text-transform:uppercase;
		margin-bottom:5px;
	}
	ul.listsize , ul.listsize li{
		list-style:none;
		margin:0;
		padding:0;
	}
	ul.listsize li{
		display:inline-block;
		position:relative;
	}
	ul.listsize li span{
		cursor: pointer;
		border-radius: 0;
		width: 50px;
		height: 30px;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
		-webkit-justify-content: center;
		-ms-justify-content: center;
		justify-content: center;
		-ms-flex-align: center;
		-webkit-align-items: center;
		-moz-align-items: center;
		-ms-align-items: center;
		-o-align-items: center;
		align-items: center;
		margin: 0;
		border: 1px solid #000;
		font-size: 11px;
		white-space: nowrap;
		text-transform: uppercase;
	}
	ul.listsize li input.sizeradio {
		display: none;
	}
	
	ul.listsize li.soldout span {
		opacity: 0.6;
	}
	ul.listsize li.soldout span::before, ul.listsize li.soldout span::after {
		content: '';
		position: absolute;
		transform-origin: 0 0;
		height: 100%;
		border-top: 1px solid #333;
		left: 0;
		width: 57px;
	}
.quantitysizeradio{
	margin-top: 8px;
	text-align: center;
	width: 50px;
}
	ul.listsize li.soldout span::before {
		top: 0;
		-ms-transform: rotate(30deg);
		-webkit-transform: rotate(30deg);
		transform: rotate(30deg);
	}
	ul.listsize li.soldout span::after {
		top: 100%;
		-ms-transform: rotate(-31deg);
		-webkit-transform: rotate(-31deg);
		transform: rotate(-31deg);
	}
	ul.listsize li.available input.sizeradio:checked + span {
		background-color: #000;
		color: #fff;
	}
	ul.listsize li.available:hover input.sizeradio + span {
		background-color: #000;
		color: #fff;
	}

	.btn_bookproduct{
		border-radius: 0;
		border: 2px solid #f79320;
		color: #fff;
		background-color: #f79320;
		font-weight: normal;
		font-size: 12px;
		text-align: center;
		border-radius: 5px;
		text-transform: uppercase;
		padding: 4px 15px;
		letter-spacing: 0.1em;
		
		
	}
		.btn_bookproduct:hover{
			color:#FFF;
			
		}
	
	.productdetail__social{
		margin:10px 0;
	}
	.framepricedetail .pricedetail{
		text-transform:uppercase;
		font-size:24px;
		line-height: 1.2;
		font-weight: bold;
		margin-bottom: 10px;
		
	}
		.framepricedetail .pricedetail .oldprice{
			text-decoration:line-through;
			font-size: 18px;
			color: #171717;
			font-weight: 500;
		}
.productshortinfo{
	font-size: 12px;
}
.productshortinfo p{
	padding: 0;
	margin: 0;
	
}
.frame_colorrelated h3{
	font-size:14px;
	margin: 0;
	text-transform:uppercase;
	padding:10px 0 10px 0 !important;
}
.frame_colorrelated ul{
	margin:0;
	padding:0;
}
.frame_colorrelated ul li {
	display:inline-block;
	list-style:none;
	margin:0;
	padding:0;
}
	.frame_colorrelated ul li img{
		height:100px;
	}
.productdetail__tab{
	margin:0 0 15px 0;
}
.ui-state-active, .ui-widget-content .ui-state-active,  a.ui-button:active, .ui-button:active, .ui-button.ui-state-active:hover {
	border:none !important;
	background:none !important;
	color:#333 !important;
}
.frame-accordion{
	width:100%;
	border-bottom:1px solid;
	margin-bottom:10px;
}

.showhidepanel__content{
	display: none;
	font-size: 12px;
}
.showhidepanel h3 .b-ico-dropdown{
	float: right;
	
}
.showhidepanel h3{
	font-size:14px;
	cursor: hand;
	font-weight: bold;
	cursor: pointer;
	text-transform:uppercase;
	border:none !important;
	border-top:1px solid !important;
	padding:10px 0 10px 0 !important;
	margin: 0;
	border-radius:0; 
}
.showhidepanel .ui-accordion-header::after {
		content: '\f067';
		font-family: "FontAwesome";
		right: 16px;
		font-size:10px !important;
		font-weight:normal;
		position: absolute;
		top: 10px;
	}
	.b-accordion__content{
		font-size:12px;
	}
.ui-accordion .ui-accordion-content {
		padding:0 !important;
		padding-top:15px !important;
		line-height:1.6 !important;
		border: none !important;
		
		border-radius:0; 
	}
.j-accordion h3{
	font-size:12px;
	text-transform:uppercase;
	border:none !important;
	border-top:1px solid !important;
	padding:10px 0 10px 0 !important;
	border-radius:0; 
}
	.j-accordion h3:active{
		border:none;
	}
	.j-accordion .ui-icon,.j-accordion .ui-widget-content .ui-icon{
		background:none !important;
	}
	.b-accordion--with-standard-icon .ui-accordion-header::after {
		content: '\f067';
		font-family: "FontAwesome";
		right: 16px;
		font-size:10px !important;
		font-weight:normal;
		position: absolute;
		top: 10px;
	}
	.b-accordion__content{
		font-size:12px;
	}
	
	.ui-accordion .ui-accordion-header .ui-accordion-header-icon {
		position: absolute;
		left: .5em;
		top: 50%;
		margin-top: -8px;
		z-index:-100;
	}
	.f-accordion--secondary.ui-accordion .ui-accordion-header .ui-accordion-header-icon {
    text-indent: 0;
}
	
.ui-state-default, .ui-widget-content .ui-state-default, .ui-button, html .ui-button.ui-state-disabled:hover, html .ui-button.ui-state-disabled:active {
	border:none !important;
	background:none !important;
	color:#333 !important;
}
.j-tabs{
	margin:20px 0;
}
.product__detail__tab.ui-tabs .ui-tabs-nav li{
	margin-right: 10px;
}
.nobodertab.ui-widget-content,.nobodertab  .ui-widget-header,.nobodertab .ui-tabs .ui-tabs-nav li,.nobodertab .ui-tabs .ui-tabs-nav li a{
	border:none !important;
	background:none !important;
	color:#333 !important;
}
.ui-tabs .ui-tabs-nav li a{
	text-transform:uppercase;
	font-size:12px;
}
.ui-tabs .ui-tabs-panel{
	padding:0;
}
.ui-tabs .ui-tabs-nav .ui-tabs-anchor {
	padding:0;
	margin-right:0;
	margin-bottom:10px;
}
.framesuggestions .ui-tabs .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor{
	/*border-bottom:1px solid !important;*/
	font-weight:bold;	
}
.ui-state-default, .ui-widget-content .ui-state-default, .ui-button, html .ui-button.ui-state-disabled:hover, html .ui-button.ui-state-disabled:active{
		float: none  !important;
		/*border: 1px solid #000 !important;
		width: 46%;
		padding: 8PX 0  !important;
		text-align: center;*/
	}
	.ui-tabs .ui-tabs-nav li a{
		display: block;
		border: 1px solid #000 !important;
		width: 50%;
		margin: 0 0;
		padding: 8PX 0  !important;
		text-align: center;
	}
	.ui-tabs .ui-tabs-nav li.ui-tabs-active{
		margin-bottom: 0;
		padding-bottom: 0;
	}
	.framesuggestions .ui-tabs .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor{
		background-color: #000;
		color: #FFF;
	}
.frame_related ul{
	margin:0;
	padding:0;
}
.frame_related ul li {
	list-style:none;
	margin:0;
	padding:0;
	padding-bottom: 5px;
	display:inline-block;
}
	.frame_related ul li img{
		height:150px;
	}


/**********  USER ************/


 code {
        font-family: Monaco, Consolas, "Lucida Console", monospace;
        background-color: #f1f1f1;
        font-size: 70%;
        padding: 4px 8px;
        border-radius: 4px;
        border: 1px solid #ccc;
    }
    .subdued {
        font-size: 80%;
        opacity: 0.6;
    }

    /* A totally custom override */

    .progress-indicator.custom-complex {
        background-color: #f1f1f1;
        padding: 10px 5px;
        border: 1px solid #ddd;
        border-radius: 10px;
    }
    .progress-indicator.custom-complex > li .bubble {
        height: 12px;
        width: 99%;
		color: #9C0000;
        border-radius: 2px;
        box-shadow: inset -5px 0 12px rgba(0, 0, 0, 0.2);
    }
    .progress-indicator.custom-complex > li .bubble:before,
    .progress-indicator.custom-complex > li .bubble:after {
        display: none;
    }

    /* Demo for vertical bars */

    .progress-indicator.stepped.stacked {
        width: 48%;
        display: inline-block;
    }
    .progress-indicator.stepped.stacked > li {
        height: 150px;
    }
    .progress-indicator.stepped.stacked > li .bubble {
        padding: 0.1em;
    }
    .progress-indicator.stepped.stacked > li:first-of-type .bubble {
        padding: 0.5em;
    }
    .progress-indicator.stepped.stacked > li:last-of-type .bubble {
        padding: 0em;
    }

    /* Nocenter */

    .progress-indicator.nocenter.stacked > li {
        min-height: 100px;
    }
    .progress-indicator.nocenter.stacked > li span {
        display: block;
    }

    /* Demo for Timeline vertical bars */

    #timeline-speaker-example {
        background-color: #2b4a6d;
        color: white;
        padding: 1em 2em;
        text-align: center;
        border-radius: 10px;
    }
    #timeline-speaker-example .progress-indicator {
        width: 100%;
    }
    #timeline-speaker-example .bubble {
        padding: 0;
    }
    #timeline-speaker-example .progress-indicator > li {
        color: white;
    }
    #timeline-speaker-example .time {
        position: relative;
        left: -80px;
        top: 30px;
        font-size: 130%;
        text-align: right;
        opacity: 0.6;
        font-weight: 100;
    }
    #timeline-speaker-example .current-time .time {
        font-size: 170%;
        opacity: 1;
    }
    #timeline-speaker-example .stacked-text {
        top: -37px;
        left: -50px;
    }
    #timeline-speaker-example .subdued {
        font-size: 10px;
        display: block;
    }
    #timeline-speaker-example > li:hover {
        color: #ff3d54;
    }
    #timeline-speaker-example > li:hover .bubble,
    #timeline-speaker-example > li:hover .bubble:before,
    #timeline-speaker-example > li:hover .bubble:after {
        background-color: #ff3d54;
    }
    #timeline-speaker-example .current-time .sub-info {
        font-size: 60%;
        line-height: 0.2em;
        text-transform: capitalize;
        color: #6988be;
    }
    @media handheld, screen and (max-width: 400px) {
        .container {
            margin: 0;
            width: 100%;
        }
        .progress-indicator.stacked {
            display: block;
            width: 100%;
        }
        .progress-indicator.stacked > li {
            height: 80px;
        }
    }

.social-button{
	text-align:center;
	padding:10px 0;
	border-top:1px solid #e5e5e5;
}
.social-button a {
    display: inline-block;
    cursor: pointer;
    font-weight: bold;
    font-size: 14px;
    background: #ffffff;
    padding: 10px 30px;
	width:80%;
    text-transform: uppercase;
}
.social-button a.btn-facebook {
    color: #3b5997;
    border: 2px solid #3b5997;
}
.social-button a.btn-facebook img {
    margin-bottom: 5px;
    height: 17px;
}

	.social-button a.btn-google {
		color: #d34836;
		border: 2px solid #d34836;
		margin-top:10px;
	}
	.social-button a.btn-google img {
		margin-bottom: 5px;
		height: 17px;
	}
.formlogin{
	padding-bottom: 0;
}
.formrow{
	margin:10px 0;
}
.formlogin .formrow label.vertical{
	text-transform:uppercase;
	display:block;
	padding:0 0 5px 0;
}
.formlogin .formrow input.inputbox{
	width:100%;
}

/**********  USER ************/
    .ui-widget, .ui-widget input, .ui-widget select, .ui-widget textarea, .ui-widget button {
          font-family:Arial, Helvetica, sans-serif;
    }

label:first-letter,option:first-child:first-letter,select:first-letter {
	text-transform: uppercase;

}
.content-user .pagetitle{
	margin-bottom: 20px;
}
.content-user{
	margin: 60px 0 0 0;
}

.b-tabs-vertical__content-text{
	min-height: 500px;
}


.ui-datepicker {
	padding: 0;
}

.ui-datepicker .ui-datepicker-header {
	border: none;
	font-size: 80%;
	-moz-border-radius: 4px 4px 0 0;
	-webkit-border-radius: 4px 4px 0 0;
	border-radius: 4px 4px 0 0; /* border radius */
	-moz-background-clip: padding;
	-webkit-background-clip: padding-box;
	background-clip: padding-box; /* prevents bg color from leaking outside the border */
	background-color: #e0e8ec; /* layer fill content */
	-moz-box-shadow: 0 1px 0 rgba(255,255,255,.53), inset 0 -1px 0 rgba(0,0,0,.12); /* drop shadow and inner shadow */
	-webkit-box-shadow: 0 1px 0 rgba(255,255,255,.53), inset 0 -1px 0 rgba(0,0,0,.12); /* drop shadow and inner shadow */
	box-shadow: 0 1px 0 rgba(255,255,255,.53), inset 0 -1px 0 rgba(0,0,0,.12); /* drop shadow and inner shadow */
	background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEwMCAxMDAiIHByZXNlcnZlQXNwZWN0UmF0aW89Im5vbmUiPjxsaW5lYXJHcmFkaWVudCBpZD0iaGF0MCIgZ3JhZGllbnRVbml0cz0ib2JqZWN0Qm91bmRpbmdCb3giIHgxPSI1MCUiIHkxPSIxMDAlIiB4Mj0iNTAlIiB5Mj0iLTEuNDIxMDg1NDcxNTIwMmUtMTQlIj4KPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzAwMCIgc3RvcC1vcGFjaXR5PSIwLjIxIi8+CjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iI2ZmZiIgc3RvcC1vcGFjaXR5PSIwLjIxIi8+CiAgIDwvbGluZWFyR3JhZGllbnQ+Cgo8cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMTAwIiBoZWlnaHQ9IjEwMCIgZmlsbD0idXJsKCNoYXQwKSIgLz4KPC9zdmc+); /* gradient overlay */
	background-image: -moz-linear-gradient(bottom, rgba(0,0,0,.21) 0%, rgba(255,255,255,.21) 100%); /* gradient overlay */
	background-image: -o-linear-gradient(bottom, rgba(0,0,0,.21) 0%, rgba(255,255,255,.21) 100%); /* gradient overlay */
	background-image: -webkit-linear-gradient(bottom, rgba(0,0,0,.21) 0%, rgba(255,255,255,.21) 100%); /* gradient overlay */
	background-image: linear-gradient(bottom, rgba(0,0,0,.21) 0%, rgba(255,255,255,.21) 100%); /* gradient overlay */
}

.ui-datepicker .ui-datepicker-title {
	color: #515d65; /* text color */
	font-size: 12px;
	font-weight: bold;
	text-shadow: 0 1px 1px rgba(255,255,255,.8); /* drop shadow */

}

.ui-datepicker .ui-icon-circle-triangle-e {
	background-position: -32px -16px ;
}

.ui-datepicker .ui-icon-circle-triangle-w {
	background-position: -96px -16px;
}

.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
	border-color: transparent;
}

.ui-datepicker .ui-state-default {
	background: transparent;
	border: none;
	color: #2b2b2b;
	
	font-weight: normal;
	text-align: center;
}

.ui-datepicker .ui-datepicker-header .ui-state-hover {
	background: #bdc5c9;
}

.ui-datepicker table {
	margin: 0;
}

.ui-datepicker th {
	color: #9da7af;
	font-size: 12px;
	font-weight: normal;
	-moz-border-radius: 216px 0 0 0 / 0 0 0 0;
	-webkit-border-radius: 216px 0 0 0 / 0 0 0 0;
	border-radius: 216px 0 0 0 / 0 0 0 0;
	-moz-background-clip: padding;
	-webkit-background-clip: padding-box;
	background-clip: padding-box;
	background-color: rgba(0,0,0,.08);

}

.ui-datepicker td {
	border-top: 1px solid #ddd;
	border-right: 1px solid #ddd;
	padding: 0;
	-moz-box-shadow: inset 0 1px 0 rgba(255,255,255,.4);
	-webkit-box-shadow: inset 0 1px 0 rgba(255,255,255,.4);
	box-shadow: inset 0 1px 0 rgba(255,255,255,.4);
	background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEwMCAxMDAiIHByZXNlcnZlQXNwZWN0UmF0aW89Im5vbmUiPjxsaW5lYXJHcmFkaWVudCBpZD0iaGF0MCIgZ3JhZGllbnRVbml0cz0ib2JqZWN0Qm91bmRpbmdCb3giIHgxPSI1MCUiIHkxPSIxMDAlIiB4Mj0iNTAlIiB5Mj0iLTEuNDIxMDg1NDcxNTIwMmUtMTQlIj4KPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzAwMCIgc3RvcC1vcGFjaXR5PSIwLjA2Ii8+CjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iI2ZmZiIgc3RvcC1vcGFjaXR5PSIwLjA2Ii8+CiAgIDwvbGluZWFyR3JhZGllbnQ+Cgo8cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMTAwIiBoZWlnaHQ9IjEwMCIgZmlsbD0idXJsKCNoYXQwKSIgLz4KPC9zdmc+);
	background-image: -moz-linear-gradient(bottom, rgba(0,0,0,.06) 0%, rgba(255,255,255,.06) 100%);
	background-image: -o-linear-gradient(bottom, rgba(0,0,0,.06) 0%, rgba(255,255,255,.06) 100%);
	background-image: -webkit-linear-gradient(bottom, rgba(0,0,0,.06) 0%, rgba(255,255,255,.06) 100%);
	background-image: linear-gradient(bottom, rgba(0,0,0,.06) 0%, rgba(255,255,255,.06) 100%);

}

.ui-datepicker td:last-child {
	border-right: none;
}

.ui-datepicker td span, 
.ui-datepicker td a {
	padding: .7em 0;
	color: #6a747a;
	font-size: 12px;
	font-weight: bold;
	font-family: Arial;
}

.ui-datepicker-calendar .ui-state-hover {
	background-image: -moz-linear-gradient(bottom, rgba(0,0,0,.12) 0%, rgba(255,255,255,.06) 100%) !important;
	background-image: -o-linear-gradient(bottom, rgba(0,0,0,.12) 0%, rgba(255,255,255,.06) 100%) !important;
	background-image: -webkit-linear-gradient(bottom, rgba(0,0,0,.12) 0%, rgba(255,255,255,.06) 100%) !important;
	background-image: -webkit-linear-gradient(bottom, rgba(0,0,0,.12) 0%, rgba(255,255,255,.06) 100%) !important;
}

.ui-datepicker td a.ui-state-active,
.ui-datepicker td a.ui-state-active.ui-state-hover {
	color: #fff;
	background-color: #8ab8ed !important;
	text-shadow: 0 1px 0 rgba(0,0,0,.26);
	-moz-box-shadow: inset 0 4px 9px rgba(0,0,0,.24);
	-webkit-box-shadow: inset 0 4px 9px rgba(0,0,0,.24);
	box-shadow: inset 0 4px 9px rgba(0,0,0,.24);
}


.orderlistproduct{
	
}
.orderproductone{
	border-bottom: 1px solid #eee;
	padding: 10px 0 10px 0;
}
.orderproductone:last-child{
	border-bottom: none;
}
	.orderproductone a{
		float: left;
		margin-right: 10px;
}


.popup__orderlistproduct ul{
	list-style: none;
	margin: 0;
	padding: 0;
	
}
.popup__orderlistproduct li{
	border-bottom: 1px solid #eee;
	padding: 10px 0 10px 0;
	list-style: none;
	margin: 0;
}
.popup__orderlistproduct li:last-child{
	border-bottom: none;
}
	.popup__orderlistproduct .popup__orderproductoneinfo{
		float: left;
	}
	.popup__orderlistproduct li a.popup__product-thumbnail__image{
		float: left;
		margin-right: 10px;
	}
	.popup__orderlistproduct li a.popup__product-thumbnail__image img{
		height: 60px;
		max-width: 100px;
	}
	.popup__orderlistproduct li .popup__totalprice{
		float: right;
		text-align: right;
			
	}
.frame_header_advertisement{
	background-color:#E7E7E7; 
}
.header_ads_content{
	text-align: center;
	padding: 5px 0 5px 0;
	font-size: 12px;
	font-weight: bold;
}
	.header_ads_content p{
		padding: 0;
		margin: 0;
	}
#popuphomeads.modal {
  text-align: center;
  padding: 0!important;
}

#popuphomeads.modal:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  margin-right: -4px;
}
#popuphomeads .btnclose{
	z-index: 10000;
	position: absolute;
	background-color:#000; 
	right: 5px;
	top: 5px;
	color: #FFF;
	font-weight: bold;
	font-size: 30px;
	opacity:1;
	text-shadow: 0 1px 0 #000;
	border:2px solid #FFF;
	border-radius: 50%;
	width: 35px;
    height: 35px; /* 1:1 Aspect Ratio */
}
.modal-backdrop, 
.modal-backdrop.fade.in{
	opacity: 0.7;
	filter: alpha(opacity=70);
	background: #000;
}
.modal-dialog {
    min-height: calc(100vh - 60px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: auto;
}
@media(max-width: 768px) {
  .modal-dialog {
    min-height: calc(100vh - 20px);
  }
}
#popuphomeads .modal-body, #popuphomeads .modal-body p{
	padding: 0;
}
#popuphomeads .modal-content {
	background: none;
	box-shadow: none;
	border: none;
	padding: 0;
}

#popuphomeads .modal-dialog {
  display: inline-block;
  text-align: left;
  vertical-align: middle;
}
.modal-title{
	text-transform: uppercase;
}

.modal-header{
	padding: 8px 15px;
background-color: #e03;
color: #FFF;
	
}
.close{
	color: #FFF;
		opacity: 1;
}
#btncheckdiscount{
	display: block;
	text-align: center;
	
}
.rowpopuporder{
	border-top: 1px solid #eee;
	padding: 5px 0 5px 0;
	text-align: right;
}
.popup__orderlistproduct .popup__button{
	border-top: 1px solid #eee;
	padding: 10px 0 10px 0;
	margin-top: 10px;
}
.listordercode{
	font-size: 16px;
	font-weight: bold;
	margin-bottom: 10px;
	text-transform: uppercase;
}
.btncancelorder{
	margin-top: 10px;
}
.noborder td{
	border: none !important;
}
.status_row4___order{
	background-color:#EFFFF2;
}
.status_row3___order{
	background-color:#FFF7F7;
}
.status_row2___order_finished{
	background-color:#F1F1F1;
}
.status_row2___order{
	opacity: 0.2;
	background-color: #F8F8F8;
}
.status_order_btn{
	color:#000;font-size: 14px;
	text-align: left;
	text-transform: uppercase;
	
}
.status___order_indtransit{
	font-weight: bold;
	color: #FFF;
}
.status___order_accepted{
	font-weight: bold;
	color:#0063FD;
}
.status___order_canceled{
	margin-top: 10px;
	font-weight: bold;
	color:#80292B;
}
/****** BASTKET - ORDER *************/
.frameorderbuttonPC{
		display: block;
	text-align: center;
	}

.buttoncheckout{
	border: 2px solid #000;
	background-color: #FFF;
	color: #000;
	text-align: center;
	display: inline-block;
	text-transform: uppercase;
	font-weight: bold;
	font-size: 11px;
	padding: 8px 25px;
	letter-spacing: 0.1em;
}
	.buttoncheckout:hover {
			background-color:#000;
			color:#FFF;
			text-decoration:none;
		}
.frameorderbuttonmobile{	
	margin-top: 20px;
	display: none;
	text-align: center;
}
.frameorderbuttonmobile .buttoncheckout{
	width: 80%;
	margin-bottom: 10px;
	background-color:#000;
	color:#FFF;
	text-decoration:none;
	
}
.productorder.b-table-primary th{
	border:none;
	background:none;
	color:#000;
	text-transform:capitalize;
	font-size:14px;
	font-weight:500;
	text-align:left
}
.productorder td{
	border-left:none !important;
	border-right:none !important;
	padding-top:15px !important;
}
.productorder tr:hover td{
	background:none !important;
}
.removebasketitem{
	padding:8px 15px;
	background-color:#000;
	font-size:12px;
	color:#FFF;
	text-transform:uppercase;
}
.removebasketitem:hover{
	background-color:#4496d2;
	color:#FFF;
}
.removebasket{
	font-size:20px;
	color:#000;
}
.frame_basket .thumbimg, .tablemyorders .thumbimg {
	max-height:150px !important;
	width:60px;
}
.frame_basket{
	margin-bottom:30px;
	margin-top:30px;
}
.basket{
	margin-bottom:20px;
}
.basket table .size{
	text-align: center;
}
.campaginnotcodealert{
	padding: 10px 0 ;
	color: #FF0004;
}
.framecarttotalprice,.frameshippingprice{
	border-top:1px solid #ddd;
	padding-top:10px;
	margin-top:10px;
	font-size:14px;
	text-transform:capitalize;
}
.framecarttotalprice{
	font-weight:bold;
	font-size:16px;
}
.framefinish{
	margin:30px 0 30px 0;
}

.framecontactorder {
	padding-right:30px;
	border-right:1px solid #CCC;
}
.framecontactorder  input,.myacountform input{
	text-transform:capitalize;
		
}
.framecontactorder  input::first-letter{
	text-transform: uppercase;
		
}
.framelistproductorder{
	padding-left:30px;
}



.frmOrderinfo{
	margin:20px auto;
	width:40%;
}
.formordertext{
	text-align:center;
	font-size:16px;
}
.formorder th{
	padding:8px 3px !important;
	font-size:16px;
	
}
.form-finish a{
	font-weight: bold;
	color: #317DD7;
	
}
.ordercodedinish{
	font-size: 18px;
}
.pagetitle_orderfinish{
	font-size:24px;
	color:#428bca;
	text-align:center;
	font-weight:500;
}
.finish_img{
	float: left;
	width: 153px;
}
	.finish_img img{
		max-width: 153px;
	}
.finish_content{
	float: left;
	width: 500px;
	padding: 0 0 0 30px;
}
.product-thumbnail {
    width: 4.6em;
    height: 4.6em;
    border-radius: 8px;
    background: #fff;
    position: relative;
}
.product-thumbnail__wrapper {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    z-index: 1;
}
td.product__image{
	width:100px;
}
.total-line{
}
.total-line td{
	font-size:18px;
	padding-top: 3em;
position: relative;
}
.total-line td::before {
    background-color: rgba(179,179,179,0.34);
}
.total-line td::before {
    content: '';
    position: absolute;
    top: 1.5em;
    left: 0;
    width: 100%;
    height: 1px;
}
.product-thumbnail__image {

    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    max-width: 100%;
    max-height: 100%;
    margin: auto;

}
.product-thumbnail__quantity {
    font-size: 0.85714em;
    font-weight: 500;
    white-space: nowrap;
    padding: 0.15em 0.65em;
    border-radius: 2em;
    background-color: rgba(153,153,153,0.9);
    color: #fff;
    position: absolute;
    right: -0.75em;
    top: -0.75em;
    z-index: 3;
}
.product-thumbnail::after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    border-radius: 8px;
    -webkit-box-shadow: 0 0 0 1px rgba(0,0,0,0.1) inset;
    box-shadow: 0 0 0 1px rgba(0,0,0,0.1) inset;
    z-index: 2;
}

.productorder.b-table-primary th{
	border:none;
	background:none;
	color:#000;
	font-size:14px;
	font-weight:500;
	text-align:left
}
.productorder td{
	border-left:none !important;
	border-right:none !important;
}
.productorder tr:hover td{
	background:none !important;
}

.framebuttonconfirmorderform {
	text-align:center;
	margin-top:50px;
}
.framebuttonconfirmorderform .b-btn{
	border:none;
}
.button_checkout{
	text-align:right;
	margin-top:20px;
}
.ordercartajaxmessage{
	display:none;
}

.valuediscount{
	padding:10px 0 0 0;
}
/* Vertical tabs */
.b-tabs-vertical .ui-tabs-nav{
	margin: 0;
	padding: 0;

}
.b-tabs-vertical .ui-tabs-nav li {
    float: none;
    margin: 0;
	padding: 0;
	display: block;
}
.b-tabs-vertical .ui-tabs-nav li {
    list-style: none;
    position: relative;
    top: 0;
    margin: 0;
    border-bottom-width: 0;
    padding: 0;
    white-space: nowrap;
}
.b-tabs-vertical .ui-tabs-nav .ui-tabs-anchor{
	float: none;
	
}
.b-tabs-vertical .ui-tabs-nav li a{
	display: block;
}
.b-tabs-vertical .ui-tabs-panel {
  background: url("../images/tab-vertical-bg-shadow.png") no-repeat left center;
  background-size: 11px 100%;
  margin-left: -11px; }
  @media screen and (max-width: 767px) {
    .b-tabs-vertical .ui-tabs-panel {
      background: none;
      margin-top: 10px; } }
.b-tabs-vertical .b-tabs-vertical__content-text {
  margin: 10px 10px 10px 42px; }
  @media screen and (max-width: 767px) {
    .b-tabs-vertical .b-tabs-vertical__content-text {
      margin: 15px 10px 10px 10px; } }
.b-tabs-vertical .ui-tabs-nav .ui-tabs-anchor {
  border: 1px solid transparent !important;
  display: block;
  padding: 10px 10px 10px 27px; }
  .b-tabs-vertical .ui-tabs-nav .ui-tabs-anchor .fa {
    margin-right: 12px;
    width: 18px;
    text-align: center; }
.b-tabs-vertical .ui-tabs-nav .ui-tabs-active .ui-tabs-anchor {
	
  background: white;
  border-color: #ededed white #ededed #ededed !important; }
  @media screen and (max-width: 767px) {
    .b-tabs-vertical .ui-tabs-nav .ui-tabs-active .ui-tabs-anchor {
      border-color: #ededed; } }

.f-tabs-vertical .ui-tabs-nav .ui-tabs-anchor {
  font-size: 14px;
  line-height: 1.2; }
.f-tabs-vertical .ui-tabs-nav .ui-tabs-active .ui-tabs-anchor {
  font-weight: 600;
  color: #565656; }

@media screen and (max-width: 767px) {
  .ui-tabs.b-tabs-vertical--default {
    padding-left: 15px;
    padding-right: 15px; } }

.b-tabs-vertical__nav {
  position: relative;
  z-index: 5; }
  @media screen and (min-width: 768px) {
    .b-tabs-vertical__nav {
      padding-right: 0; } }

@media screen and (min-width: 768px) {
  .b-tabs-vertical__content {
    padding-left: 0; } }

.f-tabs-vertical__title {
  color: #4496d2;
  text-transform: none; }
  .f-tabs-vertical__title a {
    color: #4496d2; }
    .f-tabs-vertical__title a:hover {
      color: #898989; }

h3.f-tabs-vertical__title {
  margin: 5px 0 4px 0; }

/* End Vertical tabs */
.b-google-map {
  position: relative; }

@media screen and (min-width: 1024px) {
  .b-google-map--fix-height .b-google-map__map-view {
    min-height: 650px; } }

.b-google-map__map-view {
  min-height: 500px; }
  @media screen and (max-width: 1024px) {
    .b-google-map__map-view {
      min-height: 600px; } }
  @media screen and (max-width: 767px) {
    .b-google-map__map-view {
      min-height: 300px; } }

.b-google-map__info-window {
  padding: 10px 0; }
  @media (max-width: 1024px) {
    .b-google-map__info-window {
      max-width: 310px; } }

.b-google-map__info-window-address, .b-google-map__info-window-image {
  padding: 0; }

.b-google-map__info-window-address ul li {
  margin-bottom: 20px; }
.b-google-map__info-window-address ul li:last-child {
  margin-bottom: 0; }

.b-google-map__info-window-address-title {
  margin-top: 3px;
  margin-bottom: 5px; }

.f-google-map__info-window-address-title {
  color: #4496d2;
  font-weight: 700;
  text-transform: uppercase; }
  .f-google-map__info-window-address-title:hover {
    cursor: pointer; }

.b-google-map__info-window-address-icon {
  height: 44px;
  width: 44px;
  background-color: #4496d2;
  border-radius: 999px;
  overflow: hidden;
  margin-right: 10px; }
  .b-google-map__info-window-address-icon .fa {
    color: white;
    vertical-align: middle;
    line-height: 44px;
    font-size: 21px; }
  .b-google-map__info-window-address-icon:hover {
    cursor: pointer; }

.b-goggle-map_info-window-estate {
  padding-left: 17px;
  min-height: 315px; }
  @media (max-width: 640px) {
    .b-goggle-map_info-window-estate {
      padding-left: 0;
      max-width: 270px; } }

.b-goggle-map_info-window-estate-image {
  margin-bottom: 20px; }
  .b-goggle-map_info-window-estate-image img {
    width: 275px; }
  @media (max-width: 640px) {
    .b-goggle-map_info-window-estate-image img {
      width: 270px; } }

.f-google-map__info-window-estate-title {
  font-size: 1.53846em;
  line-height: 1;
  color: #4496d2; }

.f-google-map__info-window-estate-description {
  font-size: 0.92308em;
  line-height: 1.2; }

.b-google-map__info-window-estate-details {
  padding: 10px 0;
  margin: 5px 0;
  border-top: 2px solid #dddddd;
  border-bottom: 2px solid #dddddd; }
  .b-google-map__info-window-estate-details .b-info-group ul {
    margin: 0; }
  .b-google-map__info-window-estate-details .fa {
    color: #989898; }

.b-google-map__title {
  position: relative;
  padding: 20px 0; }
  @media screen and (min-width: 480px) {
    .b-google-map__title {
      padding: 40px 0; } }
  .b-google-map__title:after {
    top: 100%;
    left: 50%;
    border: 18px solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    z-index: 1;
    pointer-events: none;
    border-top-color: #4496d2;
    margin-left: -18px; }

.f-google-map__title {
  font-size: 2.76923em;
  line-height: 1.2;
  color: white;
  background-color: #4496d2;
  text-transform: uppercase;
  vertical-align: middle; }

.f-google-map__marker-label {
  color: white;
  font-size: 1.07692em;
  line-height: 1.2;
  background-color: #666666;
  text-align: center;
  white-space: nowrap;
  padding: 10px;
  margin-left: 20px;
  border-radius: 2px;
  position: relative;
  top: -75px;
  left: -50%; }

.f-google-map__marker-label {
  color: white;
  font-size: 1.07692em;
  line-height: 1.2;
  background-color: #666666;
  text-align: center;
  white-space: nowrap;
  padding: 10px;
  margin-left: 20px;
  border-radius: 2px;
  position: relative;
  top: -75px;
  left: -50%; }
  .f-google-map__marker-label:after {
    top: 100%;
    left: 50%;
    border: 5px solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-top-color: #666666;
    margin-left: -2px; }

.b-google-map__info-office {
  min-height: 70px;
  padding-left: 15px;
  width: auto; 
	color: #000;
}
  .b-google-map__info-office h4 {
    margin-bottom: 5px; }

.f-google-map__info-office {
  text-transform: uppercase; }
  .f-google-map__info-office small {
    color: #000; }

.frame_alert{
	background: #FFCECF;
	color:#D70003;
	padding: 10px 0 10px 20px;
}
.productdetail__framesectionone{
	position: relative;
	display: flex;

flex-wrap: wrap;
}
#btnopensideModalAler{
	position: fixed;
	width: auto;
	z-index: 100;
	display: none;
	bottom: 0;
	left: 0;
	cursor: pointer !important;
	cursor: hand;
}
.boxshopthelook{
	display: none;
	background-color: #FFF;
	-webkit-box-shadow: 0 2px 5px 0 rgba(0,0,0,.16),0 2px 10px 0 rgba(0,0,0,.12);
	box-shadow: 0 2px 5px 0 rgba(0,0,0,.16),0 2px 10px 0 rgba(0,0,0,.12);
	border: 0;
	padding: 1rem;
	font-size: 16px;
	font-weight: bold;
}
.boxshopthelook{
	border: 1px solid #eee;
	z-index: 100;
	height: 100%;
	position:absolute;
    top:0px;
	
	width: 100%;
    right:0px;
    margin:0px;
}
.boxshopthelook-dialog {
   
    border: 0;
	width: 100%;
	height:98%;
	overflow-y:auto;
	margin-bottom: 15px;

}
.boxshopthelook-dialog .boxshopthelook-top {
	text-align: center;
    font-size: 33px;
    margin-top: 10px;
	position: relative;

}
.boxshopthelook-dialog .boxshopthelook-header {
	text-align: center;
    font-size: 33px;
    margin-top: 24px;
	position: relative;

}
.boxshopthelook-dialog .boxshopthelook-header::before {

    content: "";
    position: absolute;
    display: block;
    z-index: 1;
    border-bottom: 1px solid #ccc;
    width: 100%;
    height: 2.5rem;
    padding-top: 0;

}
.boxshopthelook-dialog .boxshopthelook-header span {

    text-align: center;
    background: #fff;
    padding: 0 20px;
    position: relative;
    z-index: 5;
    line-height: 47px;
	text-transform: uppercase;

}

.boxshopthelook.left.fade {
		right: -320px;
		bottom: 0;
		-webkit-transition: opacity 0.3s linear, right 0.3s ease-out;
		   -moz-transition: opacity 0.3s linear, right 0.3s ease-out;
		     -o-transition: opacity 0.3s linear, right 0.3s ease-out;
		        transition: opacity 0.3s linear, right 0.3s ease-out;
	}
	
	.boxshopthelook.left.fade.in{
		right: 0;
	}
.boxshopthelook-body{
	padding: 10px;
	color: #000;
}
.boxshopthelook .modal-footer {
	border: none;
}
.listshopthelook{
	margin-top: 15px;
}
.stl__products, .stl__products li{
	list-style: none;
	margin: 0;
	padding: 0;
	
}

.stl__products li:first-child {

    padding-top: 0;

}
.stl__products li {

    margin-right: 9.5%;

}
.stl__products > li {

    zoom: 1;
    position: relative;
    border-bottom: 1px solid #acacac;
    padding: 30px 0;
        padding-top: 30px;

}
.stl__product__media {

    float: left;
    padding-top: 2px;

}
.stl__product__media {

    width: 31%;
    margin-left: 7.9%;

}

.stl__product__media .zoom-wrapper {

    display: inline-block;
    border: 1px solid #ccc;

}
.stl__product__media img {

    width: 100%;

}

.stl__product__info {
	float: left;
    margin-left: 12%;
    width: 49%;

}
.stl__product__add-to-cart {

    margin-left: 12%;
    float: left;

}
.stl__product__info .framesize{
	font-size: 12px;
}

.frame-accordion .showhidepanel__content p{
	padding: 0;
}
footer{
	padding:0 0 0 0;
	background-color: #eaeaea;
	font-size: 12px;
	margin-top:20px;
	color: #FFF;
	}

footer .footerabout{
	line-height: 2.2;
}
footer h4{
	font-size:14px; 
	color: #E03;
	line-height: 30px;
	text-transform: uppercase;
	font-weight: bold;
}
.footeraboutPC{
	text-align: center;
	border-top: 1px solid #000;
	width: 100%;
}
.footer-note{
	background-color: #E03;
	padding: 5px 0 5px 0;
}
.footernote{
	font-size: 16px;
	padding: 10px 0 5px 0;
	color: #FFF;
	text-transform: uppercase;
	display: flex;
	  justify-content: center;
	  align-items: center;
}
.footernote  img{
	margin-bottom: 5px;
	height: 26px;
	font-size: 24px;
}
.i-payment-easy{
	
}
.footer-logobrand{
	display: flex;
	flex-wrap: nowrap;
}
.framelogobrand{
	text-align: left;
	float: left;
}
	.framelogobrand img{
		height: 40px;
		margin-right: 10px;
		margin-bottom: 20px;
		}
.framelogocertify{
	float: right;
	text-align: right;
}
.framelogocertify img{
	height: 60px;
}
.footer-logobrand{
	padding: 20px 0;
}

.footercolmobile h4{
	font-size: 12px;
}
.framefooterPC{
	display: flex;
	flex-wrap: wrap;
	color: #515151;
	padding-top: 25px;
}
.framefootermobile{
	display: none;
}

.widgetfooter{
	width: 20%;
	float: left;
	padding: 10px 15px;
}
.widgetfooter:first-child{
	width: 40%;
	padding-left: 0;
	
}
.widgetfooter:last-child{
	padding-right: 0;
	
}
 /* Style all font awesome icons */
.footersocial{
	margin-bottom: 20px;
}
.footersocial .fa {
    padding: 10px;
	background: #000;
    color: white;
	font-size: 20px;
    width: 40px;
    text-align: center;
    text-decoration: none;
}

/* Add a hover effect if you want */
.footersocial .fa:hover {
    opacity: 0.7;
}

/* Set a specific color for each brand */


.footercopyright{
	padding:20px 0 20px 0;
	text-align: center;
	background-color: #E03;
}
.listmenufooter ul, .listmenufooter li{
	margin: 0;
	padding: 0;
	list-style: none;
}
	.listmenufooter li{
		margin-bottom: 10px;
	}
	.listmenufooter li a{
		text-transform:none;
	}
	.listmenufooter li a:hover,footer a:hover{
		color:#E03;
	}
/******** RESPONSIVE  **************/
.block_more_info{
	display:none;
}
.block_close_menu {
	position: absolute;
	height: 100%;
	width: 100%;
	z-index: 99;
	left: 0;
	top: 0;
	display: none
}

.menusubsmall{
	margin:5px 0 0 0;
}
.list_item_panel {
	width: 100%;
	float: left;
	margin:0;
	padding:0;
	background: #E7E7E7;
}
.list_item_panel li {
	float: left;
	width: 100%
}
.list_item_panel li img {
	float: left
}
.list_item_panel li ul {
	margin:0 0 0 0;
	padding:0;
	display:none;
	background: #E7E7E7;
}
.list_item_panel li span {
	display:inline-block;
	position:relative;
	padding-left:4%;
	
	background:none;
	border-bottom: 1px solid #000;
}	
.list_item_panel li span.b-ico-dropdown{
	float:right;
}
.list_item_panel li a {
	display:inline-block;
	width: 100%;
	text-transform: uppercase;
	color: #000 ;
	font-weight: bold;
	border-bottom:none;

}
.list_item_panel li a:active {
	background-color:none;
}
.list_item_panel li ul li a{
	padding-top: 5px !important;
	padding-bottom: 5px !important;
		display: block;
		width: 100%;
		float: left;
		font-weight: 500;
		color: #000!important;
	}
.list_item_panel li a span{
	padding:0 0 0 10px;
	border-bottom:none;
}
.list_item_panel li.active a {
	border-left: 5px solid #9f224e;
	width: 235px
}
.list_item_panel li.end a {
	border: none
}


.ui-body-a .list_item_panel li a.ui-link {
	color: #fff
}

.list_item_panel #active span{
	background:none;
    cursor: pointer !important;
    float: none;
    padding-left:4%;
    text-decoration: none;
    text-transform: capitalize;
}
.list_item_panel #active span a {
    background:none;
    color: #fff;
    cursor: pointer !important;
    float: left;
    font-weight: normal;
    height: auto;
    margin: 0;
    padding: 0 0;
}
.list_item_panel ol li  .itemwrap a{
	background:none !important;
}

.list_item_panel  ol li h2{
	font-size:18px;
	margin-top:7px; 
}
/************   LIST MENU DROPDOWN ACTION BAR  *************/
.hidden_web{
	display:none;
}
.dropdown{
	cursor: hand !important;
	cursor: pointer !important;
}
.list_item_action {
	width: 100%;
	float: left;
	border: 1px solid #e6e8ea;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 1) inset;
	background-color:#FFF;
	display:none;
}
.list_item_action li {
	float: left;
	width: 100%
}

	
.list_item_action li a {
	display:inline-block;
	width: 100%;
	float: left;
	color: #000!important;
	font-size:12px;
	margin:0;
	padding:3px 0 3px 0;
	border-bottom:1px solid #e6e8ea;	
}
.list_item_action li a span{
	padding:0 10px 0 0;
}

.list_item_action li.end a {

	border: none
}


.overhidden{
	overflow:hidden;
}
#framemenuresponsive{
	position:absolute;
	top:50px;
	z-index:1000000;	
	background-color: #E7E7E7;
	 
}
#menuresponsive{
	background-color:#000000;
	margin-top:0;
	padding-top:0;
}
.menuresponsivevrowse{
	background-color:#000000;
	padding:10px 10px 20px 15px;
}
.mainmenuresponsive{
	background-color:#E7E7E7;
}
/*U.side-menu {
  position: fixed;
  width: 300px;
  height: 100%;
  background-color: #f8f8f8;
  border-right: 1px solid #e7e7e7;
}*/
.side-menu .navbar {
  border: none;
}
.side-menu .navbar-header {
  width: 100%;
  border-bottom: none !important;background-image: none !important;
	background:#E03;
}

.side-menu .list_item_panel .active a {
  background-color: transparent;
  margin-right: -1px;
  border-right: 5px solid #e7e7e7;
}
.side-menu .list_item_panel li {
  display: block;
  width: 100%;
 
}
.side-menu .list_item_panel li a {
	font-size: 12px;
  padding: 8px;
   border-bottom: 1px solid  #000;
}
.side-menu .list_item_panel li a:hover {
	background-color:#F4F4F4;
}
.side-menu .list_item_panel li a .glyphicon {
  padding-right: 10px;
}
.side-menu .product_cats {
  border: 0;
  margin: 0;
  padding:0;
  border-radius: 0;
  background-color: transparent;
  box-shadow: none;
}
.side-menu .caret {
  float: right;
  margin: 9px 5px 0;
}
.side-menu .product_cats .indicator {
  float: right;
}
.side-menu .product_cats > a {
  border-bottom: 1px solid #e7e7e7;
}
.side-menu .product_cats .panel-body {
  padding: 0;
  background-color: #000;
}
.side-menu .product_cats .panel-body .list_item_panel {
  width: 100%;
}
.side-menu .product_cats .panel-body .list_item_panel li {
  padding-left: 15px;
  border-bottom: 1px solid #e7e7e7;
}
.list_item_panel li a{
	color:#000;
}
.side-menu .product_cats .panel-body .list_item_panel li:last-child {
  border-bottom: none;
}
.side-menu .product_cats .panel-body .panel > a {
  margin-left: -20px;
  padding-left: 35px;
}
.side-menu .product_cats .panel-body .panel-body {
  margin-left: -15px;
}
.side-menu .product_cats .panel-body .panel-body li {
  padding-left: 30px;
}
.side-menu .product_cats .panel-body .panel-body li:last-child {
  border-bottom: 1px solid #e7e7e7;
}

.side-menu .headerrighticonmobile {
  background-color:transparent;
  border: 0;
	height: 50PX;
  border-radius: 0;
  position: absolute;
  top: 0;
  right: 0;
  color:#FFF;
  padding: 15px 5px 15px 10px;
}
.side-menu .headericonbasketmobile {
	color: #FFF;
}
.side-menu #search-trigger {
  background-color:transparent;
  border: 0;
	height: 80PX;
  border-radius: 0;

  color:#FFF;
  padding: 15px 10px 15px 10px;
}
.side-menu #search-trigger:hover{
	border:none;
}
.navbar-default .navbar-toggle:hover{
	border:none  !important;
}
.headermobile-wrapper{
	height: 50px;
}
.side-menu .brand-name-wrapper {
	position:absolute;
	left: 0;
	right: 0;
  min-height: 50px;
	height: 50px;
	text-align: center;
	
}
.navbar-brand{
	padding-left: 0;
	padding-right: 0;
}
.side-menu .brand-name-wrapper .navbar-brand.logomobile{
	float: none;
}
.side-menu .brand-name-wrapper .navbar-brand.logomobile img{
	max-height: 20px;
}
.side-menu .brand-name-wrapper .navbar-brand {
	text-align: center;
  display: block;
  color:#FFF;
	text-transform: uppercase;
}
.side-menu #searchresponsive {
  position: relative;
  z-index: 1000;
}
.side-menu #searchresponsive .panel-body {
  padding: 0;
}
.side-menu #searchresponsive .panel-body .navbar-form {
  padding: 0;
  padding-right: 50px;
  width: 100%;
  margin: 0;
  position: relative;
  border-top: 1px solid #e7e7e7;
}
.side-menu #searchresponsive .panel-body .navbar-form .form-group {
  width: 100%;
  position: relative;
}
.side-menu #searchresponsive .panel-body .navbar-form input {
  border: 0;
  border-radius: 0;
  box-shadow: none;
  width: 100%;
}
.side-menu #searchresponsive .panel-body .navbar-form .btn {
  position: absolute;
  right: 0;
  top: 0;
  border: 0;
  border-radius: 0;
  color:#FFF;
  background-color: #000;
  padding: 10px 18px;
}

#alertmessage {
	display:none;
}

.boxalert{
	border: 1px solid #eee;
	z-index: 10000;
	
	position:fixed;
    bottom:0px;
	
	
    left:0px;
    margin:0px;
}
.boxalert-dialog {
    -webkit-box-shadow: 0 5px 11px 0 rgba(0,0,0,.18),0 4px 15px 0 rgba(0,0,0,.15);
    box-shadow: 0 5px 11px 0 rgba(0,0,0,.18),0 4px 15px 0 rgba(0,0,0,.15);
    border: 0;
	width: 400px;
	height:auto;
	overflow-y:auto;
	max-height: 400px;
	background-color: #FFF;
    -webkit-border-radius: .125rem;
    border-radius: .125rem;
}
.boxalert-dialog .boxalert-header {
    background-color: #fb3;
	-webkit-box-shadow: 0 2px 5px 0 rgba(0,0,0,.16),0 2px 10px 0 rgba(0,0,0,.12);
	box-shadow: 0 2px 5px 0 rgba(0,0,0,.16),0 2px 10px 0 rgba(0,0,0,.12);
	border: 0;
	padding: 1rem;
	color: #FFF;
	font-size: 16px;
	font-weight: bold;
	margin-bottom: 15px;
}
.boxalert.top.fade {
		top: -320px;
		right: 0;
	left: 0;
		-webkit-transition: opacity 0.3s linear, left 0.3s ease-out;
		   -moz-transition: opacity 0.3s linear, left 0.3s ease-out;
		     -o-transition: opacity 0.3s linear, left 0.3s ease-out;
		        transition: opacity 0.3s linear, left 0.3s ease-out;
	}
	
	.boxalert.top.fade.in{
		left: 0;
	}
.boxalert-body{
	padding: 10px;
	color: #000;
}
.listitemaler ul,.listitemaler li{
	list-style: none;
	margin: 0;
	padding: 0;
}
.listitemaler li a{
	color: #000;
}
.nameproduct{
	text-transform: uppercase;

}

.contactboxmobile-nav{
	display: none;
}

.hotline-phone-ring-wrap {
 position:fixed;
 bottom:10px;
 left:-10px;
 z-index:99
}
.hotline-phone-ring {
 position:relative;
 visibility:visible;
 background-color:transparent;
 width:110px;
 height:110px;
 cursor:pointer;
 z-index:11;
 -webkit-backface-visibility:hidden;
 -webkit-transform:translateZ(0);
 transition:visibility .5s;
 left:0;
 bottom:0;
 display:block
}
.hotline-phone-ring-circle {
 width:85px;
 height:85px;
 top:-15px;
 left:9px;
 position:absolute;
 background-color:transparent;
 border-radius:100%;
 border:2px solid #e60808;
 -webkit-animation:phonering-alo-circle-anim 1.2s infinite ease-in-out;
 animation:phonering-alo-circle-anim 1.2s infinite ease-in-out;
 transition:all .5s;
 -webkit-transform-origin:50% 50%;
 -ms-transform-origin:50% 50%;
 transform-origin:50% 50%;
 opacity:.5
}
.hotline-phone-ring-circle-fill {
 width:55px;
 height:55px;
 top:0;
 left:24px;
 position:absolute;
 background-color:rgba(230,8,8,.7);
 border-radius:100%;
 border:2px solid transparent;
 -webkit-animation:phonering-alo-circle-fill-anim 2.3s infinite ease-in-out;
 animation:phonering-alo-circle-fill-anim 2.3s infinite ease-in-out;
 transition:all .5s;
 -webkit-transform-origin:50% 50%;
 -ms-transform-origin:50% 50%;
 transform-origin:50% 50%
}
.hotline-phone-ring-img-circle {
 background-color:#e60808;
 width:33px;
 height:33px;
 top:11px;
 left:36px;
 position:absolute;
 background-size:20px;
 border-radius:100%;
 border:2px solid transparent;
 -webkit-animation:phonering-alo-circle-img-anim 1s infinite ease-in-out;
 animation:phonering-alo-circle-img-anim 1s infinite ease-in-out;
 -webkit-transform-origin:50% 50%;
 -ms-transform-origin:50% 50%;
 transform-origin:50% 50%;
 display:-webkit-box;
 display:-webkit-flex;
 display:-ms-flexbox;
 display:flex;
 align-items:center;
 justify-content:center
}
.hotline-phone-ring-img-circle .pps-btn-img {
 display:-webkit-box;
 display:-webkit-flex;
 display:-ms-flexbox;
 display:flex
}
.hotline-phone-ring-img-circle .pps-btn-img img {
 width:20px;
 height:20px
}
.hotline-bar {
 position:absolute;
 background:rgba(230,8,8,.75);
 height:40px;
 width:170px;
 line-height:40px;
 border-radius:3px;
 padding:0 10px;
 background-size:100%;
 cursor:pointer;
 transition:all 0.8s;
 -webkit-transition:all 0.8s;
 z-index:9;
 box-shadow:0 14px 28px rgba(0,0,0,.25),0 10px 10px rgba(0,0,0,.1);
 border-radius:50px!important;
 left:32px;
 bottom:62px
}
.hotline-bar>a {
 color:#fff;
 text-decoration:none;
 font-size:15px;
 font-weight:700;
 text-indent:36px;
 display:block;
 letter-spacing:1px;
 line-height:40px;
 font-family:Arial
}
.hotline-bar>a:hover,
.hotline-bar>a:active {
 color:#fff
}
@-webkit-keyframes phonering-alo-circle-anim {
 0% {
  -webkit-transform:rotate(0) scale(.5) skew(1deg);
  -webkit-opacity:.1
 }
 30% {
  -webkit-transform:rotate(0) scale(.7) skew(1deg);
  -webkit-opacity:.5
 }
 100% {
  -webkit-transform:rotate(0) scale(1) skew(1deg);
  -webkit-opacity:.1
 }
}
@-webkit-keyframes phonering-alo-circle-fill-anim {
 0% {
  -webkit-transform:rotate(0) scale(.7) skew(1deg);
  opacity:.6
 }
 50% {
  -webkit-transform:rotate(0) scale(1) skew(1deg);
  opacity:.6
 }
 100% {
  -webkit-transform:rotate(0) scale(.7) skew(1deg);
  opacity:.6
 }
}
@-webkit-keyframes phonering-alo-circle-img-anim {
 0% {
  -webkit-transform:rotate(0) scale(1) skew(1deg)
 }
 10% {
  -webkit-transform:rotate(-25deg) scale(1) skew(1deg)
 }
 20% {
  -webkit-transform:rotate(25deg) scale(1) skew(1deg)
 }
 30% {
  -webkit-transform:rotate(-25deg) scale(1) skew(1deg)
 }
 40% {
  -webkit-transform:rotate(25deg) scale(1) skew(1deg)
 }
 50% {
  -webkit-transform:rotate(0) scale(1) skew(1deg)
 }
 100% {
  -webkit-transform:rotate(0) scale(1) skew(1deg)
 }
}
@media (max-width:768px) {
	
	.scrolltype {
		display: none;
	}
	
 .hotline-phone-ring-wrap {
  display:none
 }
	
.phone-mobile {display: none;}
.contactboxmobile-nav {
	display: block;
    position: fixed;
    right: 15px;
    background: #fff;
    border-radius: 5px;
    width: auto;
    z-index: 150;
    bottom: 50px;
    padding: 10px 0;
    border: 1px solid #f2f2f2;
}
.contactboxmobile-nav ul {list-style: none;padding: 0;margin: 0;}
.contactboxmobile-nav ul li {list-style: none!important;}
.contactboxmobile-nav ul>li a {
    border:none;
    padding: 3px;
    display: block;
    border-radius: 5px;
    text-align: center;
    font-size: 10px;
    line-height: 15px;
    color: #515151;
    font-weight: 700;
    max-width: 72.19px;
    max-height: 54px;
    text-decoration: none;
}
.contactboxmobile-nav ul>li .chat_animation{display:none}
.contactboxmobile-nav ul>li a i.ticon-heart {
    background: url(https://wpfast.vn/wp-content/uploads/2020/04/wpfast-icon-map.png) no-repeat;
    background-size: contain;
    width: 36px;
    height: 36px;
    display: block;
}
.contactboxmobile-nav ul>li a i.ticon-zalo-circle2 {
    background: url(https://wpfast.vn/wp-content/uploads/2020/04/wpfast-icon-zalo.png) no-repeat;
    background-size: contain;
    width: 36px;
    height: 36px;
    display: block;
}.contactboxmobile-nav li .button {
    background: transparent;
}.contactboxmobile-nav ul>li a i.ticon-angle-up {
    background: url(https://wpfast.vn/wp-content/uploads/2020/04/wpfast-icon-angle-up.png) no-repeat;
    background-size: contain;
    width: 36px;
    height: 36px;
    display: block;
}.contactboxmobile-nav ul>li a i {
    width: 33px;
    height: 33px;
    display: block;
    margin: auto;
}.contactboxmobile-nav ul li .button .btn_phone_txt {
    position: relative; top:35px;
    font-size: 10px;
    font-weight: bold;
    text-transform: none;
}
.contactboxmobile-nav ul li .button .phone_animation i {
    display: inline-block;
    width: 27px;
    font-size: 26px;
    margin-top: 12px;
}.contactboxmobile-nav ul>li a.chat_animation svg {
    margin: -13px 0 -20px;
}
.contactboxmobile-nav ul>li a i.ticon-messenger {
    background: url(../images/icon-messenger.png) no-repeat;
    background-size: contain;
    width: 36px;
    height: 36px;
    display: block;
}.contactboxmobile-nav ul li .button .phone_animation i {
    display: inline-block;
    width: 27px;
    font-size: 26px;
    margin-top: 12px;
}
.contactboxmobile-nav ul>li a i.ticon-chat-sms {
    background: url(../images/icon-sms.jpg) no-repeat;
    background-size: contain;
    width: 38px;
    height: 36px;
    display: block;
}
.contactboxmobile-nav ul>li a i.icon-phone-w {
    background: url(../images/icon-phone.png) no-repeat;
    background-size: contain;}
.contactboxmobile-nav ul li .button .btn_phone_txt {
    position: relative;
}


	
	
	
}
@media only screen and (max-width: 600px){
.contactboxmobile-nav li .chat_animation{display:block !Important}
 
.contactboxmobile-nav li .button .phone_animation {box-shadow: none;
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translate(-50%,0);
    width: 50px;
    height: 50px;
    border-radius: 100%;
    background: #6cb917;
    line-height: 15px;
    border: 2px solid white;
}
.contactboxmobile-nav ul>li a{padding:0; margin:0 auto}
.contactboxmobile-nav {
    background: white;
    width: 100%; border-radius:0;
    color: #fff;
    height: 60px;
    line-height: 50px;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 999;
    padding: 5px;
    margin: 0;
    box-shadow: 0 4px 10px 0 #000;
}
.contactboxmobile-nav li {
    float: left;
    width: 20%;
	position: relative;
    list-style: none;
    height: 50px;
}
.phone-mobile{display:block !important}
	}
	a.numberzalo {
		bottom: 10px;
    position: relative;
    left: 50px;
    cursor: pointer;
    z-index: 9999;
}
a.numberzalo img {
    width: 50px;
    border-radius: 50%;
}	


@media (max-width: 1280px) {
	ul.menutop li a{
		font-size: 12px;
		font-weight: 500;
	}
	.submenuparentitem a{
		font-size: 12px;
		font-weight: 500;
	}
	.header-controls a{
		font-weight: 500;
		font-size: 12px;
	}
}

@media (min-width: 1600px) {
	.container{
		max-width: 1200px;
	}
	
}

@media (min-width: 768px) and (max-width: 991px) {
.nav > li > a {
    padding-left: 12px;
    padding-right: 12px;
}

}

@media (min-width: 768px) and (max-width: 1199px) {

	ul.menutop li a {
		font-size: 14px;
		
	}
	.portfolio-gallery .photoone{
		width: 50%;
	}
}
@media (min-width: 1200px) {
	#e-slider li .img-placeholder {
		height: 500px;
	}
	#e-slider li .container {
		height: 500px;
		margin-top: -500px;
	}
}


@media (max-width: 1450px) {
	.textWrapper .slot--title{
		font-size: 28px;
		
	}
	.textWrapper .slot--title p {
		padding: 10px 20px;
	}
}

@media (max-width: 1199px) {
	.framecarttotalprice, .frameshippingprice{
		padding-left: 10px;
		padding-right: 10px;
	}
	.navbar{
		margin-bottom: 0;
	}
	.container{
		max-width: 100%;
	}
	.mobileusermenu{
	padding-top: 10px;
	}
	.pagelistone .framepagelistphoto{
		height: auto;
	}
	
	.slidehomebannermobile{
		display: block;
	}
	.slidehomebanner{
		display: none;
	}
	.product_detail_listphotos{
		display: none;
	}
	.product_detail_listphotos_mobile{
		display: block;
	}
	.product_detail_frame .product-meta{
		position:relative;
		padding-top: 20px;
		width: 100%;
		min-width: inherit;
	}
	.footercopyright{
		font-size: 12px;
		border-top:1px solid #000;
		padding:20px 10px 20px 10px;
	}
	.framenews-subject{
		font-size: 26px;
		line-height: 1.6;
		padding: 10px 0;
		margin-bottom: 10px;
	}
	.portfolio-gallery .photoone{
		width: 50%;
	}
	.buttonslideitemhome a.buttonStyle--inverse{
		padding: 3px 3px;
		font-size: 20px;
		border: 2px solid #000;
	}
	.slidehomebannermobile .textWrapper .slot--title{
		text-align: center;
		line-height: 1.6;
		font-size: 30px;
		padding: 10px 10px;
	}
	.slidehomebannermobile .textWrapper .slot--title p{
		padding: 5px 5px;
		margin: 0;
	}
	.framebanneradspadding{
		padding: 0;
	}
	.bannerads-textWrapper{
		padding: 10px 10px;
		-webkit-transform:none;
transform:none;
	}
	.bannerads-textWrapper span{
		font-size: 30px;
	}
	.bannerads-framebutton a{
		font-size: 18px;
		border: 2px solid #000;
		padding: 5px 10px;
	}
	.side-menu .list_item_panel  .b-top-nav__2level_wrap{
		margin:0;
		padding:0;
	}
	.side-menu .list_item_panel .b-top-nav__2level_wrap li a{
		display:block;
	}
	
	#framemenuresponsive_content{
		padding:0 0 0 0;
	}
	.slidecollection-subject{
		padding: 0.8em;
		font-size: 15px;
	}
	html{
		margin-top:0 !important;
	}
	.respmenu-wrap {
	padding-top: 0;
		
}
	/*.listproduct .productone{
		width: 50%;
	}*/
	.listproduct .mobile-horizontal {

		width: 100%;

	}
	.listproduct__product_name,.listproduct__product_price{
		font-size: 10px;
		line-height: 1.4;
	}
	.listproduct .productone .productone__listsize{
		font-size: 10px;
	}
.block_more_info{
	display:block;
	z-index:10000;
}  
	.headerpcsite{
		position:relative;
		display:none;
	}
.side-menu {
    position: relative;
    width: 100%;
    border-right: 0;
    border-bottom:none;
  }
  .side-menu .brand-name-wrapper .navbar-brand {
    display: inline-block;
  }
  
  /* Slide side menu*/
  /* Add .absolute-wrapper.slide-in for scrollable menu -> see top comment */
  .side-menu-container.slide-in {
	  position:relative;
    -moz-animation: slidein 300ms forwards;
    -o-animation: slidein 300ms forwards;
    -webkit-animation: slidein 300ms forwards;
    animation: slidein 300ms forwards;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
  }
  .side-menu-container {
    /* Add position:absolute for scrollable menu -> see top comment */
    position: fixed;
	z-index:10000;
    left: -300px;
    width: 270px;
    top: 0;
    height: 100%;
   border-right: 1px solid #f4f4f4;
   border-bottom: 1px solid #f4f4f4;
	padding-bottom:20px;
    -moz-animation: slideout 300ms forwards;
    -o-animation: slideout 300ms forwards;
    -webkit-animation: slideout 300ms forwards;
    animation: slideout 300ms forwards;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
	background-color:#fff;
  }
  .list_item_panel{
	  margin-right:0 !important;
	 margin-top: 0;
    padding-top: 0;
  }
  .side-menu-container > .list_item_panel {
	  position:relative;
	  width: 100%;
	   height: 100%;
	   padding:0;
	   margin:0 !important;
   
  }
  
  
  /* Slide side body*/
  .side-body {
    margin-left: 5px;
    margin-top: 70px;
    position: relative;
    -moz-animation: bodyslideout 300ms forwards;
    -o-animation: bodyslideout 300ms forwards;
    -webkit-animation: bodyslideout 300ms forwards;
    animation: bodyslideout 300ms forwards;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
  }
  .body-slide-in {
    -moz-animation: bodyslidein 300ms forwards;
    -o-animation: bodyslidein 300ms forwards;
    -webkit-animation: bodyslidein 300ms forwards;
    animation: bodyslidein 300ms forwards;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
  }
  /* Hamburger */
  .navbar-toggle {
	  display: block;
     border: 0 !important;
    float: left;
    padding: 10px;
	  z-index: 100;
    margin: 0;
    border-radius: 0;
	  position: relative;
    background-color:transparent !important;
  }
  .navbar-default .navbar-toggle .icon-bar{
	  background-color:#FFF;
  }
  /* Search */
  #searchresponsive .panel-body .navbar-form {
    border-bottom: 0;
  }
  #searchresponsive .panel-body .navbar-form .form-group {
    margin: 0;
  }
   .navbar-header {
    /* this is probably redundant */
    position:relative;
    z-index: 3;
    background-color: #000;
  }
  /* Dropdown tweek */
  .product_cats .panel-body .list_item_panel {
    margin: 0;
  }
	.galleryone{
		width: 100%;
	}
	.galleryone .textWrapper .slot--title p{
		padding: 10px 10px;
	}
	.textWrapper .slot--title{
		font-size: 12px;
	}
	.galleryone .textWrapper .slot--title p a{
		font-size: 12px;
	}
	
	.frame-home-news,.frame-subscriber{
		width: 100%;
	}
	.frame-subscriber{
		padding: 0;
	}
	.frame-img-subscriber{
		text-align: center;
		max-height: 600px;
		
	}
	.formsubscriber{
		width: 70%;
		margin: 0 auto;
	}
	.frame-img-subscriber img{
		width: 100%;
		height: auto;
	}
	
	.frame-img-subscriber .inner-img-subscriber {
		display: inline-block;
		position: relative;
		right: -50%;
	}

	.frame-img-subscriber .inner-img-subscriber img {
		position: relative;
		left: -50%;
	}
	.formsubscriber{
		max-width: 90%;
	}
	.formsubscriber h3{
		font-size:22px; 
	}
	#loader {
		font-size:12px;
	}
	/*.listproduct .productone{
		width: 50% !important;
	}*/
	.listproduct .mobile-horizontal {

		width: 100%;

	}
	.text-sizevideo{
		font-size:24px;
		text-align:center;
	}
	
	.colimgright {
		float:left !important;
	}
	.menutopframe{
		display:none;
	}
	.contactformcontainer{
		width:90%;
	}
	.col-foot-1,.col-foot-2,.col-foot-3,.col-foot-4,.b-inner-page-header{
		width:100% !important;
	}
	footer .borderright,footer .borderleft {
		border:none;
	}
	.footercontactbox{
		padding:0;
		padding-right:10px;
	}
	#toolbox{
		display:none;
	}
	.framefooterPC{
		display: none;
	}
	.framefootermobile{
		display: block;
		padding: 10px 10px;
		font-size: 0.8em;
		color: #515151;
	}
	.framefootermobile .listmenufooter{
		 display: flex;
	  justify-content: center;
	  align-items: center;
	}
	
	.footercolmobile{
		width: 50%;
		float: left;
	}
	.f-footer-second{
		border-top: 1px solid;
		padding-top: 10px;
		margin-top: 10px;
	}
		#footermobile{
			display:block;
			position:fixed;
			width:100%;
			font-size:12px;
			right: 0;
			bottom: 0;
			z-index: 100000;
			text-align: center;
		}
		#footermobile .boxhotlineframe {
			-moz-box-shadow:inset 0px 1px 0px 0px #cf866c;
			-webkit-box-shadow:inset 0px 1px 0px 0px #cf866c;
			box-shadow:inset 0px 1px 0px 0px #cf866c;
			background:-webkit-gradient(linear, left top, left bottom, color-stop(0.05, #aa2323), color-stop(1, #c32e2d));
			background:-moz-linear-gradient(top, #aa2323 5%, #c32e2d 100%);
			background:-webkit-linear-gradient(top, #aa2323 5%, #c32e2d 100%);
			background:-o-linear-gradient(top, #aa2323 5%, #c32e2d 100%);
			background:-ms-linear-gradient(top, #aa2323 5%, #c32e2d 100%);
			background:linear-gradient(to bottom, #aa2323 5%, #c32e2d 100%);
			filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#aa2323', endColorstr='#c32e2d',GradientType=0);
			background-color:#aa2323;
			-moz-border-radius:3px;
			-webkit-border-radius:3px;
			border-radius:3px;
			border:1px solid #942911;
			display:block;
			cursor:pointer;
			
			padding:6px 6px;
			margin:10px 0 0 0;
			text-decoration:none;
			text-shadow:0px 1px 0px #854629;
		}
			#footermobile .boxhotlineframe a{
				color:#ffffff;
			font-size:16px;
			}
				
		#footermobile .hotlinebox span{
			color:#FFF;
			margin:0 0 5px 0;
			display:inline-block;
		}
		#footermobile .hotlinebox{
			padding:0;
			border:none;
		}
		#footermobile .hotlinebox h3{
			padding:0;
			margin:0;
			line-height:120%;
		}
	
	

	.framelogofooter{
		height:1px;
	}
	#no-more-tables table, 
	#no-more-tables thead, 
	#no-more-tables tbody, 
	#no-more-tables th, 
	#no-more-tables td, 
	#no-more-tables tr { 
		display: block; 
	}
 
	/* Hide table headers (but not display: none;, for accessibility) */
	#no-more-tables thead tr { 
		position: absolute;
		top: -9999px;
		left: -9999px;
	}
 
	#no-more-tables tr { border: 1px solid #ccc; }
 
	#no-more-tables td { 
		/* Behave  like a "row" */
		border: none;
		border-bottom: 1px solid #eee; 
		position: relative;
		padding-left: 50%; 
		white-space: normal;
		text-align:left;
	}
 
	#no-more-tables td:before { 
		/* Now like a table header */
		position: absolute;
		/* Top/left values mimic padding */
		top: 6px;
		left: 6px;
		width: 45%; 
		text-transform: capitalize;
		padding-right: 10px; 
		white-space: nowrap;
		text-align:left;
		font-weight: bold;
	}
 
	/*
	Label the data
	*/
	#no-more-tables td:before { content: attr(data-title); }
	

	
	#elife-navigation {
	height: 50px;
	background: #414141;
	margin-bottom: 0;
	position: fixed;
	width: 100%;
	z-index: 299;
	top: 0
}


#elife-navigation .elife-page-wrapper {
	height: 50px
}
#elife-menu {
	display: none
}
#elife-header {
	display: none
}
.mobile-header-menu {
	display: block !important
}
#elife-header-content {
	display: none
}
.elife-product-list li.product {
	width: 33.33%
}


/***** MENU *****/
    #elife-navigation {
        height: 50px; background: #414141; margin-bottom: 0;
        position: fixed;
        width: 100%;
        z-index: 299;
        top: 0;
    }
    #elife-navigation .elife-page-wrapper { height: 50px; }
    #elife-menu { display: none; }
    #elife-header { display: none; }
    .mobile-header-menu { display: block !important; }
    #elife-header-content { display: none; }

	.navbar-fixed-top,#framemenuresponsive{
		position: fixed;
		z-index: 1000;
	}
	#framemenuresponsive{
		height: 100%;
		overflow-y:scroll;
	}
	#framemenuresponsive_content{
		padding-bottom: 20px;
	}
    /*** product ***/productoneproduct {
        width: 33.33%;
    }
	
	
	.slidehomeproductcollection-subject{
		font-size: 20px;
	}
	.container-home-collection-product{
		padding: 0 10px;
	}
	.homeproductone{
		font-size: 14px;
	}
}
.listpage,.pagelistproduct{
}
.title_listproductrelated{
}
.pdp-section-heading {
	text-align: center;
    font-size: 33px;
    margin-top: 24px;

}
.pdp-section-heading::before {

    content: "";
    position: absolute;
    display: block;
    z-index: 1;
    border-bottom: 1px solid #ccc;
    width: 100%;
    height: 2.5rem;
    padding-top: 0;

}
.pdp-section-heading span {

    text-align: center;
    background: #fff;
    padding: 0 20px;
    position: relative;
    z-index: 5;
    line-height: 47px;
	text-transform: uppercase;

}
.framesuggestions{
	position: relative;
}
.frameproduct_detail_listphotos_slider{
		padding: 0 30px;
	}
.listproductrow{
	display: flex;
	flex-wrap: nowrap;
}
	.listproductrow{
		display: flex;
		flex-wrap: wrap;
	}
.listproductone{
	width: 33%;
}
@media (max-width: 979px) {
	body{
		padding-bottom: 45px;
	}
	.dangkymobile{
		display: none;
	}
	.dangkypc{
		display:block;
	}
	.product_content,.productinfo{
		width: 100%;
	}
	.listproductone{
		width: 100%;
	}
	.row{
		padding: 0;
		margin: 0;
	}
	.sliderdetail .slick-prev{
		left: -15px;
	}
	.sliderdetail .slick-next{
		right: -15px;
	}
	.scroll{
		padding: 6px;
		font-size: 14px;
		bottom: 70px;
	}
	.productdetail__framesectionone{
	position:inherit;
		display: block;

	flex-wrap: wrap;
	}
	.frameproduct_detail_listphotos_slider,.product-meta-container{
		padding: 0 15px;
	}
	
	.ui-state-default, .ui-widget-content .ui-state-default, .ui-button, html .ui-button.ui-state-disabled:hover, html .ui-button.ui-state-disabled:active{
		float: none  !important;
		/*border: 1px solid #000 !important;
		width: 46%;
		padding: 8PX 0  !important;
		text-align: center;*/
	}
	.ui-tabs .ui-tabs-nav li a{
		display: block;
		border: 1px solid #000 !important;
		width: 46%;
		margin: 0 2%;
		padding: 8PX 0  !important;
		text-align: center;
	}
	.title_listproductrelated{
	display: block;
}
	.product-meta .ui-tabs .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor{
		background-color: #000;
		color: #FFF;
	}
	.container_pagesmall{
		padding-left:15px;
		padding-right:15px;
	}
	.container-post,.container-page{
		padding-left:30px;
		padding-right:30px;
	}
	.nopapge{
		font-size: 18px;
		line-height: 1.6;
	}
	.framecontentpage{
		padding-left: 0;
	}
	.frame_basket{
		
	}
	.footerabout,.footercopyright{
		text-align: center;
	}
	.frame-img-subscriber {
		text-align: center;
		max-height: 500px;
	}
	.frame-img-subscriber img{
		width: auto;
	}
	.formsubscriber{
		max-width: 90%;
		padding-top: 20px;
	}
	.formsubscriber h3{
		font-size:18px; 
	}
	.footercolmobile:nth-of-type(2n+1){	
		clear: both;
	}
	
	.footernote{
		width: 33%;
		float: left;
		text-align: center;
		font-size: 11px;
		padding: 20px 0 10px 0;
		color: #FFF;
		text-transform: uppercase;
	}
	.footernote img{
		margin-bottom: 6px;
		height: 16px;
	}
	.footer-logobrand{
		padding: 20px 0;
		display: inline-block;
		text-align: center;
		border-bottom: 1px solid #000;
	}
	.framelogobrand img{
		margin-left: 20px;
		height: 26px;
	}
	.framelogobrand{
		text-align: center;
	}
	.framelogocertify{
		float: none;
		text-align: center;
	}
	.framelogocertify img{
		height: 40px;
	}
	.collectionhotone{
		/*width: 100%;
		overflow: hidden;*/
	}
	.frame_thumb{
		max-height: none;
		margin-bottom: 0px;
	}
	.framebannerads,.collectionhotpc{
		position:relative;
		display:none;
	}
	.framebanneradsmobile,.collectionhotmobile{
		position:relative;
		display: block;

	}
	.collectionhotmobile .frame_thumb img{
		max-height: none;
		width: 100%;
		
	}
	.framenews{
		padding: 0 10px;
	}
	.homenewsonephoto{
		width: 50%;
	}	
	.homenewsonephoto:nth-of-type(3n+1) {
		padding-left: 0;
		
		}
	.homenewsonephoto .contentnews{
		padding-top: 0;
	}
	.subscriber_content{
		padding-top: 20px;
		text-align: center;
	}
	.subscriber_content h3{
		font-size: 20px;
	}
	.framebreadcrumbs{
		display: none;
	}
	.framecarttotal{
		position: relative; top: -0.5em; font-size: 10px;
	}
	.productorder{
		line-height: 1.2;
		font-size: 12px;
	
	}
	.productorder .btn_default{
		text-align: center;
		font-size: 9px;
		padding: 5px 10px;
	}
	.productorder	.listordercode{
		font-size: 12px;
	}
		.productorder th, .productorder td{
			padding-bottom:5px !important;
			padding-top: 5px !important;
	}
	.popup__orderlistproduct .popup__button a{
		display: block;
		width: 90%;
		margin-top: 10px;
	}
	#no-more-tables.basket td::before{
		top: 6px;
		
	}
	.basket table .size{
	text-align: left;
	}
	.basket table .productimg{
		border-bottom: none !important;
		
	}
	.basket th,.basket td{
		vertical-align: middle;
	}
	#popuphomeads.modal.fade.in{
		top: 20% !important;
	}	
	#popuphomeads.modal.fade.in .btnclose{
		font-size: 20px;

	}	
	.frameorderbuttonmobile{
	display: block;
	}
	.frameorderbuttonPC{
		display: none;
	}
}	
@media (max-width: 767px) {
	
	.framesidebar{
		display: none;
	}
	.productdetail_btnsize{
		width: 48%;
		font-size: 11px;
		text-align: center;
		padding: 4px 0;
		border: 1px solid;
		display: inline-block;
	}
	.white-panel{
		margin-top: 30px;

		padding-bottom: 30px;

		border-bottom: 1px solid #f2f2f2;
	}
	.collectionhotmobile{
		display: flex;

		flex-wrap: wrap;
	}
	.collectionhot_rowone{
		margin-bottom: 10px;
	}
	.collectionhotone{
		height: 100%;
		padding: 5px;
		margin-bottom: 0;
	}
	.frametitlecollectionhot{
		font-size: 10px;
	}
	.titlecollectionhot{
		font-weight: bold;
		font-size: 10px;
		padding-bottom: 0;
	}
	.framefooterPC{
		display: none;
	}
	
	.framefootermobile .listmenufooter{
		 display: flex;
	  justify-content: center;
	  align-items: center;
	}
	
	.footercolmobile{
		width: 50%;
		float: left;
	}
	.f-footer-second{
		border-top: 1px solid;
		padding-top: 10px;
		margin-top: 10px;
	}
	.boxshopthelook-body{
		padding: 10px 0;
	}
	.stl__products li{
		margin: 0 10px 0 10px;
	}
	.stl__product__add-to-cart{
		width: 100%;
		margin-left: 0;
		font-size: 11px;
		margin-top: 10px;
	}
	.boxshopthelook{
		width: 90%;
		
	}
	.boxshopthelook-dialog{
		height: 100%;
	}
	.boxshopthelook.left.fade.in{
		right:5%; 
	}
	.boxshopthelook-dialog .boxshopthelook-header{
		font-size: 22px;
	}
	.boxshopthelook .listproduct__product_price{
		font-size: 14px;
		
	}
	.listshopthelook  .btn_addtocart{
		font-size: 11px;
		
	}
	.stl__product__media{
		margin-left: 0;
	}
	.product_detail .nopaddingright{
		padding-right: 15px;
	}
	.product_detail_frame .product-meta{
		text-align: center;
	}
	.frameproduct_detail_listphotos{
		padding-right: 0;
	}
	
	.productdetail__buttonaddcart .btn_addtocart{
		width: 100%;
		min-width: inherit;
		display:inline-block;
		
	}
	
	.productdetail__buttonaddcart .btn_addtocart{
		width: 100%;
		min-width: inherit;
		display:inline-block;
		
	}
	
	.container_padding{
		padding-top: 10px;
	}
	.finish_img{
		float: none;
		width: auto;
		text-align: center;
		margin-bottom: 20px;
		
	}
		.finish_img img{
			max-width:auto;
		}
	.finish_content{
		float: none;
		width: 100%;
		text-align: center;
		padding: 0 10px 0 10px;
	}
	.framecontactorder{
		padding: 0 10px 0 10px;
		border-right:0;
	}
	.framelistproductorder{
		padding: 0 10px 0 10px;
		
	}
	.framecontactorder .form-group{
		width: 100%;
		padding: 0;
	}
	.frameshippingprice .col-md-3{
		padding: 0;
		
	}
	#btncheckdiscount{
		width: 100% !important;
		margin-top: 5px;
		text-align: center;
	}
	.frameorderbuttonmobile{
	display: block;
	}
	.frameorderbuttonPC{
		display: none;
	}
	.buttonslideitemhome a.buttonStyle--inverse{
		font-size: 10px;
		padding: 2px 8px;
	}
	.slidehomebannermobile .slidephotoone{
		margin: 0 0 15px 0; 
}
	.framenews-subject{
		font-size: 18px;
	}
	.slidehomeproductcollection-subject{
		font-size: 14px;
	}
	.home-colection-photoright{
		display: none;
	}
	.slidecollection-photoone{
		width: 100%;
	}
.portfolio-gallery .photoone{
		width: 100%;
	}
	
	.slidehomebannermobile .textWrapper .slot--title{
		font-size: 14px;
		text-align: center;
		padding: 0 0;
	}
	.slidehomebannermobile .textWrapper .slot--title p{
		padding: 5px 5px;
		margin: 0;
	}
	.framebanneradspadding{
		padding: 0;
	}
	.bannerads-textWrapper{
		padding: 10px 10px;
		-webkit-transform:none;
transform:none;
	}
	.bannerads-textWrapper span{
		font-size: 10px;
	}
	.bannerads-framebutton a{
		font-size: 10px;
		border: 2px solid #000;
		padding: 5px 10px;
	}
	
	
	.frame-home-news,.frame-subscriber{
		width: 100%;
	}
	.frame-subscriber{
		padding: 0;
		margin-top: 20px;
	}
	.frame-img-subscriber{
		text-align: center;
		max-height: 600px;
		
	}
	.frame-img-subscriber .inner-img-subscriber {
		display: inline-block;
		position: relative;
		right: -50%;
	}

	.frame-img-subscriber .inner-img-subscriber img {
		position: relative;
		left: -50%;
		max-height: 500px;
	}
	.homeproductone{
		font-size: 10px;
	}
	.frame-img-subscriber img{
		width: auto;
	}
	.formsubscriber{
		max-width: 90%;
		padding-top: 20px;
	}
	.formsubscriber h3{
		font-size:18px; 
	}
	.homenewsonephoto{
		width: 100%;
	}	
	
}	
/* these styles are for the demo, but are not required for the plugin */
		.zoom {
			display:inline-block;
			position: relative;
		}
		
		/* magnifying glass icon */
		.zoom:after {
			content:'';
			display:block; 
			width:33px; 
			height:33px; 
			position:absolute; 
			top:0;
			right:0;
			background:url(icon.png);
		}

		.zoom img {
			display: block;
		}

		.zoom img::selection { background-color: transparent; }



/* ANIMATION */

.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

    .animated.infinite {
        -webkit-animation-iteration-count: infinite;
        animation-iteration-count: infinite;
    }

    .animated.hinge {
        -webkit-animation-duration: 2s;
        animation-duration: 2s;
    }

    .animated.flipOutX,
    .animated.flipOutY,
    .animated.bounceIn,
    .animated.bounceOut {
        -webkit-animation-duration: .75s;
        animation-duration: .75s;
    }

@-webkit-keyframes fadeInLeft {
    from {
        opacity: 0;
        -webkit-transform: translate3d(-20%, 0, 0);
        transform: translate3d(-20%, 0, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        -webkit-transform: translate3d(-20%, 0, 0);
        transform: translate3d(-20%, 0, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

.fadeInLeft {
    -webkit-animation-name: fadeInLeft;
    animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInRight {
    from {
        opacity: 0;
        -webkit-transform: translate3d(20%, 0, 0);
        transform: translate3d(20%, 0, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        -webkit-transform: translate3d(20%, 0, 0);
        transform: translate3d(20%, 0, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

.fadeInRight {
    -webkit-animation-name: fadeInRight;
    animation-name: fadeInRight;
    -webkit-animation: fadeInRight .5s;
    -moz-animation: fadeInRight .5s;
    -o-animation: fadeInRight .5s;
    animation: fadeInRight .5s;
}

@keyframes fadeOutRight {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(20%, 0, 0);
        transform: translate3d(20%, 0, 0);
    }
}

.fadeOutRight {
    -webkit-animation-name: fadeOutRight;
    animation-name: fadeOutRight;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 20%, 0);
        transform: translate3d(0, 20%, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

.fadeInUp {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
}

@-webkit-keyframes fadeInDown {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -20%, 0);
        transform: translate3d(0, -20%, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -20%, 0);
        transform: translate3d(0, -20%, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

.fadeInDown {
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
}

@-webkit-keyframes flipInY {
    from {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
        opacity: 0;
    }

    40% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    60% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
        opacity: 1;
    }

    80% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    }

    to {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
    }
}

@keyframes flipInY {
    from {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
        opacity: 0;
    }

    40% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    60% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
        opacity: 1;
    }

    80% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    }

    to {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
    }
}

.flipInY {
    -webkit-backface-visibility: visible !important;
    backface-visibility: visible !important;
    -webkit-animation-name: flipInY;
    animation-name: flipInY;
}

@-webkit-keyframes slideInDown {
    from {
        -webkit-transform: translate3d(0, -20%, 0);
        transform: translate3d(0, -20%, 0);
        visibility: visible;
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes slideInDown {
    from {
        -webkit-transform: translate3d(0, -20%, 0);
        transform: translate3d(0, -20%, 0);
        visibility: visible;
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.slideInDown {
    -webkit-animation-name: slideInDown;
    animation-name: slideInDown;
    -webkit-animation: slideInDown .5s;
    -moz-animation: slideInDown .5s;
    -o-animation: slideInDown .5s;
    animation: slideInDown .5s;
}

/* END ANIMATION */

@-moz-keyframes bodyslidein {
    0% {
      left: 0;
    }
    100% {
      left: 300px;
    }
  }
  @-webkit-keyframes bodyslidein {

    0% {
      left: 0;
    }
    100% {
      left: 300px;
    }
  }
  @keyframes bodyslidein {
    0% {
      left: 0;
    }
    100% {
      left: 300px;
    }
  }
  @-moz-keyframes bodyslideout {
    0% {
      left: 300px;
    }
    100% {
      left: 0;
    }
  }
  @-webkit-keyframes bodyslideout {
    0% {
      left: 300px;
    }
    100% {
      left: 0;
    }
  }
  @keyframes bodyslideout {
    0% {
      left: 300px;
    }


    100% {
      left: 0;
    }
  }

/* Slide in animation */
  @-moz-keyframes slidein {
    0% {

      left: -270px;
    }
    100% {
      left: 0;
    }
  }
  @-webkit-keyframes slidein {
    0% {
      left: -270px;
    }
    100% {
      left: 0;
    }
  }
  @keyframes slidein {
    0% {
      left: -270px;
    }
    100% {
      left: 0;
    }
  }
  @-moz-keyframes slideout {
    0% {
      left: 0;
    }
    100% {
      left: -270px;
    }
  }
  @-webkit-keyframes slideout {
    0% {
      left: 0;
    }
    100% {
      left: -270px;
    }
  }
  @keyframes slideout {
    0% {
      left: 0;
    }
    100% {
      left: -270px;
    }
  }
