html
{
    min-width: 1080px;
}
body
{
    font-family: 'Ubuntu', sans-serif;
    font-size: 14px;
    font-weight: 300;

    color: #fff;
    background: #2f3945; /* Old browsers */
    background:    -moz-linear-gradient(-45deg,  #2f3945 0%, #586a80 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, right bottom, color-stop(0%,#2f3945), color-stop(100%,#586a80)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(-45deg,  #2f3945 0%,#586a80 100%); /* Chrome10+,Safari5.1+ */
    background:      -o-linear-gradient(-45deg,  #2f3945 0%,#586a80 100%); /* Opera 11.10+ */
    background:     -ms-linear-gradient(-45deg,  #2f3945 0%,#586a80 100%); /* IE10+ */
    background:         linear-gradient(135deg,  #2f3945 0%,#586a80 100%); /* W3C */

    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#2f3945', endColorstr='#586a80',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
}

a
{
    text-decoration: none;

    color: #f29530;
}
a:hover
{
    text-decoration: underline;
}

h1,
.h1
{
    font-size: 24px;

    margin: 35px 0;
}

h2, .h2{
    margin: 25px 0;
    font-size: 18px;
}

h3, .h3{
    margin-top: 35px;
    margin-bottom: 25px;
    font-weight: 500;
    font-size: 16px;
}

strong
{
    font-weight: 500;
}
ol{
    counter-reset: list;
}
ul > li,
ol > li{
    display: block;
    position: relative;
    margin: 16px 0;
    padding-left: 20px;
}
ul > li::before{
    display: block;
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    background: #fff;
    border-radius: 50%;
    left: 0;
    top: 4px;
}
ul.selectBoxOptions > li{
    margin: 0;
    padding-left: 0;
}
ul.selectBoxOptions > li::before{
    display: none;
}
ol > li::before{
    display: block;
    position: absolute;
    color: #fff;
    left: 0;
    font-weight: 700;
    content: counter(list);
    counter-increment: list;
}
/*HELPERS*/
.wrapper,
header,
footer
{
    width: 1060px;
    margin: auto;
}
.wrapper
{
    padding: .1px 0;
}
.clearfix::after
{
    display: table;
    clear: both;

    content: '';
}
.clearfix > *
{
    float: left;
}



.btn,
.btn.btn_solid:hover
{
    display: inline-block;

    padding: 12px 20px;

    -webkit-transition: .2s ease;
    -o-transition: .2s ease;
    transition: .2s ease;

    color: #f29530;
    border: 1px solid #f29530;
    border-radius: 5px;
    background: transparent;
}
.btn:hover,
.btn.btn_solid
{
    -webkit-transition: .2s ease;
    -o-transition: .2s ease;
    transition: .2s ease;
    text-decoration: none;

    color: #fff;
    background: #f29530;
}
/*HEADER*/
header
{
    padding: 45px 0;
}
.logo
{
    display: block;

    width: 157px;
    height: 30px;

    background: url(../img/logo.png);
}

header span
{
    font-size: 13px;

    display: block;

    width: 140px;
    margin-top: 4px;
    margin-left: 35px;

    color: #9eafbc;
}
header nav
{
    margin-top: 5px;
    margin-left: 75px;
}
header nav a
{
    position: relative;

    display: inline-block;

    padding: 0 15px;
}
header nav a::after
{
    position: absolute;
    top: -5px;
    right: -2px;

    display: block;

    width: 1px;
    height: 28px;

    content: '';

    background: #84929d;
}
header nav a:nth-last-child(1)::after
{
    display: none;
}


.categories
{
    margin: 50px -15px;
}
.categories:hover > .category
{
    opacity: .7;
}
.category
{
    font-size: 16px;

    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;

    width: 198px;
    height: 198px;
    margin: 10px;
    padding: 20px 10px 10px;

    -webkit-transition: .2s ease;
    -o-transition: .2s ease;
    transition: .2s ease;
    text-align: center;
    vertical-align: middle;

    color: #fff;
    border: 1px solid #fff;
    border-radius: 5px;
    box-sizing: border-box;
}
.category-img{
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    height: 118px;
}
.category:hover
{
    text-decoration: none;

    opacity: 1 !important;
}
.category span
{
    display: block;
    height: 50px;
    font-size: 18px;
}
.category span.nowrap
{
    white-space: nowrap;
}
.categories--inside .category{
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.categories--inside .category span{
    height: auto;
}
.brands
{
    margin: 50px 0 25px;
}
.brands-logos{
    width: 870px;
}
.brands_filtering .brand > img
{
    opacity: 0.1;
}
.brands_filtering .brand:hover > img
{
    opacity: 0.7;
}



.brand
{
    height: 98px;

    margin-bottom: 25px;

    border-right: 1px solid #84929d;
}
.brand span
{
    font-size: 24px;

    display: block;

    margin-top: 30px;
    margin-right: 35px;

    color: #fff;
}
.brand > img
{
    -webkit-transition: all 0.2s ease; transition: all 0.2s ease;
}
.brand > img.active
{
    opacity: 1;
}
.brand:nth-last-child(1)
{
    border-right: 0;
}
.brand:nth-child(4n+1){
    border-left: 1px solid #84929d;
}
.brands > .brand{
    border: 0;
}

.slider
{
    background: #252d36;
    height: 418px;
}
.slide,
.slider_content
{
    display: block;
    margin: auto;
}
.slide{
    width: 1200px;
}
.slider .owl-nav{
    width: 1200px;
    margin: 0 auto;
    position: relative;
    margin-top: -220px;
}
.slider .owl-item{
    opacity: .3;
    transition: .2s ease;
}
.slider .owl-item.center{
    opacity: 1;
}
.owl-nav > div
{
    position: absolute;
    top: 45%;

    width: 18px;
    height: 32px;

    color: transparent;
    background: url(../img/slider_arrow.png);
}
.owl-prev
{
    left: 36px;
}
.owl-next
{
    right: 36px;

    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
}

.products_slider .owl-nav > div
{
    background: url(../img/pr_slider_arrow.png);
}
.products_slider .owl-prev
{
    left: -44px;
}
.products_slider .owl-next
{
    right: -44px;
}
/*.selection
{
    margin: 50px 0;
}*/
.selection:nth-last-child(1){
    margin-bottom: 50px;
}
header + div h1:nth-child(1){
    margin-top: 0;
}

.selection_header
{
    font-size: 24px;

    color: #fff;
}
.selection_header span
{
    display: inline-block;

    margin-right: 15px;
    padding-top: 5px;
    padding-right: 15px;
    padding-bottom: 5px;

    border-right: 1px solid #84929d;
}
.selection_form
{
    padding-top: 15px;
}
.content_block
{
    color: #000;
    background: #fff;
}

button[type=submit]
{
    font-family: 'Ubuntu', sans-serif;
    font-size: 16px;
    font-weight: 300;

    width: 100px;
    height: 40px;

    cursor: pointer;

    color: #fff;
    border: 0;
    border-radius: 5px;
    outline: 0;
    background: #f29530;
}

.products
{
    margin: 35px 0;
}
.products .owl-dots{
    display: none !important;
}
.product > img,
.product > span
{
    display: block;
}
.product > span
{
    line-height: 16px;

    margin-top: 40px;
    margin-bottom: 15px;
}
.product
{
    padding: 0 30px;

    border-right: 1px solid #84929d;
}

.product_line
{
    padding: 30px 0;

    border-bottom: 1px solid #84929d;
}
.product_line img
{
    max-width: 170px;
}
.product_line .info_spans
{
    display: block;

    width: 250px;
}
.product_line .info_spans > span
{
    line-height: 16px;

    display: block;

    width: 160px;
    margin-bottom: 5px;
    margin-left: 20px;
}

table
{
    width: 355px;
    margin-bottom: 50px;
}
table td
{
    padding: 12px 10px;
}
table tr:nth-child(1) td
{
    padding-top: 0;
}
table tr:nth-child(2n)
{
    background: #5b6a7d;
}
.product_line table tr:nth-child(2n)
{
    background: #d0dde5;
}
.add_span
{
    font-size: 13px;
    line-height: 15px;

    margin-top: 25px;
}
.under_content_block
{
    padding: 35px 0;

    background: #dddce0;
}

.typo
{
    padding: 15px 0;
}

.slik
{
    padding-top: 65px;
    padding-right: 60px;
    padding-bottom: 15px;
    padding-left: 80px;

    border-right: 1px solid #84929d;
    background: url(../img/slik.png) left top no-repeat;
}
.slik span
{
    font-size: 18px;

    display: block;

    width: 235px;
    margin-bottom: 20px;

    color: #2e4e56;
}

.pack
{
    font-size: 18px;

    width: 260px;
    padding-top: 140px;

    text-align: center;

    background: url(../img/pack.jpg) top center no-repeat;
}


.pagination
{
    padding-bottom: 25px;
    position: relative;
}
.next_page
{
    float: right;
}
.pagination .btn{
    position: relative;
    font-size: 16px;
    font-weight: 400;
    z-index: 2;
}
.pages{
    position: absolute;
    top: 0;
    text-align: center;
    width: 100%;
    z-index: 1;
}
.pages > div{
    display: inline-block;
    vertical-align: middle;
    font-size: 13px;
    font-weight: 500;
}
.this_page{
    padding: 16px;
    border: 1px solid #c2c2c2;
    border-radius: 5px;
    line-height: 7px;
    margin-right: 10px;
}
p
{
    line-height: 22px;

    margin: 20px 0;
}

footer
{
    padding-top: 25px;
    padding-bottom: 30px;

    border-top: 1px solid #84929d;
}

.copyright
{
    padding-top: 10px;

    color: #c2c2c2;
}

.socials
{
    margin-left: 260px;
}
.socials > a
{
    display: inline-block;

    width: 37px;
    height: 37px;
    margin: 0 4px;

    -webkit-transition: .2s ease;
    -o-transition: .2s ease;
    transition: .2s ease;
}
.socials:hover > a
{
    opacity: .7;
}
.socials > a:hover
{
    opacity: 1 !important;
}
.twitter
{
    background: url(../img/twitter.png);
}
.vk
{
    background: url(../img/vk.png);
}
.facebook
{
    background: url(../img/facebook.png);
}

.webmechanica
{
    float: right;

    padding-left: 135px;

    background: url(../img/wm.png) left top no-repeat;
}
.webmechanica > span
{
    display: block;

    color: #fff;
}
.webmechanica > span:nth-last-child(1)
{
    font-size: 12px;

    margin-top: 20px;
}


.breadcrumbs > li
{
    display: inline-block;

    margin-right: 18px;
    padding-left: 0;
	line-height: 1;
}
.breadcrumbs > li::before{
    display: none;
}
.breadcrumbs > li::after
{
    position: absolute;
    display: block;
    width: 7px;
    height: 12px;
	top: 3px;
	right: -12px;
    content: '';

    background: url(../img/breadcrumbs.png);
}
.breadcrumbs > li:last-child::after
{
    display: none;
}

.breadcrumbs + .selection{
    margin-top: 20px;
}

.breadcrumbs + h1{
    margin-top: 10px;
}

.underhead h1{
    margin: 0;
}

.label{
    display: block;
    color: #acacac;
    margin-bottom: 8px;
}
.with_label{
    margin-bottom: 15px;
}

input[type=text]{
    background: transparent;
    border: 1px solid #909499;
    border-radius: 5px;
    width: 316px;
    height: 39px;
    padding: 0 10px;
    color: #acacac;
    outline: 0;
}
textarea{
    width: 440px;
    background: transparent;
    border: 1px solid #909499;
    border-radius: 5px;
    padding: 10px;
    height: 90px;
    color: #acacac;
    outline: 0;
}

input[type=radio]{
    display: none;
}
input[type=radio] + label{
    display: inline-block;
    padding: 5px 0;
    padding-left: 35px;
    position: relative;
    margin-right: 30px;
}
input[type=radio] + label::before{
    position: absolute;
    content: '';
    display: inline-block;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 1px solid #919499;
    left: 0;
    top: 0px;
    cursor: pointer;
}
input[type=radio]:checked + label::after{
    display: block;
    position: absolute;
    content: '';
    width: 7px;
    height: 7px;
    background: #f29530;
    border-radius: 50%;
    left: 9px;
    top: 9px;
}

input[type=checkbox]{
    display: none;
}
input[type=checkbox] + label{
    position: relative;
    padding: 6px 0;
    padding-left: 40px;
    display: block;
}
input[type=checkbox] + label::before{
    display: inline-block;
    position: absolute;
    content: '';
    width: 25px;
    height: 25px;
    border: 1px solid #919499;
    border-radius: 3px;
    left: 0;
    top: 0;
    cursor: pointer;
}
input[type=checkbox]:checked + label::before{
    background: url(../img/checkbox.png) center no-repeat;
}

.input_group{
    margin: 14px 0;
}

button.btn{
    margin: 30px 0;
}

.brands_content .brand{
    position: relative;
    width: 240px;
    text-align: center;
    margin-bottom: 45px;
    height: auto;
    border-right: 0;
}

.brands_content .brand::after{
    display: block;
    content: '';
    position: absolute;
    height: 100px;
    width: 1px;
    background: #84929d;
    right: 0;
    top: 0;
}

.brands_content .brand:nth-last-child(1)::after{
    display: none;
}
.brands_content .brand strong{
    display: block;
    margin-top: 15px;
    color: #f29530;
    text-decoration: none !important;
}

.brands_content .brand p{
    width: 200px;
    text-align: left;
    position: relative;
    float: right;
    color: #fff !important;
}

.content_img{
    padding: 0.1px;
    margin: 35px 0;
    width: 640px;
}
.content_img img{
    max-width: 100%;
}
.img_alt{
    display: block;
    width: 540px;
    margin: 30px auto;
    font-style: italic;
    line-height: 18px;
}

.owl-dots{
    position: relative;
    height: 20px;
    z-index: 9999999999;
    text-align: center;
    padding-top: 180px;
    pointer-events: none;
}
.owl-dot{
    width: 7px;
    height: 7px;
    background: #fff;
    display: inline-block;
    vertical-align: middle;
    border-radius: 50%;
    margin: 0 4px;
    transition: .2s ease;
}
.owl-dot.active{
    background: #3e4b5b;
    width: 14px;
    height: 14px;
}








/*///////////*/
.img-responsive{
    display: block;
    width: 100%;
    height: auto;
}
.wrapper-btns-show{
    display: flex;
    align-items: center;
    height: 97px;

}
.wrapper-btns-show__btn{
    padding: 14px 30px 14px 30px;
    border: 1px #f29530 solid;
    color: #f29530;
    border-radius: 5px;
    margin-left: 18px;
    cursor: pointer;
}
.show-content{
    display: flex;
    flex-flow: row wrap;
    padding-bottom: 40px;
}
.show-content__item-product{
    width: 31%;
    margin-right: 2%;
}
.wrapper-post__title{
     color: #f29530;
     font-size: 18px;
     position: relative;
     padding-bottom: 10px;
     display: block;
}

.blog-post__main-icon{


    margin-right: 20px;
}
.blog-post__main-icon_photocamera{
    width: 25px;
    height: 19px;
    background-image: url(../img/watch-photo-icon.png);
}
.blog-post__main-icon_tv-icon{
    width: 24px;
    height: 24px;
    background-image: url(../img/tv-icon.png);
}

.wrapper-post__date-message{
    position: relative;
}
.wrapper-post__mess-icon{
    background-image: url(../img/message-icon.png);
    width: 23px;
    height: 19px;
    position: absolute;
    top: 0;
    bottom: 0;
    margin-left: 10px;
    margin-top: auto;
    margin-bottom: auto;
    display: inline-block;
}

.blog-post_centered{
    align-items: center;
}

.wrapper-post__message-count{
    color: white;
    margin-left: 40px;
}
.blog-post{
    padding: 18px 0 0 0px;
    color: #6c7886;
    position: relative;
    display: flex;
    flex-flow: row wrap;

}
.breadcrumbs__item_we-are-here{
    color: #7a8695;
}
.wrapper-btns-show__btn_selected{
     background:  #4c5c6f;
     border: 1px #4c5c6f solid;
     color: white;
}
.wrapper-btns-show__title{
    font-size: 18px;
}
.block-socials{
    display: flex;
    align-items: center;
}
.block-socials__title{
    margin-right: 15px;
    font-size: 18px;
}
.wrapper-post_color{
    color: white;
}
.wrapper-post_font-size{
    font-size: 18px;
}

.post-content__description-content{
    padding: 35px 0 35px 50px;
    font-style: italic;
}

.post-content__resize-img{
    max-width: 50%;
}
.comment-item__text-comment > p {
    margin: 0;
}
.comment-item__text-comment{
    padding: 25px 0 30px 0;
}
.send-post__title{
    padding-top: 22px;
    color: #8f9296;
    padding-bottom: 10px;
}
.send-post__textarea{
    resize: none;
    height: 100px;
    min-width: 742px;
}
.send-post__input{
    max-width: 330px;
    height: 30px;

}

.send-post__textarea,.send-post__input{
    border: #909396 1px solid;
    outline: none;
    border-radius: 5px;
    background-color: transparent;
    display: block;
    font-size: 18px;

}
.send-post__button-send{
    background-color: #f29530;
    padding: 14px 30px 14px 30px;
    color: white;
    text-align: center;
    border: none;
    font-size: 16px;
    outline: none;
    border-radius: 5px;
    margin-top: 35px;
    cursor: pointer;
}
.send-post{
    padding-bottom: 40px;
}
.user-post__profile-name{
    display: inline-block;
    color: #d08737;
    margin-right: 15px;
}

.user-post__post-date{
    color: #737f8e;
    display: inline-block;
}
.user-post__message{
    padding: 25px 0 25px 0;
    line-height: 25px;
}
.user-post__button-reply{
    border: 1px #d08737 solid;
    padding: 13px 20px 13px 20px;
    color: #d08737;
    outline:  none;
    cursor: pointer;
    font-size: 14px;
    border-radius: 5px;
    text-align: center;
    background: transparent;
}
.user-post-answer{
    padding: 25px 0 35px 60px;
}
.user-post-answer_padding{
    padding-bottom: 55px;
}

.cookie-disclaimer {
  position: fixed;
  left: 15px;
  bottom: 15px;
  width: 280px;
  min-height: 70px;
  background: #FFF;
  color: #7b8080;
  padding: 10px;
  z-index: 990;
  border: 1px solid #7b8080;
  font-size: 12px;
}
.cookie-disclaimer.top-left {
  left: 15px;
  top: 15px;
  right: inherit;
  bottom: inherit;
}
.cookie-disclaimer.top-right {
  right: 15px;
  top: 15px;
  bottom: inherit;
  left: inherit;
}
.cookie-disclaimer.bottom-left {
  left: 15px;
  bottom: 15px;
  right: inherit;
  top: inherit;
}
.cookie-disclaimer.bottom-right {
  right: 15px;
  bottom: 15px;
  top: inherit;
  left: inherit;
}

.cookie-disclaimer .disclaimer-button-wrap {
  background-image: none;
    background-color: #7b8080;
    border: 1px solid transparent;
    border-radius: 3px;
    border-color: #7b8080;
    margin-top: 10px;
}

.cookie-disclaimer .cookie-disclaimer-answer {
    display: inline-block;
    margin-bottom: 0;
    font-weight: 400;
    text-align: center;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    background-image: none;
    background-color: initial;
    border: 1px solid transparent;
    white-space: nowrap;
    line-height: 1.42857143;
    -webkit-user-select: none;
    color: #fff;   
    line-height: 1.5;
    font-size: 13px;
    padding: 5px 10px;
    margin-top: 0px;
    width: 100%;
}

@media (max-width: 768px) {
  .cookie-disclaimer {
    width: 100%;
    bottom: 0;
    padding: 0;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
  }
  .cookie-disclaimer.bottom-left {
    left: 0px;
    right: 0px;
    bottom: 0;
  }
  .cookie-disclaimer div:nth-child(1) {
    float: left;
    height: 100%;
    padding: 10px;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
  }
  .cookie-disclaimer div:nth-child(2) {
    float: left;
    width: 32%;
    height: 100%;
    padding: 10px;
    border-color: #357ebd;
    background-color: #428bca;
    line-height: 180px;

    -webkit-box-flex: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -ms-flex-item-align: stretch;
    align-self: stretch;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .cookie-disclaimer .cookie-disclaimer-answer {
    white-space: initial;
    padding: initial;
    margin: 0;
    height: 100%;
    width: 100%;
  }
  .cookie-disclaimer .disclaimer-button-wrap {
    margin-top: initial;
    border-radius: initial;
  }
}


