* {
	margin: 0px;
	padding: 0px;
	box-sizing: border-box;
}

body {
	font-size: 18px;
	font-family: Arial, Helvetica, sans-serif;
	color: black;
	background: #64b4bf none repeat scroll 0% 0%;
	height: 100%;
}

input {
	outline: medium none;
}

a {
	color: red;
}

a:hover {
	color: rgb(176, 73, 59);
}

a img {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

a:focus {
	outline: medium none;
}

h1 {
	font-size: 24px;
}

h2 {
	font-size: 22px;
	font-weight: normal;
}

img {
	border-radius: 5px;
}

.header {
	background-color: #02c2c8;
	overflow: auto;
	padding: 0 15px;
}

.alignCenter {
	text-align: center !important;
}

.margin_0 {
	margin: 0 !important;
}

.container {
	position: relative;
	margin: 0px auto;
	width: 1000px;
	overflow: auto;
}

button,
.link_btn {
	background: red;
	border: 3px solid white;
	border-radius: 8px;
	box-shadow: 0 3px 7px #666666;
	color: #fff;
	display: block;
	font-size: 17px;
	font-weight: bold;
	margin: 20px auto;
	padding: 20px;
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
	width: 100%;
	transition: .3s;
	cursor: pointer;
	color: white;
}

.link_btn {
	max-width: 250px;
}

button:hover,
.link_btn:hover {
	background: #00AEEF;
	box-shadow: 0 0 5px #3f5b77;
	text-decoration: none !important;
	text-shadow: 0 0 3px #000000;
	color: white;
}

.date {
	font-size: 14px;
	float: right;
}

.logo {
	display: table;
	float: left;
	margin: 10px 0;
}

.logo>* {
	display: table-cell;
	vertical-align: middle;
	margin: 10px;
}

.logo h1 {
	color: #fff;
	font-size: 33px;
	text-transform: uppercase;
	padding-left: 15px;
}

.logo h1 span {
	text-transform: none;
	font-size: 16px;
}

.menu {
	background: #e6faf8 none repeat scroll 0% 0%;
	height: 50px;
	box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.38);
}

.menu ul {
	list-style: outside none none;
}

.menu ul li {
	display: inline-block;
	padding: 14px 6px;
	position: relative;
}

.menu a {
	text-transform: uppercase;
	font-size: 12px;
	color: #000;
	text-decoration: none;
}

.menu a:hover {
	text-decoration: underline;
}

.editor {
	overflow: auto;
}

.editor img {
	float: left;
	margin: 0 10px 0 0;
	max-width: 300px;
	width: 50%;
}

.center_img {
	display: block;
	margin: 0 auto;
	width: 100%;
	max-width: 450px;
}



.inner p {
	color: #2a2a2a;
	margin: 15px 0;
	text-align: left;
	font-size: 18px;
	line-height: 1.4;
}

.inner h3 {
	font-size: 22px;
	font-weight: bold;
	line-height: 24px;
	margin: 10px 0;
}

.inner ul {
	margin-left: 30px;
	margin-bottom: 15px;
}

.inner h3 span {
	font-size: 18px;
}

.inner {
	background: #fff;
	padding: 0px 30px 10px;
	line-height: 1.5;
}

.inner h2 {
	font-size: 35px;
	font-weight: bold;
	line-height: 1.2;
	padding: 20px 0;
	text-transform: uppercase;
	text-align: center;
}

.comments {

	font-size: 15px;
	color: black;
	text-decoration: none;
}

.comments_header {
	background: rgb(218, 226, 232) none repeat scroll 0% 0%;
	padding: 4px 4px 4px 6px;
	margin-bottom: 10px;
	color: rgb(69, 104, 142);
	font-weight: bold;
}

.comment {
	display: flex;
	align-items: flex-start;
	margin-bottom: 15px;
	position: relative;
	border-bottom: 1px solid rgb(218, 225, 232);
	padding-bottom: 15px;
	overflow: auto;
	font-size: 17px;
	width: 100%;
}

.comment__body {
	width: 100%;
	line-height: 1.3;
}

.comment picture {
	flex-shrink: 0;
}

.comment--last {
	border-bottom: 0;
	padding-bottom: 0;
	margin-bottom: 30px;
}

.comment img {
	/*float: left;*/
	margin-right: 10px;
}

.comment .comment__img {
	max-width: 100%;
	width: 400px;
	margin-right: 0;
	margin-top: 10px;
}

.comment .comment__img--vertical {
	max-width: 100%;
	width: 300px;
}

.comment_name {
	color: rgb(43, 88, 122);
	font-weight: bold;
	font-size: 17px;
	margin-bottom: 5px;
}

@media screen and (max-width: 1020px) {
	.menu {
		display: none;
	}

	.container {
		width: auto;
	}

	.inner {
		padding: 0 15px;
	}

	body img {
		max-width: 100%;
	}

	body {
		font-size: 18px;
	}
}

@media (max-width: 767px) {
	.inner h2 {
		font-size: 30px;
	}
}

@media screen and (max-width: 720px) {

	.inner {
		width: 100%;
	}

	p {
		margin: 2px;
	}
}

@media screen and (max-width: 520px) {
	body {
		font-size: 16px;
	}

	.logo {
		margin: 2px 0;
	}

	.logo h1 {
		font-size: 22px;
		line-height: 18px;
	}

	.logo h1 span {
		font-size: 14px;
	}

	.inner h2 {
		font-size: 21px;
	}

	.inner h3 {
		font-size: 18px;
	}

	.inner p {
		font-size: 16px;
		margin: 15px 0;
	}

	.logo img {
		width: 40px;
		margin-left: 10px;
	}

	.inner .inL_490366 {
		max-width: 220px;
	}

	.comment--answer {
		padding-left: 30px;
	}
}

@media screen and (max-width: 420px) {


	.inner h3 {
		font-size: 16px;
	}

	.inner h3 span {
		font-size: 14px;
	}

	.inner p {
		font-size: 16px;
	}

	.container {
		padding: 0px;
	}

	.button {
		width: 80% !important;
	}

	.inner {
		font-size: 16px;
	}
}

.order_block {
	text-align: center;
	font-family: 'Arial', sans-serif;
	margin: auto;
}

.order__text {
	margin-bottom: 22px;
	margin: 0 0 30px;
	font-weight: 700;
}

.order_block__wrapper {
	display: table;
	margin: 0 auto;
	border: 1px solid #cdcdcd;
	padding: 40px 15px 20px 15px;
	border-radius: 10px;
	width: 100%
}

.prod_img_wrapper {
	max-width: 100%;
	margin: 15px auto;
	position: relative;
}

.prod_img_wrapper {
	margin: 30px auto;
}

.form,
.prod_img_wrapper {
	display: table-cell;
}

.prod_img_wrapper {
	max-width: 300px;
	float: left;
	margin: 50px 0 0 0;
}

.prod_img {
	max-width: 300px;
	width: 100%;
	/* max-height: 300px; */
}

.pricec {
	position: absolute;
	font-family: Arial, sans-serif;
	left: 135px;
  top: -58px;
	color: rgb(0, 0, 0);
	box-shadow: rgba(0, 0, 0, 0.8) 0px 3px 30px;
	font-size: 19px;
	font-weight: bold;
	line-height: 1.3;
	transform: rotateZ(-7deg);
	text-align: center !important;
	padding: 10px 15px;
	margin: 0px auto;
	background: linear-gradient(to right, rgb(238, 165, 19) 0%, rgb(253, 237, 19) 100%);
	border-width: 2px;
	border-style: solid;
	border-color: rgb(255, 255, 255);
	border-image: initial;
	border-radius: 19%;
}

@media (max-width: 755px) {
	.pricec {
		left: 0px;
		top: -60px;
		box-shadow: rgba(0, 0, 0, 0.8) 0px 3px 6px;
	}
}

.price-block {
	display: none;
}

.price-block--active {
	display: block;
}

.js_old_price {
	display: block;
	margin: 0 auto;
}

.price_main {
	border-bottom: 2px solid #d31812;
	font-size: 24px;
	line-height: 15px;
	margin: 0 auto;
}

.js_old_price {
	display: block;
	margin: 0 auto;
}

.price_main {
	border-bottom: 2px solid #d31812;
	font-size: 24px;
	line-height: 15px;
	margin: 0 auto;
}

.js_old_price {
	display: block;
	margin: 0 auto;
}

.price_main {
	border-bottom: 2px solid #d31812;
	font-size: 24px;
	line-height: 15px;
	margin: 0 auto;
}

.countdown-wrapper {
	display: flex;
	justify-content: center;
	margin-bottom: 30px;
	font-weight: 600;
}

.order_block__time {
	margin-bottom: 0px;
	padding: 5px 30px;
	color: white;
	border-radius: 8px;
	-webkit-box-shadow: 5px 5px 15px 5px rgb(0 0 0 / 31%);
	box-shadow: 5px 5px 15px 5px rgb(0 0 0 / 31%);
	background-color: red;
	background-color: #f50000;
}

.inner .order_block__time {
	margin: 0;
}

.form {
	max-width: 400px;
	margin: 0 auto;
	vertical-align: middle;
}

.form__input {
	font-size: 16px;
	width: 100%;
	padding: 10px 15px;
	border: 1px solid #cdcdcd;
	box-sizing: border-box;
	margin-bottom: 20px;
	min-height: 50px;
	border-radius: 10px;
}

input {
	outline: 0 none;
}

@media screen and (max-width: 940px) {
	.form {
		max-width: 300px;
	}

	.prod_img_wrapper {
		max-width: 260px;
	}

	.order_block__wrapper {
		max-width: 700px;
	}
}

@media screen and (max-width: 755px) {
	.form {
		max-width: 330px;
		width: 100%;
		margin: 0 auto;
		display: block;
		float: none;
	}

	.prod_img_wrapper {
		max-width: 260px;
		display: block;
		float: none;
		margin: 0 auto;
	}

	.order_block__wrapper {
		max-width: 400px;
		width: 100%;
		padding: 80px 20px 20px;
		display: block;
	}
}

@media (max-width: 600px) {
	.form,
	.prod_img_wrapper {
		display: block;
	}
}

@media (max-width: 420px) {
	.order_block__wrapper {
		padding-left: 15px;
		padding-right: 15px;
	}
}

@media (max-width: 400px) {
	.prod_img {
		max-height: 200px;
	}

	.header {
		padding: 5px 15px;
	}
}

.pulse-button-wrapper {
	height: 100%;
	margin: 0 auto 0;
	backface-visibility: hidden;
	background: #fff;
	border: unset;
	outline: none;
	text-decoration: none !important;
	padding: 0;
	border: none;
	box-shadow: none;
}

.pulse-button-wrapper:hover {
	background: none;
	box-shadow: none;
	text-decoration: none !important;
	text-shadow: 0 0 3px #000000;
	color: white;
}

.pulse-button {
	position: relative;
	display: block;
	font-size: 20px;
	font-family: 'Arial', sans-serif;
	text-transform: uppercase;
	text-align: center;
	padding: 15px 10px;
	color: white;
	border: none;
	border-radius: 10px;
	background: #4cad0e;
	cursor: pointer;
	box-shadow: 0 0 0 0 #4cad0e45;
	animation: pulse 1.5s infinite;
	-webkit-animation: pulse 1.5s infinite;
	text-decoration: none;
}

.pulse-button:hover {
	animation: none;
	-webkit-animation: none;
}

.comment--answer {
	padding-left: 50px;
}

.order_block__quantity {
	width: 100%;
	padding: 10px 15px;
	border: 1px solid #cdcdcd;
	box-sizing: border-box;
	margin-bottom: 20px;
	min-height: 50px;
	border-radius: 10px;
	background-color: #f0f8ff;
	font-size: 18px;
}

.inner .order_block__quantity {
	text-align: center;
}

.order_block__quantity-left {
	color: white;
	text-align: center;
	font-weight: 600;
	border: 1px solid #f50000;
	padding: 2px;
	background: red;
	border-radius: 7px;
	margin-left: 5px;
	margin-right: 5px;
	width: 30px;
	display: inline-block;
}

body {
	background-color: white !important;
}

.footer-wrapper {
	text-align: center;
	font-size: 16px;
	padding: 15px;
	line-height: 1.4;
	color: #858585;
	background-color: #cecece6e;
	font-weight: 400 !important;
}

.footer-wrapper a {
	color: black;
	text-decoration: none;
}

#time {
	color: white;
}

.footer-wrapper a:hover {
	color: #2a2a2a
}

.footer-wrapper a:visited {
	color: #2a2a2a
}

.inL_490366 {
	max-width: 300px;
	width: 100%;
	margin-bottom: 15px;
}

.inL_835094 {
	padding: 0 20px 20px
}

@keyframes pulse {
	0% {
		-moz-transform: scale(0.9);
		-ms-transform: scale(0.9);
		-webkit-transform: scale(0.9);
		transform: scale(0.9);
	}

	70% {
		-moz-transform: scale(1);
		-ms-transform: scale(1);
		-webkit-transform: scale(1);
		transform: scale(1);
		box-shadow: 0 0 0 25px rgba(90, 153, 212, 0);
	}

	100% {
		-moz-transform: scale(0.9);
		-ms-transform: scale(0.9);
		-webkit-transform: scale(0.9);
		transform: scale(0.9);
		box-shadow: 0 0 0 0 rgba(90, 153, 212, 0);
	}
}

@media screen and (max-width: 400px) {
	.inL_835094 {
		padding: 0 0 20px;
	}

	.pricec {
		font-size: 16px;
	}
}

.toggle-image {
    cursor: pointer;
}

.box__item {
	margin: 20px auto;
}

.box__images.show .first {
    display: none;
}

.box__item .second {
    margin: 0 auto;
    display: none;
}

.box__item .first {
    display: block;
	margin: 0 auto;
    width: 100%;
    max-width: 450px;
}

.box__item .second {
    margin: 0 auto;
    display: none;
}

.box__images.show .first {
    display: none;
}

.box__images.show .second {
    display: block;
}

@media screen and (max-width: 940px) {
	.pricec {
		left: 120px;
	}
}
@media screen and (max-width: 520px) {
	.comment--answer {
		padding-left: 30px;
	}

	.comment, .comment_name {
		font-size: 16px;
	}
}
.red {
	color: red;
}