.youtube {
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: inline-block;
    overflow: hidden;
    transition: all 200ms ease-out;
    cursor: pointer;
}

.youtube .play {
    background: url('../img/yt.png') no-repeat; /*ВАЖНО: здесь укажите адрес до изображения*/
    background-position: 0 0;
    -webkit-background-size: 100% auto;
    background-size: 100% auto;
    position: absolute;
    height: 50px;
    width: 69px;
    transition: none;
    top:0;
    left:0;
    right:0;
    bottom:0;
    margin:auto;
}

.youtube:hover .play {
    background-position: 0 0;
}



a,button,input[type='text'],input[type='tel'],textarea {
	-webkit-appearance: none;
	outline:none;
}
input[type="number"] {
	-moz-appearance: textfield;
	-webkit-appearance: textfield;
	appearance: textfield;
}
 
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
	display: none;
}
::-webkit-scrollbar-button {
background-image:url('');
background-repeat:no-repeat;
width:5px;
height:0px
}

::-webkit-scrollbar-track {
background-color:#ecedee
}

::-webkit-scrollbar-thumb {
-webkit-border-radius: 0px;
border-radius: 0px;
background-color:rgb(84, 160, 236);
}

::-webkit-scrollbar-thumb:hover{
background-color:rgb(66, 125, 184);
}

::-webkit-resizer{
background-image:url('');
background-repeat:no-repeat;
width:4px;
height:0px
}

::-webkit-scrollbar{
width: 4px;
}
body {
	font-family: 'Roboto';
}
b {
	font-weight:bold;
}



.fmenuv10  {
    padding: 15px 0px;
}


.fmenuv10 a {
   padding: 5px 15px;
   background: #481173;
   Color: #FFFF00; 
   font-weight: bold;
   -webkit-transition: all 0.5s ease;
     -moz-transition: all 0.5s ease;
       -o-transition: all 0.5s ease;
      -ms-transition: all 0.5s ease;
          transition: all 0.5s ease;
          border-radius: 4px;
}

.fmenuv10 a:hover {
   padding: 5px 15px;
   background: #BD11A3;
   Color: #ffffff; 
   font-weight: bold;
   text-decoration: none;
}



.v10seotxt h2 {
   font-size: 22px;
   font-weight: bold;
   color: #000000;
}

.v10seotxt h3 {
   font-size: 18px !important;
   font-weight: bold !important;
   color: #000000;
}

.v10seotxt p {
    margin: 12px 0px !important;
}

.v10seotxt li {
    list-style-type: circle;
    margin-left: 30px;
}




/* Базовые стили слоя затемнения и модального окна  */
.overlay {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 10;
    display: none;
/* фон затемнения */
    background-color: rgba(0, 0, 0, 0.65);
    position: fixed; /* фиксированное поцизионирование */
    cursor: default; /* тип курсара */
}
/* активируем слой затемнения */
.overlay:target {
    display: block;
}
/* стили модального окна */
.popup {
    top: -100%;
    right: 0;
    left: 50%;
    font-size: 14px;
    z-index: 20;
    margin: 0;
    width: 85%;
    min-width: 320px;
    max-width: 600px;
/* фиксированное позиционирование, окно стабильно при прокрутке */
    position: fixed;
    padding: 15px;
    border: 1px solid #383838;
    background: #fefefe;
/* скругление углов */
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    border-radius: 4px;
    font: 14px/18px 'Tahoma', Arial, sans-serif;
/* внешняя тень */
    -webkit-box-shadow: 0 15px 20px rgba(0,0,0,.22),0 19px 60px rgba(0,0,0,.3);
    -moz-box-shadow: 0 15px 20px rgba(0,0,0,.22),0 19px 60px rgba(0,0,0,.3);
    -ms-box-shadow: 0 15px 20px rgba(0,0,0,.22),0 19px 60px rgba(0,0,0,.3);
    box-shadow: 0 15px 20px rgba(0,0,0,.22),0 19px 60px rgba(0,0,0,.3);
    -webkit-transform: translate(-50%, -500%);
    -ms-transform: translate(-50%, -500%);
    -o-transform: translate(-50%, -500%);
    transform: translate(-50%, -500%);
    -webkit-transition: -webkit-transform 0.6s ease-out;
    -moz-transition: -moz-transform 0.6s ease-out;
    -o-transition: -o-transform 0.6s ease-out;
    transition: transform 0.6s ease-out;
}
/* активируем модальный блок */
.overlay:target+.popup {
    -webkit-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    -o-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    top: 20%;
}
/* формируем кнопку закрытия */
.close {
    top: -10px;
    right: -10px;
    width: 20px;
    height: 20px;
    position: absolute;
    padding: 0;
    border: 2px solid #ccc;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
    border-radius: 15px;
    background-color: rgba(61, 61, 61, 0.8);
    -webkit-box-shadow: 0px 0px 10px #000;
    -moz-box-shadow: 0px 0px 10px #000;
    box-shadow: 0px 0px 10px #000;
    text-align: center;
    text-decoration: none;
    font: 13px/20px 'Tahoma', Arial, sans-serif;
    font-weight: bold;
    -webkit-transition: all ease .8s;
    -moz-transition: all ease .8s;
    -ms-transition: all ease .8s;
    -o-transition: all ease .8s;
    transition: all ease .8s;
}
.close:before {
    color: rgba(255, 255, 255, 0.9);
    content: "X";
    text-shadow: 0 -1px rgba(0, 0, 0, 0.9);
    font-size: 12px;
}
.close:hover {
    background-color: rgba(252, 20, 0, 0.8);
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);    
}
/* изображения внутри окна */
.popup img {
    width: 100%;
    height: auto;
}
/* миниатюры слева/справа */
.pic-left, 
.pic-right {
    width: 25%;
    height: auto;
}
.pic-left {
    float: left;
    margin: 5px 15px 5px 0;
}
.pic-right {
    float: right;
    margin: 5px 0 5px 15px;
}
/* элементы м-медиа, фреймы */
.popup embed, 
.popup iframe {
    top: 0;
    right: 0;
    bottom: 0; 
    left: 0; 
    display:block;
    margin: auto;
    min-width: 320px;
    max-width: 600px;
    width: 100%;
}
.popup h2 { /* заголовок 2 */
    margin: 0;
    color: #008000;
    padding: 5px 0px 10px;
    text-align: left;
    text-shadow: 1px 1px 3px #adadad;
    font-weight: 500;
    font-size: 1.4em;
    font-family: 'Tahoma', Arial, sans-serif;
    line-height: 1.3;
}
/* параграфы */
.popup p {margin: 0; padding: 5px 0}
.wrap {
	min-width:300px;
	max-width:1200px;
	padding:0 10px;
	margin:0 auto;
}
.clear {
	clear:both;
}
header {
	padding:12px 0;
	text-align:center;
}
header .logo {
	float:left;
}
header .img-l {
	float:left;
	padding-right:15px;
	border-right:2px solid #FFFF00;
}
header .opic {
	float:left;
	padding-left:15px;
	color:#666666;
	font-size:14px;
	padding-top:11px;
	text-align:left;
}
header .opic .p1 {
	margin-bottom:8px;
}
header .navigation {
	display:inline-block;
}
header .navigation ul li {
	display:inline-block;
}
header .navigation ul .padd {
	padding:0 25px;
}
header .navigation ul li a {
	text-decoration:none;
	font-weight:bold;
	font-size:16px;
	color:black;
	line-height:56px;
	display:block;
}
header .navigation ul li a:hover {
	transition:all .3s ease-in-out;
	color:#47A4F4;
}
header .contact {
	float:right;
	padding-top:8px;
}
header .contact .phh {
	font-size:24px;
	text-decoration:none;
	font-weight:bold;
	color:black;
	display:block;
	margin-bottom:6px;
}
header .contact .phh:hover {
	transition:all .3s ease-in-out;
	color:#47A4F4;
}
header .contact .p1 {
	font-size:16px;
		background: #FFFF00; 
		color: #e10c00;
		border-radius: 3px;
		padding: 5px 10px;
}
.embed-responsive-item {
	width:100%;height:100%;
}

.block-1 {
	background: #481173 url(../img/fon.svg) -5% center/55% auto no-repeat;
	padding:35px 0;
}
.block-1 .left {
	float:left;
	width:50%;
}
.block-1 .left .p1 {
	background:white;
	border-radius:5px;
	padding:15px;
	text-align:center;
	font-size: 42px;
	font-weight:bold;
	margin-bottom:25px;
}
.block-1 .left .p2 {
	color:white;
	font-size: 28px;
	font-weight:bold;
	margin-bottom:15px;
}
.block-1 .left .spisok li {
	color: #ffffff;
    font-size: 22px;
	margin-bottom:22px;
}
.block-1 .left .spisok li:last-child {
     margin-bottom:0;
}
.block-1 .left .spisok li strong {
	color:#FECF2B;
}
.block-1 .left .p3 {
	color: yellow;
	font-size: 22px;
	font-weight:400;
	line-height:1.3;
}
.block-1 .right {
	float:right;
	width:46%;
	height:298px;
}
.block-1 .right img {
	width:100%;
}
.catalog-block {
	padding:35px 0;
}
.catalog-block .p1 {
	font-size: 36px;
	font-weight:bold;
	text-align:center;
	margin-bottom:12px;
}
.catalog-block .p1 i {
	position:relative;
}
.catalog-block .p1 i::after {
	content:'';
	background:rgba(255,255,0,0.7);
	height:6px;
	position:absolute;
	bottom:6px;left:0;
	width:100%;
}
.catalog-block .p2 {
	font-size: 16px;
	color:#e10c00;
	text-align:center;
}
.catalog-block .navi-tovar {
	background:#7D1181;
	border-radius:10px;
	padding:20px 12px;
	margin-top:20px;
}
.catalog-block .navi-tovar ul li {
	float:left;
	width:15.868%;
	margin:0 0.4%;
	cursor:pointer;border-radius:12px;
}
.catalog-block .navi-tovar ul li .bfhh {
	overflow:hidden;
	border-radius:12px;
	padding:12px 4px 12px 8px;
	position:relative;
	height:50px;
	border:3px solid #7D1181;
}

.catalog-block .navi-tovar ul .left {
	float:left;
}
.catalog-block .navi-tovar ul .right {
	position: absolute;
    bottom: 0;
    right: 0;
}
.catalog-block .navi-tovar ul .right img {
	width:100%;
	height:63px;
}
.catalog-block .navi-tovar ul li .p01 {
	font-size: 14px;
	margin-bottom:8px;
	margin-top:8px;
}
.catalog-block .navi-tovar ul li .p02 {
	font-weight:bold;
	font-size: 13px;
	text-transform:uppercase;
}
.catalog-block .navi-tovar ul li .posled {
	margin-top:9px;
}
.catalog-block .navi-tovar ul li:first-child {
	background:#FDFCE3;
}
.catalog-block .navi-tovar ul li:nth-child(2) {
	background:#E3F5FF;
}
.catalog-block .navi-tovar ul li:nth-child(3) {
	background:#DAE7EB;
}
.catalog-block .navi-tovar ul li:nth-child(4) {
	background:#FFE5E5;
}
.catalog-block .navi-tovar ul li:nth-child(5) {
	background:#BAE6FF;
}
.catalog-block .navi-tovar ul li:nth-child(6) {
	background:#FFE5E5;
}
.advantages {
	padding:35px 0;
	background:#481173;
}
.advantages .wi33 {
	width:26.3%;
	float:left;
	color:white;
	text-align:center;
}
.advantages .promm {
	margin:0 10.5%;
}
.advantages .wi33 .icon {
	width:50px;
	margin:0 auto 12px auto;
}
.advantages .wi33 .icon img {
	width:100%;
}
.advantages .wi33 .p1 {
	color: #ffffff;
    font-size: 30px;
	text-transform:uppercase;
	font-weight:bold;
	margin-bottom:12px;
	float:left;
	margin-top:7px;
	margin-right:7px;
}
.advantages .wi33 .p4 .price {
    background: rgb(255, 255, 0);
    padding: 7px;
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 10px;
	color:black;
	float:left;
}
.advantages .wi33 .p2 {
	color: #ffffff;
	font-size: 16px;
	font-weight:400;
	line-height:1.5;
}
.actions {
	padding:35px 0;
	background:#FAFAFE;
}
.actions .p1 {
	font-size: 52px;
	font-weight:bold;
	text-align:center;
	margin-bottom:15px;
}
.actions .p1 i {
	position:relative;
}
.actions .p1 i::after {
	content:'';
	background:rgba(255,255,0,0.7);
	height:6px;
	position:absolute;
	bottom:6px;left:0;
	width:100%;
}
.actions .p2 {
	font-size: 30px;
	font-weight:400;
	text-align:center;
	margin-bottom:30px;
}
.actions .wi-50 {
	float:left;
	width:47%;
}
.actions .centt {
	float:none;
	margin:12px 0 0 0;
}
.actions .lele {
	margin-left:6%;
}
.actions .wi-50 .p3 {
	width:50%;
	float:left;
	font-size: 32px;
	font-weight:bold;
	line-height:1.4;
}
.actions .wi-50 .p3 i {
	position:relative;
}
.actions .wi-50 .p3 i::after {
	content:'';
	background:rgba(255,255,0,0.7);
	height:4px;
	position:absolute;
	bottom:3px;left:0;
	width:100%;
}
.actions .wi-50 .p4 {
	width:50%;
	float:right;
	text-align:center;
}
.actions .wi-50 .p4 .price {
	background:#FFFF00;
	padding:7px;
	font-size: 40px;
	font-weight:bold;
	margin-bottom:10px;
}
.actions .wi-50 .p4 .price-old {
	color:#666666;
	font-size: 28px;
	font-weight:bold;
	text-decoration:line-through;
}
.actions .form {
	margin-top:25px;
}
.actions .left {
	float:left;
	width:569px;
}
.actions .right {
	float:right;
	width:440px;
}
.forms {
	padding:10px;
	background:white;
}
.forms .p5 {
	font-size: 26px;
	font-weight:bold;
	text-align:center;
	margin-bottom:8px;
}
.forms .p6 {
	font-size: 26px;
	font-weight:bold;
	text-align:center;
	margin-bottom:8px;
}
.forms .p6 i {
	position:relative;
}
.forms .p6 i::after {
	content:'';
	background:rgba(255,255,0,0.7);
	height:4px;
	position:absolute;
	bottom:4px;left:0;
	width:100%;
}
.forms .p7 {
	font-size: 18px;
	text-align:center;
	color:#666666;
	margin:15px 0;
}
.forms .p8 {
	font-size: 16px;
	margin-bottom:7px;
}
.forms .inppp {
	width:100%;
	padding:8px 5%;
	border:1px solid black;
	border-radius:25px;
	height:50px;
	font-size:16px;
	outline:none;
}
.forms .inp-m {
	margin-bottom:15px;
}
.sub {
	background:rgb(2, 208, 2);
	width:220px;
	margin:0 auto 15px auto;
	border:none;
	color:white;
	font-weight: 600;
	font-size:16px;
	border-radius:25px;
	display:block;
	outline:none;
	cursor:pointer;
	padding:12px;
}
.sub:hover {
	transition:all .3s ease-in-out;
	background:#01B501;
}
.forms .p9 {
	font-size: 16px;
	text-align:center;
	font-size: 13px;
	font-weight:400;
	line-height:1.5;
}
.forms .p9 a {
	text-decoration:none;
	color:black;
}
.forms .p9 a:hover {
	text-decoration:underline;
}
.dostavka {
	padding:35px 0;
}
.dostavka .p1 {
	font-weight: 600;
	font-size:28px;
	text-align:center;
}
.dostavka .p2 {
	margin-top:20px;
	font-size:18px;
	line-height:1.5;
	text-align:center;
}
footer {
	padding: 25px 0;
    background: #FAFAFE;
	text-align:center;
	line-height:1.5;
	font-size:14px;
}
footer a {
	text-decoration:none;
	color:black;
}
footer a:hover {
	text-decoration:underline;
}
.cart-top {
	position:fixed;
	top:80px;
	right:20px;
	background:white;
	width: 80px;
    height: 80px;
	cursor: pointer;
	border-radius: 50px;
	box-shadow: 0 0 10px 0 rgb(0 0 0 / 20%);
	z-index:9999;
	text-align:center;
	    will-change: transform;
    -webkit-transition: -webkit-transform 0.2s ease-in-out;
    transition: transform 0.2s ease-in-out;
}
.cart-top:hover {
	transition:all .3s ease-in-out;
	-webkit-transform: scale(1.1);
    transform: scale(1.1);
}
.cart-top .relo {
	width:100%;
	height:100%;
	position:relative;
}
.cart-top .relo img {
	position: absolute;
    margin: auto;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
}
.cart-top .nubmer {
	background:#e6603c;
	width: 30px;
    height: 30px;
	border-radius:50%;
	position:absolute;
	bottom:-5px;right:0px;
	color:white;
	font-weight:bold;
	line-height:30px;
}
.tovar-preview {
	margin-top:25px;
}
.tovar-preview .txt {
	background:#F7FBFC;
	padding:25px;
	margin-top:-20px;
}
.tovar-preview .txt .g1 {
	font-weight:bold;
	font-size: 20px;
	margin-bottom:10px;
	overflow:hidden;
}
.tovar-preview .txt .g1 img {
	float:left;
	margin-right:10px;
}
.tovar-preview .txt .g1 span {
	float:left;
	line-height:1.6;
}
.tovar-preview .txt .g2 {
	line-height:1.5;
	font-size:16px;
	color:#646566;
}
.tovar-preview .left {
	width:48.5%;
	float:left;
}
.tovar-preview .left .kiomen .loiq {
	width:105px;
	float:left;
}
.tovar-preview .left .kiomen .loiq .free {
	margin-bottom:40px;
}
.tovar-preview .left .kiomen .loiq .free img {
	width:auto;
	height:130px;
}
.tovar-preview .right {
	width:48.5%;
	float:right;
}
.tovar-preview .right .color-razmer {
	background:#F6F6F6;
	border-radius:12px;
	padding:30px 20px;
}
.tovar-preview .right .color-razmer .p001 {
	font-weight:bold;
	font-size: 22px;
	margin-top:15px;
	margin-bottom:15px;
}
.tovar-preview .right .color-razmer .sizes li {
	float:left;
	padding:10px 10px;
	background:white;
	border:4px solid transparent;
	border-radius:12px;
	cursor:pointer;
	text-align:center;
	margin-right:10px;
	width:32px;
}
#covers .right .color-razmer .sizes li {
	width:48px;
}
.tovar-preview .right .color-razmer .sizes li:hover {
	border-color:#47A4F4;
}
.tovar-preview .right .color-razmer .sizes .acta {
	border-color:#47A4F4;
}
.tovar-preview .right .color-razmer .sizes li .p002 {
	font-size: 11px;
	color:#666;
	margin-bottom:15px;
}
.tovar-preview .right .color-razmer .sizes li .p003 {
	font-size: 20px;
	font-weight:bold;
}
.tovar-preview .right .color-razmer .p004 {
	font-size: 20px;
	font-weight:bold;
	margin:0 0 15px 0;
}
.tovar-preview .right .color-razmer .colcol li {
	float:left;
	width:22px;height:22px;
	border-radius:50%;
	cursor:pointer;
	margin-right:3px;
	border:4px solid transparent;
	margin-bottom:3px;
}
.tovar-preview .right .color-razmer .colcol .yellow {
	background:#FFFF00;
}
.tovar-preview .right .color-razmer .colcol .vinous {
	background:#560000;
}
.tovar-preview .right .color-razmer .colcol .white {
	background:#FFFFFF;
}
.tovar-preview .right .color-razmer .colcol .blue {
	background:#02DCF9;
}
.tovar-preview .right .color-razmer .colcol .birus {
	background:#f3e5ab;
}

.tovar-preview .right .color-razmer .colcol .drkgreen {
	background:#306764;
}

.tovar-preview .right .color-razmer .colcol .color002-lil {
	background:#B08EE2;
}



.tovar-preview .right .color-razmer .colcol .nroz {
	background:#F7B9C6;
}


.tovar-preview .right .color-razmer .colcol .green {
	background:#02D002;
}
.tovar-preview .right .color-razmer .colcol .golden {
	background:#C8A353;
}
.tovar-preview .right .color-razmer .colcol .brown {
	background:#603813;
}
.tovar-preview .right .color-razmer .colcol .red {
	background:#ED0000;
}
.tovar-preview .right .color-razmer .colcol .orange {
	background:#FF7526;
}
.tovar-preview .right .color-razmer .colcol .pink {
	background:#DC1A88;
}
.tovar-preview .right .color-razmer .colcol .silver-color {
	background:#959595;
}
.tovar-preview .right .color-razmer .colcol .blues {
	background:#4988E9;
}
.tovar-preview .right .color-razmer .colcol .dark-blue {
	background:#2739B1;
}
.tovar-preview .right .color-razmer .colcol .purple {
	background:#9966ED;
}
.tovar-preview .right .color-razmer .colcol .black {
	background:#000000;
}
.tovar-preview .right .color-razmer .colcol .the-emerald {
	background:#608C71;
}
.tovar-preview .right .color-razmer .colcol .sea-wave {
	background:#3294AF;
}
.tovar-preview .right .color-razmer .colcol .rose-gold {
	background:#CB867D;
}
.tovar-preview .right .color-razmer .colcol .peppermint {
	background:#3EB489;
}
.tovar-preview .right .color-razmer .colcol .coffee {
	background:#603813;
}
.tovar-preview .right .color-razmer .colcol .wine-shop {
	background:#590000;
}
.tovar-preview .right .color-razmer .colcol .steel {
	background:#776C62;
}
.tovar-preview .right .color-razmer .colcol .silver {
	background:#c0c0c0;
}
.tovar-preview .right .color-razmer .colcol .emerald {
	background:#50c878;
}
#abs-preim .left .kiomen .loiq-01 .bigbig img {
	height:370px;
}
#abs-preim .left .kiomen .loiq .free img {
	height:120px;
}
 
#polycarbonate .right .color-razmer .colcol .color001 {
	background:yellow;
}
#polycarbonate .right .color-razmer .colcol .color002 {
	background:#30d5c8;
}
#polycarbonate .right .color-razmer .colcol .color003 {
	background:black;
}
#polycarbonate .right .color-razmer .colcol .color004 {
	background:#f5f5dc;
}
#polycarbonate .right .color-razmer .colcol .color005 {
	background:#013220;
}
#polycarbonate .right .color-razmer .colcol .color006 {
	background:red;
}
#polycarbonate .right .color-razmer .colcol .color007 {
	background:#002137;
}
#polycarbonate .right .color-razmer .colcol .color008 {
	background:#808080;
}
#polycarbonate .right .color-razmer .colcol .color009 {
	background:#013220;
}



#tkan .right .color-razmer .colcol .color001 {
	background:#4E509B;
}
#tkan .right .color-razmer .colcol .color002 {
	background:#000000;
}
#tkan .right .color-razmer .colcol .color003 {
	background:#51717E;
}
#tkan .right .color-razmer .colcol .color004 {
	background:#f5f5dc;
}
#tkan .right .color-razmer .colcol .color005 {
	background:#013220;
}
#tkan .right .color-razmer .colcol .color006 {
	background:red;
}
#tkan .right .color-razmer .colcol .color007 {
	background:#002137;
}
#tkan .right .color-razmer .colcol .color008 {
	background:#808080;
}
#tkan .right .color-razmer .colcol .color009 {
	background:#013220;
}






#abs-preim .right .color-razmer .colcol .color0000001 {
	background:#0077E9;
}
#abs-preim .right .color-razmer .colcol .color0000002 {
	background:#f5f5dc;
}
#abs-preim .right .color-razmer .colcol .color0000003 {
	background:white;
}
#abs-preim .right .color-razmer .colcol .color0000004 {
	background:#50c878;
}
#abs-preim .right .color-razmer .colcol .color0000005 {
	background:red;
}
#abs-preim .right .color-razmer .colcol .color0000006 {
	background:#CFD0C2;
}
#abs-preim .right .color-razmer .colcol .color0000007 {
	background:black;
}
#abs-preim .right .color-razmer .colcol .color0000008 {
	background:#c0c0c0;
}
#abs-preim .right .color-razmer .colcol .color0000009 {
	background:#964b00;
}
#abs-preim .right .color-razmer .colcol .color00000010 {
	background:#365E57;
}


#childish-new .right .color-razmer .colcol li {
	width:49px;height:49px;
}
#childish-new .right .color-razmer .colcol .blu1 {
	background:url(../img/childish/biu1/4.jpg) center no-repeat;
	background-size:contain;
	background-color:white;
}
#childish-new .right .color-razmer .colcol .blu2 {
	background:url(../img/childish/biu2/4.jpg) center no-repeat;
	background-size:contain;
	background-color:white;
}
#childish-new .right .color-razmer .colcol .blu3 {
	background:url(../img/childish/biu3/4.jpg) center no-repeat;
	background-size:contain;
	background-color:white;
}
#childish-new .right .color-razmer .colcol .blu4 {
	background:url(../img/childish/biu4/4.jpg) center no-repeat;
	background-size:contain;
	background-color:white;
}
#childish-new .right .color-razmer .colcol .blu5 {
	background:url(../img/childish/biu5/4.jpg) center no-repeat;
	background-size:contain;
	background-color:white;
}
#childish-new .right .color-razmer .colcol .blu6 {
	background:url(../img/childish/biu6/4.jpg) center no-repeat;
	background-size:contain;
	background-color:white;
}
#childish-new .right .color-razmer .colcol .blu7 {
	background:url(../img/childish/biu7/4.jpg) center no-repeat;
	background-size:contain;
	background-color:white;
}
#childish-new .right .color-razmer .colcol .blu8 {
	background:url(../img/childish/biu8/4.jpg) center no-repeat;
	background-size:contain;
	background-color:white;
}
#childish-new .right .color-razmer .colcol .blu9 {
	background:url(../img/childish/biu9/4.jpg) center no-repeat;
	background-size:contain;
	background-color:white;
}
#childish-new .right .color-razmer .colcol .blu10 {
	background:url(../img/childish/biu10/4.jpg) center no-repeat;
	background-size:contain;
	background-color:white;
}
#childish-new .right .color-razmer .colcol .blu11 {
	background:url(../img/childish/biu11/4.jpg) center no-repeat;
	background-size:contain;
	background-color:white;
}
#childish-new .right .color-razmer .colcol .blu12 {
	background:url(../img/childish/biu12/4.jpg) center no-repeat;
	background-size:contain;
	background-color:white;
}
#childish-new .left .kiomen .loiq-01 .bigbig img {
	width:100%;height:auto;
}

#covers .right .color-razmer .colcol li {
	width:49px;height:49px;
}
#covers .right .color-razmer .colcol .color1 {
	background:url(../img/covers/color1/4.jpg) center no-repeat;
	background-size:contain;
	background-color:white;
}
#covers .right .color-razmer .colcol .color2 {
	background:url(../img/covers/color2/4.jpg) center no-repeat;
	background-size:contain;
	background-color:white;
}
#covers .right .color-razmer .colcol .color3 {
	background:url(../img/covers/color3/4.jpg) center no-repeat;
	background-size:contain;
	background-color:white;
}
#covers .right .color-razmer .colcol .color4 {
	background:url(../img/covers/color4/4.jpg) center no-repeat;
	background-size:contain;
	background-color:white;
}
#covers .right .color-razmer .colcol .color5 {
	background:url(../img/covers/color5/4.jpg) center no-repeat;
	background-size:contain;
	background-color:white;
}
#covers .right .color-razmer .colcol .color6 {
	background:url(../img/covers/color6/4.jpg) center no-repeat;
	background-size:contain;
	background-color:white;
}
#covers .right .color-razmer .colcol .color7 {
	background:url(../img/covers/color7/4.jpg) center no-repeat;
	background-size:contain;
	background-color:white;
}
#covers .right .color-razmer .colcol .color8 {
	background:url(../img/covers/color8/4.jpg) center no-repeat;
	background-size:contain;
	background-color:white;
}
#covers .right .color-razmer .colcol .color9 {
	background:url(../img/covers/color9/4.jpg) center no-repeat;
	background-size:contain;
	background-color:white;
}
#covers .right .color-razmer .colcol .color10 {
	background:url(../img/covers/color10/4.jpg) center no-repeat;
	background-size:contain;
	background-color:white;
}
#covers .right .color-razmer .colcol .color11 {
	background:url(../img/covers/color11/4.jpg) center no-repeat;
	background-size:contain;
	background-color:white;
}
#abs2 .right .color-razmer .colcol li {
	width:49px;height:49px;
}
#abs2 .right .color-razmer .colcol .yellow {
	background:url(../img/abs2/yellow/4.jpg) center no-repeat;
	background-size:contain;
	background-color:white;
}
#abs2 .right .color-razmer .colcol .purple {
	background:url(../img/abs2/purple/4.jpg) center no-repeat;
	background-size:contain;
	background-color:white;
}
#abs2 .right .color-razmer .colcol .silver-color {
	background:url(../img/abs2/silver-color/4.jpg) center no-repeat;
	background-size:contain;
	background-color:white;
}
#abs2 .right .color-razmer .colcol .black {
	background:url(../img/abs2/black/4.jpg) center no-repeat;
	background-size:contain;
	background-color:white;
}
#abs2 .right .color-razmer .colcol .peppermint {
	background:url(../img/abs2/peppermint/4.jpg) center no-repeat;
	background-size:contain;
	background-color:white;
}
#abs2 .right .color-razmer .colcol .sea-wave {
	background:url(../img/abs2/sea-wave/4.jpg) center no-repeat;
	background-size:contain;
	background-color:white;
}
#abs2 .right .color-razmer .colcol .coffee {
	background:url(../img/abs2/coffee/4.jpg) center no-repeat;
	background-size:contain;
	background-color:white;
}
#abs2 .right .color-razmer .colcol .wine-shop {
	background:url(../img/abs2/wine-shop/4.jpg) center no-repeat;
	background-size:contain;
	background-color:white;
}
#abs2 .right .color-razmer .colcol .dark-blue {
	background:url(../img/abs2/dark-blue/4.jpg) center no-repeat;
	background-size:contain;
	background-color:white;
}
#abs2 .right .color-razmer .colcol .dark-blue1 {
	background:url(../img/abs2/dark-blue1/4.jpg) center no-repeat;
	background-size:contain;
	background-color:white;
}
#abs2 .right .color-razmer .colcol .wine-shop1 {
	background:url(../img/abs2/wine-shop1/4.jpg) center no-repeat;
	background-size:contain;
	background-color:white;
}
#abs2 .right .color-razmer .colcol .coffee1 {
	background:url(../img/abs2/coffee1/4.jpg) center no-repeat;
	background-size:contain;
	background-color:white;
}
#abs2 .right .color-razmer .colcol .purple1 {
	background:url(../img/abs2/purple1/4.jpg) center no-repeat;
	background-size:contain;
	background-color:white;
}
#abs2 .right .color-razmer .colcol .dark-blue2 {
	background:url(../img/abs2/dark-blue2/4.jpg) center no-repeat;
	background-size:contain;
	background-color:white;
}
#abs2 .right .color-razmer .colcol .orange {
	background:url(../img/abs2/orange/4.jpg) center no-repeat;
	background-size:contain;
	background-color:white;
}
#polypropylene .right .color-razmer .colcol li {
	width:49px;height:49px;
}
#polypropylene .right .color-razmer .colcol .color1 {
	background:url(../img/polypropylene/color1/4.jpg) center no-repeat;
	background-size:contain;
	background-color:white;
}
#polypropylene .right .color-razmer .colcol .color2 {
	background:url(../img/polypropylene/color2/4.jpg) center no-repeat;
	background-size:contain;
	background-color:white;
}
#polypropylene .right .color-razmer .colcol .color3 {
	background:url(../img/polypropylene/color3/4.jpg) center no-repeat;
	background-size:contain;
	background-color:white;
}
#polypropylene .right .color-razmer .colcol .color4 {
	background:url(../img/polypropylene/color4/4.jpg) center no-repeat;
	background-size:contain;
	background-color:white;
}
#polypropylene .right .color-razmer .colcol .color5 {
	background:url(../img/polypropylene/color5/4.jpg) center no-repeat;
	background-size:contain;
	background-color:white;
}
#polypropylene .right .color-razmer .colcol .color6 {
	background:url(../img/polypropylene/color6/4.jpg) center no-repeat;
	background-size:contain;
	background-color:white;
}
#polypropylene .right .color-razmer .colcol .color7 {
	background:url(../img/polypropylene/color7/4.jpg) center no-repeat;
	background-size:contain;
	background-color:white;
}
#polypropylene .right .color-razmer .colcol .color8 {
	background:url(../img/polypropylene/color8/4.jpg) center no-repeat;
	background-size:contain;
	background-color:white;
}
#polypropylene .right .color-razmer .colcol .color9 {
	background:url(../img/polypropylene/color9/4.jpg) center no-repeat;
	background-size:contain;
	background-color:white;
}
#polypropylene .right .color-razmer .colcol .color10 {
	background:url(../img/polypropylene/color10/4.jpg) center no-repeat;
	background-size:contain;
	background-color:white;
}
#polypropylene .right .color-razmer .colcol .color11 {
	background:url(../img/polypropylene/color11/4.jpg) center no-repeat;
	background-size:contain;
	background-color:white;
}
#polypropylene .right .color-razmer .colcol .color12 {
	background:url(../img/polypropylene/color12/4.jpg) center no-repeat;
	background-size:contain;
	background-color:white;
}
#polypropylene .right .color-razmer .colcol .color13 {
	background:url(../img/polypropylene/color13/4.jpg) center no-repeat;
	background-size:contain;
	background-color:white;
}
#polypropylene .right .color-razmer .colcol .color14 {
	background:url(../img/polypropylene/color14/4.jpg) center no-repeat;
	background-size:contain;
	background-color:white;
}
#polypropylene .right .color-razmer .colcol .color15 {
	background:url(../img/polypropylene/color15/4.jpg) center no-repeat;
	background-size:contain;
	background-color:white;
}
#polypropylene .right .color-razmer .colcol .color16 {
	background:url(../img/polypropylene/color16/4.jpg) center no-repeat;
	background-size:contain;
	background-color:white;
}
#polypropylene .right .color-razmer .colcol .color17 {
	background:url(../img/polypropylene/color17/4.jpg) center no-repeat;
	background-size:contain;
	background-color:white;
}
#polypropylene .right .color-razmer .colcol .color18 {
	background:url(../img/polypropylene/color18/4.jpg) center no-repeat;
	background-size:contain;
	background-color:white;
}
#polypropylene .kiomen .loiq img {
	width:100%;
	height:auto;
	position: absolute;
    margin: auto;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
}
#polypropylene .kiomen .free {
	height:130px;
	position: relative;
}
.tovar-preview .right .p005 {
	font-size: 16px;
	font-weight:bold;
	text-align:center;
	margin:15px 0;
}
.tovar-preview .right .kabzdoz {
	margin-bottom:25px;
	margin-top:12px;
}
.rrred {
	font-weight:bold;
	color:#EA3D1B;
}
.tovar-preview .right .kabzdoz li {
	float:left;
	width:46%;
	margin:0 2%;
	line-height:1.5;
	color:#666;
	font-size:14px;
}
.tovar-preview .right .prices {
	float:left;
 
}
.tovar-preview .right .prices .p006 {
	font-size: 50px;
	font-weight:bold;
 
}
.tovar-preview .right .prices .p006 sup {
	font-size: 18px;
	color:#666;
	vertical-align:super;
}
.tovar-preview .right .prices .p007 {
	font-size: 30px;
	font-weight:bold;
	color:#CCCCCC;
	text-align:center;
	text-decoration:line-through;
}
.tovar-preview .right .bambam {
	float:right;
}
.tovar-preview .right .bambam .oiup {
	color:white;
	font-size: 18px;
	font-weight:bold;
	background-color: #54a0ec;
	border-radius:12px;
	text-decoration:none;
	text-align:center;
	border:none;
	cursor:pointer;
	padding:15px 30px;
 
}
.tovar-preview .right .pozhek .col-1 {
	float:left;
}
.tovar-preview .right .pozhek .col-2 {
	float:right;
}
.tovar-preview .right .pozhek .col-2 img {
	float:left;
	margin-right:12px;
}
.tovar-preview .right .pozhek .col-2 p {
	font-size: 14px;
	line-height:1.5;
	color:#666;
	float:right;
}
.tovar-preview .right .p008 {
	font-size: 14px;
	margin-bottom:7px;
	color:#666;
}
.tovar-preview .right .bambam .oiup:hover {
	transition:all .3s ease-in-out;
	background:#427DB8;
}
.tovar-preview .right .color-razmer .colcol li:hover {
	border-color:#47A4F4;
}
.tovar-preview .right .color-razmer .colcol .dada {
	border-color:#47A4F4;
}
.tovar-preview .left .kiomen .loiq-01 {
	float:left;
	width:380px;
	margin-left:30px;
}
.tovar-preview .left .kiomen .loiq-01 .bigbig {
	text-align:center;
}
.tovar-preview .left .kiomen .loiq-01 .bigbig img {
	width:auto;
	height:475px;
}
.tovar-preview .left .kiomen .loiq-02 {
	float:right;
	margin-top:10px;
}
.tovar-preview .left .kiomen .loiq-02 ul li {
	margin-bottom:30px;
}
.tovar-preview .left .kiomen .loiq-02 .t01 {
	font-weight:bold;
	font-size: 16px;
	margin-bottom:10px;
}
.tovar-preview .left .kiomen .loiq-02 .t02 {
	font-size: 16px;
	color:#808080;
	font-weight:bold;
}
.tovar-preview .left .podpis img {
	float:left;
	width:30px;
	margin-right:12px;
}
.tovar-preview .left .podpis .t1 {
	float:left;
	width:175px;
	line-height:1.5;
	color:#666;
}
.tovar-preview .left .podpis .ntb {
	float:left;
	width:190px;
	margin-left:35px;
}
.tovar-preview .left .podpis .ntb {
	color:white;
	font-size: 16px;
	font-weight:bold;
	background-color: #54a0ec;
	border-radius:12px;
	text-decoration:none;
	text-align:center;
	height:42px;
	line-height:42px;
}
.tovar-preview .left .podpis .ntb:hover {
	transition:all .3s ease-in-out;
	background:#427DB8;
}
.no-pk1 a {
	font-size: 16px;
	font-weight:bold;
	background-color: #54a0ec;
	border-radius:12px;
	text-decoration:none;
	text-align:center;
	height:42px;
	line-height:42px;
	color:white;
	text-decoration:none;
	display:block;
}
.no-pk1 a:hover {
	transition:all .3s ease-in-out;
	background:#427DB8;
}
.jqcart-manage-order > div > div {
				font-size:14px;
			}
			.jqcart-manage-order > div > div {
				max-width:300px;
			}
		 
.jqcart-orderform input[type=text], .jqcart-orderform textarea {
	height:36px;
	font-size:16px;
	padding:7px 12px;
	border-radius:8px;
	width:100%;
}
.tovar-preview {
	display:none;
}
#abs1 {
	display:block;
}
#magazine .wi50 {
	float:left;width:48%;
}
#magazine .wi50 img {
	width:100%;
}
#magazine .maps {
	float:right;
}
.gorogo .wi33 {
	width:50%;
	float:left;
}
.gorogo .wiimg {
	width:50%;
	float:right;
	text-align:right;
}
.gorogo .wiimg img {
	width:60% !important;
}
@media only screen and (max-width: 1490px) {
	.gorogo .wiimg {
		text-align:center !important;
	}
}
@media only screen and (max-width: 1200px) {

	#magazine .wi50 {
	float:none;width:100%;text-align:center;
	}
	#magazine .wi50 img {
	width:auto;
	}
	#magazine .maps {
	margin-top:15px;
	}
	.tovar-preview .right .color-razmer .p004 {
		text-align:left;
		padding:0 10px;
	}
	.tovar-preview .right .color-razmer .p001 {
		text-align:left;
		padding:0 10px;
	}
	.catalog-block .navi-tovar {
		padding:0;
		background:none;
	}
	.catalog-block .navi-tovar ul li .p02 {
		font-size:13px;
	}
	.tovar-preview .left {
		width:580px;
		float:none;
		margin:0 auto 0 auto;
	}
	.tovar-preview .left .kiomen .loiq-02 {
		margin-top:70px;
	}
	.tovar-preview .left .no-mob {
		    width: 445px;
			margin:0 auto 15px auto;
	}
	.tovar-preview .right {
		width:580px;
		float:none;
		margin:0 auto;
		text-align:center;
	}
	.tovar-preview .right .color-razmer .sizes li {
		display:inline-block;
		float:none;
	}
	.tovar-preview .right .color-razmer .colcol li {
		display:inline-block;
		float:none;
	}
}
@media only screen and (max-width: 1100px) {
	.actions .wi-50 {
		width:100%;
		float:none;
		overflow: hidden;
		margin-bottom:25px;
	}
	.actions .lele {
		margin-left:0;
	}
	.actions .left {
		display:none;
	}
	.actions .right {
		float:none;
		margin:0 auto;
	}
	.catalog-block .navi-tovar ul li {
		border-radius:0;
		width:33.3%;
		margin:0;
	}
	.catalog-block .navi-tovar ul li .bfhh {
		border-radius:0;
		border-color:transparent;
	}
	.catalog-block .navi-tovar ul li .p01 {
		font-size:16px;
	}
	.catalog-block .navi-tovar ul li .p02 {
		font-size:16px;
	}
}
@media only screen and (max-width: 980px) {
	#dasa {
		text-align:center !important;
	}
	.advantages .wi33 .p1 {
		float:none;
		display:inline-block;
	}
	.advantages .wi33 .p4 {
		float:none;
		display:inline-block;
	}
	.advantages .wi33 .p4 .price {
		float:none;
		display:inline-block;
	}
	.gorogo .wi33 {
		width:100%;
		float:none;
		margin:0 auto;
	}
	.tovar-preview .right .color-razmer .colcol li {
		width:22px;
		height:22px;
		margin-right:4px;
	}
	.garrr {
		float:none !important;
	}
	.gorogo .wiimg {
		display:none;
	}
	.catalog-block .navi-tovar ul li .p01 {
		margin-top:5px;
	}
	.catalog-block .navi-tovar ul li .bfhh {
		padding: 8px 4px 8px 8px;
	}
	header .navigation {
		display:none;
	}
	.block-1 .left {
		float:none;
		width:100%;
		text-align:center;
	}
	.block-1 .right {
		float:none;
		width:100%;
		text-align:center;
		margin-top:25px;
	}
	.block-1 .right img {
		width:auto;
	}
	 
}
.mobilka {
		display:none;
		text-align:center;
		margin-bottom:15px;
	}
.no-pk {
 
	margin-top:10px;
	font-size:16px;
}
.no-pk1 {
	display:none;
}
@media only screen and (max-width: 680px) {
	.block-1 .right {
		height:250px;
	}
	#magazine .wi50 img {
    width: 100%;
	}
	.advantages .wi33 .p1 {
		font-size:20px;
	}
	.advantages .wi33 .p4 .price {
		font-size:20px;
	}
	.tovar-preview .right .color-razmer .p004 {
		font-size:16px;
	}
	.tovar-preview .right .color-razmer .sizes li {
		width:auto;
	}
	.no-pk1 {
	display:block;
	float:left;width:48%;
	padding-top:10px;
	}
	.block-1 .left .spisok li strong {
		display:none;
	}
 
	.no-pk {
		display:block;
	}
	.actions .centt {
		margin-bottom:0;
	}
	.actions .p2 {
		margin-bottom:15px;
	}
	.mobilka {
		display:block;
	}
	 .actions .wi-50 .p4 {
		 width:40%;
	 }
	 .actions .wi-50 .p3 {
		 width:60%;
	 }
	 .actions .right .forms .p5 {
		 font-size:20px;
	 }
	 .actions .right .forms .p6 {
		 font-size:20px;
	 }
	 .actions .right .forms .p7 {
		 font-size:16px;
	 }
	.actions .wi-50 .p3 {
		font-size:20px;
	}
	.tovar-preview .right .p005 {
		display:none;
	}
	
	.tovar-preview .right .kabzdoz {
		display:none;
	}
	.tovar-preview .right .prices .p006 {
		margin-top:9px;
		font-size:40px;
	}
	
	.tovar-preview .left {
		width:100%;
	}
	.tovar-preview .left .kiomen {
		text-align:center;
	}
	.tovar-preview .left .kiomen .loiq-01 {
		float:none;
		margin-left:0;
		display:inline-block;
		width:80%;
	}
	.tovar-preview .left .kiomen .loiq-02 {
		float:none;
		display:block;
		margin-top:0;
		margin-bottom:15px;
		text-align:center;
	}
	.tovar-preview .left .kiomen .loiq-02 ul li {
		display:inline-block;
		margin:0 12px;
	}
	.tovar-preview .left .kiomen .loiq {
		width:20%;
	}
	.tovar-preview .right {
		width:100%;
	}
	header {
		position:fixed;
		width:100%;
		top:0;left:0;
		background:white;
		padding:9px 0;
		z-index:9999;
	}
	
	.block-1 {
		padding-top:111px;
	}
	header .logo {
		display:none;
	}
	header .contact {
		float:none;
		text-align:center;
	}
	header .contact .phh {
		font-size:20px;
	}
	header .contact .p1 {
		font-size:16px;
		background: #FFFF00; 
		color: #e10c00;
		padding: 5px 10px;
		border-radius: 3px;
	}
	.advantages .wi33 {
		width:100%;
		float:none;
		margin:20px 0;
	}
	.block-1 .left .p1 {
		font-size:28px;
	}
	.block-1 .left .p2 {
		font-size:22px;
	}
	.block-1 .left .spisok li {
		font-size:20px;
	}
	.block-1 .left .p3 {
		font-size:18px;
	}
	.block-1 .right img {
		width:100%;
	}
	.catalog-block .p1 {
		font-size:28px;
	}
	.catalog-block .p2 {
		line-height:1.5;
	}
	.actions .p1 {
		font-size:36px;
	}
	.actions .p2 {
		font-size:20px;
	}
	.actions .wi-50 .p4 .price {
		font-size:20px;
	}
	.actions .wi-50 .p4 .price-old {
		font-size:24px;
	}
	.actions .right {
		width:320px;
	}
	.actions .right .forms {
		padding:20px;
	}
	.dostavka .p2 {
		font-size:16px;
	}
	.cart-top {
		width:60px;height:60px;
	}
	.cart-top .nubmer {
		bottom:-10px;right:-5px;
		width:25px;height:25px;
		line-height:25px;
		font-size:13px;
	}
	.catalog-block .navi-tovar ul li {
		width:100%;
		float:none;
	}
	.catalog-block .navi-tovar ul .right {
		right:20px;
	}
	.catalog-block .navi-tovar ul li .p02 {
		text-transform:uppercase;
	}
	.no-mob {
		display:none;
	}
	.tovar-preview .right .prices {
		width:50%;float:left;
	}
	.tovar-preview .right .bambam {
		margin-bottom:10px;
	}
	.tovar-preview .right .color-razmer {
		margin-bottom:10px;
	}
	.tovar-preview .right .pozhek .col-1 {
		display:none;
	}
	.tovar-preview .right .pozhek .col-2 {
		
	}
	.tovar-preview .txt {
		margin-top:12px;
	}
}
@media only screen and (max-width: 540px) {
	.tovar-preview .left .kiomen .loiq .free img {
		width:100% !important;
		height:auto !important;
	}
	.tovar-preview .left .kiomen .loiq-01 .bigbig img {
		width:100% !important;
		height:auto !important;
	}
	.tovar-preview .right .color-razmer .sizes li .p002 {
		font-size:10px;
	}
	.tovar-preview .right .color-razmer .sizes li .p003 {
		font-size:15px;
	}
	.tovar-preview .right .color-razmer .sizes li {
		margin-right:3px;
		    padding:8px 8px;
	}
	.tovar-preview .txt .g2 {
		font-size:14px;
	}
	.vzalvzal {
		font-size:14px !important;
		margin-bottom:12px !important;
	}
	.no-pk {
		font-size:14px;
	}
	.tovar-preview .right .color-razmer .colcol li {
		width:18px;height:18px;
		margin-right:2px;
	}
	.tovar-preview .right .color-razmer {
		padding:12px 0px 15px 0;
	}
	.tovar-preview .left .no-mob {
		width:100%;
	}
	.tovar-preview .left .podpis .t1 {
		float:none;
		width:100%;
	}
	.tovar-preview .left .podpis .ntb {
		margin-left:0;
		display:block;
		margin:6px auto;
		float:none;
	}
 
	.tovar-preview .right .kabzdoz {
		margin-bottom:12px;
	}
	.tovar-preview .right .bambam .oiup {
		margin-top:0;
	}
	
	.tovar-preview .right .pozhek .col-1 {
		float:none;
		text-align:center;
		margin-bottom:12px;
	}
 
	.tovar-preview .left .kiomen .loiq-02 ul li {
		margin:0;
		float:left;
		width:20%;
	}
	.tovar-preview .left .kiomen .loiq-02 {
		overflow:hidden;
		width:100%;
	}
	.tovar-preview .left .kiomen .loiq-02 .t01 {
		font-size:14px;
	}
	.tovar-preview .left .kiomen .loiq-02 .t02 {
		font-size:14px;
	}
	.tovar-preview .right .color-razmer .p001 {
		font-size:16px;
	}
}
@media only screen and (max-width: 480px) {
	#polypropylene .kiomen .free {
		height:100px;
	}
	.of-zak {
		width:100%;
	}
	.of-zak .jqcart-cart-title {
		margin-top:10px;
	}
	 .jqcart-checkout {
    width: 88%;
	}
	.jqcart-manage-order > div > div {
    font-size: 13px;
    padding: 0px 5px;
}
	.tovar-preview .right .prices {
		width:45%;
	}
	.tovar-preview .right .prices .p006 {
		font-size:34px;
	}
	.tovar-preview .left .kiomen .loiq .free {
		margin-bottom:30px;
	}
	.tovar-preview .kiomen .free:last-child {
		margin-bottom:0 !important;
	}
	.tovar-preview .right .bambam .oiup {
		font-size:16px;
	}
}
.name {
	font-weight:400;
}
.popup p {margin: 0; padding: 5px 0}
.popup .g1 {
	font-size: 32px;
	font-weight:bold;
	text-align:center;
	margin-bottom:15px;
}
.popup .g2 {
	font-size: 14px;
	text-align:center;
	margin-bottom:15px;
}
.popup .g3 {
	font-size: 14px;
	text-align:center;
	line-height:1.5;
	color:#666;
}
.catalog-block .navi-tovar ul li .active {
	border-color:#FFFF00;
}
.catalog-block .navi-tovar ul li .bfhh:hover {
	border-color:#FFFF00;
}
