/*@font-face {
font-family: SourceSansPro-Light;
src:url(../fonts/SourceSansPro-Light.woff) format('woff'),
    url(../fonts/SourceSansPro-Light.eot) format('eot'),
    url(../fonts/SourceSansPro-Light.svg) format('svg'),    
    url(../fonts/SourceSansPro-Light.ttf) format('ttf')
}
@font-face {
font-family: SourceSansPro-Regular;
src:url(../fonts/SourceSansPro-Regular.woff) format('woff'),
    url(../fonts/SourceSansPro-Regular.eot) format('eot'),
    url(../fonts/SourceSansPro-Regular.svg) format('svg'),    
    url(../fonts/SourceSansPro-Regular.ttf) format('ttf')
}
@font-face {
font-family: SourceSansPro-SemiBold;
src:url(../fonts/SourceSansPro-SemiBold.woff) format('woff'),
    url(../fonts/SourceSansPro-SemiBold.eot) format('eot'),
    url(../fonts/SourceSansPro-SemiBold.svg) format('svg'),    
    url(../fonts/SourceSansPro-SemiBold.ttf) format('ttf')
}
@font-face {
font-family: SourceSansPro-Bold;
src:url(../fonts/SourceSansPro-Bold.woff) format('woff'),
    url(../fonts/SourceSansPro-Bold.eot) format('eot'),
    url(../fonts/SourceSansPro-Bold.svg) format('svg'),    
    url(../fonts/SourceSansPro-Bold.ttf) format('ttf')
}
@font-face {
font-family: Montserrat-Light;
src: url(../fonts/Montserrat-Light.woff)format('woff'),
     url(../fonts/Montserrat-Light.eot) format('eot'),
     url(../fonts/Montserrat-Light.svg) format('svg'),     
     url(../fonts/Montserrat-Light.ttf) format('ttf')
}

@font-face {
font-family: Montserrat-SemiBold;
src:url(../fonts/Montserrat-SemiBold.woff) format('woff'),
    url(../fonts/Montserrat-SemiBold.eot) format('eot'),
    url(../fonts/Montserrat-SemiBold.svg) format('svg'),    
    url(../fonts/Montserrat-SemiBold.ttf) format('ttf')
}

@font-face {

font-family: Poppins-Medium;
src:url(../fonts/Poppins-Medium.woff) format('woff'),
    url(../fonts/Poppins-Medium.eot) format('eot'),
    url(../fonts/Poppins-Medium.svg) format('svg'),    
    url(../fonts/Poppins-Medium.ttf) format('ttf')
}


@font-face {

font-family: Poppins-SemiBold;
src:url(../fonts/Poppins-SemiBold.woff) format('woff'),
    url(../fonts/Poppins-SemiBold.eot) format('eot'),
    url(../fonts/Poppins-SemiBold.svg) format('svg'),    
    url(../fonts/Poppins-SemiBold.ttf) format('ttf')
}*/


/*'Montserrat', 'Poppins' */
body{
	margin: 0;
	padding: 0;
	font-family: 'Source Sans Pro';
	background-color: #fff;
	width: 100%;
	height: 100%;
	min-height: 100vh;
	background-color: #fff;
}
a{
	color: #0eaf5f;
}
a:hover,
a:focus {
    color: #7b7b7b;
    outline: none;
    text-decoration: none;
}
p{
	font-weight: 400;
	color: #6f6f6f
}
p b{
	font-weight: 600;
}
select{
	height: 35px;
	max-width: 210px !important;
	width: 210px;
	border: 1px solid #c9c9c9;
	background-color: #f6f6f6;
	border-top-left-radius: 20px;
	border-top-right-radius: 20px;
	border-bottom-left-radius: 20px;
	border-bottom-right-radius: 20px;
	font-size: 16px;
	line-height: 16px;
	padding-left: 10px;
	padding-right: 35px;
	transition: all 0.6s;	
	background-image: url(../images/select_caret.png);
	background-position-x: 90%;
	background-position-y: 52%;
	background-repeat: no-repeat;
	background-size: auto;
	cursor: pointer;
	-webkit-appearance: none;
    -moz-appearance: none;
    text-indent: 1px;
    text-overflow: '';
}
select:focus {
    outline-offset: none !important;
    outline: none !important;
    outline: -webkit-focus-ring-color auto 0px;
}
button,.button,input[type="button"]{
	background-color: #1e1e1e !important;
	border-top-left-radius: 20px !important;
	border-top-right-radius: 20px !important;
	border-bottom-left-radius: 20px !important;
	border-bottom-right-radius: 20px !important;
	border: 2px solid #1e1e1e !important;
	text-align: center;
	width: 200px !important;
	height: 42px;
	font-size: 18px;
	line-height: 15px;
	font-weight: 400;
	color: #fff;
	cursor: pointer;
	transition: all 0.6s;	
}
button:hover,.button:hover,input[type="button"]:hover{
	background-color: #0f64af !important;
	border: 2px solid transparent !important;
	transition: all 0.6s;
	font-size: 18px;
	line-height: 15px;
}
textarea,
input[type="text"],
input[type="button"],
input[type="submit"] {
     -webkit-appearance: none;
     border-radius: 0;
}

/* radio buttoon design */

.radio_div{
	position: relative;
}
.radio_div .radio_btn_label {
  display: block;
  position: relative;
  padding-left: 20px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default checkbox */
.radio_btn_label input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  left: 0;
  top: 0px;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 9px;
  left: -5px;
  height: 12px;
  width: 12px;
  background-color: #eee;
  border-radius: 50%;
}
/* On mouse-over, add a grey background color */
.radio_btn_label:hover input ~ .checkmark {
  background-color: #ccc;
}

/* When the radio button is checked, add a blue background */
.radio_btn_label input:checked ~ .checkmark {
  background-color: #2196F3;
}

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

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

/* Style the indicator (dot/circle) */
.radio_btn_label .checkmark:after {
 	top: 4px;
	left: 4px;
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background: white;
}
/* end radio design */

.container{
	max-width: 1170px;
}
.light_grey_bg{
	background-color: #1e1e1e;
}
.light_wht_bg{
	background-color: #f7f7f7;
}
.blue_bg{
	background-color: #0f64af;	
}
.inline-block{
	display: inline-block;
	width: 100%;
}
.rehakka_wrapper header{
	background-color: #fff;
}
.header-top {
	width: 100%;	
}
.header-top .list-inline {
	margin-bottom: 0;
	margin-left: 0;
}
.header-top .list-inline .list-inline-item {
	padding-top: 5px;
	padding-bottom: 5px;
	margin-right: 0;
}
.header-top .radio_selection{
	width: 100%;
	display: inline-block;
	padding: 7px 0;
	box-sizing: border-box;
	margin-left: 20px;
}
.header-top .radio_selection{
	margin-bottom: 0;
}
.header-top .radio_selection ul.list-inline{
	margin: 0;
	padding: 0;
}
.header-top .radio_selection ul.list-inline li{
	padding: 0;
	margin-right: 30px;
	display: inline-block;
	width: auto;
}
.header-top .radio_selection label{
	font-size: 14px;
	line-height: 28px;
	color: #fff;
	text-transform: capitalize;
}
.header-top .radio_selection .form-check-input {
	margin-top: 8px;
}
.header-top .list-inline .list-inline-item a{
	color: #fff;
	font-weight: 400;
	padding: 1px 10px 3px 10px;
	font-size: 15px;
	line-height: 28px;
	display: inline-block;
	transition: all 0.4s;
	position: relative;
}
.header-top .list-inline .list-inline-item.current_page_item a{
	transition: all 0.4s;
	background-color: #0f64af;
	border-top-left-radius: 20px;
	border-top-right-radius: 20px;
	border-bottom-left-radius: 20px;
	border-bottom-right-radius: 20px;
}
.header-top .list-inline .list-inline-item:hover a
{	
	display: block;
	transition: all 0.4s;
	background-color: #0f64af;
	border-top-left-radius: 20px;
	border-top-right-radius: 20px;
	border-bottom-left-radius: 20px;
	border-bottom-right-radius: 20px;
}
.header-middle{
	padding: 25px 0 20px 0;
	width: 100%;
}
.header-middle .header_search_box{
	position: relative;
	margin-bottom: 0;
}
.header-middle .header_search_box input{
	height: 38px;
	width: 260px;
	border:1px solid #c9c9c9;
	background-color: #f6f6f6;
	border-top-left-radius: 20px;
	border-top-right-radius: 20px;
	border-bottom-left-radius: 20px;
	border-bottom-right-radius: 20px;
	font-size: 13px;
	line-height: 28px;
	padding-left: 15px;
	padding-right: 45px;
	transition: all 0.6s;
}
.header-middle .header_search_box input:hover{
	box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
}
.header-middle .header_search_box input:focus{	
	border:1px solid #0f64af;
	transition: all 0.6s;
	box-shadow: none;
	outline: none;
}

.header-middle .header_search_box .header_search_box_btn{
	background-color: #0f64af;
	width: 38px;
	height: 38px;
	border-radius: 100%;
	border: 1px solid transparent;
	position: absolute;
	right: 0;
	top:0;
	cursor: pointer;
	background-image: url(../images/wht_search.png);
	background-repeat: no-repeat;
	background-position-x: 55%;
	background-position-y: 55%;
	transition: all 0.6s;
	padding-right: 0;
}
.header-middle .header_search_box .header_search_box_btn:hover{
	background-color: rgb(15, 100, 175 , 0.8);
	transition: all 0.6s;
}
.header-middle .search_item{
	width: 100%;
	display: inline-block;
	position: relative;
}
.header-middle .search_item .list-inline{
	margin: 0 0;
	padding: 0 0;
	width: 100%;
}
 .header-middle .list-inline-item{
	/*min-width: 150px;*/
	vertical-align: middle;
}
/*.header-middle .mega_sub.list-inline-item {
	position: absolute;
	right: 0;
	top:5px;
}*/
 .header-middle .mega_sub.list-inline-item .search_item p {
	padding-left: 25px;
	font-size: 15px;
	font-weight: 400;
	color: #000;
	text-transform: capitalize;
	display: table-cell;
	vertical-align: middle;
}
.header-middle .search_item .list-inline-item{	
	vertical-align: top;
}
.header-middle .search_item .select_item {
	position: relative;
	height: 38px;
}
.header-middle .search_item .list-inline{
	margin-bottom: 0;
	margin-top: 9px;
}
.header-middle .search_item .list-inline li{
	height: 100%;
}
.header-middle .search_item svg{
	position: absolute;
	left: 0;
	top:10px;
	z-index: 9;
}
.header-middle .search_item p{
	padding-left: 25px;	
	font-size: 15px;
	font-weight: 400;
	color: #000;
	text-transform: capitalize;
	display: table-cell;
	vertical-align: middle;
	height: 35px;
}
.cart-parent-li.list-inline-item::before {
	content: " ";
	position: absolute;
	top: 10px;
	background-color: transparent;
	width: 50px;
	height: 43px;
	right: -38px;
}
.cart-parent-li.list-inline-item:hover .mega_menu.cart{
	visibility: visible;
	opacity: 1;
	top: 50px;
	transition: all 0.6s;
}
.header-middle .search_item .mega_menu.cart {
	position: absolute;
	display: block;
	margin: 0;
	text-align: left;
	vertical-align: middle;
	background-color: #fff;
	top: 120px;
	transition: all 0.6s;
	padding: 15px 10px 15px 10px;
	visibility: hidden;
	opacity: 0;
	z-index: 99;
	right: -55px;
	min-width: 300px;
	max-height: 250px;
	overflow: auto;
	box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
	-moz-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
	-webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
}
.woocommerce-mini-cart.cart_list.product_list_widget li{
	padding: 10px 0 10px 0;
	position: relative;
}
.remove.remove_from_cart_button {
	position: absolute;
	right: -8px;
	top: 0;

}
.product_list_widget li img.attachment-woocommerce_thumbnail.size-woocommerce_thumbnail {
	max-width: 100px;
	float: left;
	padding: 0 0;
	width: auto;
	margin-right: 15px;
	max-height: 70px;
}
.mega_menu.cart li{
	list-style: none;
}

.mega_menu.cart .mega_sub p {
	display: inline-block;
	height: auto;
	padding-left: 0;
	text-transform: none;
	font-size: 14px;
	margin: 0 auto;
	width: 100%;
	text-align: center;
}
.mega_menu.cart .mega_sub .woocommerce-mini-cart__buttons.buttons a{
	margin: 10px 4px 10px 3px;
	transition: all 0.6s;
}
.mega_menu.cart .mega_sub .woocommerce-mini-cart__buttons.buttons a:hover{
	transition: all 0.6s;
	background-color: #0f64af;
}
.woocommerce-mini-cart-item.mini_cart_item a{
	text-align: left;
	line-height: 20px;
	font-size: 12px;
	color: #00aa56;
	margin-top: 10px;
}
.woocommerce-mini-cart-item.mini_cart_item a.remove.remove_from_cart_button:before{
	top: -8px;
}
.woocommerce-mini-cart-item.mini_cart_item .quantity {
	text-align: left;
	float: left;
	line-height: 20px;
	font-size: 12px;
}
.header-bottom{
	width: 100%;
	border-top:1px solid #ebebeb;
	background-color: #15884f;	
	/*border-bottom:1px solid #ebebeb;*/
	/*box-shadow: inset 0 0 20px #ebebeb;
	-moz-box-shadow:    inset 0 0 20px #ebebeb;
   	-webkit-box-shadow: inset 0 0 20px #ebebeb;*/
   
}
.header-bottom .list-inline {
	margin-bottom: 0;	
	margin-left: 0
}
.header-bottom.desktop_navigations .list-inline .menu-item-has-children{
	position: relative;
}

.header-bottom.desktop_navigations .list-inline .menu-item > ul:after{
	content: '';
	display: block;
	clear: both;
}
.header-bottom.desktop_navigations .list-inline > .menu-item-has-children::before{
	visibility: hidden;
	opacity: 0;
	transition: all 0.6s;	
}

.header-bottom.desktop_navigations .list-inline > .menu-item-has-children:hover > a{
	color: #0f64af !important;
	position: relative;
	z-index: 99;
}
.header-bottom.desktop_navigations .list-inline > .menu-item-has-children:hover::before {
    content: " ";
    width: 100%;
    height: 70px;
    z-index: 1;
    background-color: #fff;
    position: absolute;
    visibility: visible;
    transition: all 0.6s;
    opacity: 1
}
.desktop_navigations .list-inline .sub-menu > .menu-item-has-children > .submenu > .menu-item-has-children > .submenu{
	margin-left: 30px !important;
}

.header-bottom.desktop_navigations .list-inline > .menu-item-has-children:hover > a{
	z-index: 9;
	color: #425ca8 !important;
}
.header-bottom.desktop_navigations .list-inline > .menu-item-has-children > .submenu > .menu-item-object-product_cat.menu-item-has-children > a{
	color: #14884e !important;
}

.header-bottom.desktop_navigations ul.list-inline > li > ul.sub-menu li > a:hover {
    text-decoration: underline;
}

.header-bottom.desktop_navigations ul.list-inline > li > ul.sub-menu > li > a {
	color: #14884e !important;
}

.header-bottom.desktop_navigations ul.list-inline > li > ul.sub-menu > li > ul.sub-menu > li > a {
	color: #425ca8 !important;
}

.header-bottom.desktop_navigations ul.list-inline > li > ul.sub-menu > li > ul.sub-menu > li > ul.sub-menu > li > a {
	color: #1e1e1e !important;
}

.header-bottom.desktop_navigations ul.list-inline > li > ul.sub-menu > li > ul.sub-menu > li > ul.sub-menu {
	margin: 0 0 0 15px;
}
.header-bottom.desktop_navigations .list-inline > .menu-item-has-children:hover > .sub-menu {
	top:65px;
	transition: all 0.6s;
	visibility: visible;
	opacity: 1;
	padding-left: 20px;
	padding-right: 50px;
	z-index: 999;
	display: block;
}

.sub-menu:after{
	content: '';
	display: block;
	clear: both;
}
.desktop_navigations .list-inline .sub-menu .active > a{
	color: #15884f;
}
.desktop_navigations .list-inline > .menu-item-has-children > .sub-menu {
	position: absolute;
	bottom: inherit;
	width: 100%;
	top: 70px;
	background-color: #fff;
	left: 0;
	z-index: 0;
	padding:20px;
	margin-left: 0;	
	transition: all 0.6s;
	visibility: hidden;
	opacity: 0;
	display: none;
}
.header-top .list-inline .menu-item{
	position: relative;
}
.header-top .list-inline .menu-item:last-child a{
	color: #0eaf5f;
}
.header-top .list-inline .menu-item:last-child{
	padding-left: 25px;
}
.header-top .list-inline .menu-item:last-child:before{
	content: "\f090";
	position: absolute;
	left: 10px;
	top:8px;
	width: 20px;
	height: 20px;
	font-size: 18px;
	font-family: "fontawesome";
	color: #0eaf5f;
}
.header-bottom .list-inline .menu-item-has-children > .sub-menu > li:before{
	content: " ";
	position: absolute;
	left: -15px;
	width: 5px;
	height: 5px;
	top: 11px;
	background-color: #fff;
	border-radius: 100%;
}

.sub-menu:after{
	content: '';
	display: block;
	clear: both;
}
.header-bottom.desktop_navigations .list-inline .menu-item-has-children > .sub-menu > .menu-item-has-children > a{
	color: #425ca8;
}
.header-bottom.desktop_navigations .list-inline .menu-item-has-children .sub-menu > li > a{
	color: #14884e;
}
.header-bottom.desktop_navigations .list-inline .menu-item-has-children .sub-menu > li{
	width: 600px;;
    display: inline-block;
    padding: 0 25px 0 0px !important;
    margin: 0 0;
    position: relative;
    vertical-align: top;  
    width: 50% !important;
	float: left !important;  
}

.header-bottom .list-inline .menu-item-has-children:hover > .sub-menu {
	visibility: visible;
	opacity: 1;
}
.header-bottom .list-inline .menu-item-has-children .sub-menu {
	padding: 15px 0 30px 20px;
	width: 600px;
}
.header-bottom .list-inline .sub-menu li{
	position: relative;
}
.header-bottom .list-inline .menu-item-has-children .sub-menu li a{
	position: relative;
}
.header-bottom .list-inline .menu-item-has-children .submneu_arrow{
	position: absolute;
	right: 15px;
	width: 10px;
	height: 10px;
	top: 1px;
	font-weight: 700;
	color: #fff;
	z-index: 99;
	transition: all 0.6s;
	cursor: pointer;
	display: none;
}
.header-bottom .list-inline .sub-menu > li.menu-item-has-children > .submneu_arrow{
	transform: rotate(-90deg);
	top: 9px;
	color: #0eaf5f;
	margin-right: 5px;
}
.header-bottom .list-inline .sub-menu > li.menu-item-has-children > .sub-menu{
	display: block;		
	margin-left: 0px;
	opacity: 1;
	transition: all 0.6s;
	visibility: visible;
	max-width: 100%;
}
.header-bottom .list-inline .sub-menu > li .sub-menu{
	display: none;
	opacity: 0;
	transition: all 0.6s;
}
.header-bottom .list-inline .sub-menu > li .sub-menu{
	padding: 0 0;	
}
.header-bottom .list-inline .sub-menu li.menu-item-has-children a{
	position: relative;
}
.header-bottom .list-inline .menu-item-has-children .sub-menu li a{	
	line-height: 25px;
	padding: 0 3px 0 0;
	font-size: 16px;
	font-weight: 600;
	text-transform: capitalize;
	color: #1e1e1e;
}

.header-bottom .list-inline a{
	padding-top: 13px;
	padding-bottom: 14px;
	padding-left:15px;
	padding-right:15px;
	display: inline-block;
	font-size: 16px;
	line-height: 28px;
	color: #fff;
	position: relative;
	transition: all 0.6s;
	font-weight: 600;
	text-transform: uppercase;
}
.header-bottom .list-inline .menu-item-has-children .sub-menu li a::after {
	display: none;
}
.header-bottom.desktop_navigations .list-inline .menu-item-has-children .sub-menu > li.list-inline-item a:hover,
.header-bottom .list-inline .menu-item-has-children .sub-menu .current_page_item a{
	color: #15884f;
}

.header-bottom .list-inline a:hover,
.header-bottom .list-inline .current_page_item a{
	color: #000;
}
.header-bottom .list-inline .list-inline-item a::after {
	content: " ";
	position: absolute;
	display: block;
	right: -8px;
	width: 2px;
	height: 11px;
	color: #d5d5d5;
	background-color: #dbdbdb;	
	top: 51%;
	transform: translate(-50% , -50%);
}
.header-bottom .list-inline .list-inline-item{
	margin-right: 5px;
}


.header-bottom .list-inline .list-inline-item:last-child a:after{
	display: none;
}

/* Menu */



/* banner section */

.home_banner{
	width: 100%;
	display: inline-block;
	position: relative;
}
.banner-overlay{
	left: 0;
	right: 0;
	bottom: 0;
	top:0;
	width: 100%;
	height: 100%;
	position: absolute;
	background-color: rgba(0,0,0,0.4);
}
/*.banner .carousel-item .container{
	position: relative;
}*/
.banner .carousel-caption {
    left: auto !important;
    bottom: auto;
    top: 50%;
    transform: translateY(-50%);
    right: auto !important;
}
.banner .carousel_img{
	height: 100%;
	object-fit: cover;
	object-position: center;
	height: 530px;
}
.banner .slider-text{
	background-color: rgba(15,100,175,0.7);
	color: #fff;
	border-left: 5px solid #00aa56;
	padding-left: 30px;
	padding-right: 30px;
	padding-bottom: 30px;
	padding-top: 30px;
	max-width: 550px;
	min-height: 187px;
	font-family: Montserrat;
}
.banner .slider-text h3{
	font-size: 22px;
	font-weight: 600;
	text-transform: uppercase;
}
.banner .slider-text h2{
	font-size: 36px;
	font-weight: 600;
	text-transform: uppercase;
}
.banner .slider-text p{
	font-size: 20px;
	font-weight: 300;
	font-family: Montserrat;
	color: #fff;
	margin-bottom: 0;
}

/* Information text */

.reha_infotext{
	width: 100%;
	display: inline-block;
	box-sizing: border-box;
	padding: 60px 5px 70px 5px;
}
.reha_infotext p {
	width: 100%;
	margin: 0 auto;
	color: #1e1e1e;
	font-size: 18px;
	line-height: 28px;
}
.left-info-text{
	width: 100%;
	display: table;
	height: 100%;
}
.vertical_middle{
	display: table-cell;
	vertical-align: middle;
}
.left-info-text p:last-child{
	margin-bottom: 0;
}
.left-info-text p{
	margin-bottom: 8px;
	font-size: 18px;
	line-height: 26px;
}
.left-info-text p.intro{
	font-weight: 600;
}
.infoDetailContainer{
	width: 548px;
}
.infoDetailContainer .row .col-lg-6:first-child,
.infoDetailContainer .row .col-lg-6:nth-child(2){
	margin-bottom: 24px !important;
} 
.info_right_img{
	display: block;
	overflow: hidden;
}
.info_right_img img{
	-webkit-transition: all .4s ease-in-out;
	-moz-transition: all .4s ease-in-out;
	-ms-transition: all .4s ease-in-out;
	-o-transition: all .4s ease-in-out;
	transition: all .4s ease-in-out;	
}
.info_right_img:hover img{
	-webkit-transform: scale(0.95,0.95);
	-moz-transform: scale(0.95,0.95);
	-ms-transform: scale(0.95,0.95);
	-o-transform: scale(0.95,0.95);
	transform: scale(0.95,0.95);	
}
.left-container{
	float: right;
	padding: 70px 0;
	margin-right: 23px;
}
.left-info-text ul {
	margin: 15px 0 0 0;
}
.left-info-text ul li{
	position: relative;
	padding-left: 15px;
	list-style: none;
	color: #3e3e3e;
	margin-bottom: 15px;
	font-size: 18px;
	line-height: 22px;
	font-weight: 400;
}
.left-info-text ul li:before{
	content: " ";
	position: absolute;
	left: 0;
	background-color: #00aa56;
	display: block;
	width: 8px;
	height: 8px;
	border-radius: 100%;
	top:8px;
}
.right-info-imges {
	margin-left: 25px;
}
.right-info-imges img{
	width: 100%;
	height: auto;
	/*margin-bottom: 15px;*/
	border-radius: 5px;
	box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
}
.right-info-imges img
.right_container{
	float: left;
}
.product_selction{
	padding: 65px 0;
}
.productDropdown .form-group{
	padding-right: 10px;
	color: #6f6f6f;
	margin-bottom: 0;
}
.productDropdown .form-group label{
	margin-bottom: 0;
	margin-top: 5px;
}
.productDropdown .form-group select{
	height: 35px;
	width: 210px;
	border: 1px solid #c9c9c9;
	background-color: #f6f6f6;
	border-top-left-radius: 20px;
	border-top-right-radius: 20px;
	border-bottom-left-radius: 20px;
	border-bottom-right-radius: 20px;
	font-size: 16px;
	line-height: 26px;
	padding-left: 10px;
	padding-right: 35px;
	transition: all 0.6s;	
	background-image: url(../images/select_caret.png);
	background-position-x: 90%;
	background-position-y: 52%;
	background-repeat: no-repeat;
	background-size: auto;
	cursor: pointer;
	-webkit-appearance: none;
    -moz-appearance: none;
    text-indent: 1px;
    text-overflow: '';
    color: #6f6f6f;
}
.productDropdown .form-group select::-ms-expand {
    display: none;
}
.productDropdown .form-group select:focus{
	border: 1px solid #0f64af;
	box-shadow: none;
	outline: none;
	box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2)
}
.product_item{
	padding-top: 30px;
}
 .product_item_block{
 	width: 100%;
 	height: 100%;
 	background-color: #fff;
 	box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
 	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px;
	border-bottom: 3px solid #0f64af;
 }
 .product_img{
 	overflow: hidden;
 	position: relative;
 	display: block;
 	background-color: #f6f6f6;
 }
 .product_item_block:hover img{
 	-webkit-transform: scale(1.1,1.1);
	-moz-transform: scale(1.1,1.1);
	-ms-transform: scale(1.1,1.1);
	-o-transform: scale(1.1,1.1);
	transform: scale(1.1,1.1);
}
 .product_item_block img{
 	width: 100%; 	
 	max-height: 250px;
 	object-fit: contain;
	object-position: center;
 	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px;
	-webkit-transition: all .4s ease-in-out;
	-moz-transition: all .4s ease-in-out;
	-ms-transition: all .4s ease-in-out;
	-o-transition: all .4s ease-in-out;
	transition: all .4s ease-in-out;
 }
 .product_detail p{
 	width: 100%;
 	text-overflow: ellipsis;
 	white-space: normal;
 	overflow: hidden;
 	display: inline-block;
 }
 .product_detail .list-inline{
 	margin: 0;
 	width: 100%;
 	display: inline-block;
 }
.product_item_block .product_detail{
	padding: 30px 20px;
}
.product_detail .woocommerce-price-suffix{
	color: #0f64af;
	font-weight: 400;
	font-size: 16px;
}
.product_item_block .product_detail .list-inline li {
	display: inline-block;
	width: auto;
	color: #6f6f6f
}
.product_item_block .product_detail .list-inline li p{		
	margin-bottom: 5px;
}
.product_item_block .product_detail .list-inline del .woocommerce-Price-amount.amount{
	font-weight: 400;
	font-size: 20px;
	padding-right: 15px;	
	color: #6f6f6f
}
.product_detail .woocommerce-Price-amount.amount{	
	font-weight: 700;			
	font-size: 20px;
	color: #0f64af
}
.product_item_block .product_detail form{
	min-height: 50px;
}
.add_to_cart_btn_wrapper{
	width: 100%;
	display: inline-block;
	position: relative;
	margin-top: 60px;
}
.product_item_block .product_detail .add_to_cart_btn_wrapper .add_to_cart_button,
.product_item_block .product_detail .add_to_cart_btn_wrapper .added_to_cart{
	background-color: #1e1e1e;
	border-top-left-radius: 20px;
	border-top-right-radius: 20px;
	border-bottom-left-radius: 20px;
	border-bottom-right-radius: 20px;	
	border:2px solid #1e1e1e;
	text-align: center;
	width: 200px;
	height: 42px;
	font-size: 18px;
	line-height: 18px;
	font-weight: 400;
	color: #fff;
	cursor: pointer;
	transition: all 0.6s;
	display: inline-block;
}
.product_item_block .product_detail .add_to_cart_btn_wrapper .added_to_cart{
	margin-top: 20px;
}
.product_item_block .product_detail .add_to_cart_button:hover,
.product_item_block .product_detail .add_to_cart_btn_wrapper .added_to_cart:hover{
	background-color: #0f64af;
	border:2px solid transparent;
	transition: all 0.6s;
	font-size: 18px;
	line-height: 15px;
}
.load_more_btn form{
	margin-bottom: 0;
}
.load_more_btn a{	
	background-color: transparent;
	border-top-left-radius: 20px;
	border-top-right-radius: 20px;
	border-bottom-left-radius: 20px;
	border-bottom-right-radius: 20px;	
	border:2px solid #0f64af;
	text-align: center;
	width: 200px;
	height: 42px;
	font-size: 18px;
	line-height: 38px;
	font-weight: 400;
	color: #0f64af;
	cursor: pointer;
	margin-top: 50px;
	transition: all 0.6s;
	display: inline-block;
}
.load_more_btn a:hover{
	background-color: #0f64af;
	transition: all 0.6s;
	color: #fff;
}
.suositelluts_product .product_item,.special_offer .product_item{
	padding-top: 0;
}
.product_title{	
	width: 100%;
	margin-bottom: 45px;
}
.product_title h3{
	font-size: 36px;
	line-height: 36px;
	color: #0f64af;
	font-weight: 600;
	margin-bottom: 10px;
	margin-top: 0;
	letter-spacing: 1px;
	font-family: 'Poppins';
}
.product_title h6{
	font-size: 21px;
	color: #1e1e1e;	
	margin-bottom: 0px;
	margin-top: 0;
	font-weight: 500;
	font-family: 'Poppins';
}
.product_video_section{
	position: relative;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}
.product_video_section .product_img a{
	position: relative;
	width: 100%;
	height: 100%;
	display: inline-block;

}
.product_video_section .product_img a::after {
	content: " ";
	width: 75px;
	height: 75px;
	display: block;
	top: 50%;	
	left: 50%;	
	position: absolute;
	background-image: url(../images/video_icon.png);
	background-repeat: no-repeat;
	background-position: center;
	transform: translate(-50% , -50%);
	cursor: pointer;
	z-index: 99
}
.bg_overlay{
	position: absolute;
	left: 0;
	bottom: 0;
	top:0;
	bottom: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.8);
}
.product_video_section h3,.product_video_section h6{
	color: #fff;
}
.product_video_section .product_item{
	position: relative;
	padding-top: 0;
}
.product_video_section .load_more_btn a{
	color: #fff;
	border: 1px solid #fff;
}
.product_video_section .load_more_btn a:hover{
	background-color: #fff;
	color: #0f64af;
}
.product_search{
	padding: 50px 0 25px 0;
	font-family: Montserrat
}
.product_search h3{
	font-size: 30px;
	line-height: 30px;
	font-weight: 600;
	color: #fff;
	text-transform: uppercase;
	margin-bottom: 0px;
	margin-top: 0;
}
.product_search p{
	font-size: 19px;
	font-weight: 400;
	margin-bottom: 0px;
	color: #fff;
	letter-spacing: 0px;
}
.product_search .right_info {
	position: relative;
}
.product_search .right_info .your-email input{
	height: 50px;
	width: 400px;
	background-color: #fff;
	border-top-left-radius: 20px;
	border-top-right-radius: 20px;
	border-bottom-left-radius: 20px;
	border-bottom-right-radius: 20px;
	font-size: 13px;
	line-height: 28px;
	padding-left: 15px;
	padding-right: 150px;
	transition: all 0.6s;
	color: #000;	
}
.product_search .right_info .your-email .wpcf7-not-valid-tip {
	position: absolute;
	bottom: -35px;
	left: 15px;
	font-weight: 700 !important;
	font-size: 14px;
}
.product_search .right_info.text-right .wpcf7-response-output.wpcf7-validation-errors {
	position: absolute;
	bottom: -72px;
	margin: 0;
	padding: 0;
	background-color: #fff;
	padding: 10px;
	width: 90%;
	text-align: left;
	border: 1px solid red;
	font-size: 12px;
	right: 0;
}
.product_search .right_info form{
	margin-bottom: 0;
}
.product_search .right_info .your-email input::-webkit-input-placeholder { 
  font-weight: 300;
  color: #555;
}
.product_search .right_info .your-email input::-moz-placeholder { 
  color: #555;
  font-weight: 300;
}
.product_search .right_info .your-email input:-ms-input-placeholder {
  color: #555;
  font-weight: 300;
}
.product_search .right_info .your-email input:-moz-placeholder { 
  color: #555;
  font-weight: 300;
  padding-top: 5px;
}
.product_search .right_info .wpcf7-submit{
	background-color: #1e1e1e;
	width: 139px;
	height: 50px;
	border-top-right-radius: 20px;
	border-bottom-right-radius: 20px;
	border: 1px solid transparent;
	position: absolute;
	right: 0;
	top: 0;
	color: #fff;
	cursor: pointer;	
	transition: all 0.6s;
	border:1px solid #1e1e1e;
	font-size: 16px;
	font-weight: 400;	
	text-transform: uppercase;
}
.product_search .right_info .wpcf7-submit:hover{
	background-color: #00aa56;	
	border:1px solid #00aa56;	
}
.payment_ways{
	padding:40px 0 34px 0;
}
.payment_ways img{
	width: auto;
	max-width: 100%;
	margin: 0 auto;
}

footer{
	background-color: #2b2b2b;
	display: inline-block;
	width: 100%;
}
footer .footerOne{
	border-bottom: 1px solid #525252;
	padding: 50px 5px;
	color: #fff;
}
footer .footerOne img {
    margin: 0 auto;
}
footer .footerOne h6{
	font-weight: 700;
	color: #fff;
	font-size: 14px;
	line-height: 28px;
	margin: 5px 0 10px 0;
}
footer .footerOne p{
	font-size: 14px;
	color: #d5d5d5;
	line-height: 14px;
	margin: 0px;
}
footer .footerOne ul{
	margin-bottom: 0;
}
footer .footerOne li{
	font-size: 14px;
	color: #d5d5d5;
	line-height: 28px;
	margin: 0px 0px 0 0;	
	position: relative;
}
footer .footerOne ul li:first-child{
	margin-right: 20px;
}
footer .footerOne ul li:last-child:after{
	display: none;
}
footer .footerOne li::after {
	content: " ";
	position: absolute;
	right: -13px;
	width: 1px;
	height: 10px;
	background-color: #d5d5d5;
	top: 40%;
	transform: translateX(-50%);
}
footer .footerOne li b{
	margin-right: 5px;	
	font-weight: 700;
}
footer .footerOne li.company_email a{
	color: #0eaf5f;
	transition: all 0.6s;
	border-bottom: 1px solid #0eaf5f;
}
footer .footerOne li b{
	margin-right: 5px;: 
}
footer .footerOne a{
	color: #d5d5d5;
	display:inline-block;
}
footer .footerOne a:hover,footer .footerOne li.company_email a:hover{
	color: #fff;
	border-color: #fff;
}
footer .footerTwo{
	padding: 15px 5px 20px 5px;
}
footer .footerTwo p{
	color:#d5d5d5;
	font-size: 14px;
	margin-bottom: 0;
	font-weight: 300;
}

/* Inner Detail pages*/

.product-template-default.single.single-product {
	background-color: #f7f7f7;
}
#primary{
	float: inherit;
	margin: 0 auto;
	padding-top: 50px;	
}
#primary .woocommerce-product-details__short-description a{
	color: #0f834d;
}
.product-template-default.single.single-product .single_add_to_cart_button,
.product-template-default.single.single-product .add_to_cart_button,
.added_to_cart.wc-forward{
	background-color: #1e1e1e;
	border-top-left-radius: 20px;
	border-top-right-radius: 20px;
	border-bottom-left-radius: 20px;
	border-bottom-right-radius: 20px;
	border: 2px solid #1e1e1e;
	text-align: center;
	width: 200px;
	height: 42px;
	font-size: 18px;
	line-height: 15px;
	font-weight: 400;
	color: #fff !important;
	cursor: pointer;
	transition: all 0.6s;	
}
.woocommerce-message {
	line-height: 40px;
	line-height: 25px;
}
.woocommerce-message .button.wc-forward{
	line-height: 35px !important;
	border-color: #1e1e1e !important
}
.woocommerce-message .button.wc-forward:hover{	
	border-color: #0f64af !important
}
.product-template-default.single.single-product .single_add_to_cart_button a,
.product-template-default.single.single-product .add_to_cart_button
{
	color: #fff;
	text-decoration: none;
}
.product-template-default.single.single-product .single_add_to_cart_button:hover,
.product-template-default.single.single-product .add_to_cart_button:hover,
.added_to_cart.wc-forward:hover{
	background-color: #0f64af;
	border: 2px solid transparent;
	transition: all 0.6s;
	font-size: 18px;
	line-height: 15px;
}
.product-template-default.single.single-product .product_title{
	margin-bottom: 15px;
}
.product-template-default.single.single-product .price{
	margin-top: 0;
	margin-bottom: 5px;
}
.product-template-default.single.single-product form.cart ul li a{
	color: inherit;
}
.single-product div.product .product_meta a{
	color: #1e1e1e !important;
	text-decoration: none;
}
.woocommerce-tabs ul.tabs li a{
    color: #00aa56;
}

#primary .site-main,#primary .site-main .type-page{
	padding-top: 0;
	padding-bottom: 0;
}
.page-template-template-homepage .entry-header h1,
.page-template-default h1.entry-title{
	margin-bottom: 10px;
	font-weight: 600;
	font-size: 46px;
	color: #0f64af;
	line-height: 46px;
	text-transform: uppercase;
	font-family: 'Poppins';
	letter-spacing: 1px;
}
.page-template-default .entry-header{
	text-align: center;
	background-color: transparent;
}
.page-template-template-homepage .entry-content p {
	font-size: 21px;
	color: #1e1e1e;
	margin-bottom: 0px;
	margin-top: 0;
	line-height: 26px;
	font-weight: 400;
	font-family: 'Montserrat';
}
.page-template-template-homepage .section-title{

	font-size: 28px;
	color: #0f64af;
	font-weight: 600;
	margin-bottom: 30px;
	margin-top: 0;
	letter-spacing: 1px;
	font-family: 'Poppins';
}
.page-template-default .entry-content{
	padding-top: 100px;
}
.page-template-default .content-area{
	background-color: #f7f7f7;
	width: 100%;
	display: inline-block;
}
.page-template-default .site-main{
	width: 1170px;
	margin: 0 auto
}
.page-id-2792 h2{
	font-size: 21px;
	color: #1e1e1e;
	margin-bottom: 10px;
	margin-top: 25px;
	font-weight: 400;
	font-family: 'Montserrat';
}
.page-id-2792 blockquote{
	margin-left: 30px;
}

#customer_login .col-1,
#customer_login .col-2{
	max-width: 100%;
}
#customer_login h2{
	font-size: 2rem;
	color: #333;
	font-weight: 600;
	margin-bottom: 30px;
	margin-top: 0;
	letter-spacing: 1px;
	font-family: 'Poppins';
}
.page-template-default button{
	background-color: #1e1e1e;
	border-top-left-radius: 20px;
	border-top-right-radius: 20px;
	border-bottom-left-radius: 20px;
	border-bottom-right-radius: 20px;
	border: 2px solid #1e1e1e;
	text-align: center;
	width: 200px;
	height: 42px;
	font-size: 18px !important;
	line-height: 15px;
	font-weight: 400;
	color: #fff;
	cursor: pointer;
	transition: all 0.6s;
}
.page-template-default button:hover{
	background-color: #0f64af;
	border: 2px solid transparent;
	transition: all 0.6s;
	font-size: 18px;
	line-height: 15px;	
}

.page-title{
	font-size: 36px;
	color: #0f64af;
	font-weight: 600;
	margin-bottom: 20px;
	margin-top: 0;
	letter-spacing: 1px;
	font-family: 'Poppins';
}
.entry-header{
	background-color: transparent !important;
}
.woocommerce-result-count{
	margin-top: 6px;
}
.right-sidebar .content-area{
	width: 100%;
	background-color: #f7f7f7;
}
.right-sidebar .content-area .site-main{
	width: 1170px;
	margin: 0 auto;
}
.products mark,.products .mark{
	background-color: transparent;
	font-weight: bold;
}
.woocommerce-products-header{
	background-color: transparent !important;
}
.storefront-sorting{
	margin-bottom: 0;
	padding-bottom: 30px;
}
ul.products li.product{
	box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
	background-color: #fff;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px;
	border-bottom: 3px solid #0f64af;
	padding: 30px 10px;
}
ul.products li.product a{
	/*overflow: hidden;*/
	position: relative;
	display: block;	
	margin:0 auto;

}
ul.products li.product:hover a img{
	-webkit-transform: scale(0.90,0.90);
	-moz-transform: scale(0.90,0.90);
	-ms-transform: scale(0.90,0.90);
	-o-transform: scale(0.90,0.90);
	transform: scale(0.90,0.90);
}
ul.products li.product img{
	min-height: 260px;
	max-height: 260px;
	width: auto;
	-webkit-transition: all .4s ease-in-out;
	-moz-transition: all .4s ease-in-out;
	-ms-transition: all .4s ease-in-out;
	-o-transition: all .4s ease-in-out;
	transition: all .4s ease-in-out;
	object-fit: cover;
	object-position: center;
}
ul.products li.product .woocommerce-loop-product__title, ul.products li.product h2, ul.products li.product h3{
	/*min-height: 65px;*/
	color: #6f6f6f;
}
.woocommerce-loop-product__link span.onsale {
    position: absolute;
    top: -40px;
    right: -28px;
    background-color: #00aa56;
	border-color: #00aa56;
	color: #fff;
	z-index: 9;
}
.nf-form-layout form {
	width: 100%;
	max-width: 700px;
	margin: 20px auto;
	background-color: #fff;
	padding: 30px;
}
.nf-form-cont{
	margin-top: 50px;
}
.nf-form-fields-required {
    font-weight: bold;
    margin-bottom: 30px;
}
.nf-field-element input.ninja-forms-field,.nf-field-element textarea.ninja-forms-field{
	border: 1px solid #ccc;
	background-color: #fcfcfc;
	border-radius: 3px;
	width: 100%;
}
.nf-form-content .label-above {
    margin-bottom: 20px;
}
.nf-form-hp nf-section,.nf-form-hp nf-section label {
    width: 100%;
    display: inline-block;
}
.nf-form-hp nf-section label input{
	border: 1px solid #ccc;
	background-color: #fcfcfc;
	border-radius: 3px;
	width: 100%;	
}

.nf-error-msg.nf-error-required-error,.nf-error-msg.nf-error-field-errors {
    color: red;
}
.woocommerce-form .woocommerce-Input{
	border: 1px solid #ccc;
	background-color: #fcfcfc;
	border-radius: 3px;
	width: 100%;
}
.woocommerce-form label{
	font-weight: 700;
	width: 95%;
	margin-top: 20px;
}
.archive .page-description h1{
	font-size: 21px;
	color: #1e1e1e;
	margin-bottom: 0px;
	margin-top: 0;
	line-height: 26px;
	font-weight: 400;
	font-family: 'Montserrat';
}
.page-description h3 {
	margin-bottom: 5px;
	line-height: 20px;
}
.page-description h3 a{
	color: #00aa56;
	font-size: 18px;
}
.page-description h3 a:hover{
	color: #000;
}

#shipping_method li label{
	display: inline-block;
	width: 90%;
	vertical-align: top;
}
.shop_table .actions .button{
	margin-top: 30px;
}
.checkout-button.button.alt.wc-forward{
	width: 235px !important;
	line-height: 10px;
}
.rehakka_wrapper .woocommerce-billing-fields__field-wrapper{
	
}
.rehakka_wrapper .woocommerce-input-wrapper input{
	border: 1px solid #ccc;
background-color: transparent;
box-shadow: none;
border-radius: 5px;
height: auto;
max-height: 40px;
font-size: 14px;
}

.rehakka_wrapper .woocommerce a.std-checkout-button{
	width: 235px !important;
}
.added_to_cart:focus, .button:focus, button:focus, input[type="button"]:focus, input[type="reset"]:focus, input[type="submit"]:focus {
    outline: none !important;
}
.checkout.woocommerce-checkout{
	background-color: #fff;
	padding: 30px 30px 40px 30px;
}
.woocommerce-input-wrapper{
	width: 100%;
	display: inline-block;		
}
.woocommerce-input-wrapper input{

}
.woocommerce-info, .woocommerce-noreviews, p.no-comments{
	background-color: #0eaf5f;
}
#customer_details .col-1,#customer_details .col-2  {
    width: 100% !important;
    max-width: 100%;
}
#customer_details .woocommerce-billing-fields__field-wrapper p{
	width: 100%;
	margin: 0 0 15px 0;
}
#customer_details .woocommerce-billing-fields__field-wrapper p label{
	width: 100%;
	display: inline-block;
}

.fourohfour-columns-2 .col-1,.fourohfour-columns-2 .col-2{
	max-width: 100%;
	margin: 0 0;
}
table.cart td.actions input {
	display: inline-block;
	width: auto;
	margin: 0;
	background-color: #fff;
	border: 1px solid #dfdfdf;	
	margin-right: 20px;
	border-top-left-radius: 20px !important;
	border-top-right-radius: 20px !important;
	border-bottom-left-radius: 20px !important;
	border-bottom-right-radius: 20px !important;
}
table.cart td.actions button.button{
	font-size: 16px !important;
}
table.shop_table.shop_table_responsive td #shipping_method li label{
	width: 85% !important;
}
.wc-forward::after, .woocommerce-Button--next::after{
	display: none;
}
.mailchimp-newsletter #mailchimp_woocommerce_newsletter{
	margin-top: calc(16px - 12px);
	line-height: 16px;
}
.mailchimp-newsletter .woocommerce-form__label.woocommerce-form__label-for-checkbox{
	width: 90%;
	line-height: 20px;
}
.shop_table.shop_table_responsive .woocommerce-shipping-totals.shipping #shipping_method{
	width: 100%;
	display: inline-block;
	text-align: left;
}
.shop_table.shop_table_responsive .woocommerce-shipping-destination,
.shop_table.shop_table_responsive .woocommerce-shipping-calculator{
	text-align: left;	
}
.shop_table.shop_table_responsive .woocommerce-Price-amount.amount .includes_tax{
	    width: 100%;
    display: inline-block;
}
.nf-response-msg p{
	background-color: #0eaf5f;
    color: #fff;
    padding: 0px 5px;
    text-align: center;
	animation:blinkingText 0.9s;
}
@keyframes blinkingText{
    0%{     color: #fff;    }
    49%{    color: transparent; }
    50%{    color: transparent; }
    99%{    color:transparent;  }
    100%{   color: #fff;    }
}
.woocommerce-ResetPassword.lost_reset_password .woocommerce-Input{
	background-color: #fff;
    border: 1px solid #ccc;
}
.woocommerce-ResetPassword.lost_reset_password .woocommerce-Button.button{
	    white-space: nowrap;
}

.cart-contents:before {
    font-family:WooCommerce;
    content: "\e01d";
    font-size:28px;
    margin-top:10px;
    font-style:normal;
    font-weight:400;
    padding-right:5px;
    vertical-align: bottom;
}
.cart-contents:hover {
    text-decoration: none;
}
.cart-contents-count {
    color: #fff;
	font-weight: bold;
	border-radius: 100%;
	padding: 1px 6px;
	line-height: 1;
	position: absolute;
	vertical-align: top;
	width: 25px;
	height: 25px;
	background-color: #0eaf5f;
	top: -10px;
	font-size: 10px;
	line-height: 22px;
	text-align: center;
	left: -2px;
	font-family: 'Poppins';
	z-index: 0;
}
#tab-description .titolo{
	font-size: 22px;
	font-weight: 600;
	font-family: Poppins;
	width: 100%;
	display: inline-block;
	margin-bottom: 15px;
}
#tab-description .row .columns{
	padding-left: 15px;
	padding-right: 15px;
}
.shop_table.shop_table_responsive.cart.woocommerce-cart-form__contents .coupon .button{
	margin-top: 18px;
}
.search.search-no-results #primary{
	background-color: transparent;
}

.sitemappage .list-inline-item {
    display: list-item;
}
/*added 08-10-2020*/
/*.slick-slide{
	padding: 0px 15px;
}
button.slick-prev.slick-arrow, button.slick-next.slick-arrow {
    position: absolute;
    z-index: 999;
    visibility: hidden;
    top: 30%;
  
}
.slick-prev.slick-arrow{
	  right: 0px;
	   
}
.slick-next.slick-arrow{
	  left: 0px;
	
}
button.slick-prev.slick-arrow:before{
	content: ' \00BB';
	display: block;
	visibility: visible;
	z-index: 999;
	font-size: 60px;
	color: #000;
	right: 25px;
	position: absolute;
}
button.slick-next.slick-arrow:before{
	content: ' \00AB';
	display: block;
	visibility: visible;
	z-index: 999;
	font-size: 60px;
	color: #000;
	left: 25px;
	position:absolute;
}
ul.slick-dots {
    display: none !important;
}

*/





/* Media Query */

@media(max-width: 1200px){

	.right-sidebar .content-area .site-main{
		width: 90%;		
	}
	.header-middle .search_item{
		padding-right: 15px;
	}
}

@media(max-width: 1150px){

	.header-bottom .list-inline {
		text-align: center;
		padding-top: 0;
		padding-bottom: 8px;
	}
	.header-bottom .list-inline a{
		font-size: 14px;
		padding: 0 10px;
	}
	.header-bottom .list-inline .list-inline-item a::after{
		top: 15px;
	}
	.home_banner .item .container .carousel-caption{
		left: 15px;
	}
	.infoDetailContainer,{
		width: 95%;
	}
	.header-top .list-inline .list-inline-item a{
		padding: 1px 8px 3px 8px;
		font-size: 14px;
	}
	.product_search .right_info .your-email input{
		width: 100%;
	}
	.products.columns-4 .product{
		width: 30.4347826087%;		
	}
	button:hover, .button:hover, input[type="button"]:hover,button, .button, input[type="button"],
	.product-template-default.single.single-product .single_add_to_cart_button, 
	.product-template-default.single.single-product .add_to_cart_button, .added_to_cart.wc-forward{
		width: auto !important;
		font-size: 16px !important;
	}
	.header-top .radio_selection,.header-top .list-inline{
		text-align: center !important;
		margin-left: 0 !important;
	}
	.cart-parent-li.list-inline-item::before{
		right: 0;
	}
	.header-top .list-inline .list-inline-item a{
		font-size: 13px;
	}
	.header-middle .search_item .mega_menu.cart{
		right: -10px;
	}
	.infoDetailContainer{
		width: 100%;
	}
	.rehakInfoDetail .left-info-text {
	    width: 100%;
	    display: inline-block;
	}
	.rehakInfoDetail .vertical_middle {
 	   display: inline-block;
	    vertical-align: middle;
	    width: 100%;
	}
	.left-container {
    	float: right;
    	padding: 70px 15px;
	    margin-right: 0;
	    width: 100%;
	    display: inline-block;
	}
	.right-info-imges {
 	   	margin-left: 0;
		width: 100%;
		display: inline-block;
		box-sizing: border-box;
		padding-left: 25px;
	}
	.infoDetailContainer {
 		width: 100%;
	    padding-right: 30px;
	}


}/*End media 1200*/

@media(max-width: 991px){

	.header-bottom .list-inline a{
		font-size: 12px;
		padding: 0 5px;
	}	
	.header-top .list-inline .list-inline-item a{		
		font-size: 13px;
	}
	.infoDetailContainer {
 	   width: 95%;	   
	   margin: 0 auto;
	   float: inherit;
	}
	.right-info-imges{
		padding-top: 50px;
		margin-left: 0;
	}
	.product_search h3{
		font-size: 24px;
	}
	.product_search p{
		font-size: 16px;
	}
	.woocommerce .products.columns-4 .product{
 	   width: 45.50% !important;
 	   margin:0 15px 30px 15px !important;
	}

}/*End media 991*/

@media(max-width: 767px){

	#nav-icon1{
		background-color: transparent;
		cursor: pointer;
		float: left;
		margin: 0 auto;
		padding: 0;
		position: absolute;
		text-align: center;
		top: 35px;
		right: 25px;
		transform: rotate(0deg);
		transition: all .3s ease-in-out 0s;
		width: 30px;
		z-index: 9999;
		transform: translate3d(0, 0, 0);
		-moz-transform: translate3d(0, 0, 0);
		-webkit-transform: translate3d(0, 0, 0);
		-ms-transform: translate3d(0, 0, 0);
		-o-transform: translate3d(0, 0, 0);
	}
	.menu-icon {
		display: inline-block;
		height: 30px;
		margin: 0;
		position: relative;
		width: 30px;
	}
	#nav-icon1 span:nth-child(1){
		top:0;
	}
	#nav-icon1 span:nth-child(2){
		top:8px;
	}
	#nav-icon1 span:nth-child(3) {
		top: 16px;
	}
	#nav-icon1 span{
		position: absolute;
		left: 0;
		display: block;
		width: 100%;
		height: 3px;
		background: #3a5d72;
		border-radius: 0;
		opacity: 1;
		-webkit-transform: rotate(0deg);
		-moz-transform: rotate(0deg);
		-o-transform: rotate(0deg);
		transform: rotate(0deg);
		-webkit-transition: .25s ease-in-out;
		-moz-transition: .25s ease-in-out;
		-o-transition: .25s ease-in-out;
		transition: .25s ease-in-out;
	}
	.mm-panel.mm-hasnavbar .mm-navbar{
		background-color: #0f64af;
	}
	.mm-panel.mm-hasnavbar .mm-navbar a{
		color: #fff;
	}
	.mm-menu .mm-btn::after, .mm-menu .mm-btn::before{
		border-color: #fff;
	}	
	.desktop_navigations{
		display: none;
	}
	.header-middle .search_item .list-inline{
		margin: 15px 0 0 0;		
	}
	.header-middle .header_search_box{
		margin-bottom: 0;
	}
	.carousel-caption{
		right: 15px;
	}
	.banner .carousel_img{
		height: 400px;
	}
	.banner .carousel-caption{
		left: 15px !important;
		right: 15px !important;
	}	
	.reha_infotext{
		padding: 40px 5px;
	}
	.reha_infotext p{
		width: 100%;
	}
	.infoDetailContainer{
		padding: 30px 25px;
		width: 100%;
	}
	.right-info-imges{
		padding-top: 0;
		padding-left: 0;
	}
	.infoDetailContainer.right_container {
 		width: 100%;
	    display: inline-block;
    	padding-right: 30px;
	}	
	.product_selction{
		padding-top: 20px;
		padding-bottom: 55px;
		text-align: center;
	}
	.product_item{
		padding-top: 30px;		
	}
	.product_item .row.row-eq-height .col-lg-4{
		margin-bottom: 30px;
	}		
	.product_title h3{
		font-size: 22px;
	}
	.product_title h6{
		font-size: 14px;
	}
	.product_title{
		margin-bottom: 20px;
	}
	.load_more_btn a{
		margin-top:30px; 
	}
	.product_search h3{
		font-size: 22px;
	}
	.product_search p{
		font-size: 14px;
	}
	.product_search .right_info .your-email input{
		width: 100%;		
		padding-right: 85px;
	}
	.product_search .right_info .wpcf7-submit{
		width: auto;
		font-size: 14px;
	}
	.product_search .right_info{
		margin-top: 20px;
		text-align: left !important;
	}
	.product_item_block .product_detail button{
		width: 70%;
		font-size: 15px;
	}
	.page-template-template-homepage .entry-header h1,
	.page-template-default h1.entry-title{
		font-size: 28px;
		line-height: 38px;
	}
	.page-template-default .entry-content {
 	   padding-top: 30px;
	}
	.storefront-product-section .products.columns-4 .product,
	.storefront-product-section .products.columns-3 .product{
 	   width: 100% !important;
 	   margin: 0 0 30px 0!important
	}
	.error404 .fourohfour-columns-2 .col-1 ul.products li.product{
		width: 100%;
		margin-bottom: 30px;
	}
	.product_search .right_info .your-email input::-webkit-input-placeholder { /* Chrome/Opera/Safari */
	  font-size: 11px;
	}
	.product_search .right_info .your-email input:::-moz-placeholder { /* Firefox 19+ */
	  font-size: 11px;
	}
	.product_search .right_info .your-email input::-ms-input-placeholder { /* IE 10+ */
	  font-size: 11px;
	}
	.product_search .right_info .your-email input::-moz-placeholder { /* Firefox 18- */
	  font-size: 11px;
	}
	footer .footerOne li{
		line-height: 20px;
	}	
	.header-middle .search_item .list-inline.text-right{
		text-align: center !important;
	}
	.list-inline-item:not(:last-child){
		margin-right: 0 !important;
	}
	.woocommerce .products.columns-4 .product {
	    width: 100% !important;
	    margin: 0 15px 30px 0px !important;
	}

}/*End media 767*/

@media(max-width: 650px){

	.header-middle .search_item .list-inline.text-right{
		text-align: left !important;
	}
}

@media(max-width: 575px){

	.header-middle .search_item .list-inline.text-right{
		text-align: center !important;
	}
	.product_item_block .product_detail button{
		width: 200px;
		font-size: 15px;
	}
	.banner .slider-text p {
 	   font-size: 16px;
	    width: 80%;
	}	
	.banner .slider-text h3{
		font-size: 14px;
	}
	.banner .slider-text h2{
		font-size: 22px;	
	}
	.banner .slider-text p{
		font-size: 16px;
	}
	footer .footerOne ul{
		margin-left: 0;
	}
}/*End media 499*/

@media(max-width:450px){

	.shop_table.shop_table_responsive.cart.woocommerce-cart-form__contents .coupon #coupon_code{
		margin:20px auto 0 auto;
		display: block;
	}
	.shop_table.shop_table_responsive.cart.woocommerce-cart-form__contents .coupon .button{
		display: block;
		margin: 20px auto 4px auto;
	}
}


@media(max-width: 360px){

	footer .footerOne li::after{
		display: none;
	}
}





/**/

.desktop_navigations .list-inline > .menu-item-has-children > .sub-menu:after{
	content: '';
	display: block;
	clear: both;
}

.header-bottom .list-inline .menu-item-has-children .sub-menu {
 
    bottom: inherit;
}

.header-bottom.desktop_navigations .list-inline .menu-item-has-children .sub-menu > li.menu-item-has-children {
    float: left;
}

.header-bottom.desktop_navigations .list-inline .menu-item-has-children .sub-menu > li.menu-item-has-children > ul > li {
    width: 100% !important;
    max-width: 100% !important;
}