*, *:before, *:after {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

html {
    -webkit-tap-highlight-color: transparent;
}

html, body {
    margin: 0;
    padding: 0;
    font-size: 10px;
}

body {
    font-family: Arial, sans-serif;
    font-size: 1.8rem;
    line-height: 2.6rem;
    font-weight: 400;
    background: #ffffff;
    color: #333;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
    display: block;
}

b, strong {
    font-weight: 600;
}

a {
    color: #d18100;
}

a:hover {
    color: #bd7500;
}

a, a:visited, a:focus, a:hover {
    text-decoration: none;
    outline: 0;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

.h1, h1 {
    font-size: 36px;
    line-height: 48px;
    font-weight: 300;
    margin: 0 0 40px;
}
.h2, h2 {
    font-size: 38px;
    line-height: 1.18;
    margin: 0 0 30px;
    font-weight: 400;
}
.h3, h3 {
    font-size: 30px;
    line-height: 1.07;
    margin: 0 0 30px;
    font-weight: 400;
}
.h4, h4 {
    font-size: 24px;
    line-height: 1.25;
    font-weight: 400;
    margin: 0 0 1rem;
}

p {
    margin-bottom: 15px;
}

ul.styled, ol.styled {
    margin-left: 40px;
    margin-bottom: 15px;
}

.container {
    width: 100%;
    max-width: 1320px;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

@media screen and (min-width: 960px) {
    .container {
        padding-right: 30px;
        padding-left: 30px;
    }
}

@media screen and (min-width: 1280px) {
    .container {
        padding-right: 40px;
        padding-left: 40px;
    }
}

.form-groups {
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    margin: 0 -15px;
}

.form-group {
    position: relative;
    width: 100%;
    margin-bottom: 15px;
}

.form-groups>.form-group {
    padding: 0 15px;
}

.form-label {
    display: inline-block;
    font-size: 1.4rem;
    line-height: 1.8rem;
    height: 1.8rem;
    margin-bottom: 3px;
    padding: 0;
    color: #999;
}

.error .form-label {
    color: #ff6666;
}

.form-control {
    display: block;
    width: 100%;
    font-size: 16px;
    line-height: 22px;
    height: 40px;
    padding: 8px 12px;
    font-weight: 400;
    color: #333;
    background-color: #f9f9f9;
    border: transparent;
    border-radius: 4px;
    box-shadow: none;
    outline: none;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-control:focus {
    background-color: #f5f5f5;
}

.error .form-control {
    background-color: #fff;
    border: 1px solid #ff6666;
}

.form-control.phone-login {
    letter-spacing: 1.5px;
}

@media(min-width: 992px) {
    .form-groups {
        flex-direction: row;
    }
}

textarea {
    overflow: auto;
    resize: vertical;
    min-height: 80px!important;
}

option:hover {
    background: red linear-gradient(red, red);
    color: blue;
}

.btn {
    display: inline-block;
    background: #ec8404;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border: 1px solid transparent;
    border-radius: 5px;
    -webkit-transition: background .2s linear,color .2s linear,border .2s linear,box-shadow .2s linear;
    -moz-transition: background .2s linear,color .2s linear,border .2s linear,box-shadow .2s linear;
    -o-transition: background .2s linear,color .2s linear,border .2s linear,box-shadow .2s linear;
    -ms-transition: background .2s linear,color .2s linear,border .2s linear,box-shadow .2s linear;
    transition: background .2s linear,color .2s linear,border .2s linear,box-shadow .2s linear;
    font-size: 14px;
    line-height: 1;
    padding: 9px 20px 11px;
    font-weight: 500;
    height: 36px;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    outline: none;
    cursor: pointer;
}

.btn:hover {
    background: #bd7500;
    color: #fff;
}

.btn[disabled] {
    background: #ffd198;
    cursor: auto;
}

.btn-outline {
    background: transparent;
    color: #ec8404;
    border-color: #ec8404;
}

.btn-outline:hover {
    background: transparent;
    border-color: #bd7500;
    color: #bd7500;
}

.btn-gray {
    background: #959595;
}

.btn-gray:hover {
    background: #bd7500;
}

table {
    border-collapse: collapse;
    border-spacing: 0
}

.table {
    width: 100%;
    margin-bottom: 15px;
    color: #212529;
}

th {
    text-align: inherit;
}

.table td, .table th {
    padding: 15px;
    vertical-align: top;
    border-top: 1px solid #f2f2f2;
}

.table thead th {
    vertical-align: bottom;
    border-bottom: 2px solid #f2f2f2;
}

.form-control.input_error, .form-control.input_error:focus {
    outline: none;
    border: 1px solid #f33;
    box-shadow: 0 0 1px 1px #f33;
}

.notice {
    color: #f33;
    display: none;
}

.modal-overlay {
    background-color: rgba(0,0,0,.7);
    width: 100%;
    height: 100%;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 999;
    display: none;
}

/* header-top start */

.header-top {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #f2f2f2;
    max-height: 54px;
    font-size: 16px;
    opacity: 1;
    z-index: 110;
    -webkit-box-shadow: 0 0 2px 0 rgba(0,0,0,.1);
    box-shadow: 0 0 2px 0 rgba(0,0,0,.1);
}

.header-top.fixed {
    -webkit-box-shadow: 0 3px 8px 0 rgba(0,0,0,.1);
    box-shadow: 0 3px 8px 0 rgba(0,0,0,.1);
}

.header-top-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    padding: 0 15px;
    max-width: 1320px;
    min-width: 320px;
    height: 54px;
}

.header-top-mobmenu-opener {
    height: 54px;
    line-height: 54px;
    margin-left: -15px;
    padding-left: 15px;
    padding-right: 15px;
    cursor: pointer;
    display: block;
}

.header-top-mobmenu-opener-icon {
    background: url(/assets/img/svg/icon-opener-mobile.svg) no-repeat;
    width: 18px;
    height: 15px;
    display: inline-block;
    vertical-align: middle;
    position: relative;
}

.header-top-mobmenu-logo {
    width: auto;
    height: 24px;
}

.header-top-cart {
    display: block;
    float: right;
    background: url(/assets/img/svg/icon-basket-mobile.svg) left center no-repeat;
    -webkit-background-size: contain;
    -moz-background-size: contain;
    background-size: contain;
    width: 36px;
    height: 21px;
    margin-top: 12px;
    margin-left: 15px;
    padding-right: 14px;
    position: relative;
}

.header-top-mobmenu-opener-count {
    background-color: #ec8404;
    padding: 3px;
    height: 18px;
    color: #fff;
    font-size: 12px;
    font-weight: 300;
    line-height: 12px;
    text-align: center;
    border-radius: 4px;
    position: absolute;
    right: 0px;
    top: -6px;
}

.header-top-separate {
    display: block;
    float: right;
    width: 1px;
    height: 44px;
    background: #e4e4e4;
    margin-left: 15px;
}

.header-top-other-sites {
    list-style: none;
    padding: 0;
    margin: 0;
    float: right;
}

.header-top-other-sites-item {
    float: left;
    position: relative;
    height: 54px;
    padding: 0 15px;
}

.header-top-other-sites-item:first-child {
    display: block;
    position: fixed;
    bottom: 15px;
    right: 15px;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    text-align: center;
    background: #ec8404;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 10px 20px;
}

.header-top-other-sites-item:last-child {
    padding: 0;
}

.header-top-other-sites-link {
    display: inline-block;
    height: 54px;
    line-height: 54px;
    color: #ec8404;
}

.header-top-other-sites-icon {
    display: inline-block;
    vertical-align: middle;
    width: 26px;
    height: 26px;
    margin-top: -3px;
    margin-right: 5px;
}

.header-top-other-sites-icon img {
    display: block;
    vertical-align: top;
    max-width: 100%;
    max-height: 100%;
    height: auto;
}

.header-top-other-sites-icon-text {
    font-size: 1.6rem;
    display: inline-block;
    vertical-align: baseline;
}

.header-top-other-sites-icon-text .basket-text {
    display: none;
}

.header-top-other-sites-icon-text .basket-count {
    position: absolute;
    top: 0;
   right: 0;
    background: #fff;
    border: 1px solid #ec8404;
    border-radius: 11px;
    width: auto;
    min-width: 22px;
    height: 22px;
    line-height: 12px;
    padding: 3px;
}

.header-top-other-sites-btn {
    background: #ec8404;
    border: 1px solid transparent;
    display: inline-block;
    vertical-align: middle;
    border-radius: 5px;
    padding: 0 10px;
    -webkit-transition: background .2s linear,color .2s linear,border .2s linear;
    -moz-transition: background .2s linear,color .2s linear,border .2s linear;
    -o-transition: background .2s linear,color .2s linear,border .2s linear;
    -ms-transition: background .2s linear,color .2s linear,border .2s linear;
    transition: background .2s linear,color .2s linear,border .2s linear;
    -webkit-appearance: none;
    font-size: 14px;
    font-weight: 400;
    height: 36px;
    line-height: 34px;
    color: #fff;
    text-align: center;
    cursor: pointer;
    margin-top: 9px;
    outline: none;
}

.header-top-other-sites-btn:hover {
    color: #fff;
}

.header-top-menu {
    display: none;
    list-style: none;
    padding: 0;
    margin: 0;
    float: left;
    margin-left: -10px;
}

.header-top-menu:after {
    content: '';
    display: table;
    clear: both;
}

.header-top-menu-item {
    float: left;
    margin: 0 10px;
}

.header-top-menu-link {
    display: block;
    font-size: 1.4rem;
    height: 54px;
    line-height: 54px;
    color: grey;
    position: relative;
}

.header-top-menu-item.active .header-top-menu-link {
    color: #e30613;
}

.header-top-menu-item.more {
    margin-right: 20px;
    padding-left: 21px;
    position: relative;
}

.header-top-menu-item.more:after {
    display: block;
    content: " ";
    width: 1px;
    height: 30px;
    background: #dcdcdc;
    position: absolute;
    top: 50%;
    left: 0;
    margin-top: -15px;
}

.header-top-menu-link.arrow:after {
    content: "";
    border: 5px solid transparent;
    border-top-color: #adb8c1;
    display: inline-block;
    vertical-align: top;
    margin: 24px 0 0 6px;
}

.header-top-menu-drop {
    background-color: #fff;
    list-style: none;
    margin: 0;
    width: 260px;
    padding: 0 20px;
    border: 1px solid #e4e4e4;
    border-radius: 1px;
    box-shadow: 0 5px 29px rgba(0,0,0,.1);
    position: absolute;
    display: none;
}

.header-top-menu-drop:after, .header-top-menu-drop:before {
    content: "";
    border: 10px solid transparent;
    border-bottom-color: #e4e4e4;
    position: absolute;
    bottom: 100%;
    left: 30px;
}

.header-top-menu-drop:after {
    content: "";
    border-bottom-color: #fff;
    margin-bottom: -1px;
}

.header-top-menu-item.more:hover .header-top-menu-drop {
    display: block;
}

.header-top-menu-drop-item {
    border-bottom: 1px solid #f2f2f2;
    font-size: 15px;
}

.header-top-menu-drop-item.active .header-top-menu-drop-link {
    color: #d18100;
}

.header-top-menu-drop-item:last-child {
    border-bottom: medium none;
}

.header-top-menu-drop-link {
    line-height: 20px;
    padding: 15px 0;
    display: block;
    position: relative;
    color: grey;
}

.header-top-region {
    display: none;
    margin: 0 auto;
//    overflow: hidden;
    text-align: center;
    height: 54px;
    line-height: 50px;
}

.header-top-region-name, .header-top-region-name span {
    display: inline-block;
    white-space: nowrap;
}

.header-top-region-name {
    position: relative;
}

.header-top-region-name span {
    vertical-align: middle;
    padding: 0;
    font-size: 1.4rem;
    color: #333;
    cursor: pointer;
    overflow: hidden;
    max-width: 100%;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
}

.header-top-region-delivery-icon {
    width: 24px;
    height: 54px;
    background: url(/assets/img/svg/information-outline.svg) center center no-repeat;
}

.header-top-region-name span.header-top-region-delivery-text {
    display: none;
    position: absolute;
    top: 54px;
    left: -148px;
    width: 296px;
    max-width: 296px;
    padding: 10px 15px;
    line-height: 2.4rem;
    background: #fff;
    white-space: normal;
    text-align: left;
    -webkit-box-shadow: 0 5px 29px rgba(0,0,0,.1);
    box-shadow: 0 0 5px rgba(0,0,0,.1);
}

.header-top-region-delivery:hover span.header-top-region-delivery-text {
    display: inline-block;
}

.header-top-region-name span.header-top-region-arrow {
    border: 5px solid transparent;
    border-top-color: #adb8c1;
    margin: 6px 0 0 10px;
}

.header-top-mobmenu {
    display: none;
}

.header-top.fixed .header-top-mobmenu-opener,
.header-top.fixed .header-top-other-sites-item:last-child {
    display: none;
}

.header-top.fixed .header-top-wrapper {
    justify-content: flex-start;
}

.header-top.fixed .header-top-mobmenu {
    display: flex;
    list-style: none;
    width: 100%;
    margin-left: 15px;
    overflow-x: auto;
    padding: 10px 0;
}

.header-top.fixed .header-top-mobmenu li {
    display: inline-block;
}

.header-top.fixed .header-top-mobmenu li a {
    display: block;
    margin-right: 10px;
    padding: 0 8px;
    border-radius: 5px;
    background: #f2f2f2;
    height: 36px;
    line-height: 34px;
    font-size: 14px;
    color: #333;
}

.header-top.fixed .header-top-mobmenu li a.active {
    background: #ec8404;
    color: #fff;
}


@media screen and (min-width: 992px) {
    .header-top {
        position: relative;
        -webkit-box-shadow: none;
        box-shadow: none;
        background-color: #f8f8f8;
        background-image: url(/assets/img/header-top.png);
        background-position: 0 100%;
        background-repeat: repeat-x;
        background-size: auto 12px;
        height: 54px;
        transition: height .3s ease;
    }

    .header-top.fixed {
        display: none;
    }

    .header-top-mobmenu, .header-top.fixed .header-top-mobmenu {
        display: none;
    }

    .header-top-wrapper {
        padding: 0 30px;
    }

    .header-top-mobmenu-opener, .header-top-cart, .header-top-separate, .header-top-mobmenu-logo {
        display: none;
    }

    .header-top-other-sites, .header-top-menu, .header-top-region, .header-top-other-sites, .header-top-menu, .header-top-region {
        display: block;
    }

    .header-top-other-sites-item:first-child {
        position: relative;
        bottom: unset;
        right: unset;
        width: auto;
        height: auto;
        border-radius: 0;
        text-align: unset;
        background: transparent;
        box-shadow: none;
    }
    .header-top-other-sites-link {
        display: inline-block;
        height: 36px;
        line-height: 24px;
        background: #fff;
        color: #ec8404;
        border-radius: 5px;
        padding: 6px 10px;
        margin-top: 9px;
    }
    .header-top-other-sites-icon-text .basket-text {
        display: inline-block;
    }

    .header-top-other-sites-icon-text .basket-count {
        position: relative;
        top: unset;
        right: unset;
        border: none;
        border-radius: unset;
        min-width: unset;
        height: unset;
        line-height: unset;
        padding: 0;
        text-align: unset;
        margin-left: 5px;
        padding-left: 5px;
        border-left: 1px solid #eee;
    }
}

@media screen and (min-width: 1280px) {
    .header-top-wrapper {
        padding: 0 40px;
    }

    .header-top-region-name span, .header-top-menu-link, .header-top-other-sites-icon-text, .header-top-other-sites-btn {
        font-size: 1.2rem;
    font-weight: 600;
        color: #000;
        text-transform: uppercase;
    }
}

.header-top_mode {
    display: flex;
    align-items: center;
    line-height: normal;
    margin-left: auto;
    margin-right: 50px;
}

.header-top_mode_pic {
    display: flex;
    flex-shrink: 0;
    margin-right: 10px
}

.header-top_mode_pic>svg {
    flex-shrink: 0
}

.header-top_mode_group {
    align-items: center;
    display: flex
}

.header-top_mode_item {
    flex-shrink: 0;
    text-align: center
}

@media screen and (max-width: 1200px) {
    .header-top_mode_item:last-child {
        display:none
    }
}

.header-top_mode_item small {
    color: #999;
    display: block;
    font-size: 12px;
    font-weight: 600
}

.header-top_mode_item strong {
    color: #000;
    display: block;
    font-size: 15px;
    font-weight: 700
}

.header-top_mode_item strong.holiday-time {
    font-size: 10px;
    padding-top: 1px
}

.header-top_mode_item:not(:last-child) {
    margin-right: 35px;
    position: relative
}

@media screen and (max-width: 1200px) {
    .header-top_mode_item:not(:last-child) {
        margin-right:0
    }
}

.header-top_mode_item:not(:last-child):after {
    background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI3LjcyMiIgaGVpZ2h0PSIyNC43MzEiPjxwYXRoIGRhdGEtbmFtZT0i0JrQvtC90YLRg9GAIDE2OTciIGQ9Im03LjEwNy42MTUtNi40OTIgMjMuNSIgZmlsbD0ibm9uZSIgc3Ryb2tlPSIjYmNiY2JjIiBzdHJva2UtbGluZWNhcD0icm91bmQiLz48L3N2Zz4=);
    background-position: 50%;
    background-size: contain;
    content: "";
    height: 24px;
    position: absolute;
    right: -22px;
    top: 50%;
    transform: translateY(-50%);
    width: 7px
}

@media screen and (max-width: 1200px) {
    .header-top_mode_item:not(:last-child):after {
        content:normal
    }
}

.header-top_phone {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    margin-right: 50px;
}

.header-top_phone a {
    color: #000;
    cursor: pointer;
    font-size: 16px;
    font-weight: 700;
    -webkit-text-decoration: none;
    text-decoration: none;
}

.header-top_cart_button {
    align-items: center;
    background-color: #fff;
    border: none;
    border-radius: 4px;
    box-shadow: 0 3px 6px rgba(0,0,0,.09);
    color: #000;
    cursor: pointer;
    display: flex;
    height: 36px;
    padding-left: 5px;
    padding-right: 14px;
    margin-left: auto;
    transition: transform .25s;
}

.header-top_cart_button:hover {
    color: #000;
    transform: scale(1.1);
}

.header-top_cart_button_icon {
    background: #e31e24;
    background: linear-gradient(180deg,#fc5964,#e30615);
    border-radius: 4px;
    color: #fff;
    font-size: 14px;
    width: 26px;
    height: 26px;
    justify-content: center;
    margin-right: 12px;
}

.header-top_cart_button_icon svg {
    display: inline-block;
    font-size: inherit;
    width: 1.125em;
    height: 1em;
    vertical-align: -0.125em;
    margin-left: -2px;
}

.header-top_cart_button_icon,
.header-top_cart_button_total {
    align-items: center;
    display: flex
}

.header-top_cart_button_total span {
    display: block;
    font-family: Roboto,Arial,sans-serif;
    font-size: 14px;
    font-weight: 600
}

.header-top_cart_button_total span:first-child {
    border-right: 1px solid #dfdfdf;
    margin-right: 10px;
    padding-right: 20px
}

.header-top_cart_button_total span:last-child {
    font-weight: 700
}

@media screen and (max-width: 767px) {
    .header-top_mode,
    .header-top_phone {
        display: none;
    }
}
/* header-top end */


.region-change {
    display: none;
    text-align: center;
    padding: 20px 0;
    background-color: #fff;
    border-radius: 2px;
    -webkit-box-shadow: 0 5px 29px rgba(0,0,0,.1);
    box-shadow: 0 5px 29px rgba(0,0,0,.1);
    position: relative;
    z-index: 109;
    margin-top: 44px;
}

.region-change-wrapper {
    margin: 0 auto;
    padding: 0 15px;
    max-width: 1320px;
    min-width: 320px;
}

.region-change-text {
    display: inline-block;
    margin-bottom: 15px;
    font-size: 14px;
    line-height: 1.33;
}

.region-change-text-icon {
    display: inline-block;
    vertical-align: middle;
    width: 24px;
    height: 24px;
    margin-top: -3px;
}

.region-change-text-icon-map-marker {
    margin-top: -3px;
    margin-right: 10px;
    width: 15px;
}

.region-change-text-icon img {
    display: block;
    vertical-align: top;
    max-width: 100%;
    max-height: 100%;
    height: auto;
}

.region-change-text .region-value {
    white-space: nowrap;
    overflow: hidden;
    max-width: 380px;
    display: inline-block;
    vertical-align: top;
    text-overflow: ellipsis;
}

.region-change-btns {
    display: inline-block;
}

.region-change-btns-item {
    display: inline-block;
    margin-left: 15px;
    margin-right: 15px;
}

.region-change-btns-item:last-child {
    margin-right: 0;
}

@media screen and (min-width: 992px) {
    .region-change {
        margin-top: 0;
    }

    .region-change-wrapper {
        padding: 0 30px;
    }
    .region-change-text {
        font-size: 18px;
        margin-bottom: 0;
    }
}

@media screen and (min-width: 1280px) {
    .region-change-wrapper {
        padding: 0 40px;
    }
}


.header {
    padding: 0;
    min-height: 54px;
    position: sticky;
    top: 0;
    z-index: 30;
    background: #fff;
    border-bottom: 1px solid #eff1f2;
}

.header-wrapper {
    display: none;
}

.header-logo {
    background: url(/assets/img/logo.png) left center no-repeat;
    -webkit-background-size: contain;
    -moz-background-size: contain;
    background-size: contain;
    width: 110px;
    height: 66px;
    display: block;
    float: left;
    position: relative;
}

.header-logo+.header-menu {
    float: right;
    width: calc(100% - 110px);
}

.header-mainmenu {
    position: relative;
    z-index: 100;
    color: #333;
    display: table;
    width: 100%;
    table-layout: fixed;
}

.header-mainmenu-items {
    position: relative;
    display: flex;
    justify-content: flex-end;
    list-style: none;
    margin: 0 auto;
    padding: 0 0 0 30px;
    font-size: 0;
    width: 100%;
    line-height: 0;
    text-align: justify;
    -ms-text-justify: distribute-all-lines;
    text-justify: distribute-all-lines;
}

.header-mainmenu-item {
    vertical-align: top;
    text-align: center;
    padding: 0 10px;
}

.header-mainmenu-item:last-child {
    padding-right: 0;
}

.header-mainmenu-item-link {
    padding-top: 23px;
    display: block;
    position: relative;
    color: #333;
    cursor: pointer;
    z-index: 101;
}

.header-mainmenu-item-link:hover  {
    color: #333;
}

.header-mainmenu-item-link:hover .header-mainmenu-item-line,
.header-mainmenu-item-link.active .header-mainmenu-item-line {
    opacity: 1;
}

.header-mainmenu-item-valign {
    height: 100%;
    display: inline-block;
    vertical-align: top;
    line-height: 1.2;
    border-bottom: 3px solid transparent;
    -webkit-transition-property: border;
    -moz-transition-property: border;
    -o-transition-property: border;
    -ms-transition-property: border;
    transition-property: border;
    -webkit-transition-timing-function: ease-in-out;
    -moz-transition-timing-function: ease-in-out;
    -o-transition-timing-function: ease-in-out;
    -ms-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;
    -webkit-transition-duration: .35s;
    -moz-transition-duration: .35s;
    -o-transition-duration: .35s;
    -ms-transition-duration: .35s;
    transition-duration: .35s;
    position: relative;
    padding-bottom: 20px;
}

.header-mainmenu-item-icon {
    height: 36px;
    max-width: 36px;
    fill: grey;
    display: block;
    margin: 0 auto 8px;
}

.header-mainmenu-item-text {
    display: inline;
    font-size: 16px;
    line-height: 1.33;
}

.header-mainmenu-item-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: #ec8404;
    -webkit-transition: opacity 325ms;
    -moz-transition: opacity 325ms;
    -o-transition: opacity 325ms;
    -ms-transition: opacity 325ms;
    transition: opacity 325ms;
    margin-bottom: -4px;
    opacity: 0;
    filter: alpha(Opacity=0);
}

@media screen and (min-width: 992px) {
    .header {
        display: block;
    }

    .header-wrapper {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin: 0 auto;
        padding: 0 30px;
        max-width: 1320px;
        min-width: 320px;
    }
}

@media screen and (min-width: 1100px) {
    .header-mainmenu-item-text {
        font-size: 18px;
    }
}

@media screen and (min-width: 1280px) {
    .header-wrapper {
        padding: 0 40px;
    }

    .header-logo {
        background: url(/assets/img/logo.png) left center no-repeat;
        -webkit-background-size: contain;
        -moz-background-size: contain;
        background-size: contain;
        width: 150px;
        height: 70px;
    }
    
    .header-logo+.header-menu {
        width: calc(100% - 150px);
    }

    .header-mainmenu-items {
        padding: 0 0 0 40px;
    }
    .header-mainmenu-item {
        padding: 0 15px;
    }
}




.header.fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 63px;
    min-height: 63px;
    background-color: #fff;
    -webkit-box-shadow: 0 0 13px 0 rgba(82,63,105,0.05);
    box-shadow: 0 0 13px 0 rgba(82,63,105,0.05);
    z-index: 110;
    opacity: 1;
}

.header.fixed .header-logo {
    background: url(/assets/img/logo.png) left center no-repeat;
    -webkit-background-size: contain;
    -moz-background-size: contain;
    background-size: contain;
    width: 80px;
    height: 37px;
    margin-top: 13px;
}

.header.fixed .header-logo+.header-menu {
    float: left;
    width: calc(100% - 230px);
}

.header.fixed .header-mainmenu-items {
    padding: 0;
}

.header.fixed .header-mainmenu-item-icon {
    display: none;
}

.header.fixed .header-basket {
    display: block;
}

@media screen and (min-width: 1132px) {
    .header.fixed .header-mainmenu-items {
        padding: 0 20px;
    }
}

@media screen and (min-width: 1172px) {
    .header.fixed .header-mainmenu-items {
        padding: 0 40px;
    }
}

@media screen and (min-width: 1280px) {
    .header.fixed .header-mainmenu-items {
        padding: 0 50px;
    }
}





/* ----- Breadcrumbs ----- */
.breadcrumbs {
    position: relative;
    background: #fff;
    border-bottom: 1px solid #eff1f2;
    margin-bottom: 40px;
}

.breadcrumbs-wrapper {
    margin: 0 auto;
    width: 100%;
    max-width: 1320px;
    min-width: 320px;
    padding-left: 15px;
    padding-right: 15px;
}

.crumbs {
    display: none;
    list-style: none;
    margin: 0;
    font-size: 16px;
    line-height: 18px;
    padding: 18px 0;
    position: relative;
    z-index: 2;
    clear: both;
}

.crumbs:after,.crumbs:before {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
}

.crumbs:after {
    background: url(/assets/img/crumbs-dotted.png) center center repeat-x;
    bottom: 0;
}

.crumbs:before {
    background: #f2f2f2;
    top: 0;
}

.crumbs-item {
    display: inline-block;
    vertical-align: top;
    margin-right: 10px;
    color: grey;
}

.crumbs-item:last-child {
    margin-right: 0;
}

.crumbs-item:last-child:after {
    display: none;
}

.crumbs-item:after {
    content: "";
    background: url(/assets/img/svg/arrow-right.svg) no-repeat;
    display: inline-block;
    vertical-align: baseline;
    width: 6px;
    height: 8px;
    margin-left: 12px;
}

.crumbs-link {
    color: inherit;
}

.breadcrumbs-title {
    font-size: 26px;
    line-height: 34px;
    text-align: center;
    padding: 20px 0;
    margin-bottom: 0;
}

.breadcrumbs-title a {
    color: #333;
}

.breadcrumbs-title a:hover {
    color: #000;
}

@media screen and (min-width: 992px) {
    .breadcrumbs-wrapper {
        padding-left: 30px;
        padding-right: 30px;
    }

    .crumbs {
        display: block;
    }

    .breadcrumbs-title {
        font-size: 30px;
        line-height: 38px;
        padding: 30px;
    }
}

@media screen and (min-width: 1280px) {
    .header.fixed + .breadcrumbs {
        padding-top: 175px;
    }

    .breadcrumbs-wrapper {
        padding:0 40px;
    }

    .breadcrumbs-title {
        font-size: 36px;
        line-height: 46px;
        padding: 40px 100px;
    }
}

/* ----- Breadcrumbs end ----- */







.mobmenu {
    position: fixed;
    top: 0;
    left: -105%;
    bottom: 0;
    background: #fff;
    box-shadow: 0 0 15px 0 rgba(0,0,0,.15);
    width: 100%;
    max-width: 450px;
    opacity: 0;
    z-index: 1000;
    transition: left 600ms;
}
.mobmenu.active {
    left: 0;
    opacity: 1;
}
.mobmenu-inner {
    height: 100%;
    overflow-y: auto;
}
.mobmenu-header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    height: 54px;
    background-color: #f2f2f2;
    border-bottom: 1px solid #f2f2f2;
}
.mobmenu-close {
    width: 54px;
    height: 54px;
    display: inline-block;
    float: right;
}
.mobmenu-close:after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 54px;
    height: 54px;
    background: url(/assets/img/svg/close-dark.svg) center center no-repeat;
}
.mobmenu-profile {
    display: flex;
    justify-content: space-between;
    padding: 15px;
    margin: 0 0 15px;
    font-size: 1.6rem;
    line-height: 18px;
    border-bottom: 1px solid #f2f2f2;
}
.mobmenu-profile .btn {
    margin-left: 10px;
    border-radius: 5px;
    padding-left: 9px;
    padding-right: 9px;
    white-space: nowrap;
}
.mobmenu-items {
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    width: 100%;
    list-style: none;
    padding: 0;
    margin: 20px 0 0;
}
.mobmenu-items li a {
    position: relative;
    display: block;
    font-size: 2rem;
    line-height: 2.5rem;
    color: #333;
    padding: 10px 25px;
}
.mobmenu-items li.active a {
    color: #ec8404;
}
.mobmenu-phone {
    padding: 14px 20px;
}
.mobmenu-phone a {
    display: block;
    position: relative;
    font-size: 2rem;
    line-height: 2.6rem;
    font-weight: 500;
    padding-left: 40px;
}
.mobmenu-phone a:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 26px;
    height: 26px;
    background: url(/assets/img/svg/phone-mustard.svg) center center no-repeat;
}
@media (max-width: 991px) {
    .mobile-menu {
        display: block;
        width: 16px;
        height: 16px;
        padding: 28px;
        background: url(/assets/img/svg/menu-dark.svg) center center no-repeat;
    }
    .mobile-logo {
        line-height: 56px;
        font-size: 20px;
        font-weight: 500;
        width: calc(100% - 142px);
        text-align: center;
    }
    .mobile-logo a {
        color: #333;
    }
    .mobile-basket {
        display: block;
        margin-right: 15px;
        width: 56px;
    }
}


/* ----- Slider ----- */
.carousel {
    position: relative;
    margin-top: 54px;
}

.carousel.pointer-event {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
}

.carousel-inner {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.carousel-inner::after {
  display: block;
  clear: both;
  content: "";
}

.carousel-item {
  position: relative;
  display: none;
  float: left;
  width: 100%;
  margin-right: -100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transition: -webkit-transform 0.6s ease-in-out;
  transition: transform 0.6s ease-in-out;
  transition: transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .carousel-item {
    transition: none;
  }
}

.carousel-item.active,
.carousel-item-next,
.carousel-item-prev {
  display: block;
}

.carousel-item-next:not(.carousel-item-left),
.active.carousel-item-right {
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
}

.carousel-item-prev:not(.carousel-item-right),
.active.carousel-item-left {
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
}

.carousel-fade .carousel-item {
  opacity: 0;
  transition-property: opacity;
  -webkit-transform: none;
  transform: none;
}

.carousel-fade .carousel-item.active,
.carousel-fade .carousel-item-next.carousel-item-left,
.carousel-fade .carousel-item-prev.carousel-item-right {
  z-index: 1;
  opacity: 1;
}

.carousel-fade .active.carousel-item-left,
.carousel-fade .active.carousel-item-right {
  z-index: 0;
  opacity: 0;
  transition: opacity 0s 0.6s;
}

@media (prefers-reduced-motion: reduce) {
  .carousel-fade .active.carousel-item-left,
  .carousel-fade .active.carousel-item-right {
    transition: none;
  }
}

.carousel-control-prev,
.carousel-control-next {
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 1;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 15%;
    color: #fff;
    text-align: center;
    opacity: 0.5;
    transition: opacity 0.15s ease;
}

@media (prefers-reduced-motion: reduce) {
  .carousel-control-prev,
  .carousel-control-next {
    transition: none;
  }
}

.carousel-control-prev:hover, .carousel-control-prev:focus,
.carousel-control-next:hover,
.carousel-control-next:focus {
  color: #fff;
  text-decoration: none;
  outline: 0;
  opacity: 0.9;
}

.carousel-control-prev {
  left: 0;
}

.carousel-control-next {
  right: 0;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  display: inline-block;
  width: 24px;
  height: 24px;
  background: no-repeat 50% / 100% 100%;
}

.carousel-control-prev-icon {
  background-image: url(/assets/img/svg/icon-prev.svg);
}

.carousel-control-next-icon {
  background-image: url(/assets/img/svg/icon-next.svg);
}

.carousel-indicators {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 15;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  padding-left: 0;
  margin-right: 15%;
  margin-left: 15%;
  list-style: none;
}

.carousel-indicators li {
  box-sizing: content-box;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
  width: 30px;
  height: 3px;
  margin-right: 3px;
  margin-left: 3px;
  text-indent: -999px;
  cursor: pointer;
  background-color: #fff;
  background-clip: padding-box;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  opacity: .5;
  transition: opacity 0.6s ease;
}

@media (prefers-reduced-motion: reduce) {
  .carousel-indicators li {
    transition: none;
  }
}

.carousel-indicators .active {
  opacity: 1;
}

.carousel-caption {
  position: absolute;
  right: 15%;
  bottom: 20px;
  left: 15%;
  z-index: 10;
  padding-top: 20px;
  padding-bottom: 20px;
  color: #fff;
  text-align: center;
}

@media screen and (min-width: 992px) {
    .header.fixed + .breadcrumbs + .carousel {
        padding-top: 170px;
    }
    .carousel {
        margin-top: 0;
    }
    .carousel-control-prev-icon, .carousel-control-next-icon {
        width: 36px;
        height: 36px;
    }
}

@media screen and (min-width: 1280px) {
    .carousel-control-prev-icon, .carousel-control-next-icon {
        width: 40px;
        height: 40px;
    }
}

/* Slider end */

/* Catalog */
.catalog .cat-title {
    margin: 65px 0 15px;
    padding: 0;
    font-size: 24px;
    line-height: 28px;
}
.cat-filter {
    display: flex;
    flex-wrap: nowrap;
    width: 100%;
    overflow-x: auto;
}
.cat-filter_link {
    align-items: center;
    color: #000;
    cursor: pointer;
    display: flex;
    flex-shrink: 0;
    font-size: 14px;
    height: 36px;
    justify-content: center;
    margin-right: 15px;
    margin-bottom: 18px;
    padding: 0 15px;
    background-color: #f5f5f5;
    border-radius: 8px;
    -webkit-text-decoration: none;
    text-decoration: none;
    transition: all .2s;
}
.cat-filter_link.active,
.cat-filter_link:hover {
    background-color: #ec8404;
    color: #fff;
}
.catalog-items {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin: 0 -7px;
}
.catalog-items .item {
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    position: relative;
    flex: 0 1 calc(50% - 14px);
    background: #fff;
    margin: 7px;
    border-radius: 8px;
    -webkit-box-shadow: 0 0 13px 0 rgba(82,63,105,0.05);
    box-shadow: 0 0 13px 0 rgba(82,63,105,0.05);
    z-index: 1;
    overflow: hidden;
}
.catalog-items .item .img {
    margin: 0;
    cursor: pointer;
}
.catalog-items .item .img img {
    width: 100%;
}
.catalog-items .item .title {
    font-size: 16px;
    line-height: 18px;
    font-weight: 500;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #333;
    padding: 15px 15px 10px;
}
.catalog-items .item .description {
    font-size: 14px;
    line-height: 18px;
    text-overflow: ellipsis;
    color: #777;
    padding: 0 15px 10px;
}
.catalog-items .item .weight {
    font-size: 14px;
    line-height: 18px;
    text-overflow: ellipsis;
    color: #777;
    padding: 0 15px 10px;
}
.catalog-items .item .description .list-item {
    display: inline-block;
    margin-right: 5px;
}
.catalog-items .item .description .list-item:last-child {
    margin-right: 0;
}
.catalog-items .item .description .list-item:after {
    content: ",";
}
.catalog-items .item .description .list-item:last-child:after {
    content: "";
}
.catalog-items .item .bottom {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin-top: auto;
    padding: 5px 15px 15px;
}
.catalog-items .item .bottom .price {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 10px;
}
.catalog-items .item .bottom .price .old-price {
    color: #999;
    font-size: 18px;
    font-weight: 400;
    text-decoration: line-through;
    margin-right: 7px;
}
.catalog-items .item .bottom .btn {
    width: 100%;
}
.catalog-items .item .stickers {
    display: flex;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0px;
    width: 100%;
    height: 28px;
}
.catalog-items .item .sticker {
    display: inline-block;
    font-size: 1rem;
    height: 28px;
    line-height: 28px;
    padding: 0 4px;
    margin: 0;
    border-radius: 4px;
}
.catalog-items .item .sticker:last-child {
    margin-right: 0;
}
.catalog-items .item .sticker.hit {
    color: #fff;
    background: #0074cc;
}
.catalog-items .item .sticker.new {
    color: #fff;
    background: #ffcb00;
}
.catalog-items .item .sticker.vegan {
    color: #fff;
    background: #4fad00;
}
.catalog-items .item .sticker.stock {
    color: #fff;
    background: #f00;
}
.catalog-items .item .sticker.recommend {
    color: #fff;
    background: #893ca9;
}
.catalog-items .item .sticker.two-in-one {
    color: #fff;
    background: #ec8404;
}
@media (min-width: 768px) {
    .cat-filter {
        flex-wrap: wrap;
        overflow-x: unset;
    }
    .cat-filter_link {
        margin-right: 15px;
        margin-bottom: 15px;
        padding: 0 25px;
    }
    .catalog-items {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        justify-content: flex-start;
        margin: 0 -10px;
    }
    .catalog-items .item {
        flex-direction: column;
        flex: 0 1 calc(33.3333% - 20px);
        margin: 10px;
    }
    .catalog-items .item .title {
        font-size: 18px;
        line-height: 22px;
    }
    #drinks .catalog-items .item .title, #sauces .catalog-items .item .title, #desserts .catalog-items .item .title, #snacks .catalog-items .item .title {
        height: auto;
    }
    .catalog-items .item .description {
        line-height: 2rem;
        overflow: hidden;
    }
    #drinks .catalog-items .item .description, #sauces .catalog-items .item .description, #desserts .catalog-items .item .description, #snacks .catalog-items .item .description {
        height: auto;
    }
    .catalog-items .item .sticker {
        font-size: 1.2rem;
        height: 28px;
        line-height: 28px;
        padding: 0 8px;
        margin-right: 4px;
    }
    .catalog-items .item .bottom {
        justify-content: space-between;
        padding: 15px;
    }
    .catalog-items .item .bottom .price {
        margin-bottom: 0;
    }
    .catalog-items .item .bottom .btn {
        width: auto;
    }
}
@media (min-width: 992px) {
    .catalog .cat-title {
        margin: 140px 0 25px;
        font-size: 36px;
        line-height: 44px;
    }
    .catalog-items .item {
        flex: 0 1 calc(25% - 20px);
    }
}
@media (min-width: 1200px) {
    .catalog-mini .catalog-items .item {
        flex: 0 1 calc(20% - 20px);
    }
}
/* Catalog end */


/* Order */
.order-detail {
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
}

.order-detail-info {
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    order: 2;
}

.order-detail-info .header {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.order-detail-info .header .title {
    font-size: 22px;
    font-weight: 500;
}

.select-ingredients,
.select-remove-ingredients,
.select-removed-ingredients,
.select-add-ingredients,
.select-add-ingredients2,
.select-choose-cheese,
.select-choose-flour {
    display: none;
}

.order-detail-info .ingredients {
    margin: 20px 0;
}
.order-detail-info .ingredient {
    display: inline-block;
    position: relative;
    color: #333;
    margin-right: 10px;
    margin-bottom: 7px;
}
.order-detail-info .ingredient.delete {
    cursor: pointer;
}
.order-detail-info .ingredient.delete:before,
.order-detail-info .ingredient.deleted:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    border-bottom: 1px dashed #333;
}
.order-detail-info .ingredient.deleted {
    color: #999;
    cursor: pointer;
}
.order-detail-info .ingredient.deleted:before {
    border-color: #999;
}

.detail-info-size {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 10px;
    padding: 2px;
    background: #f2f2f2;
    border-radius: 4px;
    cursor: pointer;
}

.detail-info-size .tab {
    display: inline-block;
    background: #fbfbfb;
    height: 26px;
    padding: 0 5px;
    text-align: center;
    line-height: 26px;
    border-radius: 4px;
    margin: 2px;
}

.detail-info-size .tab.active {
    background: #fff;
}

.detail-info-pastry {
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 10px;
    padding: 2px;
    background: #f2f2f2;
    border-radius: 4px;
    cursor: pointer;
}

.detail-info-pastry .pastry-tab {
    display: inline-block;
    width: 50%;
    height: 26px;
    text-align: center;
    line-height: 26px;
}

.detail-info-pastry .pastry-tab.active {
    background: #fff;
    border-radius: 4px;
}

.detail-info-add-ingredients {
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
    box-shadow: 0 0 10px 0 rgba(0,0,0,.1);
}

.detail-info-add-ingredients .add-ingredient {
    display: -ms-flexbox;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;;
    align-items: center;
    padding: 10px;
    background: #f9f9f9;
    border-right: 1px solid #efefef;
}

.detail-info-add-ingredients .add-ingredient:last-child {
    border-right: none;
}

.detail-info-add-ingredients .add-ingredient:hover {
    box-shadow: 0 10px 20px 0 rgba(0,0,0,.1);
}

.detail-info-add-ingredients .add-ingredient.active {
    background: #f2f2f2;
}

.detail-info-add-ingredients .add-ingredient .img {
    width: 25%;
    margin-right: 7px;
}

.detail-info-add-ingredients .add-ingredient .body {
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: calc(75% - 7px);
}

.detail-info-add-ingredients .add-ingredient .title {
    font-size: 13px;
}

.detail-info-add-ingredients .add-ingredient .price {
    font-size: 13px;
    color: #777;
}

.order-detail-img {
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 30px;
    order: 1;
}

.order-detail-img .img-block {
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 350px;
    height: 350px;
    margin: auto;
    background: url(/assets/img/svg/pizza-default.svg) center center no-repeat;
    background-size: cover;
}

.changed-ingr {
    height: 26px;
    line-height: 26px;
    overflow: hidden;
}

.changed-ingr b {
    font-size: 1.4rem;
    line-height: 2rem;
    font-weight: 500;
    margin-right: 7px;
}

.changed-ingr span {
    display: inline-block;
    position: relative;
    color: #777;
    font-size: 13px;
    line-height: 18px;
    font-style: italic;
    margin-right: 5px;
    border-bottom: 1px dashed #333;
}

.changed-ingr span:after {
    content: ",";
}

.changed-ingr span:last-child:after {
    content: "";
}

.cart-item.promo .changed-ingr span {
    border-bottom: 0;
}

.order-finish {
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 50px 0 0;
    padding: 30px 15px;
    background: #fff;
    -webkit-box-shadow: 0 0 13px 0 rgba(82,63,105,0.05);
    box-shadow: 0 0 13px 0 rgba(82,63,105,0.05);
    text-align: center;
}
.order-finish-check {
    width: 150px;
    height: 150px;
    margin-bottom: 30px;
    border-radius: 50%;
    background: url(/assets/img/order-finish-check-light.png) center center no-repeat;
    background-size: cover;
}
.order-finish-title {
    font-size: 28px;
    line-height: 38px;
    margin-bottom: 20px;
    font-weight: 600;
    color: #333;
}
.order-finish-num {
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    font-size: 18px;
    line-height: 30px;
    font-weight: 600;
    margin-bottom: 20px;
}
.order-finish-num .num-value {
    font-weight: 500;
}
.order-finish-desc {
    font-size: 15px;
    line-height: 22px;
    font-weight: 400;
    margin-bottom: 20px;
}
.order-finish-link {
    position: relative;
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    padding-left: 28px;
    color: #d18100;
}
.order-finish-link:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 24px;
    height: 24px;
    background: url(/assets/img/svg/arrow-left-gold.svg) center center no-repeat;
}
@media(min-width: 992px) {
    .order-finish {
        padding: 70px;
    }
    .order-finish-check {
        width: 150px;
        height: 150px;
    }
    .order-finish-title {
        font-size: 32px;
        margin-bottom: 30px;
    }
    .order-finish-num {
        flex-direction: row;
        font-size: 24px;
        line-height: 34px;
        margin-bottom: 30px;
    }
    .order-finish-num .num-title {
        padding-right: 15px;
    }
    .order-finish-desc {
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 30px;
    }
    .order-finish-link {
        font-size: 16px;
        padding-left: 34px;
    }
}
@media (max-width: 991px) {
    .order-detail {
        flex-direction: column;
        align-items: center;
        height: auto;
    }
    .order-detail-info {
        width: calc(100vw - 30px);
        height: calc(70vh - 30px);
        order: 1;
        padding: 15px;
        margin: 0;
    }
    .order-detail-img {
        width: 30vh;
        height: 30vh;
        order: 2;
        padding: 0;
        margin: 0 auto;
    }
    .order-detail-img .img-block {
        width: calc(30vh - 30px);
        height: calc(30vh - 30px);
        margin: 15px;
    }
}
/* Order end */

/* Footer */
.footer {
    font-size: 1.6rem;
    margin-top: 15px;
    background: #f8f8f8;
}
.footer-wrapper {
    margin: 0 auto;
    padding: 0 15px;
    max-width: 1320px;
    min-width: 320px;
}
.footer-top {
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    padding: 30px 0;
}
.footer-top a {
    color: #333;
}
.footer-top a:hover {
    color: #d18100;
}
.footer-top-menu {
    display: none;
}
.footer-top-menu .item {
    width: 100%;
}
.footer-top-menu .item .item-title {
    font-weight: 500;
    margin-bottom: 7px;
}
.footer-top-menu .item .item-wrap {
    list-style: none;
    padding-left: 0;
}
.footer-top-menu .item .item-wrap .link a {
    display: block;
    line-height: 18px;
    padding-top: 10px;
}
.footer-top-contacts {
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    width: 100%;
    text-align: center;
}
.footer-top-contacts .phone {
    font-size: 21px;
    font-weight: 500;
    margin-bottom: 10px;
}
.footer-top-contacts .desc {
    color: #999;
}
.footer-top-contacts .email {
    margin-top: 15px;
    color: #666;
}
.footer-bottom {
    font-size: 13px;
    color: #999;
    padding: 30px 0;
    border-top: 1px solid #f2f2f2;
}
.footer-bottom-items {
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}
.footer-bottom-item.item-copyright {
    margin-bottom: 20px;
}

.footer-bottom-item.item-social {
    display: flex;
    align-items: center;
}
.footer-bottom-item.item-social span {
    height: 24px;
    line-height: 24px;
    margin-right: 7px;
}
.footer-bottom-item.item-social a {
    display: inline-block;
    height: 24px;
    width: 24px;
    background: url(/assets/img/social-icons.png) no-repeat;
    margin: 0 11px 0 0;
}
.footer-bottom-item.item-social a:last-child {
    margin-right: 0
}

.footer-bottom-item.item-social a.instagram {
    background-position: -129px 0;
}

.footer-bottom-item.item-social a.vk {
    background-position: -259px 0;
}

.footer-bottom-item.item-pay span {
    display: inline-block;
    height: 20px;
    width: 34px;
    background: url(/assets/img/pay_icons.png) no-repeat;
    margin: 0 11px 0 0;
}
.footer-bottom-item.item-pay span:last-child {
    margin-right: 0
}

.footer-bottom-item.item-pay span.cacsh {
    background-position: 0 -1px
}

.footer-bottom-item.item-pay span.sbrf {
    background-position: -259px -1px
}

.footer-bottom-item.item-pay span.alfa {
    background-position: -305px -1px
}

.footer-bottom-item.item-pay span.mastercard {
    background-position: -42px -1px
}

.footer-bottom-item.item-pay span.visa {
    background-position: -89px -1px
}

.footer-bottom-item.item-pay span.yandex_money {
    background-position: -142px -1px;
    width: 21px
}

.footer-bottom-item.item-pay span.webmoney {
    background-position: -182px -1px;
    margin-right: 7px
}

.footer-bottom-item.item-pay span.qiwi {
    background-position: -222px -1px;
    margin-right: 0
}
@media (min-width: 768px) {
    .footer {
        margin-top: 20px;
    }
    .footer-top {
        flex-direction: row;
        padding-top: 40px;
    }
    .footer-top-menu {
        display: -ms-flexbox;
        display: flex;
        flex-direction: row;
        width: 75%;
        margin-bottom: 0;
    }
    .footer-top-contacts {
        width: 25%;
        text-align: right;
    }
    .footer-top-menu .item {
        width: 50%;
    }
    .footer-bottom-items {
        flex-direction: row;
    }
    .footer-bottom-item.item-copyright {
        margin-bottom: 0;
    }
}

@media screen and (min-width: 992px) {
    .footer {
        margin-top: 30px;
    }
    .footer-wrapper {
        padding: 0 30px;
    }
}

@media screen and (min-width: 1280px) {
    .footer {
        margin-top: 40px;
    }
    .footer-wrapper {
        padding: 0 40px;
    }
}
/* Footer end */






/* Modal */
.modal-open {
    overflow: hidden;
    padding-right: 17px;
}
.modal {
    display: none;
    opacity: 0;
    transition: opacity .3s;
}
.modal-open .modal.show {
    display: -ms-flexbox;
    display: flex!important;
    align-items: center;
    position:fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .5);
    opacity: 1;
    z-index: 1000;
}
.modal-content {
    padding: 0;
    margin: 0 auto;
    background: #fff;
    box-shadow: 0 30px 60px rgba(0,0,0,.2);
    border-radius: 4px;
}
.modal-header {
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 30px 17px;
    background: #f2f2f2;
    border-bottom: 1px solid #f2f2f2;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
}
.modal-header-title {
    font-size: 22px;
    line-height: 24px;
    font-weight: 500;
}
.modal-header-close {
    width: 24px;
    height: 24px;
    margin-left: 20px;
    background: url(/assets/img/svg/close.svg) center center no-repeat;
    cursor: pointer;
}
.modal-header-close:hover {
    background: url(/assets/img/svg/close-red.svg) center center no-repeat;
}
.modal-body {
    padding: 20px 30px;
}
.modal-combo .modal-body,
.modal-collect .modal-body,
.modal-order .modal-body {
    padding: 0;
}
.modal-content.order .modal-body {
    height: calc(600px - 132px);
}
.modal-content.other .modal-body {
    height: calc(500px - 132px);
    padding: 0;
}
.modal-footer {
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 17px 30px 18px;
    background: #f2f2f2;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
    border-top: 1px solid #f2f2f2;
}
.modal-content.auth {
    width: 100%;
    max-width: 480px;
    height: auto;
    font-size: 1.4rem;
    line-height: 1.8rem;
}
.modal-content.auth .btn-reg {
    margin-right: 15px;
}
.modal-content.order {
    width: 880px;
    height: 600px;
    padding: 0;
}
.modal-content.other {
    width: 750px;
    height: 500px;
    padding: 0;
}
.modal-order-counter-block.disabled * {
    cursor: no-drop!important;
}
.modal-order-price {
    display: flex;
    font-size: 24px;
    font-weight: 500;
    line-height: 36px;
}
.modal-order-price .old-price {
    font-size: 20px;
    font-weight: 400;
    display: inline-block;
    margin-right: 15px;
    text-decoration: line-through;
}
@media (max-width: 991px) {
    .modal {
        padding: 20px;
    }
    .modal-order .modal-body {
        margin: 0 -20px;
        padding: 0 20px;
    }
    .modal-header {
        margin-bottom: 20px;
    }
    .modal-header-title {
        font-size: 20px;
        line-height: 24px;
    }
    .item-ingr-add-items {
        margin-top: 20px;
    }
    .modal-order .modal-footer {
        margin: 20px 0 -20px;
        padding: 20px 20px;
    }
}
@media (max-width: 767.99px) {
    .modal {
        padding: 0;
    }
    .modal-order .modal-body {
        margin: 0 -15px;
        padding: 0 15px;
    }
    .modal-header {
        margin-bottom: 10px;
        padding: 12px 15px 11px;
        border-radius: 0;
    }
    .modal-header-title {
        font-size: 18px;
        line-height: 24px;
    }
    .modal-header-close {
        margin: -12px -15px -11px;
        padding: 12px 15px 11px;
        width: 48px;
        height: 47px;
    }
    .item-ingr-add-items {
        margin-top: 15px;
    }
    .modal-order .modal-footer,
    .modal-combo .modal-footer,
    .modal-collect .modal-footer {
        margin: 10px 0 0;
        padding: 15px;
        border-radius: 0;
    }
    .modal .modal-footer .btn{
        font-size: 14px;
        padding: 10px;
    }
    .modal-order-price {
        font-size: 16px;
    }
    .modal-order-price .old-price {
        font-size: 14px;
        margin-right: 7px;
    }
    .modal-order-counter-block {
        width: 76px;
        height: 32px;
    }
    .modal-order-counter-block .minus, .modal-order-counter-block .plus {
        line-height: 32px;
        height: 30px;
        width: 20px;
    }
    .modal-order-counter-block span:before {
        width: 20px;
        height: 30px;
    }
    .modal-order-counter-block input[type=text] {
        width: 30px;
        height: 30px;
        border-left: 1px solid #f2f2f2;
        border-right: 1px solid #f2f2f2;
    }
    .modal-content {
        height: 100%;
        box-shadow: none;
    }
    .modal-content.order, .modal-content.other {
        width: 100%;
        height: 100%;
        overflow: hidden;
        padding: 0;
        border-radius: 0;
    }
    .modal-content.order .modal-body, .modal-content.other .modal-body {
        height: calc(100% - 131px);
    }
    .modal-content.auth .modal-header {
        padding: 12px 15px 11px;
    }
    .modal-content.auth .modal-body {
        padding: 15px;
    }
    .modal-content.auth .modal-footer {
        padding: 11px 15px 12px;
    }
    .modal-footer {
        border-radius: 0;
    }
}
/* Modal end */


/* Cart */
.cart {
    margin-bottom: 40px;
}
.cart input.promo {
    width: 300px;
}
.cart-items {
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
}
#formcart .cart-items {
    display: none;
}
#formcart .cart-items.active {
    display: -ms-flexbox;
    display: flex;
}
.cart-item {
    display: -ms-flexbox;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    position: relative;
    padding: 20px;
    margin-bottom: 20px;
    background: #fff;
    border-radius: 8px;
    z-index: 1;
}
#formcart .cart-item {
    padding: 20px 0;
    margin-bottom: 0;
    background: transparent;
    border-bottom: 1px solid #f2f2f2;
    border-radius: 0;
}
#formcart .cart-item:last-child {
    border: 0;
}
.cart-item.promo {
    border-color: #ffd29b;
    z-index: 2;
}
.cart-item-img {
    width: 70px;
    height: 70px;
    margin-right: 20px;
}
.cart-item-img img {
    width: 100%;
}
.cart-item-img-collect {
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
    width: 70px;
    height: 70px;
    margin-right: 20px;
}
.cart-item-img-collect .img {
    width: 34px;
    height: 70px;
    overflow: hidden;
}
.cart-item-img-collect img {
    width: 100%;
}
.cart-item-body {
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: calc(100% - 140px);
}
.cart-item-body-title {
    width: calc(100% - 260px);
}
.cart-item-title>* {
    line-height: 26px;
}
.cart-item-body-title .body-title-name {
    font-size: 16px;
    font-weight: 600;
    line-height: 30px;
    margin: 0;
    padding: 0;
}
.cart-item-body-title .body-title-name>span {
    color: #444;
    font-size: 15px;
    font-weight: 500;
}
.cart-item-body-title .body-title-name + .body-changed-ingr {
    margin-left: 10px;
}
.cart-item-body-title .body-title-desc {
    line-height: 20px;
    margin: 0;
    padding: 0;
    text-transform: lowercase;
}
.cart-item-body-title .title-ingredients {
    line-height: 20px;
    margin: 0;
    padding: 0;
    text-transform: lowercase;
}
.cart-item-body-amount-price {
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    width: 260px;
}
.cart-item-body-amount {
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    width: 100px;
    height: 70px;
    line-height: 70px;
    margin-left: 20px;
    text-align: center;
}
.cart-item .modal-order-counter-block {
    background: #f9f9f9;
}
.cart-item .modal-order-counter-block .order-count {
    border-color: #f9f9f9;
}
.cart-item-body-price {
    width: 120px;
    height: 70px;
    line-height: 70px;
    font-size: 18px;
    font-weight: 500;
    margin-left: 20px;
    text-align: right;
}
.cart-item-body-delete {
    position: absolute;
    top: 0;
    right: 20px;
    display: block;
    width: 24px;
    height: 100%;
    line-height: 1;
    margin-left: 26px;    
    background: url(/assets/img/svg/close.svg) center center no-repeat;
}
.cart-buttons {
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    margin-top: 30px;
}
.cart-buttons .cart-total {
    font-size: 32px;
    line-height: 36px;
    font-weight: 600;
    margin-bottom: 30px;
}
.error-min-order-amount {
    display: none;
    font-style: italic;
    text-align: right;
    margin-bottom: 15px;
}
@media (max-width: 767.99px) {
    .cart {
        margin-bottom: 15px;
    }
    .cart-item {
        align-items: flex-start;
        padding: 15px;
        margin-bottom: 15px;
    }
    .cart-item-img {
        width: 50px;
        height: 50px;
        margin-right: 15px;
    }
    .cart-item-img-collect {
        display: -ms-flexbox;
        display: flex;
        justify-content: space-between;
        width: 50px;
        height: 50px;
        margin-right: 15px;
    }
    .cart-item-img-collect .img {
        width: 24px;
        height: 50px;
        overflow: hidden;
    }
    .cart-item-body {
        display: -ms-flexbox;
        display: flex;
        flex-direction: column;
        width: calc(100% - 65px);
    }
    .cart-item-body-title {
        width: 100%;
    }
    .cart-item-body-amount-price {
        width: 100%;
        margin-top: 15px;
    }
    .cart-item-body-amount,
    .cart-item-body-price {
        width: 100%;
        margin-left: 0;
    }
    .cart-item-body-amount {
        text-align: left;
        height: auto;
        line-height: normal;
    }
    .cart-item-body-price {
        text-align: left;
        height: auto;
        line-height: 30px;
    }
    .cart-item-body .changed-ingr {
        height: auto;
    }
    .cart-item-body .modal-order-counter-block {
        border: 1px solid #f2f2f2;
        background: #f2f2f2;
    }
    .cart-item-body-delete {
        top: 22px;
        width: 16px;
        height: 16px;
        margin-left: 15px;
        background: url(/assets/img/svg/close.svg) center top no-repeat;
    }
}
/* Cart end */

/* Properties */
.properties {
    margin: 10px 0;
    padding: 10px;
    background: #fff;
    border-radius: 4px;
}
.modal-other .properties {
    padding: 0;
}
.properties .char {
    display: -ms-flexbox;
    display: flex;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    font-size: 1.4rem;
}
.properties .char .name {
    flex-basis: 65%;
    background: url(/assets/img/dott.png) 0 12px repeat-x;
}
.properties .char .name span {
    background: #fff;
    padding-right: 10px;
}
.properties .char .value {
    flex-basis: calc(35% - 10px);
    padding-left: 10px;
}
/* Properties end */






/* Modal-other-item */
.modal-other-item {
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
    height: 100%;
}
.modal-other-item .item-img {
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    width: 50%;
    max-height: 378px;
    height: auto;
    margin: 0 auto;
    padding: 20px 15px 20px 30px;
}
.modal-other-item .item-img img {
    width: 100%;
}
.modal-other-item .item-body {
    width: 50%;
    padding: 20px 30px 20px 15px;
    overflow-y: auto;
}
@media(max-width: 767px) {
    .modal-other-item {
        display: block;
        overflow-y: auto;
    }
    .modal-other-item .item-img {
        align-items: center;
        width: 80%;
        height: auto;    
        margin: 0 auto;
        padding: 0;
    }
    .modal-other-item .item-body {
        width: 100%;
        padding: 15px;
        overflow-y: unset;
    }
}











/* Modal-order-item */
.modal-order-item {
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
    height: 100%;
}
.modal-order-item .item-img {
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    max-width: 400px;
    width: 100%;
    max-height: 478px;
    height: auto;
    margin: 0 auto;
    padding: 20px 15px 20px 30px;
}
.modal-order-item .item-img img {
    width: 100%;
}
.modal-order-item .item-body {
    width: calc(100% - 430px);
    padding: 20px 30px 20px 15px;
    overflow-y: auto;
}
.modal-order-item .desc {
    margin: 0 0 10px;
}
.modal-order-item .properties {
    margin: 0;
    padding: 0;
}
.modal-order-item-header {
    width: 100%;
    font-size: 1.6rem;
    font-weight: 500;
    margin-bottom: 15px;
}
.item-ingr-items {
    margin: 0 0 20px;
}
.def-item {
    position: relative;
    display:inline-block;
    font-size: 1.4rem;
    line-height: 2.2rem;
    font-style: italic;
    margin-right: 5px;
    border-bottom: 1px dashed #333;
}
.def-item:after {
    content: ",";
}
.def-item:last-child:after {
    content: "";
}
.def-item.delete {

    display: inline-block;
    color: #d18200;
    cursor: pointer;
    border-color: #d18200;
}
.def-item.delete:before {
    position: relative;
    top: 2px;
    content: "";
    display: inline-block;
    width: 14px;
    height: 14px;
    margin-right: 3px;
    background: url(/assets/img/svg/remove-ingr-mustard.svg) center center no-repeat;
    border-radius: 50%;
}
.def-item.deleted {
    color: #999;
    cursor: pointer;
    text-decoration: line-through;
    border-color: #999;
}
.def-item.deleted:before {
    position: relative;
    top: 2px;
    content: "";
    display: inline-block;
    width: 14px;
    height: 14px;
    margin-right: 3px;
    background: url(/assets/img/svg/undo-ingr-dark.svg) center center no-repeat;
    border-radius: 50%;
}
.item-ingr-add-items {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    justify-content: space-between;
//    margin-bottom: 20px;
}
.add-item {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    width: 31%;
    margin-bottom: 20px;
    cursor: pointer;
    transform: translateY(0);
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
}
.add-item:hover {
    transform: translateY(-10px);
}
.add-item.added:before {
    content: "";
    position: absolute;
    top: 5px;
    left: 5px;
    width: 10px;
    height: 10px;
    border-radius: 4px;
    background: #d18200;
}
.add-item-img {
    width: 60px;
    background: #fff;
    padding: 8px;
    border-radius: 8px;
    box-shadow: 0 0 15px 0 rgba(0,0,0,.07);
    z-index: 2;
}
.add-item-body {
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    font-size: 13px;
    background: #f2f2f2;
    border: 1px solid #f2f2f2;
    border-radius: 8px;
    margin-top: -20px;
    padding: 25px 8px 8px;
    z-index: 1;
}
.add-item-body .title {
    line-height: 15px;
    width: 100%;
    height: 30px;
    font-weight: 500;
    text-align: center;
    margin-bottom: 5px;
    overflow: hidden;
}
.add-item-body .price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 24px;
    color: #555;
    font-weight: 600;
}
.add-item-body .price .btnadd {
    width: 24px;
    height: 24px;
    background: url(/assets/img/svg/plus-circle-mustard.svg) center center no-repeat;
}
.add-item.active .add-item-body .price .btnadd {
    background: url(/assets/img/svg/check-circle-green.svg) center center no-repeat;
}
.modal-order-counter-block {
    border: 1px solid #fff;
    background: #fff;
    font-size: 0;
    width: 84px;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
    align-items: center;
    vertical-align: top;
    border-radius: 6px;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
    height: 36px;
}
.modal-order-counter-block .minus,
.modal-order-counter-block .plus {
    font-size: 0;
    line-height: 40px;
    height: 34px;
    width: 24px;
    display: inline-block;
    cursor: pointer;
    vertical-align: top;
}
.modal-order-counter-block span:before {
    opacity: .7;
    display: inline-block;
    content: "";
    width: 24px;
    height: 34px;
    background: url(/assets/img/icon.png) -80px -191px no-repeat;
    vertical-align: middle;
}
.modal-order-counter-block span.plus:before {
    background-position: -54px -191px;
}
.modal-order-counter-block input[type=text] {
    width: 34px;
    border: 0;
    border-left: 1px solid #fff;
    border-right: 1px solid #fff;
    background: transparent;
    color: #666;
    font-size: 13px;
    height: 34px;
    border-radius: 0;
    text-align: center;
    line-height: 13px;
    padding: 7px 3px 7px;
    outline: none;
}
@media (max-width: 767.99px) {
    .modal-order-item {
        flex-direction: column;
        margin: 0;
        padding: 0 15px;
        overflow-y: auto;
    }
    .modal-order-item .item-img {
        display: block;
        width: 80%;
        padding: 0;
        margin-bottom: 15px;
        height: 80%;
        max-height: 100%;
    }
    .modal-order-item .item-body {
        width: 100%;
        margin: 0;
        padding: 0;
        overflow-y: unset;
    }
    .add-item-body {
        font-size: 12px;
        padding: 25px 6px 6px;
    }
}
/* Modal-order-item end */


/* COLLECT */
.collect {
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    height: 100%;
    overflow: hidden;
    margin: 0;
}
.collect .collect-parts {
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 360px;
    height: 100%;
    padding: 20px 15px 20px 30px;
    overflow: auto;
}
.collect .collect-parts-img {
    display: block;
    width: 225px;
    height: 225px;
    background: url(/assets/img/svg/pizza-default.svg) center center no-repeat;
    background-size: cover;
}
.collect .part-img-one,
.collect .part-img-two {
    width: calc(50% - 1px);
    height: 100%;
    background-size: cover;
}
.collect .part-img-one {
    float: left;
}
.collect .part-img-two {
    float: right;
}
.collect .collect-parts-item {
    display: block;
    width: 100%;
}
.collect .parts-item-one,
.collect .parts-item-two {
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    min-height: 80px;
    margin-top: 20px;
    padding: 10px;
    background-color: #f2f2f2;
    box-shadow: 0 0 5px 0 rgba(0,0,0,.15);
    border-radius: 4px;
}
.collect .item-img {
    width: 60px;
    height: 60px;
    background: url(/assets/img/svg/pizza-default.svg) center center no-repeat;
    border-radius: 50%;
    background-size: cover;
    margin-right: 10px;
}
.collect .item-body {
    display: block;
    width: calc(100% - 70px);
}
.collect .item-body .item-body-title {
    font-size: 1.4rem;
    font-weight: 500;
    width: 100%
}
.collect .item-body .item-body-ingr {
    font-size: 1.1rem;
    line-height: 2rem;
    width: 100%;
}
.collect .item-body .item-body-ingr span {
    display: inline-block;
    line-height: 16px;
    margin-right: 7px;
    border-bottom: 1px dashed #333;
}
.collect .item-body .item-body-ingr span.delete {
    color: #d18200;
    cursor: pointer;
    border-color: #d18200;
}
.collect .item-body .item-body-ingr span.deleted {
    color: #999;
    cursor: pointer;
    border-color: #999;
    text-decoration: line-through;
}
.collect .item-body .item-body-ingr span:last-child {
    margin-right: 0;
}
.collect .item-body .item-body-ingr span.delete:before {
    position: relative;
    top: 2px;
    content: "";
    display: inline-block;
    width: 14px;
    height: 14px;
    margin-right: 3px;
    background: url(/assets/img/svg/remove-ingr-mustard.svg) center center no-repeat;
    border-radius: 50%;
}
.collect .item-body .item-body-ingr span.deleted:before {
    position: relative;
    top: 2px;
    content: "";
    display: inline-block;
    width: 14px;
    height: 14px;
    margin-right: 3px;
    background: url(/assets/img/svg/undo-ingr-dark.svg) center center no-repeat;
    border-radius: 50%;
}
.collect .item-body .item-body-ingr span:after {
    content: ",";
}
.collect .item-body .item-body-ingr span:last-child:after {
    content: "";
}
.collect .collect-items {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: calc(100% - 360px);
    padding: 20px 30px 20px 15px !important;
    height: auto;
    overflow-y: auto;
}
.collect .collect-item {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    flex: 0 1 calc(33.3333% - 10px);
    margin: 5px;
    padding: 10px;
    border-radius: 6px;
    box-shadow: 0 0 0 1px #f2f2f2;
    transition: box-shadow .4s;
    cursor: pointer;
}
.collect .collect-item.selected:after {
    content: "";
    position: absolute;
    top: 10px;
    right: 10px;
    width: 24px;
    height: 24px;
    background: url(/assets/img/svg/check-circle-green.svg) center center no-repeat;
}
.collect .collect-item:hover,
.collect .collect-item.selected {
    box-shadow: 0 0 15px 0 rgba(0,0,0,.15);
}
.collect .collect-item-img {
    width: 120px;
    height: 120px;
    margin-bottom: 10px;
    overflow: hidden;
}
.collect .collect-item-title-ingr {
    width: 100%;
    text-align: center;
}
.collect .collect-item-title {
    font-size: 14px;
    font-weight: 500;
    line-height: 22px;
}
.collect .collect-item-ingr {
    display: none;
}
.collect .collect-item-ingr span {
    display: inline-block;
    position: relative;
    line-height: 24px;
    margin-right: 7px;
    border-bottom: 1px dashed #333;
}
.collect .collect-item-ingr span:after {
    content: ",";
}
.collect .collect-item-ingr span:last-child:after {
    content: "";
}
.collect .collect-item-ingr span.delete {
    display: inline-block;
    color: #d18200;
    cursor: pointer;
    border-color: #d18200;
}
.collect .collect-item-ingr span.delete:before {
//    content: "";
    display: inline-block;
    width: 10px;
    height: 10px;
    margin-right: 3px;
    background: #d18200;
    border-radius: 4px;
}
.collect .collect-item-ingr span.deleted {
    color: #999;
    cursor: pointer;
    text-decoration: line-through;
    border-color: #999;
}
.collect .collect-item-ingr span.deleted:before {
//    content: "";
    display: inline-block;
    width: 10px;
    height: 10px;
    margin-right: 3px;
    background: #999;
    border-radius: 4px;
}
.collect .collect-item-price {
    font-size: 14px;
    font-weight: 500;
    line-height: 30px;
    width: 100%;
    text-align: center;
}
@media (max-width: 991.99px) {
    .collect {
        position: relative;
        display: block;
        flex-direction: column;
        margin: 0;
        padding: 0;
        overflow-y: hidden;
        height: 100%;
    }
    .collect .collect-parts {
        display: block;
        width: 100%;
        height: 100%;
        padding: 0 15px;
        overflow-y: auto;
        background: #fff;
        z-index: 2;
    }
    .collect .collect-parts-img {
        margin: 0 auto;
    }
    .collect .collect-items {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        background: #fff;
        width: auto;
        height: 100%;
        margin: 0 -5px;
        padding: 0 15px!important;
        z-index: -1;
    }
    .collect .collect-item {
        flex: 0 1 calc(50% - 10px);
    }
    .collect .collect-item:hover {
        box-shadow: 0 0 0 1px #f2f2f2;
    }
    .collect .collect-item.selected:hover {
        box-shadow: 0 0 15px 0 rgba(0,0,0,.15);
    }
}
/* COLLECT END */

/* Profile */
.profile-inner {
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    padding: 15px;
    -webkit-box-shadow: 0 0 13px 0 rgba(82,63,105,0.05);
    box-shadow: 0 0 13px 0 rgba(82,63,105,0.05);
    background: #fff;
    border-radius: 4px;
}
.profile-title {
    font-size: 18px;
    font-weight: 500;
    line-height: 22px;
    margin-bottom: 15px;
}
.profile-desc {
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
    color: #999;
}
.profile-items {
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    margin-top: 30px;
}
.profile-item {
    position: relative;
    line-height: 50px;
    font-size: 16px;
    font-weight: 500;
    color: #555;
    padding-left: 200px;
    padding-right: 100px;
    border-top: 1px solid #f2f2f2;
}
.profile-item:last-child {
    border-bottom: 1px solid #f2f2f2;
}
.profile-item:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 200px;
    height: 50px;
}
.profile-item.fio:before {
    content: "Ф.И.О.";
}
.profile-item.phone:before {
    content: "Телефон";
}
.profile-item.email:before {
    content: "Электронная почта";
}
.profile-item.birth:before {
    content: "Дата рождения";
}
.profile-item.sex:before {
    content: "Пол";
}
.profile-item.address:before {
    content: "Адрес";
}
.profile-logout {
    position: relative;
    font-size: 16px;
    line-height: 24px;
    padding-left: 50px;
    margin-top: 30px;
}
.profile-logout:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 24px;
    height: 24px;
    background: url(/assets/img/svg/logout.svg) center center no-repeat;
}
@media (min-width: 768px) {
    .profile-inner {
        padding: 50px;
    }
}
/* Profile end */








/* Combo */
.combo {
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    height: 100%;
    overflow: hidden;
    margin: 0;
}
.combo-parts {
//    display: -ms-flexbox;
    display: block;
//    flex-direction: column;
    width: 360px;
    height: 100%;
    padding: 20px 15px 20px 30px;
    overflow: auto;
}
.combo-parts-item-desc {
    font-size: 1.6rem;
    line-height: 2rem;
    margin-bottom: 0;
}
.combo-parts-item {
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-top: 20px;
    padding: 10px;
    background-color: #f2f2f2;
    box-shadow: 0 0 5px 0 rgba(0,0,0,.15);
    border-radius: 4px;
    cursor: pointer;
}
.combo-parts-item.active {
    background: #dedede;
}
.combo-parts-item-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 7px;
}
.combo-parts-item-body {
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    width: calc(100% - 67px);
}
.combo-parts-item-body-title {
    font-size: 1.4rem;
    font-weight: 500;
    width: 100%;
}
.combo-parts-item-body-ingr {
    width: 100%;
    line-height: 1.6rem;
}
.combo-parts-item-body-ingr span {
    display: inline-block;
    font-size: 1.1rem;
    font-style: italic;
    margin-right: 5px;
    border-bottom: 1px dashed #333;
}
.combo-parts-item-body-ingr span.delete {
    color: #d18200;
    cursor: pointer;
    border-color: #d18200;
}
.combo-parts-item-body-ingr span.deleted {
    color: #999;
    cursor: pointer;
    border-color: #999;
    text-decoration: line-through;
}
.combo-parts-item-body-ingr span:last-child {
    margin-right: 0;
}
.combo-parts-item-body-ingr span:after {
    content: ",";
}
.combo-parts-item-body-ingr span:last-child:after {
    content: "";
}
.combo-items {
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: calc(100% - 360px);
    padding: 20px 30px 20px 15px;
}
.combo-items-default {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}
.combo-items-default img {
    width: 100%;
    max-width: 400px;
}
.combo .combo-items {
    display: -ms-flexbox;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: calc(100% - 360px);
    padding: 20px 30px 20px 15px !important;
    height: auto;
    overflow-y: auto;
}
.combo .combo-item {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    flex: 0 1 calc(33.3333% - 10px);
    margin: 5px;
    padding: 10px;
    border-radius: 6px;
    box-shadow: 0 0 0 1px #f2f2f2;
    transition: box-shadow .4s;
    cursor: pointer;
}
.combo .combo-item.selected:after {
    content: "";
    position: absolute;
    top: 10px;
    right: 10px;
    width: 24px;
    height: 24px;
    background: url(/assets/img/svg/check-circle-green.svg) center center no-repeat;
}
.combo .combo-item:hover {
    box-shadow: 0 0 4px 0 rgba(0,0,0,.15);
}
.combo .combo-item-img {
    width: 120px;
    height: 120px;
    margin-bottom: 10px;
    overflow: hidden;
}
.combo .combo-item-title-ingr {
    width: 100%;
    text-align: center;
}
.combo .combo-item-title {
    font-size: 14px;
    font-weight: 500;
    line-height: 18px;
    height: 36px;
}
.combo .combo-item-ingr {
    display: none;
}
.combo .combo-item-price {
    font-size: 14px;
    font-weight: 500;
    line-height: 30px;
    width: 100%;
    text-align: center;
}
@media (max-width: 991.99px) {
    .combo {
        position: relative;
        flex-direction: column;
        margin: 0;
        padding: 0;
        overflow-y: hidden;
        height: 100%;
    }
    .combo .combo-parts {
        display: block;
        width: 100%;
        height: 100%;
        padding: 0 15px;
        overflow-y: auto;
        background: #fff;
        z-index: 2;
    }
    .combo-parts-item {
        box-shadow: none;
    }
    .combo-parts-item-img {
        width: 50px;
        height: 50px;
        margin-right: 5px;
    }
    .combo-parts-item-body {
        width: calc(100% - 55px);
    }
    .combo .combo-items {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        background: #fff;
        width: auto;
        height: 100%;
        padding: 0 15px!important;
        z-index: 1;
    }
    .combo .combo-item {
        flex: 0 1 calc(50% - 10px);
        width: calc(50% - 10px);
    }
    .combo .combo-item:hover {
        box-shadow: 0 0 0 1px #f2f2f2;
    }
    .combo .combo-item.selected:hover {
        box-shadow: 0 0 15px 0 rgba(0,0,0,.15);
    }
    .combo-items-default {
        display: none;
    }
}
/* Combo end */

/* Recommend */
.recommend {
    margin-bottom: 40px;
}
.recommend-title {
    font-size: 18px;
    font-weight: 500;
    line-height: 22px;
    margin-bottom: 30px;
}
.recommend-items {
    display: -ms-flexbox;
    display: flex;
    overflow: hidden;
    overflow-x: auto;
}
.recommend-item {
    width: 100%;
    display: -ms-flexbox;
    display: flex;
    margin-right: 15px;
    padding: 15px;
    background: #fff;
    border-radius: 8px;
}
.recommend-item-img {
    width: 80px;
    height: 80px;
    margin-right: 10px;
}
.recommend-item-body {
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    width: calc(100% - 90px);
}
.recommend-item-body-title {
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
    margin-bottom: 7px;
    white-space: nowrap;
}
.recommend-item-body-price {
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 15px;
}
@media(min-width: 768px) {
    .recommend-items {
        margin: 0 -10px;
    }
    .recommend-item {
        width: calc(50% - 20px);
        margin: 0 10px;
    }
}
@media(min-width: 992px) {
    .recommend-item {
        width: calc(33.3333% - 20px);
    }
}
@media(min-width: 1200px) {
    .recommend-item {
        width: calc(25% - 20px);
    }
}
/* Recommend end */


/* Page order */
.page-order {
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
}

.page-order-left-items:not(:last-child) {
    margin-bottom: 30px;
}

.page-order-left-item {
    position: relative;
    padding: 15px;
    border: 1px solid #eff1f2;
    border-radius: 8px;
    background: #fff;
}

.page-order-left-item:not(:last-child) {
    margin-bottom: 30px;
}

.page-order-left-item-notify {
    position: absolute;
    top: 0;
    right: 0;
    background: #f2f2f2;
    padding: 7px 15px;
    font-size: 14px;
    border-top-right-radius: 8px;
}

.page-order-left-item-notify.error {
    background: #ff6666;
    color: #fff;
}

.page-order-left-item-notify.access {
    background: #33ce86;
    color: #fff;
}

.page-order-left-item-notify.warning {
    background: #f1b606;
    color: #fff;
}

@media (max-width: 991px) {
    .item-delivery+.page-order-left-item-notify {
        padding-top: 50px;
    }
    .page-order-left-item-notify {
        width: 100%;
        padding: 5px 10px;
        font-size: 12px;
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
    }
}

.page-order-left-item-title {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 30px;
}

.page-order-left-item-title:not(:first-child) {
    margin-top: 50px;
}

.page-order-left-item-title-item {
    display: inline-block;
    color: #999;
    cursor: pointer;
}

.item-cart .page-order-left-item-cart-title-item {
    display: block;
    color: #999;
    cursor: pointer;
    position: relative;
    color: #333;
}

@media(min-width: 992px) {
    .item-cart .page-order-left-item-cart-title-item {
        display: inline-block;
    }
}

.page-order-left-item-title-item.active {
    color: #333;
}

.page-order-left-item-title-item.pickup {
    margin-left: 20px;
    position: relative;
}

.page-order-left-item-title-item.pickup:after {
//    content: "-15%";
    text-align: center;
    color: #fff;
    font-size: 12px;
    line-height: 26px;
    position: absolute;
    left: 100%;
    width: 40px;
    height: 26px;
    margin-left: 10px;
    background-color: #999;
    border-radius: 13px;
}

.page-order-left-item-title-item.pickup.active:after {
    background-color: #ff737b;
}

.page-order-left-item-body {
    display: none;
}

.page-order-left-item-body.active {
    display: block;
}

.page-order-right .order-sidebar {
    width: 100%;
    min-height: 200px;
    border: 1px solid #eff1f2;
    border-radius: 8px;
    background: #f9f9f9;
    padding: 20px;
    margin-top: 20px;
}

.page-order-right .sidebar-header {
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
//    padding: 30px;
    padding: 15px 0 30px;
    border-bottom: 1px solid #f2f2f2;
}

.page-order-right .sidebar-header-title {
    font-size: 18px;
    font-weight: 500;
}

.page-order-right .sidebar-header-cart-link {
    color: #d18200;
}

.page-order-right .sidebar-body {
//    padding: 30px;
}

.sidebar-body-item {
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.sidebar-body-item.promo {
    position: relative;
    display: block;
}

.sidebar-body-item.delivery.hidden {
    display: none;
}

.sidebar-body-item.promo .form-control {
    font-size: 1.4rem;
    padding: 8px 15px;
    background: #f9f9f9;
    border: 1px solid #f2f2f2;
    text-transform: uppercase;
}

.sidebar-body-item.promo .promo-btn {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 24px;
    height: 24px;
    background: url(/assets/img/svg/arrow-right-square-dark.svg) center center no-repeat;
    outline: none;
    border: none;
}

.sidebar-body-item.promo .promo-btn:hover {
    background: url(/assets/img/svg/arrow-right-square-mustard.svg) center center no-repeat;
}

.sidebar-body-item.promo .promo-message {
    font-size: 1.3rem;
    line-height: 1.7rem;
    color: #15a015;
}

.sidebar-body-item.promo .promo-message.error {
    color: #f00;
}

.sidebar-body-item.discount {
    display: none;
}

.sidebar-body-item.discount.active {
    display: flex;
}

.sidebar-body-item.total {
    padding: 15px 0;
//    margin-top: 30px;
    margin-bottom: 30px;
//    border-top: 1px solid #f2f2f2;
    border-bottom: 1px solid #f2f2f2;
}

.sidebar-body-item.total .sidebar-body-item-title,
.sidebar-body-item.total .sidebar-body-item-value {
    font-size: 16px;
    font-weight: 600;
}

.sidebar-body-item.privacy {
    text-align: center;
    font-size: 1.3rem;
    line-height: 2rem;
    color: #777;
}

.sidebar-body-item a {
    color: #d18200;
}

.sidebar-body-item a:hover {
    color: #777;
}

.sidebar-body-item.button {
    margin-bottom: 0;
}

.sidebar-body-item.button .btn {
    width: 100%;
}

.sidebar-body-item-title {
    font-size: 16px;
    font-weight: 500;
}

.sidebar-body-item-value {
    font-size: 16px;
    text-align: right;
}

.page-order-right .sidebar-footer {
    padding: 30px;
    border-top: 1px solid #f2f2f2;
}

@media(min-width: 992px) {
    .page-order {
        flex-direction: row;
    }

    .page-order-left {
        width: calc(100% - 300px);
        padding-right: 30px;
    }

    .page-order-left-item {
        padding: 30px;
    }

    .page-order-right {
        width: 300px;
    }

    .page-order-right .order-sidebar {
        position: sticky;
        top: 165px;
        margin-top: 0;
    }

    .page-order .form-control.email {
        width: calc(50% - 15px);
    }
}
/* Page order end */



/* Cookie alert */
.cookie-alert {
    display: none;
    justify-content: space-between;
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translate(-50%, 0);
    width: calc(100% - 30px);
    max-width: 750px;
    font-size: 12px;
    padding: 10px;
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 0 15px 0 rgba(0,0,0,.17);
    z-index: 1000;
}
.cookie-alert-body {
    width: calc(100% - 24px);
    text-align: center;
    padding-right: 10px;
}
.cookie-alert-close {
    content: "";
    width: 24px;
    height: 24px;
    background: url(/assets/img/svg/close.svg) center center no-repeat;
    cursor: pointer;
}
@media(min-width: 992px) {
    .cookie-alert {
        align-items: center;
        font-size: 14px;
        padding: 15px;
    }
    .cookie-alert-body {
        padding-right: 15px;
    }
}
/* Cookie alert end */




.registration {
    margin: 50px 0 0;
    padding: 30px 15px;
    background: #f2f2f2;
    -webkit-box-shadow: 0 0 13px 0 rgba(82,63,105,0.05);
    box-shadow: 0 0 13px 0 rgba(82,63,105,0.05);
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
}
@media (min-width: 992px) {
    .registration {
        padding: 70px;
    }
}







.user-photo {
    position: relative;
    width: 160px;
    height: 160px;
    overflow: hidden;
    border-radius: 5px;
    float: left;
    margin-right: 30px;
}
.user-photo img {
    width: 100%;
    height: 160px;
}
.user-photo .edit-photo {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    line-height: 160px;
    opacity: 0;
}
.user-photo:hover .edit-photo {
    opacity: 1;
    transition: opacity .5s;
}
.status {
    background-color: #FFEFC2;
    border-radius: 2px;
    padding: 15px;
}



.user-inner {
    background-color: #eee;
    margin-bottom: 2px;
    padding: 10px;
    height: 90px;
}
.user-inner .user-photo-inner {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    float: left;
    margin-right: 15px;
    overflow: hidden;
}
.user-inner .user-photo-inner img {
    min-width: 100%;
    min-height: 100%;
}
.user-inner .fio-inner {
    width: calc(100% - 85px);
    float: left;
    height: 70px;
}
.user-inner .fio-inner a {
    color: #0054b9;
    display: block;
    line-height: 35px;
    font-size: 16px;
}

.spacer-10 {
    height: 10px;
}
.spacer-15 {
    height: 15px;
}
.spacer-30 {
    height: 30px;
}
.spacer-40 {
    height: 40px;
}
.spacer-50 {
    height: 50px;
}
.spacer-60 {
    height: 60px;
}

.linear {
    font-size: 14px;
    position: relative;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    margin-top: 20px;
    padding-top: 20px;
    margin-bottom: 0;
    color: #999999;
    letter-spacing: 0;
    font-weight: 700;
    text-align: center;
}
.linear::before {
    position: absolute;
    content: "";
    top: -1px;
    left: 50%;
    margin-left: -15px;
    height: 2px;
    width: 30px;
    background: #ec8404;
}


/* Toast alerts */
.toast-alerts {
    position: fixed;
    bottom: 1rem;
    right: 1rem;
    z-index: 2;
}
.toast {
    max-width: 350px;
    min-width: 300px;
    width: auto;
    overflow: hidden;
    font-size: 1.6rem;
    background-color: rgba(255,255,255,.85);
    background-clip: padding-box;
    border: 1px solid rgba(0,0,0,.1);
    box-shadow: 0 .25rem .75rem rgba(0,0,0,.1);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    opacity: 0;
    border-radius: .25rem
}

.toast:not(:last-child) {
    margin-bottom: .75rem
}

.toast.showing {
    opacity: 1
}

.toast.show {
    display: block;
    opacity: 1
}

.toast.hide {
    display: none
}

.toast-header {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    padding: 1.5rem;
    color: #6c757d;
    font-weight: 500;
    background-color: rgba(255,255,255,.85);
    background-clip: padding-box;
    border-bottom: 1px solid rgba(0,0,0,.05)
}

.toast-body {
    padding: 1.5rem
}

.toast-alerts .toast .toast-header img + * {
    margin-top: 0;
}

.toast-alerts .toast .toast-header button.close {
    width: 16px;
    height: 16px;
    background: url(/assets/img/svg/close.svg) center center no-repeat;
    outline: 0;
    border: 0;
    cursor: pointer;
}

@media(min-width: 768px) {
    .toast {
        width: 350px;
    }
}
/* End */


.page-inner {
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    padding: 15px;
    border: 1px solid #eff1f2;
    background: #fff;
    border-radius: 4px;
}

@media (min-width: 768px) {
    .page-inner {
        padding: 50px;
    }
}

#map {
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
}

hr {
   border: none;
    color: #f2f2f2;
    background-color: #f2f2f2;
    height: 1px;
    margin: 15px 0;
}

iframe {
    border: none;
}

.choose-cheese-items {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    height: 32px;
    padding: 3px;
    margin-bottom: 20px;
    border-radius: 8px;
    background-color: #f2f2f2;
}

.choose-cheese-item {
    font-size: 14px;
    width: 50%;
    text-align: center;
    border-radius: 6px;
    cursor: pointer;
}

.choose-cheese-item.active {
    background: #fff;
}

.choose-flour-items {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    height: 32px;
    padding: 3px;
    margin-bottom: 20px;
    border-radius: 8px;
    background-color: #f2f2f2;
}

.choose-flour-item {
    font-size: 14px;
    width: 50%;
    text-align: center;
    border-radius: 6px;
    cursor: pointer;
}

.choose-flour-item.active {
    background: #fff;
}

.catalog .nav-pills .nav-link {
    font-size: 1.6rem;
    color: var(--bs-gray-dark);
    background-color: var(--bs-light);
}

.catalog .nav-pills .nav-link.active,
.catalog .nav-pills .nav-link:hover {
    color: var(--bs-white);
    background-color: var(--bs-primary);
}


.order-section {
    padding: 15px 0;
    margin-bottom: 5px;
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
}

.order-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.order-section-header-title {
    font-size: 20px;
    font-weight: 600;
}

.order-section-delivery .order-section-header {
    justify-content: flex-start;
}

.order-section-delivery .order-section-header-title:last-child {
    margin-left: 15px;
    cursor: pointer;
}

.order-section-delivery .order-section-header-title:not(.active) {
    color: #bfb7b6;
    cursor: pointer;
}

#order-submit {
    font-size: 16px;
    padding: 15px 20px;
}

.cart-product {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-top: 1px solid #e5e5e5;
}
.cart-product-count-value{
width:25px;
}
.cart-product-count-value input{
width:25px;
border:none;
font-size: 18px;
text-align:center;
}

.cart-product:first-child {
    border: none;
}

.cart-product-img {
    width: 64px;
    height: auto;
    overflow: hidden;
    margin-right: 16px;
}

.cart-product-img img {
    border-radius: 6px;
}

.cart-product-body {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    width: calc(100% - 80px);
}

.cart-product-title {
    width: 100%;
    padding-bottom: 15px;
}

.cart-product-price {
    display: none;
}

.cart-product-count {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90px;
    margin: 0 15px;
    text-align: center;
    border-radius: 6px;
}

.cart-product-count-btn {
    width: 28px;
    height: 28px;
    line-height: 28px;
    font-size: 18px;
    font-weight: 400;
    border-radius: 6px;
    cursor: pointer;
    text-align: center;
    background-color: #ffd2b3;
}

.cart-product-count-btn[disabled] {
    background-color: #fff0e6;
    cursor: default;
}

.cart-product-sum {
    width: 90px;
    text-align: right;
}

.cart-product-del {
    width: 24px;
    height: 24px;
    display: block;
    margin-left: 16px;
    background: url(/assets/img/svg/trash-can-outline-dark.svg) center center no-repeat;
}

.order-section-delivery .form-groups .form-group {
    width: calc(50% - 0px);
}
.recalc{
width:180px;
display:none;
margin:20px auto;
}


@media(min-width: 768px) {
    .cart-product {
        align-items: center;
    }

    .cart-product-body {
        flex-wrap: nowrap;
        width: 100%;
    }

    .cart-product-title {
        width: calc(100% - 290px);
	padding-bottom:0;
    }

    .cart-product-price {
        display: block;
        width: 90px;
    }

   .cart-product-count {
        
    }

    .order-section-delivery .form-groups .form-group {
        width: 100%;
    }
}

@media(min-width: 992px) {
    .order {
        flex-direction: row;
    }

    .order-content {
        width: calc(100% - 300px);
    }

    .order-section {
        padding: 25px 0;
        margin-bottom: 5px;
    }

    #order-submit {
        font-size: 14px;
        padding: 6px 12px;
    }
}


/* РЎС‚РёР»Рё С‚РѕРІР°СЂРѕРІ РІ РєРѕСЂР·РёРЅРµ (РєРѕРЅРµС†) */

#razdeli{
padding:20px 0;
}
#razdeli .razdel{
border: 1px solid #eaebec;
padding:20px;
width:calc(33% - 10px);
margin:0 10px 10px 0;
font-weight:bold;
display:block;
float:left;
text-align:center;
}
#razdeli .razdel a{
color:#c50026;
text-decoration:none;
}
#razdeli .razdel img{
display:block;
margin:0 auto 15px;
width:90%;
}
.header_icons{
display:inline-block;
height:54px;
margin-right:15px;
top:7px;
}
.header_icons img{
display:inline-block;
margin-right:10px;
position:relative;
top:9px;
}
.tel_on_banner{
position:absolute;
bottom:30px;
left:25px;
display:inline-block;
padding:10px 15px;
border:1px solid #fff;
border-radius:5px;
background-color: rgba(1,1,1,0.5);
}
.tel_on_banner a{
color:#fff;
font-size:19px;
}
.dobavit{
padding-top:10px;
}
.dobavit .cart-product-count{
float:left;
padding-top:3px;
}
.only_mobil{
display:none;
}
.no_mobil{

}


@media (max-width: 991px) {

.tovar_full .left, .tovar_full .right{
float:none;
width:100%;
margin-left:0;
}
#razdeli .razdel{
width:100%;
margin:0 0 10px 0;
float:none;
padding:10px;
}
.header_icons{
padding-top:10px;
}
.top-panel-other-sites .header_icons{
display:none;
}
#kveprofilopisanie{
font-size:14px;
width:248px !important;
}
body table{
max-width:100% !important;
}
body table td{
//word-break:break-all;
}
.only_mobil{
display:block;
}
.no_mobil{
display:none;
}
}