.product-list {
    height: auto;
    width: 100%;
    text-align: center;
    margin-right: 2px;
    margin-left: 0px;
    padding: 0px;
}
.product-list-gorizont {
    height: auto;
    width: 100%;
    text-align: center;
    margin: 0px;
    padding: 0px;
    position: relative;
}
.product-list-tovar {
    height: auto;
    width: 18%;
    display: inline-block;
    margin: 5px;
    text-align: center;
}
.product-list .item {
    width: 100%;
    display: inline-block;
    box-shadow: 0 0 2px 1px #BDBDBD;
    -moz-box-shadow: 0 0 2px 1px #BDBDBD;
    -webkit-box-shadow: 0 0 2px 1px #BDBDBD;
    -moz-border-radius: 0px;
    -webkit-border-radius: 0px;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.3);
    text-align: center;
    height: auto;
    transition: 0.5s;
}
.product-list .item-gruppa {
    width: 100%;
    display: inline-block;
    box-shadow: 0 0 2px 1px #BDBDBD;
    -moz-box-shadow: 0 0 2px 1px #BDBDBD;
    -webkit-box-shadow: 0 0 2px 1px #BDBDBD;
    border-radius: 8px;
    -moz-border-radius: 8px;
    -webkit-border-radius: 8px;
    overflow: hidden;
    border: 2px solid #FFF;
    background-color: rgba(255, 255, 255, 0.3);
    text-align: center;
    height: auto;
}
.product-list .item.last {
    margin-right: 0;
}
.product-list .item:nth-child(3n) {
    margin-right: 0;
}
.product-list .item:hover {
    background-color: rgba(255, 255, 255, 0.7);
    height: auto;
    width: 100%;
    transition: 0.5s;
}

.product-list .item:hover .text {
    background-color: rgba(255, 255, 255, 0.9);
}
.product-list .item .image {
    border-bottom: 1px solid #CCCCCC;
    display: table;
    width: 100%;
    height: auto;
    margin-right: auto;
    margin-left: auto;
    background-color: rgba(255, 255, 255, 0.3);
}

.product-list .item .image span {
    display: table-cell;
    vertical-align: bottom;
    text-align: center;
}
.product-list .item img {
    height: 90%;
    width: auto
}
.product-list .item .text {
	text-align: center;
	background-color: rgba(255, 255, 255, 0.6);
	padding: 0px;
}
.product-list .item .text h5 {
	color: #FFFFFF;
	font-size: 12px;
	text-align: center;
	background-color: #6A2022;
	padding: 5px;
	height: auto;
	width: auto;
	line-height: 16px;
}
.product-list .item .text .price {
	color: #190E04;
	font-size: 16px;
	font-family: Bounded-Medium;
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 0px;
	margin-left: 0;
	font-weight: normal;
	height: auto;
	width: auto;
}
.product-list .item .text .price span {
	color: #990000;
	font-family: Bounded-Medium;
	font-size: 16px;
	font-weight: normal;
	padding-top: 5px;
	padding-bottom: 5px;
	line-height: 30px;
}
.product-list .item .text .btn-add-to-cart {
	color: #A33034;
	width: 100%;
	height: 34px;
	text-align: center;
	border: 1px solid #CDCDCD;
	border-radius: 6px;
	-moz-border-radius: 0px;
	-webkit-border-radius: 0px;
	text-decoration: none;
	display: block;
	line-height: 34px;
	background-repeat: repeat-x;
	background-position: 0 -1px;
	background-image: url(../image/imgs-arrow/btn-1.png);
	font-family: Bounded-Medium;
	font-size: 17px;
	margin: 0;
}
.product-list .item .text .btn-add-to-cart:before {
	content: '';
	width: 25px;
	height: 25px;
	display: inline-block;
	vertical-align: middle;
	background-repeat: no-repeat;
	background-image: url(../image/imgs-arrow/textura03.png);
	margin-top: -4px;
	margin-right: 10px;
	margin-bottom: 0;
	margin-left: 0;
	font-family: Bounded-Medium;
}
.product-list .item .text .btn-add-to-cart:hover {
	opacity: 0.9;
	font-family: Bounded-Medium;
}
.product-list .item:hover .text .btn-add-to-cart {
	background-position: 0 -40px;
	border: 1px solid #FFCD08;
	font-family: Bounded-Medium;
}
.text-zakaz {
	height: 30px;
	width: 100%;
	transition: 0.5s;
	line-height: 30px;
	background-image: url(../image/imgs-arrow/textura04.png);
	background-repeat: no-repeat;
	background-position: 15px center;
	vertical-align: middle;
	display: inline-block;
	color: #FFF;
	font-size: 14px;
	font-family: Bounded-Medium;
}
.text-zakaz {
	background-color: #6A2022;
	width: 100%;
	color: #FFF;
	font-size: 15px;
	font-family: Bounded-Medium;
}
.text-zakaz:hover {
	background-color: #FFF;
	width: 100%;
	color: #6A2022;
	font-family: Bounded-Medium;
}
/*БОКОВАЯ ПАНЕЛЬ*/
.nav {
    width: 360px;
    min-width: 360px;
    height: auto;
    position: fixed;
    top: 0;
    bottom: 0;
    margin: 0;
    right: -360px;
    padding: 0px;
    -webkit-transition: right 0.8s;
    -moz-transition: right 0.8s;
    transition: right 0.8s;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.8);
    z-index: 999999;
    overflow: scroll;
}

.nav-toggle {
	position: absolute;
	cursor: pointer;
	line-height: 1;
	z-index: 2001;
	-webkit-transition: color .25s ease-in-out;
	-moz-transition: color .25s ease-in-out;
	transition: color .25s ease-in-out;
	display: inline-block;
	height: auto;
	width: auto;
	color: #FFF;
	top: 2px;
	padding-top: 5px;
	padding-right: 10px;
	padding-bottom: 5px;
	padding-left: 5px;
	font-size: 30px;
	right: -360px;
	background-image: none;
}

.nav-toggle:hover {
	color: #FF9900;
	font-size: 30px;
	position: absolute;
	top: 2px;
	background-image: none;
}

.nav-toggle-text {
    color: #FFFFFF;
    cursor: pointer;
    -webkit-transition: color .25s ease-in-out;
    -moz-transition: color .25s ease-in-out;
    transition: color .25s ease-in-out;
    height: auto;
    width: auto
}

.nav-toggle-logo {
    padding: 10px;
    font-size: 30px;
    -webkit-transition: color;
    -moz-transition: color;
    transition: color;
    margin-right: auto;
    margin-left: auto;
    -ms-transition: color;
    -o-transition: color
}

.nav-toggle-logo-end {
    font-size: 30px;
    -webkit-transition: color;
    -moz-transition: color;
    transition: color;
    margin-top: 10px;
    margin-right: auto;
    margin-bottom: 10px;
    margin-left: auto;
    -ms-transition: color;
    -o-transition: color;
    padding-top: 100px;
    padding-bottom: 100px
}

.nav-toggle-start-ikon {
    height: 30px;
    width: 30px;
    float: left;
    display: inline-block;
    left: 0;
    margin-top: 0;
    margin-bottom: 0
}

.zaman-gl-txt {
	font-size: 18px;
	color: #FFF;
	height: auto;
	width: auto;
	margin: 0px;
	text-align: center;
	font-weight: normal;
	padding: 10px;
	background-color: #773537;
	font-family: Bounded-Medium;
	line-height: 25px;
}

.zaman-gl-txt-svyaz {
    font-size: 18px;
    color: #FFF;
    background-color: rgba(0, 0, 0, 0.9);
    height: auto;
    width: auto;
    margin: 0px;
    text-align: center;
    font-weight: normal;
    padding-top: 10px;
    padding-right: 10px;
    padding-bottom: 10px;
    padding-left: 10px;
}
.nav-toggle-ikonki-txt {
    margin-right: auto;
    margin-left: auto;
    height: 25px;
    width: 25px;
    vertical-align: top;
    transition: 0.3s;
    padding-right: 10px;
    padding-left: 10px;
    position: relative;
    top: -3px;
}
.nav-toggle-ikonki-txt-line {
    height: 45px;
    width: 45px;
    vertical-align: top;
    transition: 0.3s;
    position: relative;
    margin: 4px;
    padding: 2px;
    display: inline-block;
    transition: all 0.8s;
}

.nav-toggle-ikonki-txt-line:hover {
    height: 45px;
    width: 45px;
    transition: 0.3s;
    position: relative;
    vertical-align: top;
    margin: 4px;
    display: inline-block;
    transition: all 0.8s;
    padding: 2px;
}
.nav-toggle:after {
    content: '\2630';
    text-decoration: none;
}
.logomagazin {
    height: auto;
    width: 100px;
    margin-top: 30px;
    margin-right: auto;
    margin-left: auto;
}
[id='nav-toggle'] {
    position: absolute;
    display: none;
}
[id='nav-toggle']:checked ~ .nav > .nav-toggle {
    left: auto;
    right: 2px;
    cursor: pointer;
}
[id='nav-toggle']:checked ~ .nav {
    right: 0;
    box-shadow: -4px 0px 20px 0px rgba(0, 0, 0, 0.5);
    -moz-box-shadow: -4px 0px 20px 0px rgba(0, 0, 0, 0.5);
    -webkit-box-shadow: -4px 0px 20px 0px rgba(0, 0, 0, 0.5);
    overflow-y: auto;
}
[id='nav-toggle']:checked ~ main > article {
    -webkit-transform: translateX(-360px);
    -moz-transform: translateX(-360px);
    transform: translateX(-360px);
}
[id='nav-toggle']:checked ~ .nav > .nav-toggle:after {
    content: '\2715';
}
body {
	-webkit-animation: bugfix infinite 1s;
}
@media only screen and (max-width: 480px) {
    .nav {
        width: 100%;
        min-width: 320px;
        height: auto;
        position: fixed;
        top: 0;
        bottom: 0;
        margin: 0;
        right: -480px;
        padding: 0px;
        -webkit-transition: right 0.8s;
        -moz-transition: right 0.8s;
        transition: right 0.8s;
        text-align: center;
        background-color: rgba(255, 255, 255, 0.9);
        z-index: 999999;
        overflow: scroll;
    }
}
