body{
    font-family: 'PT Sans', sans-serif;
    margin: 0;
    padding: 0;
    color: #fff;
    background-color: #2f2e34;
}
a{
    color: #fff;
    text-decoration: none;
}
a:hover{
    text-decoration: none;
}

img{
    max-width: 100%
}
header{
    position: fixed;
    width: 100%;
    z-index: 5
}
@import url('https://fonts.googleapis.com/css?family=PT+Sans+Caption');
.top-menu {
    margin: 0 60px;
    position: relative;
    background: #ffc603;    
    box-shadow: 
    inset 1px 0 0 rgba(255,255,255,.1), 
    inset -1px 0 0 rgba(255,255,255,.1), 
    inset 150px 0 150px -150px rgba(255,255,255,.12), 
    inset -150px 0 150px -150px rgba(255,255,255,.12);
}
.top-menu:before,
.top-menu:after {
    content: "";
    position: absolute;
    z-index: 2;
    left: 0;
    width: 100%;
    height: 3px;
}
.top-menu:before {
    top: 0;
    /*border-bottom: 1px dashed rgba(0,0,0,.5);*/
}
.top-menu:after {
    bottom: 0;
    /*border-top: 1px dashed rgba(0,0,0,.5);*/
}
.menu-main {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}
.menu-main:before, 
.menu-main:after {
    content: "";
    position: absolute;
    width: 50px;
    height: 0;
    top: 8px;
    border-top: 18px solid #e0a000;
    border-bottom: 18px solid #e0a000;
    transform: rotate(360deg);
    z-index: -1;
}
.menu-main:before {
    left: -30px;
    border-left: 12px solid rgba(255, 255, 255, 0);
}
.menu-main:after {
    right: -30px;
    border-right: 12px solid rgba(255, 255, 255, 0);
}
.menu-main li {
    display: inline-block;
    margin-right: -4px;
}
.menu-main a {
    text-decoration: none;
    display: inline-block;
    padding: 15px 20px;
    font-family: 'PT Sans Caption', sans-serif;
    color: #2f2e34;
    transition: .3s linear;
}
.menu-main a.active,
.menu-main a:hover {background: #cc9e02;}
.main{
    /*background-image: url('../img/main-logo.png')*/;
    background-color: #26252b;
    background-position: center bottom/**/, center top/**/;
    background-repeat: no-repeat;
    background-size: auto 300px/**/, auto/**/;
}
.main-mask{
    padding-top: 54px;
    height: 350px;/*без новогоднего венка*/
    height: 430px;
    /*background-image: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.7));*/
    position: relative;
}
.logo{
	display: flex;
	justify-content: space-around;
	padding-top: 35px;
    /*position: absolute;
    top: 75px;
    right: 75px;*/
}
.contacts{
    position: absolute;
    bottom: 50px;
    left: 50px;
    text-align: center;
    border: 3px solid #e0a000;
    border-radius: 15px;
    background-color: #ffc603;
    color: #2f2e34;
    font-weight: 700;
    padding: 15px;
}
.category_info{
    display: flex;
    min-height: 70px;
    background-color: #171717;
    padding: 10px 50px;
    align-items: center;
    flex-direction: column;
    text-align: center;
}
.category_thumb,.category_name,.category_desc{
    margin: 0 20px;
}
.category_thumb{
    width: 130px;
}
.category_name{
    font-size: 34px;
    color: #ffc603;
    font-weight: 700;
}
.category_desc{
    font-size: 24px;
}
.category_products{
    padding: 10px;
    display: flex;
    align-items: stretch;
    justify-content: center;
    flex-wrap: wrap;
}
.product{
    max-width: 360px;
    background-color: #fff;
    border-radius: 30px;
    margin: 10px 20px;
    color: #000;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.product_info{
    margin: 10px 15px;
}
.product_thumb{
    /*height: 300px;*/
    overflow: hidden;
}
.product_name{
    font-size: 26px;
    font-weight: 700;
    text-align: center;
    margin-top: 0;
}
.product_desc{
    text-align: center;
}
.product_price{
    font-size: 18px;
    font-weight: 700;
    text-align: center;
}
.product_price del, .product_price ins{
    text-decoration: none;
    display: block;
}
.product_price del{
    font-weight: 200;
    color: red;
    text-decoration: line-through;
}
.woocommerce-Price-currencySymbol:before{
   content: ' ';
}
form.main-add-to-cart-form{
    text-align: center;
}
form.main-add-to-cart-form i.fas{
    font-size: 20px;
    color: gray;
}
form.main-add-to-cart-form i.fas:hover{
    color: #000;
}
form.main-add-to-cart-form i.coal-qty-times{
    color: #000;
    display: block;
}
.product_price_with_qty{
    display: inline-block;
    border-top: 3px solid #000;
}
.add_to_cart_button{
    position: relative;
    background: #ffc603; 
    width: 100%;
    display: block;
    vertical-align: middle;
    text-align: center;
    padding: 15px 0;
    color: #2f2e34;
    font-size: 20px;
    font-weight: 700;
    font-family: 'PT Sans Caption', sans-serif;
    color: #2f2e34;
    transition: .3s linear;
    border:none;
    margin-top: 15px;
}
.add_to_cart_button:hover {background: #cc9e02;}
.add_to_cart_button:before {
    top: 0;
    /*border-bottom: 1px dashed rgba(0,0,0,.5);*/
}
.add_to_cart_button:after {
    bottom: 0;
    /*border-top: 1px dashed rgba(0,0,0,.5);*/
}
.add_to_cart_button:before,
.add_to_cart_button:after {
    content: "";
    position: absolute;
    z-index: 2;
    left: 0;
    width: 100%;
    height: 3px;
}
.added_to_cart{
    display: none;
}
.coal-cart-icon{
    position: fixed;
    display: inline-block;
    bottom: 20px;
    right: 20px;
    z-index: 6;
}
#coal-cart-icon-items, .total{
    display: block;
    border-radius: 15px;
    padding: 5px;
    font-size: 20px;
    line-height: 20px;
    min-width: 30px;
    height: 30px;
    box-sizing: border-box;
    margin: 3px 0;
}
#coal-cart-icon-items{
    background-color: #bc131a;
}
.total{
    background-color: #0468b4;
}
.cart-with-items{
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.about-us{
    background-color: #36353d;
    padding: 15px;
}
.about-us-info{
    font-size: 20px;
    padding: 5px 10px 5px 30px;
}
.about-us-info a, .about-us-info span.stress, .contacts-big-info a, #contacts-modal .modal-body a, .fixed-phones a{
    color: #ffc603;
    font-weight: 700;
}
.about-us-info a:hover, .contacts-big-info a:hover, #contacts-modal .modal-body a:hover, .fixed-phones a:hover{
    color: #cc9e02;
}
.about-us-info ul li{
    color: #ffc603;
}
.about-us-info ul li span.list-content{
    color: #fff;
}
.contacts-big{
    background-color: #3f3e44;
    padding: 15px;
}
.contacts-big-info{
    font-size: 24px;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: center;
}
.contacts-big-header, .about-us-header{
    text-align: center;
    font-size: 28px;
}
.contacts-big-item{
    width: 300px;
    text-align: center;
}
.contacts-big-item i{
    font-size: 50px;
    margin: 20px 0;
}
.contacts-big-item h5{
    font-size: 26px;
    margin-bottom: 20px;
}
.contacts-big-item p{
    font-weight: normal;
    margin: 0;
}
.c-section{
    padding-top: 60px;
}
.section-title{
    text-align: center;
    font-weight: bold;
    font-size: 30px;
}
#coal-cart, #coal-cart tr, #coal-cart td{
    width: auto;
}
#coal-cart{
    margin: 0 auto;
}
.cart-item{
    margin: 5px auto;
    align-items: center;
}
.cart-item td{
    margin: 0 5px;
}
.cart-item .cart-item-price{
    margin-left: 25px;
}
#coal-cart .cart-item-thumb img, #coal-cart .cart .cart-item-thumb{
    height: 80px;
}
.qty, #update_cart{
    display: none;
}
.coal-qty-val{
    margin: 0 10px;
    font-size: 20px;
}
.coal-qty-inc, .coal-qty-dec{
    cursor: pointer;
}
table.cart i.fas{
    font-size: 20px;
    color: gray;
}
table.cart i.fas:hover{
    color: #fff;
}
td.product-quantity, td.product-thumbnail{
    text-align: center;
}
.woocommerce{
    text-align: center;
}
.woocommerce .cart-collaterals .cart_totals, .woocommerce table.shop_table{
    float: none;
    width: auto;
}
.woocommerce table.shop_table{
    margin: 0 auto;
}
.coal-map iframe{
    width: 100%;
    height: 600px;
    border: none;
}
#billing_country_field, #shipping_country_field{
	display: none;
}
.coal-checkout-fields{
    max-width: 700px;
    margin: 0 auto;
}
form .coal-checkout-fields .form-row{
    margin: 0;
}
.coal-checkout-fields .form-group p{
    width: 100%;
    display: flex;
    align-items: center;
    margin: 0;
}
.coal-checkout-fields .form-group p label{
    text-align: left;
}
.coal-checkout-fields .form-group{
    display: flex;
    align-items: center;
    margin: 0;
}
.coal-cart-total-row{
    text-align: right;
}
h1, h2, h3, h4, h5, h6{
    text-align: center;
}
form.checkout #payment{
    background: none;
}
#payment button{
    margin: 0 auto;
}
.bootstrap-datetimepicker-widget a[data-action]{
    color: #3f3e44;
}
.woocommerce-order table{
    margin: 0 auto 10px;
}

.woocommerce-order table td{
}
.woocommerce-order table td, .woocommerce-order table tr, .woocommerce-order table th{
    padding: 3px;
    border: 1px solid #ffc603;
}
.contact-logo{
    margin-right: 5px;
}
.contacts a{
    color:#000;
}
#coal-scroll-to-top{
    display: inline-block;
    position: fixed;
    left: 45px;
    bottom: 20px;
    z-index: 15;
}
#coal-scroll-to-top i{
    color: #ffc603;
    font-size: 50px;
}
.navbar-toggle{
    display: none;
}
.show{
    display: block!important;
}
.left-fixed-buttons{
    z-index: 7;
    position: fixed;
    top: 50%; 
    left: -20px;
    transform: rotate(90deg);
}
.coal-contacts{
    display: none;
}
.modal-header{
    background-color: #dc3545;
}
.modal-header .modal-title{
    text-align: center;
}
.modal-content{
    background-color: #2f2e34;
}
.modal-footer{
    border:none;
}
.modal-body{
    position: relative;
}
.close{
    position: absolute;
    top: 5px;
    right: 5px;
    color: #ffc603;
    opacity: 1;
}
.close span:hover{
    color: #e0a000;
}
.coal-modal-ok-button{
    position: absolute;
    right: 5px;
    bottom: 5px;
}
.modal-body, .modal-body p{
    padding: 0;
    margin: 0;
}
.navbar-toggle button{
    background:none;
    border:none;
}
.navbar-toggle button:focus{
    outline:none;
}
#contacts-modal .modal-header{
    background-color: #ffc603;
}
#contacts-modal .modal-header .modal-title{
    color: #000;
}
#contacts-modal .modal-body{
    text-align: center;
}
#contacts-modal .modal-body ul{
    list-style: none;
    padding: 0;
}
.fixed-phones{
	display: none;
	position: fixed;
	bottom: 0;
	background-color: #000;
	width: 100%;
	z-index: 10;
	justify-content: space-around;
	flex-wrap: wrap;
}
.fixed-phones div{
	text-align: center;
	margin: 0;
	padding: 10px;
}

@media (min-width: 681px){
    .collapse{
        display: block !important;
    }
}
@media (max-width: 680px) {
    .top-menu {margin:0;}
    .menu-main li {display:block;margin-right:0;}
    .menu-main:before, 
    .menu-main:after {content:none;}
    .menu-main a{display:block;padding: 3px;}
    .category_info{flex-wrap:wrap;}
    .navbar-toggle{display:flex;color:#000;justify-content:space-between;font-size:20px;padding:5px;cursor:pointer;}
    .collapse{display:none;}
    #coal-scroll-to-top{left:20px;bottom:40px;}
    .owl-item .product{margin: 0 auto !important;height: 100%;}
    .owl-carousel .owl-stage {display: flex;align-items: stretch;margin: 10px 0;}

    .main-mask{height: 425px;}/*Без новогоднего венка*/
    .main-mask{height: 500px;}
    .main-mask .contacts{display: none;}
    .main{background-position: center center/**/, center top/**/; background-size: 100% auto/**/, auto/**/;}
    .left-fixed-buttons{left: -65px;}
    .coal-contacts{display: initial;}
    .fixed-phones{display: flex;}
}

