* {
	box-sizing: border-box;
	outline: none;
	font: inherit; }
strong {
	font-weight: bold; }
em {
	font-style: italic; }
body {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
	margin: 0;
	font-family: 'Roboto', sans-serif;
	font-size: var(--main-font-size);
	font-weight: 300;
	color: var(--text-color); 
	max-width: 2560px;
    margin: auto;
    box-shadow: 0 0 9px #000; }
img {
	display: block;
	max-width: 100%;
	height: auto; }
a {
	color: inherit;
	text-decoration: none;
	display: inline-block; }
button {
	cursor: pointer;
	background: none;
	border: none;
	transition: .3s; }
	
h1 {
	font-size: 35px;
	font-weight: 400;
	margin-top: 0;
	margin-bottom: 40px; }
h2 {
	font-size: 40px;
	font-weight: 300;
	text-align: center; }
h3 {
	font-size: 22px;
	font-weight: 300; }
	
figure {
    margin: 0; }
	
.mod-heading {
    font-size: 30px;
    text-transform: uppercase;
	margin-bottom: 30px; }
	
:root {
    --main-font-size: 18px;
    --text-color: #242424;
	--main-padding: 100px 40px;
	--header-padding: 20px 40px;
	--content-padding: 60px 40px;
	--copy-padding: 10px 40px;
	--main-width: 1680px;
	--main-color: #242424;
	--second-color: #F6F6F6;
	--red-color: #DA3734;
	--light-color-1: #f7f7f7;
	--green-color: #29854e;
	--font-20: 20px;
	--box-headding: 22px;
}

a:hover {
	color: var(--red-color); }
	
.main-width {
	max-width: var(--main-width);
	width: 100%;
	padding: 90px 40px;
	margin: 0 auto; }
	
main {
    flex-grow: 1; }
	
/* css: header */
header {
	display: flex;
	justify-content: space-between;
	padding: 40px; }
.header-left,
.header-right {
	width: 250px; }
.header-right a {
	display: flex; }
header .logo svg {
	width: 260px;
	fill: var(--main-color); }
	
header .contact-holder {
    display: flex; }
header .contact-holder:first-of-type {
    margin-bottom: 20px; }
header .contact-icon {
	margin-right: 15px; }
header .phone-icon svg {
	width: 30px;
	height: 30px; }
header .mail-icon svg {
	width: 30px;
	height: 30px; }
header .contact-text p {
	margin-bottom: 0;
	margin-top: 10px; }
header .contact-text p:first-of-type {
	margin-top: 0; }
	
.home-page .main-menu {
	background: transparent;
	color: inherit; }
.main-menu {
	background: var(--main-color);
	color: #fff; }
.main-menu ul {
	display: flex;
	justify-content: center;
	list-style: none;
	padding-left: 0;
	text-transform: uppercase;
	font-size: 22px; }
.main-menu ul li {
	padding-left: 15px;
	margin-left: 15px;
	border-left: 1px solid #fff; }
.home-page .main-menu ul li {
	border-left: 1px solid var(--text-color); }
.main-menu ul li:first-of-type {
	padding-left: 0;
	margin-left: 0;
	border-left: none; }

header .burger {
	display: none;
	margin-left: 40px; }
	header .burger svg {
		width: 36px;
		height: 26px;
		cursor: pointer; }

.home-page .banner-holder {
	position: relative;
	height: 800px;
    background: url(/images/banner-2560.webp);
    background-position: center center;
    background-size: cover;}
.banner-text {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	font-size: 65px;
	text-transform: uppercase;
	margin: 0 20px;
	color: #fff; }
.banner-text span {
	display: block; }
.banner-text span:first-of-type {
	margin-bottom: 40px; }
	
.user-icon {
	fill: #fff;
	width: 40px;
	height: 40px; }
	.user-icon .color-bg {
		fill: var(--text-color); }
		
.mod-languages ul {
	list-style: none;
	padding-left: 0;
	margin: 0;
	display: flex;
	justify-content: flex-end;
	font-size: 22px;
	transition: .3s; }
	.mod-languages ul li {
		margin-left: 20px; }
		.mod-languages ul li:first-of-type {
			margin-left: 0; }
	.mod-languages ul li.lang-active ,
	.mod-languages ul li:hover  {
		color: var(--red-color);	}
		
.jshop-cart svg {
	width: 55px;
    height: 40px;
	fill: var(--main-color); }
.jshop-cart svg circle {
	fill: var(--red-color); }
.jshop-cart a {
	position: relative; }
.jshop-cart .products-cart-count {
	position: absolute;
	width: 26px;
	height: 26px;
	top: 3px;
	right: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 15px;
	color: #fff; }
	
.header-right-top {
	display: flex;
	justify-content: flex-end; }
.header-right-top p {
	margin: 0; }
.header-right-top > div {
	margin-left: 40px; }
.header-right-top > div:first-of-type {
	margin-left: 0; }
	
.header-right-bottom {
	margin-top: 30px; }
	
/* css: advantage */

.advantage{
	background: var(--second-color); }
.advantage ul {
	list-style: none;
	padding-left: 0;
	display: flex;
	flex-wrap: wrap;
	margin-top: 60px; }
.advantage ul li {
	width: 50%;
	font-size: 26px;
	margin-bottom: 30px; }
	.advantage ul li:nth-child(odd) {
		padding-right: 40px;
		text-align: right; }
	.advantage ul li:nth-child(even) {
		padding-left: 40px; }
		
/* css: product list */

.prod-list {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -15px; }
.list-prod-item {
	width: 50%;
	padding: 0 15px; }
.list-prod-item .block_product {
	position: relative;
	overflow: hidden; }
.list-prod-item .block_product > div {
	display: flex;
	justify-content: center;
	align-items: center; }
.list-prod-item .block_product .name {
	position: absolute;
	background: #fff;
    padding: 5px 20px;
    font-size: 25px;
	z-index: 10;
	max-width: 80%;
    text-align: center; }
.list-prod-item .image_block {
    display: flex; }
.list-prod-item img {
	transition: .8s; }
.list-prod-item:hover img {
	transform: scale(1.05); }
	
	
/* css: blog module */

.mod-articlesnews {
	display: flex;
	justify-content: space-between;
	margin: 0 -15px;
	flex-wrap: wrap; }
.mod-articlesnews__item {
	width: 33.3%;
	padding: 0 15px;
	position: relative; }
.newsflash-title {
	position: absolute;
	bottom: 10px;
	left: 40px;
	background: #fff;
    padding: 5px 10px;
    font-size: 22px;
	transition: .3s;
	z-index: 10; }
.newsflash-image a {
	display: flex; }
.mod-articlesnews__item:hover .newsflash-title {
	background: var(--red-color);
	color: #fff; }
.mod-articlesnews__item .newsflash-title a:hover {
	color: #fff; }
	
	
/* css: footer */

.main-footer {
    display: flex;
    justify-content: space-between;
	padding: 40px;
	background: var(--red-color);
	color: #fff; }
.footer-logo svg {
	width: 200px;
    height: 118px;
	fill: #fff; }
.footer-menu {
    display: flex; }
.footer-menu > * {
	margin-left: 60px; }
.footer-menu > *:first-of-type {
	margin-left: 0; }
.footer-menu ul {
	list-style: none;
	padding-left: 0;
	text-align: right;
	font-size: 20px;
	margin-top: 0;
	margin-bottom: 0; }

.copyright {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	padding: 10px 40px;
	background: var(--main-color);
	color: #fff;
	font-size: 14px; }
	
.footer-menu a {
	font-size: 20px;
	padding: 12px; }
.footer-menu a:hover {
	color: var(--main-color); }
	
/* css: product */

.prod-main-info {
	display: flex;
	justify-content: space-between;
	position: relative; }
.prod-image {
    width: 34%; }
.prod-info-right {
    display: flex;
	justify-content: space-between;
    flex-wrap: wrap;
    width: 66%;
    padding-left: 40px; }
.productfull h1 {
	width: 100%; }
	
.jshop_prod_attributes {
	margin: 20px 0; }
.productfull .atr-list {
	display: flex; }
.productfull .atr-list .input_type_radio {
	margin-right: 10px;
    text-align: center; }
.productfull .atr-list .input_type_radio:last-of-type {
	margin-right: 0; }
.productfull .atr-list .input_type_radio input {
	display: none; }
.productfull .atr-list .input_type_radio input + label img,
.productfull .atr-list .input_type_radio input + label {
	transition: .3s;
	cursor: pointer; }
.productfull .atr-list .input_type_radio input:checked + label img,
.productfull .atr-list .input_type_radio input:hover + label img {
	box-shadow: 0 0 8px 0px #000; }
.productfull .atr-list .input_type_radio input:checked + label,
.productfull .atr-list .input_type_radio input:hover + label {
	font-weight: 500; }
span.radio_attr_label span {
    margin-bottom: 5px;
    display: block; }
.attributes_title,
.extra_fields_title,
.price-title,
.related_header {
	font-size: var(--box-headding);
	font-weight: 400;
	margin-bottom: 10px; }

.extra_fields .block_efg {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between; }
.extra_fields .extra_fields_el {
	width: 50%;
	display: flex;
	align-items: flex-start;
	/*flex-wrap: wrap;*/
	font-size: 16px;
	margin-bottom: 10px; }
.extra_fields .extra_fields_el div {
	display: flex;
	flex-wrap: wrap; }
.extra_fields svg.check {
	height: 20px;
	fill: var(--red-color);
	margin-right: 10px;
	flex-shrink: 0; 
	order: 0; }
.extra_fields .extra_fields_name {
	order: 0;
	margin-right: 10px; }
.extra_fields .extra_fields_value {
	order: 3;
	font-weight: 400;
	/*margin-left: 10px;*/ }
.extra_fields .extra_fields_description {
	order: 4;
	font-size: 14px;
    font-style: italic; }
	
.mod-info {
    padding: 40px;
    width: 100%;
    background: var(--second-color);
	display: flex;
	margin: 80px 0; }
.mod-info .custom {
	display: flex;
	justify-content: space-around;
	width: 100%;
	text-align: center; }
.mod-info p {
	margin-top: 0;
	font-size: 18px;
	font-weight: 400; }
.mod-info ul {
	list-style: none;
	padding-left: 0; }
.mod-info ul:last-of-type {
	margin-bottom: 0; }
	
.box-buy {
    display: flex;
    align-items: flex-end; }
.prod_price {
    margin-right: 40px; }
span.block_price {
    display: block;
    font-size: 40px;
    font-weight: 400; }
.prod_buttons {
    display: flex;
    margin-top: 20px; }
.prod_buttons input[type="text"] {
	width: 55px;
	padding: 10px;
	text-align: center; }
.prod_buttons input[type="submit"] {
	height: 46px;
	padding: 10px 60px;
	margin-left: 20px;
	background: var(--red-color);
	border: 1px solid var(--red-color);
	color: #fff;
	cursor: pointer;
	transition: .3s; }
	.prod_buttons input[type="submit"]:hover {
		color: var(--red-color);
		background: #fff; }
		
.prod-bottom-info {
    display: flex;
    justify-content: space-between; }
.jshop_prod_description {
    width: calc(100% - 365px);
    padding-right: 40px; }
.related-products {
    width: 365px; }
	
.jshop_prod_description h2 {
	font-size: 24px;
	font-weight: 400;
	text-align: left;
	margin: 22px 0; }
	
.jshop_related .product {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center; }
.jshop_related .product .name {
	position: absolute;
	background: #fff;
	padding: 5px 10px;
	font-size: 18px;
	z-index: 10; }

.product-tabs-texts .product-tab {
	display: none; }
	.product-tabs-texts .product-tab.active {
		display: block; }
		
.product-tabs-titles {
	display: flex;
	list-style: none;
	padding-left: 0;
	align-items: flex-end;
	margin: 0; }
.product-tabs-titles .product-tab {
	padding: 7px 20px;
	cursor: pointer;
	margin-right: 3px;
	background: var(--main-color);
	color: #fff;
	transition: .3s; }
.product-tabs-titles .product-tab.active,
.product-tabs-titles .product-tab:hover {
	background: var(--red-color);
	color: #fff;
	padding: 10px 20px; }
.product-tabs-titles .product-tab.active {
	cursor: text; }
.product-tabs-texts {
	margin: 0;
	padding: 20px;
	background: var(--second-color); }
	
.jshop_prod_description h3 {
	font-weight: 400; }

/* css: login */


.pagelogin .row {
	display: flex;
	justify-content: space-between; }
.pagelogin .row > div {
	width: 50%; }
.pagelogin form.form-horizontal {
	margin-top: 20px; }
.control-elms,
.control-group {
	position: relative;
	margin-bottom: 15px; }
.control-label {
	font-size: 14px;
    font-weight: 400;
    position: absolute;
	color: #555555;
    top: -8px;
    left: 10px;
    background: #fff;
    padding: 0 3px;
    z-index: 11; }
input[type="text"],
input[type="password"],
input[type="email"],
select {
	width: 100%;
    padding: 11px;
    border: 1px solid #AAAAAA; }
/*.pagelogin input[type="text"],
.pagelogin input[type="password"] {
	max-width: 600px; }*/
.pagelogin .login-buttons {
	display: flex;
	justify-content: space-between;
	/*max-width: 600px;*/ }
.pagelogin .login-buttons > div {
	width: 48%; }
.pagelogin .button {
	font-size: 18px;
	text-transform: uppercase;
	padding: 10px 20px;
	background: var(--red-color);
	border: 1px solid var(--red-color);
	color: #fff;
	cursor: pointer;
	transition: .3s; }
	.pagelogin .button:hover {
		background: #fff;
		color: var(--red-color); }
.login-buttons .button {
	width: 100%; }
.login-buttons a {
	font-size: 18px;
	text-transform: uppercase;
	padding: 10px 20px;
	background: var(--second-color);
	border: 1px solid var(--second-color);
	cursor: pointer;
	width: 100%;
	text-align: center;
	transition: .3s; }
.pagelogin .register_block {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	background: var(--second-color);
	padding: 20px; }
.pagelogin .block_button_register {
	margin-top: 20px; }
.pagelogin .login_block {
	padding-right: 40px; }
	
.login_block .text_pay_without_reg {
	border-top: 1px solid var(--main-color);
    margin-top: 20px;
    padding-top: 20px;
    display: block; }
.small_header {
	font-size: 24px;
	font-weight: 400; }
.login_block .text_pay_without_reg a {
	margin-top: 15px;
	font-size: 18px;
	text-transform: uppercase;
	padding: 10px 20px;
	background: var(--red-color);
	border: 1px solid var(--red-color);
	color: #fff;
	cursor: pointer;
	width: 100%;
    text-align: center;
	transition: .3s; }
	.login_block .text_pay_without_reg a:hover {
		background: #fff;
		color: var(--red-color); }
		
		
.task-register .button {
	font-size: 18px;
    text-transform: uppercase;
    padding: 10px 20px;
    background: var(--red-color);
    border: 1px solid var(--red-color);
    color: #fff;
    cursor: pointer;
	margin-top: 30px; 
    transition: .3s; }
	.task-register .button:hover {
		background: #fff;
		color: var(--red-color); }
		
		
		
/* css: cart */
.jshop-menu-order {
	display: flex;
	justify-content: space-between;
	margin-bottom: 60px; }
.jshop_order_step {
	background: var(--second-color);
	padding: 10px 20px; }
.jshop_order_step.active {
	background: var(--main-color);
	color: #fff; }
.view-cart .jshop_prod_cart {
	display: flex;
	align-items: center;
	margin-top: 20px;
    border-top: 1px solid var(--second-color);
    padding-top: 20px; }
.jshop_prod_cart .remove {
	width: 50px; }
.jshop_prod_cart .remove svg {
	width: 22px;
    height: 22px;
    fill: var(--red-color); }
.jshop_prod_cart .remove span {
	display: none; }
.jshop_prod_cart .carp-prod {
    display: flex;
    align-items: center;
	width: calc(100% - 50px); }
.carp-prod-info {
    display: flex;
    align-items: center;
	width: calc(100% - 120px); }
.jshop_prod_cart .carp-prod .image {
	width: 120px; }
.view-cart .jshop_prod_cart .product_name {
    width: 55%;
    padding-left: 60px; }
.jshop_prod_cart .product_name .data {
    display: flex;
    align-items: center; }
.jshop_prod_cart .single_price,
.jshop_prod_cart .total_price,
.table-header .single_price,
.table-header .total_price,
.jshop_prod_cart .quantity,
.table-header .quantity {
	width: 15%;
	text-align: right; }
/*.jshop_prod_cart .quantity,
.table-header .quantity {
	width: 30%; }*/
	
.jshop_prod_cart .quantity .data {
	display: flex;
	align-items: center;
	justify-content: flex-end; }
.jshop_prod_cart .quantity .icon-refresh {
	display: none;
	margin-left: 10px; }
.jshop_prod_cart .quantity .icon-refresh svg {
	cursor: pointer;
	fill: var(--text-color);
	transition: .3s; }
.jshop_prod_cart .quantity .icon-refresh svg:hover {
	fill: var(--green-color);
	transform: rotate(180deg); }
	
.view-cart .table-header {
    display: flex;
	font-size: 14px; }
.view-cart .table-header .product_name {
	margin-left: 170px;
	width: 55%;
	padding-left: 60px; }
	
.view-cart input[type="number"] {
    padding: 11px;
    border: 1px solid #AAAAAA;
	width: 80px; }
.view-cart .mobile-cart-inline {
	display: none; }
	
.view-cart .jshop_subtotal .total {
	display: flex;
	justify-content: flex-end;
	margin-top: 20px;
    border-top: 1px solid var(--second-color);
    padding-top: 20px; }
.jshop_subtotal .total .value {
	margin-left: 30px; }

.cart_buttons > div {
	display: flex;
	margin-top: 30px; }
.cart_buttons .btn-secondary {
	font-size: 18px;
    text-transform: uppercase;
    padding: 10px 20px;
    background: var(--second-color);
    border: 1px solid var(--second-color);
    cursor: pointer;
    text-align: center;
    transition: .3s; }
.cart_buttons .btn-success {
	font-size: 18px;
    text-transform: uppercase;
    padding: 10px 20px;
    background: var(--red-color);
    border: 1px solid var(--red-color);
    color: #fff;
    cursor: pointer;
	margin-left: 30px;
    transition: .3s; }
.cart_buttons .btn-success:hover {
	background: #fff;
	color: var(--red-color); }

.view-cart p.jshop_cart_attribute,
.view-qcheckout p.jshop_cart_attribute {
	font-size: 0; }
.view-cart p.jshop_cart_attribute span.value,
.view-qcheckout p.jshop_cart_attribute span.value {
	font-size: 18px;
	margin-left: 10px; }

/* css: checkout */
.other_delivery_adress {
	display: none; }
	
.checkout-content {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap; }
.checkout-content #qc_error {
	width: 100%; }
.checkout-content .checkout-prod-info {
	width: 25%;
	order: 2; }
.checkout-content .checkout-info {
	width: 75%;
	order: 1;
	padding-right: 40px; }
.checkout-content .jshop_prod_cart {
	display: flex;
	flex-direction: column; }
.checkout-content .product_name {
	display: flex;
	text-align: center;
    justify-content: center; }
.checkout-content .product_name p {
	margin: 0; }
.checkout-content .checkout-prod-options {
    display: flex;
    justify-content: space-around;
    margin: 8px 0 20px; }
.checkout-content .checkout-prod-options > div {
	display: flex;
	flex-direction: column;
	align-items: center;
	font-weight: 400; }
.checkout-content .checkout-prod-options > div span {
	font-size: 14px;
	font-weight: 300; }
.checkout-content .jshop_subtotal ,
.checkout-content .jshop_subtotal tbody {
	width: 100%; }
.checkout-content .jshop_subtotal .total {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	background: var(--second-color);
	padding: 20px; }
.checkout-content .jshop_subtotal .total .value {
	font-size: 30px;
	font-weight: 500; }
	
.checkout-content .jshop_register {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between; }
.checkout-content .jshop_register .control-group {
	width: 49%; }
.control-label span {
	color: var(--red-color); }
.checkout-content textarea {
	width: 100%;
	height: 150px;
    padding: 11px;
    border: 1px solid #AAAAAA; }
.checkout-content input.button {
	font-size: 18px;
    text-transform: uppercase;
    padding: 10px 20px;
    background: var(--red-color);
    border: 1px solid var(--red-color);
    color: #fff;
    cursor: pointer;
    /*margin-left: 30px;*/
    transition: .3s; }
	.checkout-content input.button:hover {
		background: #fff;
		color: var(--red-color); }
.checkout-content .payment-info {
	background: var(--second-color);
	padding: 10px; }
.checkout-content .payment-info span {
	font-weight: 500; }
	
.table_shippings {
	display: flex;
    justify-content: space-between;
	flex-wrap: wrap; }
.table_shippings .name {
	width: 100%;
	background: var(--second-color);
	padding: 10px;
	margin-bottom: 10px;
	/*margin-bottom: 50px;*/ }
.shipping_descr p {
	margin-bottom: 0;
	margin-top: 5px;
	font-size: 12px; }
.shipping_form {
	margin-left: 40px;
	margin-top: 10px; }
.shipping_form label {
	font-size: 14px; }
	
.checkout-firma-name {
	display: none; }


.task-finish main p {
	text-align: center;
    font-size: 40px; }


/* css: blog */
.blog-page .main-width {
	max-width: 1200px; }
	
/* css: my orders*/

.myorders_block_info {
	display: flex;
	flex-wrap:wrap;
	/*justify-content: space-between;*/
	margin-bottom: 20px;
	/*padding: 20px;*/
	background: var(--second-color); }
.myorders_block_heder {
    width: 100%;
    display: flex;
    justify-content: space-between;
    background: var(--main-color);
    color: #fff;
    padding: 5px 10px;
    font-size: 14px; }
.myorders_block_heder .order_number {
	width: 250px; }
.myorders_block_heder .order_status {
	width: 250px;
	text-align: right; }
.myorders_block_heder b {
	font-weight: 500;
	font-size: 12px; }
.table_order_list {
	width: 100%;
	padding: 10px; }
.table_order_list .row {
	width: 100%;
	display: flex;
	justify-content: space-between; }
	
.table_order_list td.product_name {
	width: 50%; }
.table_order_list td.single_price,
.table_order_list td.quantity,
.table_order_list td.total_price {
	width: 15%; }
.table_order_list thead {
	font-size: 12px;
	font-weight: 500; }
.table_order_list tbody tr {
	border-top: 1px solid #fff;
	border-bottom: 1px solid #fff; }
.table_order_list tbody tr.my-order-total {
	border: none; }
.table_order_list tbody tr td {
	padding: 5px 0; }

.myorders_list .products {
	flex-grow: 1;
	font-size: 14px;
	/*margin-left: 30px;*/ }
.myorders_list .products table {
	width: 100%;
	border-collapse: collapse; }
.myorders_list .products table td.product_name .data {
	display: flex;
	gap: 15px; }

.division {
	display: flex;
    justify-content: space-between;
	flex-wrap: wrap;
	margin: 60px 0; }
.division .left-side {
	Width: 40%;
	background: url(/images/division-2560.webp);
	background-position: center center;
	background-size: cover;
	/*padding: 60px 40px;
	display: flex;
	align-items: center;
	justify-content: center;*/ }
.division .right-side {
	Width: 60%;
	background: var(--second-color);
	padding: 120px 60px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	position: relative;
	overflow: hidden; }
.division .right-side h2 {
	text-align: left;
	z-index: 2; }
.division .right-side h2 span {
	white-space: nowrap; }
.division .right-side ul {
	font-size: 22px;
	list-style: none;
	padding-left: 0;
	z-index: 2; }
.division .right-side li {
	padding-left: 45px;
	position: relative;
	margin-bottom: 10px; }
.division .right-side li:last-of-type {
	margin-bottom: 0; }
.division .right-side li:before {
	content: "";
    position: absolute;
    width: 30px;
    height: 1px;
    background: var(--text-color);
    left: 0;
    top: 15px; }
/*.division .right-side .decor {
	height: 115%;
	width: 700px;
	position: absolute;
	right: -100px;
	top: -9%;
	background: url(/images/aim.svg);
	background-position: center center;
    background-size: cover;
	z-index: 1; }*/
	
.task-orders .urllogout a {
	font-size: 18px;
    text-transform: uppercase;
    padding: 10px 20px;
    background: var(--second-color);
    border: 1px solid var(--second-color);
    cursor: pointer;
	margin-top: 40px;
    text-align: center;
    transition: .3s; }
	
	
	
/*mobile menu*/

.mob-menu {
    position: fixed;
    background: var(--main-color);
	color: #fff;
    top: 0;
    bottom: 0;
    left: -100%;
    right: 100%;
    z-index: 1;
    border-left: 10px solid var(--red-color);
    padding: 20px;
    transition: .5s;
	display: flex;
	flex-direction: column;
    justify-content: space-between;
	z-index: 10; }
body.mobile-menu .mob-menu {
    left: 0;
    right: 0; }
.mob-menu svg {
	fill: #fff; }
.top-mob-menu {
    display: flex;
    justify-content: space-between; }
.mob-menu-logo {
	width: 200px;
    height: 118px; }
.bottom-mob-menu .custom {
	display: flex;
	flex-wrap: wrap; }
.bottom-mob-menu .contact-holder {
	display: flex;
	margin-right: 20px; }
.bottom-mob-menu .phone-icon svg {
	width: 20px;
	height: 20px; }
.mail-icon svg {
	width: 20px;
	height: 20px; }
.bottom-mob-menu .custom p {
	margin: 0; }
.bottom-mob-menu .contact-icon {
	margin-right: 10px; }
.mob-menu ul.nav {
	list-style: none;
	padding-left: 0;
	width: 100%;
	text-align: center;
	text-transform: uppercase;
	font-size: 20px; }
.mob-menu ul.nav li {
	padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--second-color); }
.mob-menu ul.nav li:last-of-type {
	padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: none; }
.mob-menu ul.nav li.active a {
	color: var(--red-color); }
.mob-menu .menu-close-button svg {
	cursor: pointer; }
	
	
	
/*tmp*/
/*body .header-right-top > div {
    margin-left: 0;
}
@media screen and (max-width: 670px) {
	body header .contact-holder:last-of-type {
		display: flex; }
}*/

.price-info span {
	color: var(--red-color); }
	
.jshop.checkout_shipping_block input[type="radio"]:not(:checked) ~ .shipping_form {
  display: none;
}