html {
    position: relative;
    min-height: 100%;
}
@font-face {
    font-family: LatoWeb;
    src: url(/fonts/Lato-Regular.ttf);
}
@font-face {
    font-family:'Lato', Arial,  sans-serif;font-style:normal;

    font-weight:400;
}
body {
    /* font-family: LatoWeb; */
    /* Margin bottom by footer height */
}
.footer {
    width: 100%;
    /* Set the fixed height of the footer here */
    background-color: #7C3F2D;
}
@media (max-width: 768px) {
    body {
        margin-bottom: 65px;
    }
    h1, .h1,h2,.h2,h3,.h3,h4,.h4 {
        font-size: 14px;
    }
}
@media (max-width: 860px) {
    body{
        padding-top: 70px;
    }
}
.color_txt {
    color: #35C45F;
}
.green_txt {
    color: #009688;
}
.red_txt {
    color: #FFD1A0;
}
.dark_txt {
    color: #2a2a2a;
}
.yellow_txt {
    color: #E4D60F;
}
.gray_border {
    border-color: #8C8C8C;
}
.margin_top_20 {
    margin-top: 20px;
}
.margin_top_50 {
    margin-top: 50px;
}
.margin_bottom_30 {
    margin-bottom: 30px;
}
.small_font{
    font-size: 0.9em;
}
.small_input{
    width: 80px;
}
a {
    color: #7C3F2D;
    transition: color 0.2s ease-in-out;
    -moz-transition: color 0.2s ease-in-out;
    -webkit-transition: color 0.2s ease-in-out;
    -o-transition: color 0.2s ease-in-out;
}
a:focus,
a:active {
    color: #fff !important;
}
nav a:hover{
    text-decoration: underline;
    color: #fff !important;
}
.content {
    padding: 30px;
}
.btn_theme {
    color: #ffffff;
    background-color: #7C3F2D;
    border-color: #7C3F2D;
    transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
}
.btn_theme:hover,
.btn_theme:active {
    color: #ffffff;
    background-color: #FFD1A0;
    border-color: #FFD1A0;
}

/*header*/

.header_top {
    background-color: #7C3F2D;
    color: rgba(255,255,255,.8);
    border-bottom: 1px solid #f2f2f2;
}
.header_top .page_details{
    padding: 0;
    margin: 0;
    list-style: none;
}
.header_top .page_details li{
    display: inline-block;
    padding: 6px 5px;
}
.header_top .page_details li a{
    color: rgba(255,255,255,0.8);
    font-size: 12px;
    padding: 4px 0;
}
.header_top .page_details li a:hover,
.header_top .page_details li a:active {
    color: #fff;
    text-decoration: none;
}
.header_top .user_details{
    padding: 0;
    margin: 0;
    list-style: none;
}
.header_top .user_details li{
    display: inline-block;
    padding: 6px 5px;
    border-right: 1px solid rgba(255,255,255,.1);
}
.header_top .user_details li a{
    color: rgba(255,255,255,.8);
    font-size: 12px;
    padding: 4px 0;
}
.header_top .user_details li a:hover,
.header_top .user_details li a:active{
    color: #fff;
}
.form-control:focus {
    border-color: #7C3F2D;
    outline: 0;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(255,167,64,0.6);
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(255,167,64,.6);
}
.search_wrap {
    padding: 20px 0 0;
}
@media (max-width: 768px) {
    .search_wrap {
        padding: 0;
    }
}

/*navbar*/
.menu-logo {
    padding-top: 5px;
}
.search-side {
    position: relative;
    top: 7px;
    right: -15px;
    transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}
.show-search {
    position: relative;
    display: block;
    cursor: pointer;
}
@media (min-width: 1200px){
    body{
        padding-top: 135px !important;
    }
}
@media (min-width: 768px) and (max-width: 1200px){
    .show-search {
        float: right;
    }
    .search-side {
        float: right;
        top: 19px;
        right: -15px;
    }
    body{
        padding-top: 60px;
    }
}
.navbar .search-form {
    position: absolute;
    right: 0;
    z-index: 99;
    float: right;
    display: none;
    top: 40px;
}
.navbar .search-form form {
    position: absolute;
    right: 0;
    top: 0;
    z-index: 20;
}
.navbar .search-form form input {
    border: 2px solid #7C3F2D;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -o-border-radius: 3px;
    padding: 5px 14px;
    z-index: 22;
    color: #9d9d9d;
    box-shadow: none;
    -o-box-shadow: none;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    outline: none;
}
.show-search i {
    font-size: 1.2em !important;
    display: block;
    color: #7C3F2D;
    width: 29px;
    cursor: pointer;
    height: 29px;
    border-radius: 2px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -o-border-radius: 2px;
    line-height: 29px;
    text-align: center;
    background-color: #f2f2f2;
    transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
}
.nav_menu {
    position: relative;
    transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    box-shadow: 0 -1px 4px rgba(0,0,0,.14),0 4px 8px rgba(0,0,0,.28);
}

.navbar-toggle {
    margin-top: 20px;
}
.navbar-inverse {
    background-color: #fff;
    border: 0px;
    margin-bottom: 0px;
    border-radius: 0px;
}
.navbar-inverse .navbar-nav > li > a {
    color: #999;
    padding: 20px 15px 20px 15px;
    border-bottom: 2px solid transparent;
    border-top: 2px solid transparent;
    transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}
.navbar-inverse .navbar-nav > li > a:hover,
.navbar-inverse .navbar-nav > li > a:focus {
    color: #7C3F2D;
    border-bottom: 2px solid #7C3F2D;
    border-top: 2px solid #fff;
}
.navbar-inverse .navbar-nav > .open > a,
.navbar-inverse .navbar-nav > .open > a:hover,
.navbar-inverse .navbar-nav > .open > a:focus {
    color: #7C3F2D;
    background-color: #FFFFFF;
    border-bottom: 2px solid #7C3F2D;
    border-top: 2px solid rgba(241, 80, 91, 0);
}
.dropdown-menu > li > a:hover,
.dropdown-menu > li > a:focus {
    text-decoration: none;
    color: #FFFFFF;
}
@media (max-width: 767px) {
    .navbar-inverse .navbar-nav .open .dropdown-menu > li > a {
        color: #7C3F2D;
    }
    .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover,
    .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:active {
        color: #7C3F2D;
    }
}

.navbar-inverse .navbar-toggle .icon-bar {
    background-color: #212123;
}
.navbar-inverse .navbar-toggle:hover,
.navbar-inverse .navbar-toggle:focus {
    background-color: #7C3F2D;
}
.navbar-inverse .navbar-toggle:hover .icon-bar,
.navbar-inverse .navbar-toggle:focus .icon-bar {
    background-color: #fff;
}
#menu.default {

}
#menu.fixed {
    position:fixed;
    top:0; left:0;
    width:100%;
    border-bottom: 1px solid #7C3F2D;
    background-color: #fff;
    -webkit-box-shadow: 0px -1px 0px 0px  #000;
    -moz-box-shadow: 0px -1px 5px 0px  #000;
    box-shadow: 0px -1px 5px 0px #000;
}

.navbar-fixed-top {
    background-color: #fff;
    border-bottom: 1px solid #7C3F2D;
    -webkit-box-shadow: 0px -1px 5px 0px  #000;
    -moz-box-shadow: 0px -1px 5px 0px  #000;
    box-shadow: 0px -1px 5px 0px #000;
}



/*content*/
.main_con {
    margin-top: 20px;
}
.page-header {
    color: #444;
    text-transform: uppercase;
    text-align: left;
}
.page-header span {
    padding-bottom: 8px;
    border-bottom: 1px solid;
    font-weight: 400;
    border-bottom-color: #7C3F2D;
}
.carousel-indicators .active {
    width: 13px;
    height: 13px;
    background-color: #7C3F2D;
    border: 2px solid #ffffff;
}
.some {
    text-align: center;
    margin-bottom: 5px;
    border: 1px solid;
    border-radius: 4px;
    color: #fff;
    box-shadow: 1px 1px 2px rgba(0,0,0,.2);
}
.some.some_news {
    border-color: #996794;
    background-color: #996794;
}
.some.some_best {
    border-color: #009688;
    background-color: #009688;
}
.some.some_sale {
    border-color: #FFD1A0;
    background-color: #FFD1A0;
}

.share_v {
    text-align: center;
    margin-bottom: 5px;
}
p.my_price select {
    border: 1px solid #BDBDBD;
    border-radius: 0px;
    outline: none;
    padding: 2px;
    font-size: 0.8em;
}
.buy_button {
    text-align: center;
    margin-bottom: 5px;
}
.ratings {
    font-size: 11px;
    color: #B9B8B8;
}
.mar_main {
    margin-top: 60px;
}
.left_menu .big_category {
    padding-left: 0px;
    list-style: none;
}
.cat_item:hover,
.cat_item:active {
    -webkit-box-shadow: 0px 0px 10px 2px rgba(0,119,155,0.6);
    -moz-box-shadow: 0px 0px 10px 2px rgba(0,119,155,0.6);
    box-shadow: 0px 0px 10px 2px rgba(0,119,155,0.6);
}
.grid_filter {
    margin-top: 13px;
}
.grid_filter ul {
    padding: 4px 10px;
    padding-top: 0px;
    margin: 10px 0;
    margin-top: 5px;
    border-bottom: 1px dotted #7C3F2D;
    font-size: 0.7em;
    text-transform: uppercase;
}
.float-right {
    float: right;
}
.grid_filter ul li {
    list-style-type: none;
    display: inline-block;
    margin-right: 2px;
}
.grid_filter ul li a {
    display: block;
    padding: 1px 4px;
}
.grid_filter ul.goods_pages li a {
    text-decoration: underline;
}
.grid_filter ul.goods_pages li a.active {
    background: #7C3F2D;
    color: #fff;
    text-decoration: none;
}
.f_price {
    text-decoration: line-through;
    color: #000;
    margin-right: 5px;
    padding-top: 2px;
    font-weight: bold;
}
.my_price {
    font-size: 16px;
    font-weight: 600;
}
.price_good {
    margin: 5px 0px;
}
.thumbnail.cat_item a > img {
    height: auto;
}
@media (min-width: 992px){
    .thumbnail.good_item a > img {
        height: 200px;
        object-fit: contain;
    }
    .thumbnail.cat_item a > img {
        height: 150px;
        object-fit: contain;
    }
    .thumbnail.same_item a > img {
        height: 200px;
        object-fit: contain;
    }
    .thumbnail.same_item a > img {
        height: 150px;
        object-fit: contain;
    }
}
.caption h4 {
    margin: 12.5px 0px;
    font-size: 14px;
}
a.news {
    color: #7C3F2D;
}
a.news:hover,
a.news:active {
    color: #EF8B16;
}
.fiol_hr {
    border-top: 1px dotted #7C3F2D;
    margin-top: 0px;
}
.sort {
    list-style: none;
    text-transform: uppercase;
    padding: 0px;
    font-size: 11px;
    margin-bottom: 4px;
}
.sort li {
    display: inline-block;
    padding: 0px 3px;
}
.sort li a,
.sort li i {
    padding: 4px;
    text-decoration: none;
}
.sort li a.act_sort {
    color: #fff;
    background-color: #7C3F2D;
}
.sort li i.act_sort {
    color: #fff;
    background-color: #7C3F2D;
}
.good_gallery .thumbnail {
    padding: 0px 4px;
    border-color: transparent;
}
.good_gallery .thumbnail img{
    height: 100px;
    object-fit: contain;
}
.good_gallery .thumbnail:hover,
.good_gallery .thumbnail:active {
    -webkit-box-shadow: 0px 0px 10px 2px rgba(53,196,95,0.4);
    -moz-box-shadow: 0px 0px 10px 2px rgba(53,196,95,0.4);
    box-shadow: 0px 0px 10px 2px rgba(53,196,95,0.4);
}
.good_details .good_title {
    font-size: 24px;
    line-height: 1.3;
    font-family: 'Lato', Verdana;
    color: #4a4a4a;
    font-weight: 700;
    margin-top: 5px;
    margin-bottom: 17px;
    border-bottom: 1px dotted #7C3F2D;
    padding-bottom: 17px;
    text-transform: uppercase;
}
.img_position {
    position: relative;
}
.img_position span {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 79px;
    height: 38px;
    border-radius: 50%;
    padding: 11px 0;
    color: #fff;
    font-size: 11px;
    text-align: center;
}
.img_position span.sale_top{
    background-color: #FFD1A0;
}
.price_itself {
    margin-bottom: 17px;
}
.price_itself span {
    color: #7C3F2D;
    font-size: 28px;
}
.existance {
    margin-top: 10px;
    margin-bottom: 15px;
    font-size: 16px;
}
.buy_button_good{
    margin-top: 15px;
}
.from_reg {
    padding: 30px 25px;
    border: 1px solid #e9e9e9;
    background-color: #f9f9f9;
    margin-bottom: 30px;
}
@media (min-width: 768px) {
    .from_reg {
        padding: 40px 30px;
    }
}
.del_cart_good {
    text-align: center;
    font-size: 24px;
}
.quan_cart input {
    display: inline-block;
    width: 50%;
}
.order_sum span {
    font-size: 20px;
    color: #7C3F2D;
}
.price_f {
    font-size: 12px;
    color: #999999;
    text-decoration: line-through;
    margin: 8px 0;
}
p.my_price select.volume_g {
    width: 129px;
    margin-bottom: 8px;
    font-size: 1em;
}
.order_good_color {
    height: 100px;
    object-fit: contain;
}
.review_add {
    padding: 8px;
    background-color: #fbfbfb;
    border: 1px solid #ddd;
    box-shadow: 0 1px 1px #ececec;
    -webkit-box-shadow: 0 1px 1px #ececec;
    -moz-box-shadow: 0 1px 1px #ececec;
}
.review_list {
    padding: 0;
    margin: 0 0 35px 0;
}
.review_list li {
    list-style: none;
}
.review_list li .review_box {
    padding: 20px;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -o-border-radius: 3px;
    margin-bottom: 20px;
    border: 1px solid #e8e8e8;
    box-shadow: 0 0 20px rgba(0,0,0,.04) inset;
    -o-box-shadow: 0 0 20px rgba(0,0,0,.04) inset;
    -moz-box-shadow: 0 0 20px rgba(0,0,0,.04) inset;
    -webkit-box-shadow: 0 0 20px rgba(0,0,0,.04) inset;
}
.review_list .avatar {
    float: left;
}
.review_list .avatar img {
    width: 60px;
    height: 60px;
    padding: 3px;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -o-border-radius: 3px;
    border: 1px solid #e8e8e8;
}
.review_list .review_content .review_meta {
    margin-bottom: 5px;
    font-size: 1.1em;
}
.review_list .review_content .review_meta .review_by {
    font-weight: 600;
    color: #444;
}
.review_list .review_content .review_meta .review_date  {
    color: #666;
}
.review_list .review_content .review_meta span:after {
    content: "-";
    margin: 0 5px;
    font-weight: 100;
    color: #666;
}
.review_list .review_content .review_meta  span:last-child:after {
    content: "";
    margin: 0;
}
.review_list .review_content p {
    color: #666;
    font-size: 13px;
    font-family: 'Open Sans', sans-serif;
    line-height: 22px;
    margin: 0;
}
.services_item {
    position: relative;
    padding: 0;
    border: 0;
}
.services_item:hover,
.services_item:active {
    opacity: 0.6;
}
.services_item .service_title{
    position: absolute;
    top: auto;
    padding: 15px;
    bottom: 0px;
    left: 0;
    right: 0px;
    background-color: rgba(30, 30, 30, 0.5);
    overflow: hidden;
    opacity: 1;
    filter: alpha(opacity=0);
    -webkit-transition: all ease-in-out 0.25s;
    -o-transition: all ease-in-out 0.25s;
    transition: all ease-in-out 0.25s;
    color: #ffffff;
    -webkit-backface-visibility: hidden;
    -webkit-transform: translateZ(0) scale(1, 1);
    height: auto!important;
}
.services_item .service_title p {
    margin: 0;
}
@media (min-width: 768px){
    .thumbnail.services_item a > img {
        height: 360px;
        object-fit: contain;
    }
}
@media (min-width: 768px){
    .services_item .service_title p {
        font-size: 21px;
    }
}
.services_block .services_body {
    height: 40px;
    overflow: hidden;
    margin-bottom: 20px;
}

/*Left colum */
.right_colum h3.page-header {
    margin: 5px 0 20px;
    font-size: 22px;
}
.right_colum h4.page-header {
    margin: 9px 0 9px;
    font-size: 18px;
    text-align: left;
    text-transform: none;
}
.right_colum ul.subcategory{
    padding:0;
}
.right_colum ul.subcategory li{
    padding:0;
    list-style-type: none;
}
.right_colum ul.subcategory li a{
    color: #2e2e2e;
    transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
}
.right_colum ul.subcategory li a:hover,
.right_colum ul.subcategory li a:active {
    color: #7C3F2D;
    padding-left: 8px;
}

.right_colum ul.filter{
    padding-left: 0px;
}

.right_colum ul.filter li{
    padding: 0;
    list-style-type: none;
}

.right_colum label.switcher{
    width: 15px;
    height: 15px;
    display: inline-block;
    position: relative;
}

.right_colum input[type="checkbox"] + span{
    position: absolute;
    left: -1px;
    top: 4px;
    width: 100%;
    height: 100%;
    background: url(../img/switch.png) no-repeat;
    cursor: pointer;
}

.right_colum input[type="checkbox"]:checked + span{
    background-position: 0 -15px;
}

.right_colum label{
    font-weight: normal;
    cursor: pointer;
}
.filter_scroll {
    height: 200px;
    overflow: auto;
    padding-top: 10px;
    padding-bottom: 10px;
}
@media (min-width: 768px) {
    #cat_filt {
        display: none;
    }
}
.filter_a {
    padding: 5px;
    border: 1px #ebebeb solid;
    text-align: center;
}
.filter_a a:hover,
.filter_a a:active,
.filter_a a:visited {
    text-decoration: none;
}
@media (min-width: 992px) {
    .cart {
        height: auto;
        width:  150px;
    }
    .thumbnail.cart > img {
        height: auto;
        width:  150px;
    }
}
.order_a {
    word-wrap: break-word;
}

/*footer*/
.footer > .container {
    padding-right: 15px;
    padding-left: 15px;
    padding-top: 60px;
}
.sub_footer {
    color: rgba(255,255,255,.8);
    font-size: 12px;
    padding-top: 8px;
    border-top: 1px solid rgba(255,255,255,.8);
}
.sub_footer p a {
    color: rgba(255,255,255,.8);
}
.sub_footer p a:hover,
.sub_footer p a:active {
    color: #fff;
    text-decoration: none;
}

.mid_footer .social_details{
    padding: 0;
    margin: 0;
    list-style: none;
}
.mid_footer .social_details li{
    display: inline-block;
    padding: 6px 5px;
}
.mid_footer .social_details li a{
    color: rgba(255,255,255,.8);
    font-size: 12px;
    padding: 4px 0;
}

.mid_footer .social_details li a:hover i,
.mid_footer .social_details li a:active i{
    color: #fff;
}
.mid_footer .social_details li a.vk:hover i,
.mid_footer .social_details li a.vk:active i{
    background-color: #507CBE;
}
.mid_footer .social_details li a.twitter:hover i,
.mid_footer .social_details li a.twitter:active i{
    background-color: #63CDF1;
}
.mid_footer .social_details li a.facebook:hover i,
.mid_footer .social_details li a.facebook:active i{
    background-color: #507CBE;
    color: #fff;
}
.mid_footer .social_details li a.youtube:hover i,
.mid_footer .social_details li a.youtube:active i{
    background-color: #cc330b;
}
.mid_footer .social_details li a.skype:hover i,
.mid_footer .social_details li a.skype:active i{
    background-color: #36C4F3;
}
.mid_footer .social_details li a i{
    border-radius: 2px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -o-border-radius: 2px;
    transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    width: 36px;
    height: 36px;
    color: rgba(255,255,255,.8);
    line-height: 36px;
    text-align: center;
    display: block;
    font-size: 1.2em;
}
.mid_footer h4 {
    color: rgba(255,255,255,.8);
    text-transform: uppercase;
    padding-bottom: 8px;
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: 700;
    position: relative;
}
.mid_footer h4 .head-line {
    position: absolute;
    bottom: 0;
    left: 0;
    display: block;
    width: 50px;
    height: 3px;
    background-color: rgba(255,255,255,.8);
    margin: 0;
}
.mid_footer .footer_page {
    padding-left: 0;
}
.mid_footer .footer_page li{
    list-style: none;
    transition: all 0.25s ease;
    -webkit-transition: all 0.25s ease;
}
.mid_footer .footer_page li:hover,
.mid_footer .footer_page li:active {
    text-indent: 10px;
}
.mid_footer .footer_page li a {
    color: rgba(255,255,255,.8);
}
.mid_footer .footer_page li a:hover,
.mid_footer .footer_page li a:active {
    color: #fff;
    text-decoration: none;
}
.mid_footer .footer_contact,
.mid_footer p {
    color: rgba(255,255,255,.8);
}
.mid_footer .footer_contact {
    padding-left: 0;
}
.mid_footer .footer_contact li {
    list-style: none;
}




::selection {
    text-shadow: none;
    background: rgba(0,119,155,0.6);
}