﻿/*
Description:
		1 - Including files ("fonts.css", "reset.css" and others)
		2 - Tags styles and General styles
		3 - header
		4 - .content
		5 - footer
		* - @media rules
*/

/* 1 - BEGIN of Including files ("fonts.css", "reset.css" and others) ---------------------------------------------------------- */
button,button:active,button:focus
{
	outline: none;
}
@font-face {
    font-family: 'Stem';
    src: url('fonts/Stem/Stem-Bold.eot');
    src: url('fonts/Stem/Stem-Bold.eot?#iefix') format('embedded-opentype'),
        url('fonts/Stem/Stem-Bold.woff2') format('woff2'),
        url('fonts/Stem/Stem-Bold.woff') format('woff'),
        url('fonts/Stem/Stem-Bold.ttf') format('truetype'),
        url('fonts/Stem/Stem-Bold.svg#Stem-Bold') format('svg');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Stem';
    src: url('fonts/Stem/Stem-Medium.eot');
    src: url('fonts/Stem/Stem-Medium.eot?#iefix') format('embedded-opentype'),
        url('fonts/Stem/Stem-Medium.woff2') format('woff2'),
        url('fonts/Stem/Stem-Medium.woff') format('woff'),
        url('fonts/Stem/Stem-Medium.ttf') format('truetype'),
        url('fonts/Stem/Stem-Medium.svg#Stem-Medium') format('svg');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Stem';
    src: url('fonts/Stem/Stem-Light.eot');
    src: url('fonts/Stem/Stem-Light.eot?#iefix') format('embedded-opentype'),
        url('fonts/Stem/Stem-Light.woff2') format('woff2'),
        url('fonts/Stem/Stem-Light.woff') format('woff'),
        url('fonts/Stem/Stem-Light.ttf') format('truetype'),
        url('fonts/Stem/Stem-Light.svg#Stem-Light') format('svg');
    font-weight: 300;
    font-style: normal;
}



@font-face {
    font-family: 'Stem';
    src: url('fonts/Stem/Stem-Regular.eot');
    src: url('fonts/Stem/Stem-Regular.eot?#iefix') format('embedded-opentype'),
        url('fonts/Stem/Stem-Regular.woff2') format('woff2'),
        url('fonts/Stem/Stem-Regular.woff') format('woff'),
        url('fonts/Stem/Stem-Regular.ttf') format('truetype'),
        url('fonts/Stem/Stem-Regular.svg#Stem-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Geometria';
    src: url('fonts/Geometria/Geometria-Bold.eot');
    src: url('fonts/Geometria/Geometria-Bold.eot?#iefix') format('embedded-opentype'),
        url('fonts/Geometria/Geometria-Bold.woff2') format('woff2'),
        url('fonts/Geometria/Geometria-Bold.woff') format('woff'),
        url('fonts/Geometria/Geometria-Bold.ttf') format('truetype'),
        url('fonts/Geometria/Geometria-Bold.svg#Geometria-Bold') format('svg');
    font-weight: bold;
    font-style: normal;
}


/* BEGIN of CSS RESET */
html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */

article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section {
	display: block;
}

/* END of CSS RESET */

/* 1 - END of Including files ("fonts.css", "reset.css" and others) ---------------------------------------------------------- */
/* 2 - BEGIN of Tags and General styles ---------------------------------------------------------- */

html {
    position: relative;
    min-height: 100%;
}
body {
	min-height: 500px;
	margin: 0 auto 96px;
	font-family: 'Stem', sans-serif;
	font-weight: normal;
	font-size: 16px;
	color: #2f2f2f;
}

h2 {
	font-family: "Geometria";
	text-align: center;
	font-size: 40px;
	font-weight: bold;
	color: #47b44f;
}

h3 {
	font-size: 24px;
	font-weight: bold;
}

h4 {

}

h5 {
	font-size: 18px;
}

h6 {
	font-size: 14px;
}

a {
	color: #3d84bb;
	text-decoration: none;
	outline: none;
	-webkit-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

a:hover {
	opacity: 0.7;
	text-decoration: none;
	color: inherit;
	outline: none;
}

a:active {
	opacity: 0.6;
	outline: none;
	color: inherit;
	text-decoration: none;
}

a:focus {
	outline: none;
	color: inherit;
	text-decoration: none;
}

p {
	font-size: 16px;
	line-height: 24px;
}

button, input, textarea, select {
	-webkit-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

button:hover, input:hover, textarea:hover, select:hover {
	opacity: 0.8;
}

strong {
	font-weight: 700;
}

em {
	font-style:italic;
}

img {
	max-width: 100%;
}

.clear:before, .clear:after {
	content: "";
	display: block;
	clear: both;
}

.hide, .hidden {
	display: none;
}

.left {
	text-align: left;
}

.center {
	text-align: center;
}

.right {
	text-align: right;
}

.alignleft, img.alignleft {
	float: left;
	display: block;
	margin: 0 5px 0 0;
}

.alignright, img.alignright {
	float: right;
	display: block;
	margin: 0 0 0 5px;
}

.aligncenter, img.aligncenter {
	float: none;
	display: block;
	margin: 0 auto 0;
}

.alignnone, img.alignnone {
	margin: 0 0 0;
	display: block;
}

[class^="col"] {
	padding-left: 10px;
	padding-right: 10px;
}

.row {
	margin-left: -10px;
	margin-right: -10px;
}

.container  {
	max-width: 960px;
	padding-left: 10px;
	padding-right: 10px;
}

/* 2 - END of Tags styles and General styles ---------------------------------------------------------- */
/* 3 - BEGIN of header ---------------------------------------------------------- */

header {
	height: 680px;
	background: url(img/header-bg.jpg) no-repeat center;
	-webkit-background-size: cover;
	background-size: cover;
}

.header-language {
	text-align: right;
}

.header-language span, .header-language a {
	display: inline-block;
	margin-left: 10px;
	font-size: 14px;
	color: #8c8c8c;
}

.header-language a {
    padding: 7px 0 11px;
    border-top: 2px solid transparent;
}

.header-language a.active {
	color: #2f2f2f;
	border-color: #2f2f2f;
}

.header-white {
	background: #fff;
}

.header-info {
	display: table;
	width: 100%;
	border-collapse: collapse;
}

.header-info__row {
	display: table-row;
}

.header-info__row > * {
    display: table-cell;
    padding: 19px 30px;
    border: 1px solid #F0F0F0;
    vertical-align: middle;
    text-align: center;
}

a.logo {
    border-left: none;
    padding-left: 17px;
    padding-right: 17px;
}

.header-info__tel span, .header-info__tel a {
	font-size: 14px;
	color: #8c8c8c;
}

.header-info__buy {
    padding-left: 25px;
    padding-right: 25px;
}

.header-info__buy a {
	font-size: 16px;
	font-weight: bold;
	text-transform: uppercase;
	color: #47b44f;
}

.header-info__basket {
    padding-left: 25px;
    padding-right: 25px;
    border-right: none;
}

.header-info__basket a {
	position: relative;
	display: inline-block;
	width: 26px;
	height: 26px;
	background: url(img/basket-ic.png) no-repeat;
}

.header-info__basket a > span {
    position: absolute;
    right: -3px;
    top: -3px;
    display: block;
    min-width: 16px;
    height: 16px;
    padding: 0 2px;
    line-height: 16px;
    text-align: center;
    background: #fec507;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 500;
    color: #2f2f2f;
}

.header-nav {
    min-height: 80px;
    padding: 0 18px 0 32px;
}

.justify-align {
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.navbar {
    min-height: 0;
    margin-bottom: 0;
    border: none;
}

.navbar-collapse {
    padding-right: 0;
    padding-left: 0;
    border-top: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.navbar-nav {
    float: none;
    margin: 0;
}

.nav.navbar-nav::before,
.nav.navbar-nav::after {
    display: none;
}

.navbar-nav>li {
    float: none;
    display: inline-block;
}

.navbar-nav>li>a {
    position: relative;
    display: inline-block;
    padding: 0 0 0 0;
    margin: 0 15px 0;
    font-size: 18px;
    color: #2f2f2f;
    font-weight: 500;
}

.navbar-nav>li>a.active,.navbar-nav>li.selected >a {
	border-bottom: 2px solid;
}

.navbar-nav>li:first-child a {
	margin-left: 0;
}

.navbar-nav>li:last-child a {
	margin-right: 0;
}

.nav>li>a:focus, .nav>li>a:hover {
    text-decoration: none;
    background-color: transparent;
    opacity: 1;
}

.nav a {
    border: none;
}

.nav .open>a, .nav .open>a:focus, .nav .open>a:hover {
    background-color: transparent;
    border-color: transparent;
    color: #fff;
}

.verify-product {
	position: relative;
    padding: 0 15px 0 40px;
    width: 167px;
    height: 48px;
    line-height: 42px;
    text-align: right;
    background: #ecf7fe;
    border-radius: 30px;
	cursor: pointer;
}

.verify-product::before {
    content: '';
    position: absolute;
    left: 13px;
    top: 11px;
    width: 24px;
    height: 24px;
    background: url(img/check-ic.png);
}

.verify-product span {
	display: inline-block;
	vertical-align: middle;
	line-height: normal;
	font-size: 16px;
	font-weight: 500;
}

.header-text {
	padding: 73px 0 0 80px;
}

.header-text__list {
    list-style: none;
}

.header-text__list li {
	margin-bottom: 26px;
	font-family: "Geometria";
	font-weight: bold;
	font-size: 32px;
	line-height: 36px;
}

.btn {
	padding: 0 32px;
	height: 56px;
	line-height: 54px;
	text-align: center;
	font-size: 16px;
	font-weight: bold;
	text-transform: uppercase;
	background: #47b44f;
	color: #fff;
	border-radius: 30px;
	-webkit-box-shadow: 0px 25px 40px -23px rgba(71,180,79,1);
	-moz-box-shadow: 0px 25px 40px -23px rgba(71,180,79,1);
	box-shadow: 0px 25px 40px -23px rgba(71,180,79,1);
	outline: none;
}

.btn-yellow {
	height: 64px;
	line-height: 62px;
	color: #2f2f2f;
	background: #fec507;
	-webkit-box-shadow: 0px 25px 40px -23px rgba(254,197,7,1);
	-moz-box-shadow: 0px 25px 40px -23px rgba(254,197,7,1);
	box-shadow: 0px 25px 40px -23px rgba(254,197,7,1);
}

.header-text .btn {
    margin: 22px 0 0;
}


/* 3 - END of header ---------------------------------------------------------- */
/* 4 - BEGIN of .content ---------------------------------------------------------- */

.content {
	min-height: 200px;
}

section {
    padding: 68px 0 70px;
}

section h2 {
	text-align: center;
}

.welcome {
	padding-bottom: 44px;
}

.welcome-wrapper {
    max-width: 780px;
    margin: 24px auto 0;
}

.welcome p {
    margin: 0 0 33px;
}

ol.custom-list {
	padding: 0 0 0 30px;
    margin: 0 0 20px 0;
    list-style-type: none;
    counter-reset: num;
    color: #494949;
}

ol.custom-list > li {
    padding: 0 0 0 50px;
    margin: 0 0 31px;
    line-height: 24px;
    position: relative;
}

ol.custom-list > li::before {
    content: counter(num) '';
    counter-increment: num;
    position: absolute;
    left: -7px;
    top: -6px;
    margin: 0 9px 0 0;
    display: block;
    text-align: center;
    color: #47b44f;
    font-size: 24px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    background: #ECF7ED;
}

ol.custom-list > li a {
	font-weight: 500;
	border-bottom: 1px dotted;
}

.advantages {
	background: #f3f1f0;
}

.advantages-wrapper {
    margin: 59px 0 0;
}

.advantages-item {
	text-align: center;
}

.advantages-item__icon {
    height: 100px;
    margin: 0 0 18px;
    line-height: 100px;
}

.advantages-item__icon img {
	display: inline-block;
	vertical-align: middle;
}

.advantages-item span {
	font-size: 16px;
	line-height: 24px;
}

.advantages-text {
    margin: 50px 0 0;
}

.advantages-text p {
	font-size: 18px;
	font-weight: 500;
	text-align: center;
}

.advantages-text p a {
	color: #2f2f2f;
}

.online-store__wrapper {
    margin: 33px 0 0;
}

.online-store__wrapper p {
    padding: 28px 0 0;
}

.btn-green:hover, .btn-green:focus {
	color: #fff;
}

.online-store__wrapper .btn {
    margin: 34px 0 0;
}

/* BEGIN style for Inner pages----------------------------------------------------*/
.inner header {
	height: auto;
	background: transparent;
}

.header-white {
    -webkit-box-shadow: 0px 33px 130px 52px rgba(243,243,243,1);
    -moz-box-shadow: 0px 33px 130px 52px rgba(243,243,243,1);
    box-shadow: 0px 33px 130px 52px rgba(243,243,243,1);
}

.breadcrumbs {
    margin: 9px 0 0 0;
    padding-bottom: 16px;
    list-style: none;
    border-bottom: 1px solid #E8E8E7;
}

.breadcrumbs li {
	display: inline-block;
	margin-right: -0.03em;
	color: #8c8c8c;
	font-size: 14px;
}

.breadcrumbs li + li::before {
    content: "→";
    padding: 0 8px 0 3px;
    font-size: 14px;
}

.breadcrumbs a {
	position: relative;
	color: #2f2f2f;
}

.breadcrumbs a:hover {
	opacity: 1;
	color: #47b44f;
}

.history h2 {
    margin-bottom: 24px;
}

.history p {
    margin-bottom: 24px;
    font-size: 16px;
}

.history img {
    display: block;
    margin: 34px auto 33px;
}

.store-wrapper {
    margin: 29px 0 0;
}

.store-item {
    height: 380px;
    margin-bottom: 20px;
    border: 1px solid #F0F0F0;
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

.store-item:hover {
	-webkit-box-shadow: 0px 9px 10px 0px rgba(204,204,204,0.5);
	-moz-box-shadow: 0px 9px 10px 0px rgba(204,204,204,0.5);
	box-shadow: 0px 9px 10px 0px rgba(204,204,204,0.5);
}

.store-item__img {
	height: 300px;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	--ms-align-items: center;
	align-items: center;
	justify-content: center;
}

.store-item__info {
	position: relative;
	padding: 15px 0;
	border-top: 1px solid #F0F0F0;
}

.store-item__name {
	text-align: center;
	font-size: 16px;
}
.store-item__name  a{
  color: #2F2F2F;
}

.store-item__price {
	text-align: center;
}

.store-item__price span {
	font-weight: 500;
	font-size: 18px;
}

.store-item__add {
    position: absolute;
    opacity: 0;
    left: 0;
    bottom: 0;
    right: 0;
    padding: 5px 0;
    text-align: center;
    background: #FFF;
    z-index: 10;
    -webkit-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

.store-item:hover .store-item__add {
	opacity: 1;
}

.store-item__add a {
    position: relative;
    display: inline-block;
    padding: 0 0 0 30px;
    font-size: 18px;
    text-transform: uppercase;
    font-weight: bold;
    color: #47b44f;
}

.store-item__add a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 3px;
    width: 20px;
    height: 18px;
    background: url(img/basket-green-ic.png);
}

.store-item__price .old-price, .old-price {
	font-size: 18px;
	text-decoration: line-through;
	color: #ababab;
	font-weight: normal;
}

.store-item__price .sale-price, .sale-price {
	color: #e22b0d;
}

.product {
    padding-top: 80px;
}

.product-img {
	max-width: 440px;
}

.product-slider {
	margin-bottom: 10px;
}

.product-slider__nav {
	margin: 0 -8px;
}

.product-slider__nav .slick-slide:hover {
	cursor: pointer;
}

.product-slider__nav .slick-slide:focus {
	outline: none;
}

.product-slider__nav .slick-slide img {
	margin: 0 auto;
}

.product-slider__nav .slick-slide img:hover, .product-slider__nav .slick-current img {
	-webkit-filter: grayscale(100%);
    filter: grayscale(100%);
}

.product-info {
    position: relative;
    top: -8px;
}

.product-info__price {
	font-size: 40px;
}

.product-info__list {
    margin: 23px 0 0;
    list-style: none;
}

.product-info__list li {
	font-size: 16px;
	line-height: 24px;
}

.product-info__btn {
    margin: 38px 0 0;
}

.product-info__btn > * {
	display: inline-block;
	vertical-align: middle;
}

.plus-minus {
    width: 140px;
    margin: 0 15px 0 0;
    text-align: center;
    height: 56px;
    background: #fff;
    border: 1px solid #47b44f;
    border-radius: 30px;
}

.plus-minus button {
	height: 56px;
	line-height: 56px;
	background-color: transparent;
	outline: none;
	border: none;
}

.plus-minus button span {
    position: relative;
    top: -3px;
    font-size: 28px;
    line-height: 28px;
    display: inline-block;
    vertical-align: middle;
}

.plus-minus button:hover span {
	color: #47b44f;
}

.plus-minus .btn-minus span {
    top: -4px;
}

.plus-minus .btn-plus span {
	font-size: 34px;
}

.plus-minus input {
	width: 40px;
	font-size: 16px;
	font-weight: bold;
	background-color: transparent;
	border: none;
	outline: none;
	text-align: center;
}

.product-description {
    margin-top: 72px;
}

.product-description h3 {
    margin: 0 0 28px;
}

.product-description p {
    margin-bottom: 23px;
    font-size: 16px;
    line-height: 24px;
}

.product-description__table {
	width: 100%;
	border-collapse: collapse;
	border: 1px solid #E2E2E2;
}

.product-description__table td {
    padding: 15px 20px;
    font-size: 14px;
    border: 1px solid #E2E2E2;
}

.product-description__table tr td:first-child {
	font-weight: 500;
	background: #F9F9FA;
}

.cart-table {
    margin: 10px 0 0;
    width: 100%;
    border-collapse: collapse;
}

.cart-table div.row {
	padding: 15px 0;
	vertical-align: middle;
}

.cart-table div.row:first-child 
{
	font-size: 14px;
	font-weight: 500;
	color: #47b44f;
	text-transform: uppercase;
	border-bottom: 1px solid #47b44f;
}

.cart-table div.row:not(last-child) {
	border-bottom: 1px solid #F0F0F0;
}
.cart-table div.row:last-child 
{
	border-bottom: 1px solid #F0F0F0;	
}

.cart-table div.row:last-child {
	border-bottom: 1px solid #2F2F2F;
}
.cart-table .cart-table__price {
	padding-top: 30px;
}
.cart-table .cart-table__quantity {
	padding-top: 10px;
}
.cart-table .cart-table__total {
	padding-top: 30px;
}
.cart-table .cart-table__clear {
	padding-top: 30px;
}
.mt-35
{
    margin-top: -118px;
    margin-bottom: 108px;
}
.mt-45
{
    margin-top: -90px;
    margin-bottom: 0;
}
.mcenter h5
{
	margin-bottom:10px;
}
.cart-table tr td:not(first-child),
.cart-table tr th:not(first-child) {
	padding-left: 15px;
	padding-right: 15px;
}

.cart-table__img > * {
	display: inline-block;
	vertical-align: middle;
}

.cart-table__name {
	padding: 0 0 0 10px;
	font-size: 18px;
	color:black;
}
.col-total .PricesalesPrice,
.proopc-continue-link a
{
	color: black;
}

.cart-table__price span {
	font-size: 18px;
	font-weight: 500;
}

.cart-table__price span.old-price {
	font-weight: normal;
}

.cart-table__quantity input {
    width: 60px;
    height: 40px;
    color:black;
    border: 1px solid #E2E2E2;
    text-align: center;
    font-size: 16px;
}

.cart-table__total {
	font-size: 18px;
	font-weight: 500;
}

.cart-table__clear button {
	width: 24px;
	height: 24px;
	line-height: 24px;
	border-radius: 50%;
	border: 2px solid #A0A0A0;
	background: transparent;
	outline: none;
	padding: 0;
	text-align: center;
}

.cart-table__clear button span {
    display: inline-block;
    position: relative;
    top: -5px;
    vertical-align: middle;
    line-height: 27px;
    font-size: 27px;
    color: #A0A0A0;
}

.cart-table__clear button:hover {
	border-color: #2F2F2F;
}

.cart-table__clear button:hover span {
	color: #2F2F2F;
}

.cart-table td.cart-table__clear {
    text-align: right;
    padding-left: 0;
    padding-right: 0;
}

.total-wrapper {
    margin-top: 35px;
}

.total-wrapper h5 {
    margin: 0 0 9px;
}

.select-box {
    position: relative;
    padding: 0 5px 0 8px;
    width: 260px;
    height: 40px;
    overflow: hidden;
    border: 1px solid #2F2F2F;
}

.select-box::before {
    content: '';
    position: absolute;
    right: 13px;
    top: 17px;
    border: 5px solid transparent;
    border-top: 5px solid #2F2F2F;
}

.select-box select {
	width: 110%!important;
	height: 40px;
	border: none;
	outline: none;
	background-color: transparent;
}

.total-table {
	position: relative;
	top: -8px;
	width: 100%;
}

.total-table td {
    padding: 8px 0 8px;
    font-size: 18px;
}

.total-table tr td:last-child {
	font-weight: 500;
	text-align: right;
}

.total-table tr:last-child td {
	font-size: 24px;
}

.customer-details {
    margin: 51px 0 0;
}

.customer-details h3 {
    text-align: center;
}

form.customer-details__form {
    margin: 33px 0 0;
}

.placeholder-input {
	position: relative;
	margin-bottom: 20px;
	border: 1px solid #E2E2E2;
	width:100%;
	display: block;
}

.required
{
	border-color:red;
}
.placeholder-input.active {
	border-color: #47b44f;
}

.placeholder-input input {
	padding: 0 0 0 20px;
	height: 48px;
	line-height: 48px;
	width: 100%!important;
	font-size: 18px;
	position: relative;
	background-color: transparent;
	border: none;
	outline: none;
}
.mr25
{
	margin:25px auto;
}
.placeholder-input input:hover {
	opacity: 1;
}

.placeholder-input span {
    position: absolute;
    left: 15px;
    top: 12px;
    font-size: 18px;
    color: #D8D8D8;
    z-index: 0;
}

.placeholder-input span.active {
    padding: 0 5px;
    font-size: 14px;
    top: -10px;
    background: #fff;
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
    z-index: 10;
}

.placeholder-input.active span {
	color: #47b44f;
}

.placeholder-input__textarea {
    height: 120px;
}

.placeholder-input__textarea textarea {
    padding: 15px;
    border: none;
    outline: none;
    resize: none;
}

.check-list {
    margin: 30px 0 0;
    list-style: none;
}

.check-list li {
    margin: 0 0 18px;
}

.check-list input[type="checkbox"] {
    display: none;
}

.check-list input[type="checkbox"] + label {
    position: relative;
    display: inline-block;
    padding: 0 0 0 40px;
    cursor: pointer;
    font-size: 16px;
}

.check-list input[type="checkbox"] + label::before {
    content: "";
    display: block;
    position: absolute;
    top: 2px;
    left: 0;
    width: 24px;
    height: 24px;
    border: 1px solid #E2E2E2;
}

.check-list input[type="checkbox"] + label:hover::before {
	border-color: #2f2f2f;
}

.check-list input[type="checkbox"]:checked + label::after {
    content: "";
    position: absolute;
    width: 16px;
    height: 14px;
    background: url(img/checkbox-ic.png);
    top: 7px;
    left: 5px;
    margin: 0 auto;
}
.floatright
{
	float: right;
}
input.required
{
	border-color:red;
}
form.customer-details__form .btn {
    margin-top: 20px;
    width: 100%;
}

.research h2 {
    margin-bottom: 24px;
}

.research p {
    margin-bottom: 24px;
    font-size: 16px;
    line-height: 24px;
}

.custom-list {
    padding: 0 0 0 32px;
    list-style: none;
}

.custom-list li {
    position: relative;
    padding: 0 0 0 20px;
    margin-bottom: 24px;
    font-size: 16px;
    line-height: 24px;
}

.custom-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #47B44F;
}

.research img {
    display: block;
    margin: 34px auto 34px;
}

.research h3 {
    margin-bottom: 30px;
    text-align: center;
}

.contacts-wrapper {
    margin: 24px 0 0;
}

.contacts-wrapper p {
	font-size: 16px;
	line-height: 24px;
	text-align: center;
}

.contacts-box {
    margin: 67px 0 0;
}

.contacts-box__phones, .contacts-box__phones > * {
	font-size: 24px;
	font-weight: 300;
	line-height: 32px;
}

.contacts-box__address {
    margin: 37px 0 0;
    list-style: none;
}

.contacts-box__address li {
	font-size: 16px;
	line-height: 24px;
}

.contacts-box .btn {
	min-width: 180px;
}

.clients h2 {
    margin: 0 0 22px;
}

.clients h3 {
    margin: 0 0 27px;
    text-align: center;
}

.clients p {
	margin-bottom: 24px;
	font-size: 16px;
	line-height: 24px;
}

.clients-img {
    padding: 5px 0 18px;
    text-align: center;
}

.clients-img img {
    display: inline-block;
    margin: 0 15px;
    vertical-align: top;
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
    opacity: 0.6;
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

.clients-img img:hover {
	-webkit-filter: grayscale(0);
    filter: grayscale(0);
    opacity: 1;
}

.clients .footnote {
	font-size: 14px;
	line-height: 20px;
	color: #8c8c8c;
}

.about h2 {
	margin: 0 0 22px;
}

.about h3 {
	margin: 0 0 27px;
    text-align: center;
}

.about p {
	margin-bottom: 24px;
	font-size: 16px;
	line-height: 24px;
}

/* END style for Inner pages----------------------------------------------------*/

/* 4 - END of .content ---------------------------------------------------------- */
/* 5 - BEGIN of footer ---------------------------------------------------------- */

footer {
	background: #daf0dc;
	position: absolute;
	bottom: 0;
	width: 100%;
	height: 96px; /* Set the fixed height of the footer here */
}

.copyright {
    height: 96px;
    text-align: center;
    justify-content: center;
}

.copyright p {
	font-size: 14px;
}

.copyright a {
	color: #2f2f2f;
}


/* 5 - END of footer ---------------------------------------------------------- */
.modal-dialog {
    max-width: 400px;
}

.modal-form {
	text-align: center;
}

.modal-header {
    border-bottom: none;
}

.close:hover span {
	color: #47b44f;
}
/* * - BEGIN of @media ---------------------------------------------------------- */

@media screen and (max-width: 991px) {
.verify-product {
    display: none;
}
.visible-xs > .verify-product {
    display: inline-block;
}
.header-nav {
	display: block;
}
.navbar-nav>li>a {
    margin: 0 12px 0;
    font-size: 16px;
}
.header-info__row > * {
    padding: 19px 15px;
}
.header-info__buy {
    padding-left: 15px;
    padding-right: 15px;
}
.header-info__tel span {
    font-size: 12px;
}
.total-table {
    margin: 30px 0 0;
    top: 0;
}
.product {
    padding-top: 50px;
}
.product-info {
    margin: 30px 0 0;
    top: 0;
}
}

/* ----------------------------------------------------------------------------------- */

@media screen and (max-width: 767px) {
.header-language {
    text-align: center;
}
.header-info {
    display: block;
}
.header-info__row {
    display: block;
}
.header-info__row > * {
    display: block;
    padding: 12px 0;
    border: none;
    border-bottom: 1px solid #F0F0F0;
}
.navbar-header {
    padding: 0;
    text-align: center;
}
.header-nav {
    min-height: 0;
    padding: 8px 0 12px;
}
.navbar-toggle {
    float: none;
}
.navbar-toggle .icon-bar {
    position: relative;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    -o-transition: all .2s ease;
    transition: all .2s ease;
}
.navbar-toggle.active .icon-bar {
    margin: 0;
    height: 3px;
}
.navbar-toggle.active .icon-bar:nth-of-type(1) {
    top: 10px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}
.navbar-toggle.active .icon-bar:nth-of-type(2) {
    background-color: transparent;
}
.navbar-toggle.active .icon-bar:nth-of-type(3) {
    top: -10px;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.navbar-toggle {
    padding: 0 0 0;
    margin: 7px 0 0;
    border: none;
    min-height: 25px;
    position: relative;
    z-index: 5;
}
.navbar-toggle .icon-bar+.icon-bar {
    margin-top: 7px;
}
.navbar-toggle .icon-bar {
    width: 36px;
    height: 3px;
    background: #47b44f;
}
.navbar-nav {
    display: block;
    padding-bottom: 15px;
}
.navbar-nav>li {
    display: block;
    text-align: center;
}
.navbar-nav>li:first-child a {
    margin: 10px 0 0 0;
    padding: 0;
}
.navbar-nav>li>a {
    display: inline-block;
    padding: 0;
    font-size: 18px;
    margin: 12px 0 0 0;
}
.header-text {
    padding: 40px 0 0 40px;
}
.header-text__list li {
    margin-bottom: 15px;
    font-size: 24px;
    line-height: 28px;
}
section {
    padding: 30px 0 30px;
}
.welcome {
    padding-bottom: 30px;
}
h2 {
    font-size: 34px;
}
.advantages-wrapper {
    margin: 30px 0 0;
}
.advantages-item {
    margin-bottom: 30px;
}
.advantages-text {
    margin: 0;
}
.online-store__wrapper img {
	display: block;
	margin: 0 auto;
}
.online-store__wrapper .btn {
    display: block;
    margin: 22px auto 0;
    width: 170px;
}
.clients-img img {
	display: block;
    margin: 0 auto 20px;
}
.contacts-box__phones > span {
	display: block;
}
.contacts-box {
    margin: 30px 0 0;
}
.contacts-box__address {
    margin: 30px 0 30px;
}
.cart-table__img > * {
	display: block;
}
.product {
    padding-top: 30px;
}
.product-info__btn .btn {
	padding: 0 20px;
}
.plus-minus {
    width: 130px;
}
.product-description {
    margin-top: 30px;
}
.store-item {
    margin-bottom: 30px;
    height: 330px;
}
.store-item__img {
    height: 250px;
	overflow: hidden;
}
.cart-table__img {
	text-align: center;
}
.cart-table__img img {
	display: block;
	margin: 5px auto;
}
.cart-table__img a {
	margin-bottom: 10px;
}
.cart-table__price, .cart-table__quantity, .cart-table__total, .cart-table__clear {
	text-align: center;
	padding-top: 0 !important;
}
}
.proopc-column3
{

}
.customer-comment
{
	border:none;
	width:100%;
	resize: none;
	outline: none;
}
textarea.virtuemart:hover, textarea.customer-comment:hover
{
	background:white;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    /* display: none; <- Crashes Chrome on hover */
    -webkit-appearance: none;
    margin: 0; /* <-- Apparently some margin are still there even though it's hidden */
}
/* ----------------------------------------------------------------------------------- */

@media screen and (max-width: 550px) {
header {
    height: 660px;
}
.header-text {
    padding: 40px 0 0 15px;
}
ol.custom-list {
    padding: 0 0 0 15px;
}
ol.custom-list > li::before {
    left: -7px;
    top: -1px;
    font-size: 20px;
    width: 30px;
    height: 30px;
    line-height: 30px;
}
ol.custom-list > li {
    padding: 0 0 0 40px;
    margin: 0 0 20px;
}
.welcome {
    padding-bottom: 10px;
}
.cart-table tr td:not(first-child) {
    padding-left: 0px;
    padding-right: 10px;
}
.cart-table__price span {
    font-size: 14px;
}
.cart-table__quantity input {
    width: 40px;
    height: 30px;
    color: black;
}
.cart-table__total {
    font-size: 14px;
}
.customer-details {
    margin: 30px 0 0;
}
}

.placeholder-input.error{
  border-color: #ff4141;
}
.placeholder-input.error span{
  color: #ff4141;
}
.response-form{
  margin-bottom: 15px;
}
.response-form .success{
  display: none;
  color: #47b44f;
}
.response-form .error{
  display: none;
  color: #ff4141;
}


.fancy-tos-container {
	max-width:560px;
	padding:0;
	margin:0;
	background:#FFF
}

.fancy-tos-body {
	font:12px/1.55 Verdana,helvetica,sans-serif;
	padding:10px 15px;
	max-height:500px;
	overflow-y:scroll
}

.fancy-tos-head > h3.fancy-tos-title {
	font:12px/1.55 Verdana,helvetica,sans-serif;
	margin:0;
	line-height:30px;
	font-size:1.4em
}

.fancy-close:hover,.fancy-close:focus {
	color:#000;
	text-decoration:none;
	cursor:pointer;
	opacity:.4;
	filter:alpha(opacity=40)
}

.fancy-close {
	float:right;
	font-size:20px;
	font-weight:400;
	line-height:20px;
	color:#000;
	text-shadow:0 1px 0 #FFF;
	opacity:.2;
	filter:alpha(opacity=20);
	padding:0;
	cursor:pointer;
	background:0 none;
	border:0 none;
	-webkit-appearance:none
}
.proopc-checkout-box
{
	margin:25px 0;
}
.fancy-tos-head {
	font:12px/1.55 Verdana,helvetica,sans-serif;
	padding:9px 15px;
	border-bottom:1px solid #EEE
}

#fancybox-wrap #facebox .content > div,#fancybox-wrap #fancybox-content > div {
	padding-bottom:0
}

.proopc-login-form.soft-hide {
	opacity: 0;
}
.soft-hide {
	display:none;
	opacity:0
}

@media(max-width: 990px)
{
	.mt-35
	{
		margin:auto!important;
	}
	.mt-45
	{
		margin:auto!important;
	}
}

@media screen and (max-width: 767px){
  .header-mobile .navbar-nav{
    position: absolute;
    width: 100%;
    background: #fff;
    left: 0;
    z-index: 999999;
  }
  .header-mobile{
    display: block;
  }
  .header-mobile .header-info__buy{
    line-height: 55px;
  }
  .header-desktop{
    display: none;
  }
  .header-mobile .mobile-menu-block{
    display: flex;
    justify-content: space-around;
  }
  .header-mobile .header-info__basket{
    margin-top: 14px;
  }
}

@media screen and (min-width: 767px){
  .header-desktop{
    display: block;
  }
  .header-mobile{
    display: none;
  }
}

/* ----------------------------------------------------------------------------------- */
/* * - END of @media ---------------------------------------------------------- */

.product-info__price .old-price { font-size: 40px; margin: 0 10px; }
#fancybox-content { background: #fff; }
.continue_link  { 
    padding: 0 12px;
    height: 36px;
    line-height: 34px;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    background: #47b44f;
    color: #fff;
    border-radius: 18px;
    -webkit-box-shadow: 0px 25px 40px -23px rgba(71,180,79,1);
    -moz-box-shadow: 0px 25px 40px -23px rgba(71,180,79,1);
    box-shadow: 0px 25px 40px -23px rgba(71,180,79,1);
    outline: none;
	margin: 15px 0;
	display: inline-block; }
.showcart { 
    padding: 0 12px;
    text-align: center;
    height: 38px;
	line-height: 38px;
    background: #fff;
    border: 1px solid #47b44f;
    border-radius: 20px; 
	margin: 15px 0;
	color: #444;
	display: inline-block; }

.proopc-alert.proopc-error-msg {
	background: rgba(247, 6, 58, 0.6);
	font-size: 20px;
	padding: 30px;
	color: #fff;
	margin-top: 50px;
}
.proopc-alert.proopc-success-msg {
	background: rgba(6, 247, 58, 0.6);
	font-size: 20px;
    padding: 30px;
    color: #fff;
    margin-top: 50px;
}
.proopc-task-updateqty {
	background: none;
	border: 2px solid #A0A0A0;
	border-radius: 50%;
	outline: none;
	width: 24px;
	height: 24px;
	padding: 3px;
}
.proopc-task-updateqty:HOVER {
	border: 2px solid #2F2F2F;
}
.proopc-task-updateqty:HOVER svg path {
	fill: #2F2F2F;
	background: #2F2F2F;
}
.proopc-task-updateqty svg {
	width: 100%;
	height: 100%;
	display: block;
}
#myVerify .modal-header h3 {
	text-align: center;
	padding-bottom: 15px;
	border-bottom: 1px solid #cecece;
	margin: 0 -15px;
	text-indent: 30px;
}
#verify-form img {
	margin: 20px auto;
}
#EditBTAddres .insurance-group.placeholder-input {
	display: none;
}
.verify_link { cursor: pointer; }
@media (max-width: 768px) {
	.continue_link { width: 100%; }
	.showcart { width: 100%; margin-top: 0; }
}