/*@font-face {
  font-family: "Quicksand";
  src: url("./fonts/Quicksand/Quicksand.eot");
  src: url("./fonts/Quicksand/Quicksand.eot?#iefix") format("embedded-opentype"), url("./fonts/Quicksand/Quicksand.woff2") format("woff2"), url("./fonts/Quicksand/Quicksand.woff") format("woff"), url("./fonts/Quicksand/Quicksand.svg#montserratregular") format("svg");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Quicksand";
  src: url("./fonts/Quicksand/Quicksand.eot");
  src: url("./fonts/Quicksand/Quicksand.eot?#iefix") format("embedded-opentype"), url("./fonts/Quicksand/Quicksand.woff2") format("woff2"), url("./fonts/Quicksand/Quicksand.woff") format("woff"), url("./fonts/Quicksand/Quicksand.svg#montserratregular") format("svg");
  font-weight: normal;
  font-style: normal;
} */
* {
	box-sizing: border-box;
}
.visible-mob {
	display: none;
}
.icon:before {
	content: "";
	display: inline-block;
	vertical-align: middle;
	background-image: url("./img/sprite.png");
	background-repeat: no-repeat;
}
/*#pagewrap {
	padding-top: 125px !important;
}*/





/* ****** */
/* Loader */
/* ****** */
@keyframes lds-blocks {
  0% {
    background: #376888;
  }
  12.5% {
    background: #376888;
  }
  12.625% {
    background: #8cd0e5;
  }
  100% {
    background: #8cd0e5;
  }
}
@-webkit-keyframes lds-blocks {
  0% {
    background: #376888;
  }
  12.5% {
    background: #376888;
  }
  12.625% {
    background: #8cd0e5;
  }
  100% {
    background: #8cd0e5;
  }
}
.loader {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background-color: rgba(0,0,0,.8);
	justify-content: center;
	align-items: center;
	z-index: 1000;
	display: none;
}
.loader.loading {
	display: flex;
}
.lds-blocks {
	position: relative;
}
.lds-blocks div {
	position: absolute;
	width: 40px;
	height: 40px;
	background: #8cd0e5;
	-webkit-animation: lds-blocks 1s linear infinite;
	animation: lds-blocks 1s linear infinite;
}
.lds-blocks {
	width: 60px !important;
	height: 60px !important;
	-webkit-transform: translate(-30px, -30px) scale(0.3) translate(30px, 30px);
	transform: translate(-30px, -30px) scale(0.3) translate(30px, 30px);
}





/* **** */
/* Cart */
/* **** */
.smart-cart-box {

	position: absolute;
	right: 0;
    display: none;
    top: 100%;
    width: auto;
    background: #F3F3F3;
    flex-direction: column;
    border: 1px solid #ddd;
    margin-top: -75px;
	font-size: 16px;
	line-height: 1.2;
	padding: 5px 10px;
}
.smart-cart-box:hover {
	box-shadow: 1px 1px 1px rgba(0,0,0,.3);
}
.smart-cart-box .smart-cart {
	display: flex;
	align-items: center;
	cursor: pointer;
}
.smart-cart-box > .btn-container {
	display: none;
}
.smart-cart-box .icon-cart {
	margin-right: 10px;
}
.smart-cart-box .icon-cart:before {
    width: 28px;
    height: 24px;
    background-position: -29px -66px;
}
.smart-cart-box .count {
	margin-left: 5px;
	font-weight: bold;
}
.smart-cart-box .amount {
	font-weight: bold;
	text-align: center;
}
.smart-cart-box .smart-cart-ordered {
	display: none;
	padding-top: 10px;
	padding-bottom: 5px;
}
.smart-cart-box .smart-cart-ordered.active {
	display: block;
}
.smart-cart-box .smart-cart-ordered .amount-data {
	display: flex;
	justify-content: space-between;
	margin-bottom: 10px;
}
.smart-cart-box .smart-cart-ordered .total-price {
	font-weight: bold;
}
.smart-cart-box .smart-cart-ordered .btn-checkout-container {
	text-align: center;
}
.smart-cart-box .smart-cart-ordered .btn-checkout {
	background-color: #27b4dd;
	color: #fff;
	display: inline-block;
	padding: 10px 25px;
}
.smart-cart-box .list-menu {
	background-color: #fff;
	margin: 0;
	list-style: none;
	margin-bottom: 10px;
}
.smart-cart-box .list-menu-item {
	display: flex;
	padding: 5px 10px;
	margin: 0;
	border-top: 2px dotted #d8f6fe;
}
.smart-cart-box .list-menu-item:first-child {
	border-top: none;
}
.smart-cart-box .view {
	margin-right: 10px;
}
.smart-cart-box .view img {
	width: 43px;
	height: auto;
}
.smart-cart-box .list-menu-item .name {
	margin-bottom: 5px;
}
.smart-cart-box .list-menu-item .desc {
	margin-bottom: 5px;
	font-size: 12px;
}
.smart-cart-box .list-menu-item .price {
	font-weight: bold;
}





/* ********* */
/* prod-wrap */
/* ********* */
.prod-wrap {
	font-size: 17px;
	font-family: Quicksand;
	position: relative;
	margin-bottom: 15px;
}
.prod-wrap:hover {
	box-shadow: 0 5px 1px -1px rgba(0,0,0,.1);
}
.prod-wrap:after {
	content: '';
	position: absolute;
	background: url("./img/ic1.png") no-repeat 0 0;
	height: 40px;
	width: 40px;
	right: -11px;
	top: -11px;
	z-index: 100;
}
.prod-wrap * {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.prod-wrap .inside {
	height: 240px;
	overflow: hidden;
	background-color: #fff;
	border: 1px solid #d8d8d8;
	border-radius: 5px;
}
.prod-wrap .prod-head {
	display: flex;
	margin: 0;
	padding: 15px 15px 0;
	height: 80px;
}
.prod-wrap .name-wrapper {
	display: flex;
	align-items: center;
}
.prod-wrap .prod-head h3 {
	font-size: 12px;
	padding: 0;
	line-height: 1.2;
}
.prod-wrap .prod-head a {
	color: rgb(81, 81, 81);
	font-weight: bold;
}
.prod-wrap .pic {
	margin-right: 15px;
}
.prod-wrap .descr-row {
	padding: 0 15px;
	border-bottom: 1px solid #d8d8d8;
	border-radius: 5px;
}
.prod-wrap .desc1 {
	height: 70px;
	overflow: hidden;
	padding: 15px 0 5px;
	position: relative;
	line-height: 18px;
}
.prod-wrap .prod-more {
	padding-bottom: 15px;
	padding-right: 10px;
	text-align: right;
	line-height: 1.5;
}
.prod-wrap .prod-more a {
	color: #EE2B31;
	text-decoration: none;
}
.prod-wrap .controls-row {
	background-color: #f8f8f8;
	padding: 0 15px;
	display: flex;
	justify-content: space-between;
	height: 54px;
}
.prod-wrap .price {
	display: flex;
	align-items: center;
	padding-left: 5px;
	color: #9c9c9c;
	line-height: 1.2;
}
.prod-wrap .prod-price {
	margin-right: 5px;
	color: #494949;
	font-size: 17px;
	font-weight: bold;
	white-space: nowrap;
}
.prod-wrap .add-inf {
	margin-right: -15px;
	display: flex;
	align-items: center;
	padding-right: 10px;
	padding-left: 40px;
	position: relative;
	border-radius: 5px 0 0 5px;
}
.prod-wrap .add-inf:hover {
	background-color: #FF5473;
}
.prod-wrap .add-inf a {
	color: #b6b6b6;
	font-size: 16px;
}
.prod-wrap .add-inf:hover a {
	color: #fff;
}
.prod-wrap .add-inf a:before {
	content: '';
	background: url("./img/spr.png") no-repeat scroll -154px -70px transparent;
	height: 34px;
	left: 8px;
	position: absolute;
	top: 9px;
	width: 30px;
}
.prod-wrap .add-inf:hover a:before {
	background: url("./img/spr.png") no-repeat scroll -242px -70px transparent;
}





/* ********************************* */
/* tbl-product, tbl-cart, tbl-method */
/* ********************************* */
.tbl-product table,
.tbl-cart table,
.tbl-method table {
	width: 100%;
	margin-bottom: 15px;
	border-collapse: collapse;
	border: none !important;
}
	.tbl-product th,
	.tbl-product td,
	.tbl-cart th,
	.tbl-cart td,
	.tbl-method th,
	.tbl-method td {
		text-align: center;
		font-family: "Quicksand", sans-serif;
		padding: 15px;
		font-size: 24px;
		text-transform: uppercase;
		color: #3d3d3d;
	}
	.tbl-product th:first-child,
	.tbl-product td:first-child,
	.tbl-cart th:first-child,
	.tbl-cart td:first-child {
		text-align: left;
	}
	.tbl-product thead th,
	.tbl-cart thead th,
	.tbl-method thead th {
		font-size: 13px;
		line-height: 1.5;
		color: #b9b2ac;
		text-transform: none;
		padding: 5px 15px;
		border-bottom: 1px solid #efe4db;
	}
	.tbl-product tbody td,
	.tbl-cart tbody td,
	.tbl-method tbody td {
		font-weight: bold;
	}
	.tbl-product tbody tr:last-child td,
	.tbl-product tbody tr:last-child th,
	.tbl-cart tbody tr:last-child td,
	.tbl-cart tbody tr:last-child th,
	.tbl-method tbody td,
	.tbl-method tbody th {
		border-bottom: 1px solid #efe4db;
	}


.tbl-product tbody td:first-child {
	font-size: 18px;
	font-weight: normal;
}
	.tbl-product tbody .saving {
		color: #EE2B31;
	}
	.tbl-product .btn {
		font-size: 16px;
		background-color: #fff;
		color: #3d3d3d;
		border: 2px solid #EE2B31;
		padding: 6px 20px 2px 10px;
		font-weight: bold;
		min-height: 38px;
	}
	.tbl-product .btn:hover {
		background-color: #F9B8BA;
	}
	.tbl-product .icon-cart-plus-red {
		display: inline-block;
		position: relative;
		top: -2px;
		left: -2px;
	}
	.tbl-product .icon-cart-plus-red:before {
		width: 26px;
		height: 21px;
		background-position: -24px -91px;
	}
	.tbl-product .row-star td {
		padding-top: 0;
		padding-bottom: 0;
	}
	.tbl-product .row-star ul {
		margin: 0;
	}
	.tbl-product .row-star li {
		font-family: "Quicksand", sans-serif;
		font-size: 13px;
		color: #EE2B31;
		text-transform: none;
		list-style-type: none;
		position: relative;
		line-height: 1;
		padding: 0 0 0 10px;
		top: -12px;
	}
	.tbl-product .row-star li:before {
		content: "";
		display: block;
		position: absolute;
		height: 4px;
		width: 4px;
		border-radius: 50%;
		background-color: #EE2B31;
		left: 0;
		top: 50%;
		margin-top: -2px;
	}



.tbl-cart .table tbody .td-inner {
	display: flex;
	align-items: center;
	justify-content: center;
}
	.tbl-cart .table tbody td:first-child .td-inner {
		justify-content: flex-start;
	}
	.tbl-cart .table tbody .title {
		display: inline-block;
		padding-left: 40px;
		font-size: 16px;
		text-transform: none;
	}
	.tbl-cart .table tbody .title div {
		line-height: 1;
	}
	.tbl-cart .table tbody .package {
		font-weight: normal;
		font-size: 16px;
	}
	.tbl-cart .table .counter {
		border: 1px solid #e9c8c1;
		border-radius: 4px;
		background-color: #fff;
		width: 116px;
		height: 38px;
		display: flex;
		justify-content: space-between;
		align-items: center;
		padding: 0 15px;
		margin-top: 5px;
	}
	.tbl-cart .table .counter button {
		width: 18px;
		height: 18px;
		border: 2px solid #e9c8c1;
		border-radius: 50%;
		position: relative;
		outline: none;
		padding: 0;
		background-color: #fff;
	}
	.tbl-cart .table .counter button:before,
	.tbl-cart .table .counter button.increment:after {
		content: "";
		display: block;
		position: absolute;
		background-color: #e9c8c1;
		top: 50%;
		left: 50%;
	}
	.tbl-cart .table .counter button:before {
		height: 2px;	
		width: 8px;
		margin-top: -1px;
		margin-left: -4px;
	}
	.tbl-cart .table .counter button.increment:after {
		height: 8px;
		width: 2px;
		margin-top: -4px;
		margin-left: -1px;
	}
	.tbl-cart .table .counter input {
		padding: 0;
		width: 36px;
		height: 30px;
		text-align: center;
		border: none;
		margin-bottom: -2px;
		background-color: #fff;
		color: #3d3d3d;
		margin-top: 0;
		font-size: 16px;
	}
	.tbl-cart .icon-remove {
		cursor: pointer;
	}
	.tbl-cart .icon-remove:before {
		width: 23px;
		height: 25px;
		background-position: -107px -50px;
	}
	.tbl-cart .icon-remove:hover:before {
		background-position: 0 -91px;
	}
	.tbl-cart .table {
		margin-bottom: 30px;
	}
	.tbl-cart .table tbody .upgrade td {
		padding-top: 0;
		border-top-width: 0;
		text-align: left;
		padding-bottom: 5px;
	}
	.tbl-cart .table tbody .upgrade a {
		color: #EE2B31;
		font-size: 16px;
		text-transform: none;
		font-weight: bold;
		line-height: 1;
	}
	.tbl-cart .table tbody .qty {
		font-size: 16px;
	}
	.tbl-cart .table tbody .price,
	.tbl-cart .table tbody .subtotal {
		white-space: nowrap;
	}
	.tbl-cart .table tbody .icon-upgrade:before {
		background-position: -107px -76px;
		width: 14px;
		height: 9px;
		margin-right: 7px;
		margin-top: -2px;
	}
	.tbl-cart .row-bonus td {
		background-color: #F9B8BA;
	}
	.tbl-cart .row-bonus td:first-child {
		border-left: 1px solid #efe4db;
	}
	.tbl-cart .row-bonus td:last-child {
		border-right: 1px solid #efe4db;
	}
	.tbl-cart .row-bonus .dosage span {
		background-color: #EE2B31;
		color: #fff;
		display: inline-block;
		font-size: 13px;
		font-family: "Quicksand", sans-serif;
		height: 18px;
		line-height: 18px;
		padding-right: 6px;
		padding-left: 4px;
		white-space: nowrap;
	}
	.tbl-cart .row-bonus .dosage .icon {
		margin-right: 2px;
	}
	.tbl-cart .row-bonus .icon-bonus:before {
		width: 15px;
		height: 14px;
		background-position: -132px -63px;
	}



.tbl-method {}
	.tbl-method table {
		margin-bottom: 30px;
	}
	.tbl-method td {
		text-transform: none;
	}
	.tbl-method .custom-radio {
		display: flex;
	}
	.tbl-method .custom-radio input[type="radio"] {
		display: none;
	}
	.tbl-method .custom-radio input[type="radio"] + label {
		position: relative;
		padding-left: 90px;
		display: flex;
		min-height: 34px;
		align-items: center;
		text-transform: none;
		font-size: 16px;
		line-height: 1.1;
	}
	.tbl-method .custom-radio input[type="radio"] + label .radio-custom {
		content: "";
		display: block;
		width: 30px;
		height: 30px;
		margin-right: 14px;
		position: absolute;
		top: 0;
		left: 0;
		border: 2px solid #e9c8c1;
		background-color: #F9B8BA;
		border-radius: 50%;
	}
	.tbl-method .custom-radio input[type="radio"]:checked + label .radio-custom {
		background-color: #fff;
		border-color: #EE2B31;
	}
	.tbl-method .custom-radio input[type="radio"]:checked + label .radio-custom:after {
		content: "";
		display: block;
		position: absolute;
		top: 50%;
		left: 50%;
		margin-top: -6px;
		margin-left: -6px;
		width: 12px;
		height: 12px;
		border-radius: 50%;
		background-color: #EE2B31;
	}
	.tbl-method .block-total {
		display: flex;
		justify-content: flex-end;
		font-size: 24px;
		color: #EE2B31;
		text-transform: capitalize;
		margin-right: 64px;
		margin-bottom: 40px;
	}
	.tbl-method .block-total span {
		margin-left: 60px;
		color: #3d3d3d;
		font-weight: bold;
	}
	.tbl-method .btn-block {
		display: flex;
		flex-direction: row-reverse;
		justify-content: space-between;
		align-items: flex-start;
	}
	.tbl-method .btn-group {
		display: flex;
	}
	.tbl-method .btn-block .btn-checkout {
		background-color: #EE2B31;
		border: 1px solid #EE2B31;
		color: #fff;
		padding-right: 24px;
		padding-left: 60px;
		text-transform: uppercase;
		height: 56px;
		line-height: 54px;
		padding-top: 0;
		padding-bottom: 0;
		position: relative;
		text-align: center;
		outline: none;
		font-size: 16px;
		font-weight: bold;
	}
	.tbl-method .icon-checkout:before {
		position: absolute;
		display: block;
		left: 17px;
		top: 50%;
		margin-top: -8px;
		background-position: -51px -91px;
		width: 32px;
		height: 16px;
	}
	.tbl-method .btn-block .sertified {
		font-size: 13px;
		font-family: "Quicksand", sans-serif;
		color: #989898;
	}
	.dosage-control {
		display: none;
	}





/* ************** */
/* footer-content */
/* ************** */
.site.footer-content {
	background-color: #f3f3f3;
	margin-bottom: 3em;
}
.site.footer-content:after {
	display: none;
}
.site.footer-content .pagewidth {
	padding: 40px 15px 62px;
	display: flex;
	justify-content: space-between;
}
.site.footer-content .pagewidth > div {
	width: 30%;
}
#footerwrap .site.footer-content a {
	color: #3d3d3d;
}
.site.footer-content ul {
	margin: 0;
	list-style: none;
}
.site.footer-content h2 {
	padding: 0;
	margin: 16px 0;
}
.site.footer-content h2,
.site.footer-content .heading-footer {
	font-size: 24px;
	text-align: left;
	font-family: "Quicksand", sans-serif;
	font-weight: bold;
	color: #3d3d3d;
	text-transform: uppercase;
}
.site.footer-content .accordeon .heading-footer {
	background-color: #f7efed;
	padding: 7px 20px 2px 9px;
	border-bottom: 1px solid #e1e1e1;
}
.site.footer-content .accordeon .heading-footer:before {
	content: "";
	display: inline-block;
	vertical-align: middle;
	width: 24px;
	height: 15px;
	margin-right: 7px;
	background: url("./img/arr-left.png") no-repeat;
}
.site.footer-content .accordeon li {
	text-transform: uppercase;
	font-size: 16px;
	border-bottom: 1px solid #e1e1e1;
	font-family: "Quicksand", sans-serif;
	margin-bottom: 0;
	padding: 0;
	text-align: left;
}
.site.footer-content .accordeon a {
	display: block;
	padding: 6px 20px 3px 9px;
	line-height: 1.5;
	position: relative;
}
.site.footer-content .accordeon a:after {
	content: "";
	display: block;
	position: absolute;
	right: 12px;
	top: 11px;
	width: 7px;
	height: 11px;
	background: url("./img/arrow-gray.png") no-repeat;
}
.site.footer-content .list-contacts li {
	padding: 0;
	white-space: nowrap;
	text-align: left;
}
.site.footer-content .list-contacts li:last-child img {
	height: auto;
	text-align: left;
}
.site.footer-content .list-contacts span {
	color: #EE2B31;
	font-size: 16px;
	text-transform: none;
	margin-left: 5px;
	font-style: italic;
	font-family: "Quicksand", sans-serif;
	text-align: left;
}
.site.footer-content .list-contacts img {
	display: inline-block;
	width: auto;
	height: 20px;
	vertical-align: middle;
	text-align: left;
}
.site.footer-content .icon {
	font-size: 0;
	vertical-align: middle;
	display: inline-block;
}
.site.footer-content .icon:before {
	border: 3px solid #fff;
	border-radius: 4px;
	margin-right: 4px;
}
.site.footer-content .icon-flag-us:before {
	background-position: -107px -25px;
	width: 24px;
	height: 24px;
}
.site.footer-content .icon-flag-uk:before {
	background-position: -107px 0px;
	width: 24px;
	height: 24px;
}
.site.footer-content .support {
	display: flex;
	color: #EE2B31;
	text-transform: uppercase;
	margin-bottom: 55px;
}
.site.footer-content .support-xs {
	display: none;
}
.site.footer-content .support-text {
	font-family: "Quicksand", sans-serif;
	font-size: 24px;
	padding-left: 10px;
	font-weight: bold;
	padding-top: 14px;
	line-height: 1.2;
}
.site.footer-content .status {
	font-family: "Quicksand", sans-serif;
	font-size: 11px;
	margin-top: 12px;
	font-weight: normal;
}
.site.footer-content .status:before {
	content: "";
	display: inline-block;
	vertical-align: middle;
	width: 6px;
	height: 6px;
	background-color: #93d227;
	border-radius: 50%;
	margin-right: 5px;
}
.site.footer-content .certificate {
	display: flex;
	align-items: center;
}
.site.footer-content .certificate img {
	width: 124px;
	height: auto;
	margin-right: 10px;
}
.themify_builder_row {
	padding: 2%;
}





@media (max-width: 1200px) {
	.smart-cart-box {
		margin-top: 15px;
		/*position: static;
		margin-bottom: 15px;*/
	}
}





@media (max-width: 1024px) {
	.tbl-product tbody td,
	.tbl-product tbody th {
		font-size: 18px;
	}
	.site.footer-content .footer-info,
	.site.footer-content .footer-contacts {
		display: none;
	}
	.site.footer-content .pagewidth > div {
		width: 100%;
	}
	.site.footer-content .support-container {
		width: 100%;
		display: flex;
		flex-direction: column;
		align-items: center;
	}
	.site.footer-content .support-lg {
		display: none;
	}
	.site.footer-content .support-xs {
		display: block;
	}
	.site.footer-content .support {
		align-items: center;
	}
	.site.footer-content .support-text {
		font-size: 18px;
		text-align: center;
		padding-top: 0;
	}
	.site.footer-content .status {
		font-size: 11px;
		margin-top: 0;
	}
}





@media (max-width: 991px) {
	/* ********* */
	/* prod-wrap */
	/* ********* */
	.prod-wrap .add-inf span {
		font-size: 12px;
	}





	/* ******** */
	/* tbl-cart */
	/* ******** */
	.tbl-cart .product img {
		width: 43px;
		height: auto;
	}
	.tbl-cart .table tbody .title {
		padding-left: 14px;
	}
}





@media (max-width: 767px) {
	.visible-mob {
		display: block;
	}
	.hide-mob {
		display: none;
	}
	.dosage-control {
		display: block;
		margin-bottom: 15px;
	}
	.dosage-control select {
		outline: none;
	}





	/* ********* */
	/* prod-wrap */
	/* ********* */
	.prod-wrap .add-inf {
		padding-right: 0;
	}
	.prod-wrap .add-inf a:before {
		left: 6px;
	}
	.prod-wrap .add-inf span {
		display: none;
	}





	/* ******** */
	/* tbl-cart */
	/* ******** */
	.tbl-cart {
		font-size: 16px;
	}
		.tbl-cart table,
		.tbl-cart tbody,
		.tbl-cart thead,
		.tbl-cart tfoot,
		.tbl-cart tr,
		.tbl-cart th,
		.tbl-cart td {
			display: block;
		}
		.tbl-cart thead tr {
			border-bottom: 1px solid #efe4db;
		}
		.tbl-cart thead th {
			display: none;
			border-bottom: none;
		}
		.tbl-cart thead th:first-child {
			display: block;
		}
		.tbl-cart .table tr {
			display: flex;
			flex-wrap: wrap;
			justify-content: space-between;
		}
		.tbl-cart tbody {
			border-bottom: 1px solid #efe4db;
		}
		.tbl-cart tbody tr:last-child td {
			border-bottom: none;
		}
		.tbl-cart tbody .product {
			order: 1;
			padding: 16px 0 0 7px;
			width: 80%;
		}
		.tbl-cart tbody .delete {
			order: 2;
			width: 20%;
		}
		.tbl-cart tbody .qty {
			order: 4;
		}
		.tbl-cart tbody .subtotal {
			order: 6;
		}
		.tbl-cart tbody .package,
		.tbl-cart tbody .price {
			display: none;
		}
		.tbl-cart tbody .price .td-inner,
		.tbl-cart tbody .subtotal .td-inner {
			font-size: 18px;
		}
		.tbl-cart .row-bonus {
			border-left: 1px solid #efe4db;
			border-right: 1px solid #efe4db;
			background-color: #F9B8BA;
		}
		.tbl-cart .row-bonus td:first-child {
			border-left: none;
		}
		.tbl-cart .row-bonus td:last-child {
			border-right: none;
		}
		.tbl-method tbody tr {
			display: flex;
			justify-content: space-between;
			flex-direction: row;
			height: 78px;
		}
		.tbl-method tbody tr:first-child {
			border-bottom: 1px solid #efe4db;
		}
		.tbl-method tbody td {
			border: none;
			display: flex;
			align-items: center;
		}
		.tbl-method td:last-child .td-inner {
			display: flex;
			height: 100%;
			align-items: center;
			font-size: 24px;
		}
		.tbl-method .block-total {
			margin-right: 0;
		}
		.tbl-method .block-total span {
			margin-left: 5px;
		}
		.tbl-method .btn-block {
			flex-direction: column;
		}
		.tbl-method .btn-group {
			width: 100%;
			display: flex;
			justify-content: flex-end;
			margin-bottom: 30px;
		}
		.tbl-method .sertified {
			width: 100%;
			display: flex;
			justify-content: center;
			flex-direction: row;
		}
		.tbl-method .custom-radio input[type="radio"] + label {
			padding-left: 50px;
		}





		/* *********** */
		/* tbl-product */
		/* *********** */
		.tbl-product > table {
			display: none;
		}
		.tbl-product > table.active {
			display: block;
		}
		.tbl-product tbody,
		.tbl-product tfoot,
		.tbl-product th,
		.tbl-product td {
			display: block;
		}
		.tbl-product thead,
		.tbl-product tbody .per_pill,
		.tbl-product tbody .saving {
			display: none;
		}
		.tbl-product tr {
			display: flex;
			justify-content: space-between;
		}
		.tbl-product tbody {
			border-top: 1px solid #efe4db;
		}
		.tbl-product tbody:last-child {
			border-bottom: 1px solid #efe4db;
		}
		.tbl-product tbody td:first-child {
			font-size: 14px;
		}
		.tbl-product tbody tr:last-child td {
			border-bottom: none;
		}
		.tbl-product .btn {
			padding-right: 10px;
		}
		.tbl-product .btn-rdd {
			border-radius: 50%;
			height: 50px;
			width: 50px;
		}
		.tbl-product tbody .price span {
			color: #EE2B31;
			font-size: 14px;
			text-transform: none;
			line-height: 1.2;
		}
		.tbl-product .btn-rdd:hover {
			background-color: #EE2B31;
		}
		.tbl-product .btn-rdd:hover .icon-cart-plus-red:before {
			width: 28px;
			height: 24px;
			background: url("./img/check.png") no-repeat 0 0;
		}
		.tbl-product .row-star td {
			margin: auto;
		}
		.tbl-product .row-star li {
			font-size: 11px;
		}
}