body {
	position: relative;
	min-width: 320px;
	background: #fff;
	color: #0b2028;
	font-family: Arial, sans-serif;
}

a,
a:visited,
a:link {
    color: #f5821f;
}

a:hover {
    color: #d7690a;
    text-decoration: none;
}

h1 {
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
    font-size: 1.6rem;
}

h2 {
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
    font-size: 1.5rem;
}

h3 {
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
    font-size: 1.4rem;
}

h4 {
	font-family: 'Montserrat', sans-serif;
	font-weight: 500;
    font-size: 1.3rem;
}

h5 {
	font-family: 'Montserrat', sans-serif;
	font-weight: 500;
    font-size: 1.1rem;
}
main{position: relative; z-index: 2;}
/*video-bg*/
#bgvid {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
    width: 100%;
    margin-top: 0;
    overflow: hidden;
}
#vid {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    overflow: hidden;
}
#bgvid:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: rgba(0,0,0,.5);
    z-index: 1;
}
#bg1,#bg2{
	position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    width: 10%;
	max-width: 350px;
    margin: 0;
    overflow: hidden;
	background-repeat: no-repeat;
	background-position: top right;
    background-image: url('../images/img/bg.jpg');
}
#bg2{
	right: 0;
	left: auto;
	transform: scale(-1, 1);
}
/*font*/
.f-b{font-weight: 700 !important;}
.hide{display: none !important}
.clear{clear: both !important}
/*btn*/
.btn{
	border: 0;
	border-radius: 23px;
	height: 45px;
	line-height: 35px;
	padding: .375rem 1.5rem;
	box-shadow: 5px 5px 10px 0px rgba(0,0,0,.1);
	cursor: pointer;
	transition: all .3s;
}
.btn-primary {background-color: #f5821f !important; color: #fff !important;}
.btn-primary:hover {background-color: #0b2028 !important;}
.btn-transparent{
	cursor: pointer;
	position: absolute;
	left: 0; top: 0;
	right: 0; bottom: 0;
	z-index: 100;
}
.text-primary {
    color: #f5821f !important;
}

.bg-primary {
    background-color: #f5821f !important;
}

.breadcrumb {
    background: transparent;
}

.pagination {
    border-radius: 0;
}

.page-item:first-child .page-link {
    border-radius: 0;
}

.page-item:last-child .page-link {
    border-radius: 0;
}

a.page-link,.page-link,
.page-item.disabled .page-link {
    background: transparent;
    border: 1px solid transparent;
	color: #0b2028;
	margin: 0 2px;
	box-shadow: none !important;
}

.page-link:hover {
	color: #0b2028;
    border: 1px solid rgba(0,0,0,.2);
}

.page-item.active .page-link {
    background: #0b2028;
   	color: #fff;
    border: 1px solid #0b2028;
}

/*header*/
header{
	font-family: 'Montserrat', sans-serif;
	font-weight: 500;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
    height: 65px;
	overflow: visible;
	z-index: 10;
}
#logo-top{
	position: relative;
	width: 100px;
	height: 65px;
	float: left;
	display: block;
	background-image: url(../images/ico/logo.png);
	background-position: center bottom;
	background-repeat: no-repeat;
	background-size: contain;
}
#logo-top:before{
	content: '';
	display: block;
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	height: 54px;
	width: 54px;
	margin: auto auto;
	background-image: url(../images/ico/logo-r.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	animation: rotation360 1s linear forwards;
}
@keyframes rotation360 {
  100% {
     transform: rotate(360deg);
   }
}
/*search*/
.search {
  position:absolute;
  right:17rem;
  top:25px;
  left:auto;
  background-color: #FFFFFF;
  height:30px;
  width: 30px;
  line-height:30px;
  overflow: hidden;
  z-index:10;
  transition:all .4s linear;
}
.search.active{
	width:calc(100% - 400px);
	box-shadow:0 0 0px 1px rgba(0,0,0,.3);
}
.search.active:hover{
	box-shadow:0 0 0px 1px rgba(0,0,0,.6);
}
.search .input-button {
    position: absolute;
    right:0;
	top:0;
	height:100%;
	width:30px;
	background-color:#fff;
	background-image:url(../images/ico/search.png);
	background-position:center;
	background-repeat:no-repeat;
	cursor:pointer;
	z-index:5;
}
.search .input-container {
    position:absolute;
	left:auto;
	right:30px;
	width:calc(100% - 60px);
    height:100%;
	z-index:3;
	background:#fff;
}
.search .btn-close{
	 position:absolute;
	 left:0;
	 top:0;
	 color:rgba(0,0,0,.3);
	 height:100%;
	 width:30px;
	 cursor:pointer;
	 text-align:center;
	 font-size:1.3rem;
	 z-index:1;
  	 transition:all .3s linear;
}
.search .btn-close:hover{
  	color:#414a5a;
 }
.search input {
    background: none;
	display:block;
	line-height:26px;
    width: 100%;
    border: 1px solid rgba(255,255,255,0);
    color: #0b2028;
}
/*nav-menu*/
.navbar-toggler{
	position: absolute;
	height: 35px;
	width: 45px;
	left: 105px;
	top: 22px;
	color: #0b2028;
	background-image: url(../images/ico/navbar-toggler.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
}
#nav-menu {
	position: relative;
    height: 100%;
	overflow: visible;
	font-size: 1.0rem;
	padding-right: 0;
	padding-left: 0;
}
header .dropdown-toggle::after{
	display: none;
}
#nav-navbar a, #dropdown-configurator a {
	color: #0b2028;
	position: relative;
}
#nav-navbar a:before, #dropdown-configurator a:before{
	position: absolute;
	padding: 0;
	border: 0;
	content: '';
	left: 5px;
	bottom: 5px;
	width: 0;
	height: 2px;
	transition: width .5s;
	background: #0b2028;
}
#nav-navbar .dropdown-item:before, #dropdown-configurator .dropdown-item:before{
	left: 1.5rem;
}
#nav-navbar .dropdown-item:hover, #dropdown-configurator .dropdown-item:hover{
	background: none;
}
#nav-navbar a:hover:before, #nav-navbar .dropdown.show > a:before, #dropdown-configurator a:hover:before{
	width: 66%;
}
#nav-navbar .dropdown > a:hover{
	color: #f5821f;
}
#nav-navbar .dropdown > a:hover:before{
	background: #f5821f !important;
}
#nav-navbar a:hover {

}
.dropdown-menu{
	border-radius: 0;
}
#btn-configurator{
	background-image: url(../images/ico/btn-conf.png);
	background-repeat: repeat;
	animation: bg-shift 10s linear infinite;
	overflow: hidden;
}
@keyframes bg-shift {
  from {
    background-position: 221px 0;
  }
  to {
    background-position: 0 0;
  }
}
/*row*/
.row-title{
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
	text-transform: uppercase;
	text-align: center;
    font-size: 1.5rem;
	line-height: 2.3rem;
	padding: 20px 0;
}
.row-description{
	text-align: center;
    font-size: 1.0rem;
}
/*section*/
.section-black{
	box-shadow: inset 0 0 10px 1px rgba(0,0,0,1.0);
	background-color:rgba(11,32,40,.10);
	text-shadow: 0px 0px 1px #000;
}
.section-black .row-title{
	color: #ffffff;
}
/*home-row-top*/
.home-row-top{
	position: relative;
	overflow: hidden;
	z-index: 1;
}
.home-row-top .container{
	position: relative;
}
/*home-slide-top*/
.home-slide-top{
	padding: 125px 0 60px 0;
	width: 40%;
	margin-left: 135px;
	background: #fff;
	z-index: 2;
}
.home-slide-top-title{
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
    font-size: 2.2rem;
	line-height: 2.3rem;
}
.home-slide-top-text{
	font-size: 1.0rem;
	line-height: 1.1rem;
	padding: 20px 0 15px 0;
}
.home-slide-top-btn{

}
.home-slide-top-bg {
	position: absolute;
	z-index: 1;
	top: 0;
	right: 0;
	left: 60%;
	bottom: 0;
	width: auto;
	padding: 0;
	overflow: hidden;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
    background-image: url('../images/img/nord-server.jpg');
}
.home-slide-top-bg-r{
	position: absolute;
	top: 0;
	right: auto;
	width: 230px;
	left: 0;
	bottom: 0;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center left;
    background-image: url('../images/img/nord-server-a.png');
}
.home-slide-top-bg-r:before{
	position: absolute;
	content: '';
	top: 0;
	right: auto;
	width: 255px;
	left: 300%;
	bottom: 0;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center left;
    background-image: url('../images/img/nord-server-r.png');
	animation: move-l 1.5s linear forwards;
}
.home-slide-top-bg-l{
	position: absolute;
	z-index: 1;
	top: 0;
	right: 100%;
	right: calc((100% - 1200px) / 2 + 1090px);
	left:0;
	bottom: 0;
	width: auto;
	padding: 0;
	overflow: hidden;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center right;
    background-image: url('../images/img/nord-server-l.jpg');
}
.home-slide-top-bg-b{
	position: absolute;
	top: 0;
	right: 0;
	width: 230px;
	left: auto;
	bottom: 0;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center left;
    background-image: url('../images/img/nord-server-b.png');
}
.home-slide-top-bg-b:before{
	position: absolute;
	content: '';
	top: 0;
	right: -255px;
	width: 255px;
	left: auto;
	bottom: 0;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center left;
    background-image: url('../images/img/nord-server-r.png');
	animation: move-l2 2.0s linear forwards;
}
@keyframes move-l {
  100% {
    left: 25px;
   }
}
@keyframes move-l2 {
   100% {
    right: 25px;
   }
}
/*menu*/
.home-row-menu{
	position: relative;
	overflow: hidden;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center top;
}
.home-slide-menu{

}
.home-slide-menu-sep{
	position: absolute;
	width: 1px;
	top: 0;
	right:0;
	bottom:0;
	background: rgba(255,255,255,.5);
}
.home-slide-menu-block:nth-child(4) .home-slide-menu-sep{
	display: none;
}
.home-slide-menu-block{
	position: relative;
	width: 33%;
	float: left;
	color: #FFFFFF;
	height: 370px;
}
.home-slide-menu-ico{
	position: absolute;
	height: 60px;
	width: 60px;
	top: 20px;
	left: 20px;
	background-repeat: no-repeat;
	background-position: top left;
}
.home-slide-menu-title{
	position: relative;
	margin: 0 20px 20px 20px;
	padding-top: 100px;
	font-size: 1.2rem;
	font-weight: 700;
}
.home-slide-menu-title:before{
	content: '';
	position: absolute;
	left: 0px;
	bottom: -5px;
	height: 2px;
	width: 30px;
	background-color: #fff;
}
.home-slide-menu-text{
	padding: 25px 20px 0 20px;
	font-size: 0.9rem;
	height: 0.7rem;
}
.home-slide-menu-block:hover .home-slide-menu-ico{
	background-position: bottom left;
}
.home-slide-menu-block:hover .home-slide-menu-title:before{
	background-color: #f5821f;
}
.home-slide-menu-block:hover .home-slide-menu-title,.home-slide-menu-block:hover .home-slide-menu-text{
	color: #f5821f;
}
/*i-home-menu*/
.i-home-menu-1{background-image: url('../images/ico/home-menu-1.png');}
.i-home-menu-2{background-image: url('../images/ico/home-menu-2.png');}
.i-home-menu-3{background-image: url('../images/ico/home-menu-3.png');}
.i-home-menu-4{background-image: url('../images/ico/home-menu-4.png');}

/*home-row-servers*/
.home-row-servers{
	position: relative;
	padding: 20px 0;
}
.home-row-servers a{
	color: #0b2028;
	font-weight: 400;
}
.home-row-servers-block:hover a{
	color: #f5821f;
}
/*menu*/
.home-row-benefits{
	position: relative;
	overflow: hidden;
	padding: 20px 0;
}
.home-benefits-block{
	position: relative;
	width: 25%;
	float: left;
	color: #ccc;
	height: 270px;
}
.home-benefits-ico{
	position: absolute;
	height: 60px;
	width: 60px;
	top: 20px;
	left: 20px;
	background-repeat: no-repeat;
	background-position: top left;
}
.home-benefits-title{
	position: relative;
	margin: 0 20px 20px 20px;
	padding-top: 100px;
	font-size: 1.2rem;
	font-weight: 700;
}
.home-benefits-title:before{
	content: '';
	position: absolute;
	left: 0px;
	bottom: -5px;
	height: 2px;
	width: 30px;
	background-color: #ccc;
}
.home-benefits-text{
	padding: 25px 20px 0 20px;
	font-size: 1.1rem;
	height: 0.7rem;
}

/*i-benefits*/
.i-benefits-1{background-image: url('../images/ico/benefits-1.png');}
.i-benefits-2{background-image: url('../images/ico/benefits-2.png');}
.i-benefits-3{background-image: url('../images/ico/benefits-3.png');}
.i-benefits-4{background-image: url('../images/ico/benefits-4.png');}

/*home-row-discount*/
.home-row-discount{
	position: relative;
	padding: 20px 0 40px 0;
}
/*hot-product*/
.hot-product {
    opacity: 1;
    position: absolute;
    top: 0;
    left: 0;
    max-width: 100%;
}

#image-main-container {
    max-height: 225px;
}

.active img {
    border: 2px solid #f5821f !important;
}

.form-order .form-message-submit {
    margin-top: -4px;
}

#imagesother {
    display: block;
    padding-top: 2em;
    text-align: center;
}

#imagesother a {
    display: block;
    padding: 5px;
    border: 1px solid rgba(6, 37, 49, 0.1);
    float: right;
	margin: -1px 0 0 -1px ;
    width: 61px;
    height: 61px;
    position: relative;
    background: #ffffff
}

#imagesother img {
    display: inline-block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    border: 2px solid white;
}

img.image-small {
    max-width: 50px;
    max-height: 50px;
    overflow: hidden;
}

.big-product-image {
    height: 225px;
}

.yim {
    position: absolute;
    left: -9999px;
}

.social-links {
    font-size: 1.35em;
    line-height: 2.2em;
}

.product-price {
    font-size: 2em;
    font-weight: bold;
}

input.product-count {
    display: inline-block;
    width: 70px !important;
    margin: 0 10px 0 10px;
}

.form-control {
    border-radius: 0;
}
.section-contacts .form-control, .section-contacts .form-control:focus{
	color: #fff;
}
.card-deck{
	margin-bottom: 25px;
}
.card {
	position: relative;
	overflow: visible;
    border-radius: 0;
	border: none;
	text-align: center;
}
.card-discount{
	position: absolute;
	left:-10px;
	top: 0;
	bottom: 0;
	height: 40px;
	width: 40px;
	margin: auto auto;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center top;
    background-image: url('../images/ico/discount.png');
	z-index: 1;
}
.card-footer {
    border-radius: 0;
    border: none;
}

.card-title{
    font-size: 1.2rem;
	vertical-align: middle;
}
.card a{
	color: #0b2028;
}
.card:hover a, .card:hover .card-footer{
	color: #f5821f;
}
h5.card-title {
    font-size: 1rem;
}
.card-img{
	height: 200px;
	width: 100%;
	position: relative;
}

.card-img-top {
	flex: none;
    border-radius: 0;
	max-height: 100%;
	max-width: 100%;
}

.product-small.card, .product.card {
    height: 350px;
    margin: 0 auto;
    margin-bottom: 0.5rem;
    max-width: 300px;
	border: 1px solid rgba(0,0,0,.10);
	padding-bottom: 50px;
}

.card-body {
    padding-bottom: 0;
	flex: none;
	height: 80px;
	position: relative;
}

.card-footer {
    background-color: #fff;
    color: #0b2028;
    text-align: center;
	font-weight: 700;
    font-size: 1.9rem;
	padding: 5px 0;
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
}

.category-menu {
    margin: 20px -15px;
    background: #0b2028;
    padding: 10px;
}

.category-menu .dropdown a{
	color: #fff;
}
.category-menu .dropdown-menu a{
	color: #0b2028;
	display: block;
	position: relative;
}
.category-menu .dropdown-menu a:hover{
	background: none;
}
.category-menu .dropdown a:after{
	display: none !important;
}
.category-menu .dropdown:before,.category-menu .dropdown-menu a:before{
	position: absolute;
	padding: 0;
	border: 0;
	content: '';
	left: 5px;
	bottom: 5px;
	width: 0;
	height: 2px;
	transition: width .5s;
	background: #fff;
}
.category-menu .dropdown-menu a:before{
	background: #0b2028;
	left: 1.5rem;
}
.category-menu .dropdown:hover:before, .category-menu .dropdown-menu a:hover:before{
	width: 55%;
}
/*.sort*/
.sort {
    line-height: 36px;
	font-size: 0.9rem;
}
.sort a{
	color: #0b2028;
	font-weight: bold;
}
.sort a:hover{
	color: #f5821f;
}
/*footer*/
.footer {
    background: #ffffff;
    color: #0b2028;
}

.form-error {
    display: none;
    color: #dc3545;
}

.pl-10 {
    padding-left: 10px;
}

.hero-slider .h1 {
    font-size: 3.6em;
    margin: 0;
    color: #d5d5d5;
    letter-spacing: .05em;
    text-shadow: 4px 4px 0px #2c2c2c, 7px 7px 0px rgba(0, 0, 0, 0.2);
    font-style: italic;
}

.dealers {
    padding: 1em;
    color: #fff;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    background-color: rgba(195, 32, 47, 0.85);
    margin-top: 4em;
    margin-bottom: 4em;
}
#map-p{
	height: 90px;
}
#map-canvas {
    width: 100%;
    height: 260px;
    position: relative;
    overflow: hidden;
	border-top: 1px solid rgba(255,255,255,1.0);
	border-bottom: 1px solid rgba(0,0,0,0.5);
	box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.2), 0 1px 0 0 rgba(255, 255, 255, 1.0);
	z-index: 2;
}
/*section-contacts*/
.section-contacts{
	position: relative;
	z-index: 2;
	padding: 30px 0 10px 0;
	color: #fff;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
    background-image: url('../images/img/contacts-bg.jpg');
}
.section-contacts .container{
	position: relative;
}
.section-contacts .row{
	margin-bottom: 20px;
}
.section-contacts .row-description{
	text-align: left;
	padding-bottom: 20px;
}

.section-contacts .row-title{
	text-align: left;
	padding-bottom: 5px;
}
.contacts-block-right{
	position: absolute;
	width: 30%;
	left: 15px;
	top: 0;
	font-family: 'Montserrat', sans-serif;
	font-weight: 400;
	line-height: 20px;
}
.contacts-block-right span{
	font-size: .8rem;
	line-height: 10px;
}
.contacts-in-text,.contacts-in-text:focus,.contacts-textarea,.contacts-textarea:focus{
	border-radius: 17px;
	box-shadow: none;
	border: 0;
	background-color: rgba(0,0,0,.70);
}
.g-recaptcha {
	position: relative;
	float: right;
	flex: none;
}
.g-recaptcha > div{
	width: 300px !important;
	height: 76px !important;
	overflow: hidden;
	float: right;
	border-radius: 17px;
}
.contacts-btn{
	background-color: rgba(0,0,0,0) !important;
	box-shadow: inset 0 0 0 2px #fff;
	min-width: 150px;
}
.contacts-btn:hover,.contacts-btn:focus{
	background-color: rgba(0,0,0,0) !important;
	box-shadow: inset 0 0 0 2px #f5821f;
}
/*section-content*/
.section-content{
	position: relative;
	padding-top: 120px;
	z-index: 2;
}
/*menu-list*/
.nav-side-menu{
	margin-right: -15px;
	transition:margin .2s linear;
}
.menu-list{
	position: relative;
	overflow: hidden;
}
.menu-list ul{
	display: block;
	list-style: none outside;
    margin-block-start: 0em;
    margin-block-end: 0em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    padding-inline-start: 0px;
}
.menu-list li{
	padding: 4px 0;
}
.menu-list a{
	color: #0b2028;
}
.menu-list a:hover{
	color: #f5821f;
}
.menu-list .fas{
	cursor: pointer;
}
.menu-list ul ul{
	padding-left: 20px;
}
/*breadcrumb*/
.breadcrumb{
	padding: 0;
	font-size: 0.8rem;
}
.breadcrumb a{
	color: #0b2028;
}
.breadcrumb a:hover{
	color: #f5821f;
}
/*details-container*/
.details-buy{
	position: relative;
	padding: 10px 0;
	margin-bottom: 30px;
	border-bottom: 1px solid rgba(0,0,0,.1);
}
.details-bottom{
	margin-bottom: 20px;
}
/*footer*/
footer{position: relative; z-index: 2}
#logo-footer{
	position: relative;
	margin: auto auto;
	width: 192px;
	height: 192px;
	display: block;
	background-image: url(../images/ico/logo192x192.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
}
.copy{
	padding: 10px;
	font-size: .9rem;
	text-align: center;
}
/*br*/
.home-row-top,footer{
	background-color: #fff;
}
.home-row-servers,.home-row-discount{
	background-color: rgba(255,255,255,.90);
}
/*home-row-extra*/
.home-row-extra{
	padding: 20px 0;
	color: #fff;
	text-indent: 1.5em; /* Отступ первой строки */
    text-align: justify; /* Выравнивание по ширине */
}
/*zoomWrapper*/
.zoomWrapper{
	width: 300px;
	margin-right:0;
	margin-left: auto;
}
/**/
@media (min-width: 480px) and (max-width: 767px) {
	.hide-2{display: none;}
	.home-benefits-block{width: 50%;}
	.home-slide-menu-block{width: 50%;}
	.home-slide-menu-block:nth-child(2) .home-slide-menu-sep{display: none;}
}
@media (min-width: 768px) and (max-width: 979px) {
	.hide-3{display: none;}
	.home-slide-menu-block{width: 50%;}
	.home-slide-menu-block:nth-child(2) .home-slide-menu-sep{display: none;}
}
@media (min-width: 980px) and (max-width: 1200px) {
	.hide-4{display: none;}
	.home-slide-top {
		width: 50%;
		margin-left: 0px;
	}
}
@media (min-width: 1200px) {
	.hide-5{display: none;}
}

/* Large desktop */
@media (min-width: 1200px) {

}

@media only screen and (max-width: 979px) {
	.navbar-collapse{
		background: #fff;
		padding: 1rem 1rem;
		position: absolute;
		top: 63px;
		left: 0;
		right: 0;
		box-shadow: 0px 5px 10px 0 rgba(1,1,1,.5);
	}
	.product-small.card,.product.card {
        height: 335px;
        max-width: none;
    }
	.home-slide-top {
		width: 50%;
		margin-left: 15px;
	}
}

@media only screen and (max-width: 767px) {
	.contacts-block-right{
		position: relative;
		width: auto;
		padding: 15 15px 0 15px;
		right: 0;
	}
	.home-slide-top-title{margin-bottom: 15px;}
	.home-slide-top-text{display: none;}
}
@media only screen and (max-width: 576px) {
	.search{right: 0;}
	.search.active {width: calc(100% - 180px);}
	.home-slide-top-title{font-size: 1.5rem;}

	.category-menu .nav-item{display: block; float: none; flex: none; width: 100%}
}
@media only screen and (max-width: 480px) {
	.zoomContainer {display: none;}
	.hide-1{display: none;}
	.home-benefits-block{width: 100%;}
	.home-slide-menu-block{width: 100%;}
	.home-slide-menu-sep{display: block; left: 0; bottom: auto; width: auto; height: 1px;}
	.home-slide-menu-block:nth-child(4) .home-slide-menu-sep, .home-slide-menu-block:nth-child(1) .home-slide-menu-sep{display: none;}
	.home-slide-top-title{font-size: 1.2rem;}
	.home-slide-top {width: 55%;}
	#btn-configurator{padding-right: 10px;padding-left: 10px;}
}
@media (min-width: 1600px) {
	#bg1,#bg2{width: 20%;}
}

.zoomContainer {
    z-index: 2 !important;
}
.w-70 {
	width: 60%;
}
.btn.ww-45 {
	width: 40%;
	padding:2px;
	border-radius: 2px;
	height: 38px;
	font-size: .8em;
}
.delete-position {
	 color: #fff !important;
}
.panel-group > .panel {
    display: block;
    position: relative;
    color: black;
  }

.panel-group > .panel input + label {
    cursor: pointer;
    display: block;
    padding: 5px 15px;
    transition: all 0.25s ease-in-out 0.5s, color 0.25s ease-in-out 0.5s;
    color: black;
}
.panel-group > .panel input ~ .panel-body {
    visibility: hidden;
    max-height: 0;
    opacity: 0;
    transition: all 0.5s ease-in-out 0.2s, opacity 0.25s ease-in-out 0.25s, padding 0s ease-in-out 0s;
}

.panel-group > .panel input:checked ~ .panel-body {
    display: block;
    opacity: 1;
    visibility: visible;
    max-height: 600px;
    transition: all 0.5s ease-in-out 0.2s, opacity 0.25s ease-in-out 0.5s, padding 0s ease-in-out 0s;
}
.panel-group > .panel > input + label::after {
    content: "\2193";
    display: block;
    position: absolute;
    top: 10px;
    left: 0;
}

.panel-group > .panel input:checked + label::after {
    content: "\2191";
    display: block;
    position: absolute;
    top: -6px;
    left: 0;
}
.price-old {
    text-decoration: line-through;
    font-size: .5em;
    font-weight: 400;
}