@font-face {
    font-family: 'Intro';
    src: url('../fonts/Intro.woff2') format('woff2'),
    url('../fonts/Intro.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Calibri';
    src: url('../fonts/Calibri.woff2') format('woff2'),
    url('../fonts/Calibri.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Calibri';
    src: url('../fonts/Calibri-Bold.woff2') format('woff2'),
    url('../fonts/Calibri-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

body {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    font-size: 16px;
    line-height: 1.5;
    min-height: 100vh;
    color: #342c2b;
}

body, html, input, button, a, textarea {
    font-family: 'Roboto', sans-serif;
}

main {
    flex-grow: 1;
}

.container {
    max-width: 1460px !important;
}

b {
    font-weight: 600;
}

small p {
    margin: 0;
}

.form-check, label {
    cursor: pointer;
}

a {
    transition: color .3s;
}

.products-row {
    margin: 0;
}

.products-row > * {
    padding: 0;
    margin-right: -1px;
    margin-bottom: -1px;
}

h1, h2, h3, h4, h5, h6, .h2, .h3, .h4, .h5, .h6 {
    font-weight: 600;
    font-family: 'Intro', sans-serif;
    text-transform: uppercase;
}

.h2 {
    font-size: 32px;
}

.categories {
    display: flex;
    list-style: none;
    margin: 0 -10px;
    font-size: 14px;
    padding: 20px 0;
    background-color: white;
}

.categories-section {
    border-top: 1px solid #e9ecef;
    border-bottom: 1px solid #e9ecef;
}

.categories-section.fixed {
    position: sticky;
    top: 0;
    box-shadow: 0 1px 10px 0 rgba(0, 0, 0, .25);
    border: none;
    z-index: 200;
    transition: box-shadow .3s;
    background-color: white;
}

.categories svg {
    fill: #e0121a;
    width: 45px;
    height: 45px;
}

.categories a {
    color: #342c2b;
    text-decoration: none;
    text-align: center;
}

.categories li {
    flex-grow: 1;
    padding: 0 10px;
    text-align: center;
}

.categories svg {
    margin-bottom: 10px;
}

.section {
    padding-top: 70px;
}

.section__head {
    margin-bottom: 40px;
}

.product {
    position: relative;
    height: 100%;
    border: 1px solid #e9ecef;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}

.product:hover {
    z-index: 20;
}

.product-price-old {
    opacity: .4;
    text-decoration: line-through;
    font-size: 16px;
    font-weight: 400;
}

.product:not(.active):hover .product-actions {
    visibility: visible;
    opacity: 1;
}

.product .btn {
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product .btn svg {
    margin-right: 5px;
}

.product-title {
    font-weight: 600;
    padding: 15px 0 0;
    font-size: 20px;
    text-overflow: ellipsis;
    overflow: hidden;
    display: block;
    color: #342c2b;
    text-decoration: none;
    cursor: pointer;
}

.product-title:hover {
    color: #e0121a;
}

.product-description {
    color: #68615e;
    padding-top: 10px;
    line-height: 1.3;
}

.product-description.lg {
    font-size: 18px;
}

.product-bottom {
    padding-top: 15px;
    min-height: 40px;
}

.product-price {
    font-weight: 600;
    font-size: 20px;
}

.product-image {
    text-align: center;
    margin: 0 auto;
    max-width: 100%;
    height: auto;
    cursor: pointer;
}

.product-actions {
    position: absolute;
    left: -1px;
    right: -1px;
    top: 100%;
    margin-top: -2px;
    border: 1px solid #e9ecef;
    border-top: none;
    background-color: white;
    visibility: hidden;
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    padding: 0px 20px 20px 20px;
}

.product-badge {
    font-size: 14px;
    margin-right: 4px;
    margin-bottom: 4px;
}

.product-badges {
    position: absolute;
    top: 30px;
    right: 30px;
    display: flex;
    left: 30px;
}

.quantity {
    border: 1px solid #e9ecef;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 40px;
    border-radius: 5px;
    max-width: 100px;
}

.quantity input {
    width: 100%;
    border: none;
    text-align: center;
    height: 100%;
}

.quantity button {
    border: none;
    font-size: 13px;
    padding: 0;
    width: 30%;
    flex: 0 0 30%;
    background-color: transparent;
}

.product-characteristics {
    margin-top: 15px;
    font-size: 14px;
}

.product-characteristics span:first-child {
    color: #68615e;
    margin-right: 5px;
}

.header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
}

.header .logo {
    color: #342c2b!important;
    display: flex;
    align-items: center;
    line-height: 1.1;
    text-align: center;
}

.header .logo span {
    margin-left: 10px;
}

.nav-tabs {
    border: none;
    padding-bottom: 5px !important;
}

.nav-tabs .nav-link {
    border: 1px solid #e9ecef !important;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    color: #68615e;
    height: 40px;
}

.nav-tabs .nav-link svg {
    width: 25px;
    height: 25px;
    margin-right: 10px;
    transition: fill .3s;
    fill: #68615e;
}

.nav-tabs .nav-link:hover, .nav-tabs .nav-link.active {
    color: white;
    border: 1px solid #e0121a !important;
    background-color: #e0121a;
}

.nav-tabs .nav-link:hover svg, .nav-tabs .nav-link.active svg {
    fill: white;
}

.header-top {
    padding: 10px;
    font-size: 16px;
}


.header-left {
    border-left: 1px solid #c3bbba;
    margin-left: 20px;
    padding-left: 20px;
}


.header a.phone {
    color: #342c2b;
    font-weight: bold;
    display: block;
    text-decoration: none;
}

.header a.phone:hover {
    color: #e0121a;
}

.header-cart {
    border: 1px solid rgba(0, 0, 0, .1);
    height: 40px;
    padding: 0 15px;
    font-size: 14px;
    display: flex;
    border-radius: 5px;
    text-decoration: none;
    align-items: center;
    position: relative;
    transition: background-color .3s, color .3s, border .3s;
    color: #342c2b;
}

.header-cart:hover {
    background-color: #e0121a;
    color: white;
    border-color: #e0121a;
}

.header-cart span.count {
    height: 25px;
    padding: 0 5px;
    border-radius: 25px;
    background-color: #e0121a;
    position: absolute;
    font-size: 12px;
    display: flex;
    min-width: 25px;
    color: white;
    align-items: center;
    border: 3px solid white;
    justify-content: center;
    top: -10px;
    right: -10px;
}

.jumbotron {
    height: 500px;
    overflow: hidden;
}

.jumbotron .item {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.jumbotron__row {
    height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.jumbotron h2 {
    font-size: 48px;
    background-color: rgb(255, 238, 218);
}

.jumbotron h2, .jumbotron p {
    background-color: rgb(255, 238, 218);
    display: inline-flex;
    padding: 5px 20px;
    border-radius: 5px;
    margin-bottom: 20px;
}

.jumbotron p {
    font-size: 20px;
}

.modal-content {
    padding: 30px;
}

.text-opacity-50 {
    opacity: .6;
}

.section--bg {
    background-color: #e9ecef;
    padding: 50px 0 30px;
    margin-top: 70px;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}

.footer {
    padding: 50px 0;
    color: white;
    background-color: #2c2c2c;
}

.footer p:not(:last-child) {
    margin-bottom: 8px;
}

.footer iframe {
    width: 100%;
}

.footer__title {
    font-size: 14px;
    margin-bottom: 20px;
    font-family: 'Intro', sans-serif;
}

.footer__list.columns {
    columns: 3;
}

.footer .phone {
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: color .3s;
}

.footer .phone:hover {
    color: #e0121a;
}

.footer__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer__list a {
    opacity: .6;
    color: white;
    text-decoration: none;
    transition: opacity .3s, color .3s;
    font-size: 16px;
}

.footer__list a:hover {
    color: #e0121a;
    opacity: 1;
}

.footer__list li:not(:last-child) {
    margin-bottom: 10px;
}

.btn-close {
    position: absolute;
    right: 20px;
    top: 20px;
}

.cart-page {
    border-top: 1px solid #e9ecef;
}

.cart-product {
    position: relative;
}

.cart-product .btn-close {
    right: 0;
    top: 15px;
    padding: 0;
    opacity: .3;
}

.cart-product .product-options,
.cart-product__description {
    font-size: 14px;
    opacity: .5;
}

.cart-product__title {
    color: #342c2b;
    font-size: 18px;
    line-height: 1.2;
    font-family: 'Intro', sans-serif;
}

.cart-product__price {
    font-size: 18px;
    font-weight: bold;
}

.cart-product {
    padding: 15px 0;
    border-top: 1px solid #e9ecef;
}

.cart-product:last-child {
    margin-bottom: 0;
}

.none {
    display: none;
}

.card {
    padding: 30px;
    margin-bottom: 30px;
}

.card-body, .card-header {
    padding: 0;
}

.card-header {
    background-color: transparent;
    border: none;
    margin-bottom: 20px;
    font-family: 'Intro', sans-serif;
}

.card-total {
    background-color: rgba(224, 18, 26, .05);
    padding: 20px 30px;
    margin-top: 15px;
    font-size: 20px;
    text-align: center;
}

.card-total .sale {
    text-decoration: line-through;
    opacity: .5;
}

.relative {
    position: relative;
}

.sticky-col {
    position: sticky;
    top: 15px;
}

.form-check-input:checked {
    background-color: #e0121a;
    border-color: #e0121a;
}

.form-check-input:focus, .form-control:focus {
    box-shadow: 0 0 0 .25rem rgba(224, 18, 26, .25);
    border-color: #e0121a;
}

table {
    width: 100%;
}

table td {
    padding: 10px 0;
}

.logo {
    font-size: 20px;
    color: white!important;
    text-decoration: none;
    font-family: 'Intro', sans-serif;
}


@media (max-width: 1199px) {
    .quantity {
        max-width: 100%;
        width: 100%;
    }

    .categories svg {
        width: 35px;
        height: 35px;
    }

    .categories li {
        padding: 0 5px;
    }
}

@media (max-width: 991px) {
    .section__tab {
        flex-wrap: nowrap;
        overflow-x: scroll;
        white-space: nowrap;
        margin: 0 -10px;
        padding: 0 10px;
    }

    .categories {
        overflow-x: scroll;
        padding: 15px;
        white-space: nowrap;
    }

    .categories li {
        padding: 0 15px 0 0;
    }
}

@media (max-width: 767px) {
    .product-actions {
        position: static;
        visibility: visible;
        opacity: 1;
        padding: 0;
        border: none;
        margin-top: 15px;
    }

    .jumbotron {
        height: 250px;
    }

    .jumbotron__row {
        height: 250px;
        text-align: center;
    }

    .jumbotron h2 {
        font-size: 28px;
    }

    .jumbotron p {
        font-size: 16px;
    }

    .section__head {
        margin-bottom: 25px;
    }

    .h2 {
        font-size: 28px;
    }

    thead {
        display: none!important;
    }

    table, tr, td, thead, tbody {
        display: block;
    }
}

@media (max-width: 576px) {
    .product {
        padding: 15px;
    }

    .header-row {
        padding: 15px 0;
    }

    .product-actions {
        display: block;
    }

    .quantity {
        width: 100%;
    }

    .cart-product__image {
        width: 80px;
        height: auto;
    }

    .cart-product__title {
        font-size: 16px;
    }

    .card {
        padding: 15px;
    }
}

@media(max-width: 1024px) {
    .phone {
        font-size: 1.2rem;
    }

    .header-city {
        display: none;
    }

    .header-left {
        margin-left: 50px;
    }

    .header-cart > span {
        font-size: larger;
    }
}

@media(max-width: 480px) {
    .phone {
        font-size: 1rem;
    }

    .header-row {
        justify-content: start;
    }

    .header-row__right {
        width: 100%;
    }
    .header-left {
        margin-left:0px;
        border-left: 0;
        min-width: 180px;
    }

    .me-3{
        margin-right:0px !important;
    }

    .messenger {

    }

    .header-cart {
        margin-right: 1rem;
    }

    .header-resource-links {
        width: 100%;
    }
}

.suggestions-nowrap{white-space:nowrap}.suggestions-input{-ms-box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box;width:100%}.suggestions-input::-ms-clear{display:none}.suggestions-wrapper{position:relative;margin:0;padding:0;vertical-align:top;-webkit-text-size-adjust:100%}.suggestions-suggestions{background:#fff;border:1px solid #999;-ms-box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box;cursor:default;left:0;min-width:100%;position:absolute;z-index:9999;-webkit-text-size-adjust:100%}.suggestions-suggestions strong{font-weight:400;color:#39f}.suggestions-suggestions.suggestions-mobile{border-style:none}.suggestions-suggestions.suggestions-mobile .suggestions-suggestion{border-bottom:1px solid #ddd}.suggestions-suggestion{padding:4px 4px;overflow:hidden}.suggestions-suggestion:hover{background:#f7f7f7}.suggestions-selected{background:#f0f0f0}.suggestions-selected:hover{background:#f0f0f0}.suggestions-hint{padding:4px 4px;white-space:nowrap;overflow:hidden;color:#777;font-size:85%;line-height:20px}.suggestions-subtext{color:#777}.suggestions-subtext_inline{display:inline-block;min-width:6em;vertical-align:bottom;margin:0 .5em 0 0}.suggestions-subtext-delimiter{display:inline-block;width:2px}.suggestions-subtext_label{margin:0 0 0 .25em;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;padding:0 3px;background:#f5f5f5;font-size:85%}.suggestions-value[data-suggestion-status=LIQUIDATED]{position:relative}.suggestions-value[data-suggestion-status=LIQUIDATED]:after{position:absolute;left:0;right:0;top:50%;border-top:1px solid rgba(0,0,0,.4);content:""}.suggestions-promo{font-size:85%;display:none;color:#777;padding:4px;text-align:center}.suggestions-promo a{color:#777;display:block;filter:grayscale(100%);line-height:20px;text-decoration:none}.suggestions-promo a:hover{filter:grayscale(0)}.suggestions-promo svg{height:20px;vertical-align:bottom}@media screen and (min-width:600px){.suggestions-promo{position:absolute;top:0;right:0;text-align:left}}
