* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.b_header {
    position: relative;
    z-index: 1000;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 60px 25px;
    box-sizing: border-box;
    background: #fff;
    font-size: 0;
}

.m_focused {
    position: relative;
}

.b_header-row {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    padding: 20px 0 0;
    z-index: 10;
}

.b_header .item {
    position: relative;
    display: flex;
    flex-flow: column;
    justify-content: space-between;
    align-items: flex-end;
}

.b_header .logo {
    position: relative;
    z-index: 2;
}

.m_focused:before {
    content: '';
    position: absolute;
    z-index: -1;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    box-shadow: 0 0 0 rgba(177, 17, 22, 0);
    border: 2px solid rgba(177, 17, 22, 0);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.b_header .logo img {
    display: block;
    height: 54px;
}

.b_header .item {
    position: relative;
    display: flex;
    flex-flow: column;
    justify-content: space-between;
    align-items: flex-end;
}

.b_header .b_control {
    display: flex;
    flex-flow: row;
    justify-content: space-between;
    align-items: center;
}

.b_header .b_nav {
    position: relative;
    display: inline-flex;
    flex-wrap: nowrap;
    vertical-align: middle;
}

.b_header .b_nav-item {
    display: inline-block;
    vertical-align: middle;
    margin-left: 30px;
    font: 500 13px/13px "Roboto", sans-serif;
    color: #292929;
    cursor: pointer;
    transition: color 0.3s ease;
}

.b_header .b_nav-item:first-child {
    margin-left: 0;
}

.m_focused:before {
    content: '';
    position: absolute;
    z-index: -1;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    box-shadow: 0 0 0 rgba(177, 17, 22, 0);
    border: 2px solid rgba(177, 17, 22, 0);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.b_header .b_nav-item {
    display: inline-block;
    vertical-align: middle;
    margin-left: 30px;
    font: 500 13px/13px "Roboto", sans-serif;
    color: #292929;
    cursor: pointer;
    transition: color 0.3s ease;
}

.b_header .b_search {
    position: relative;
    vertical-align: middle;
    height: 17px;
    margin-right: 30px;
    width: 20px;
}

.b_header .b_search .area {
    position: absolute;
    z-index: 1;
    top: -5px;
    right: calc(100% + 10px);
    width: 0;
    height: 30px;
    background: #fff;
    border: 1px solid transparent;
    border-right: 0;
    opacity: 0;
    padding-left: 0;
    overflow: hidden;
    transition: all 0.2s ease;
}

.b_header .b_search .area:before {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    background: #fff;
    width: 600px;
    border: 1px solid #EAEAEA;
    border-right: 0;
}

.b_header .b_search .btn {
    position: relative;
    z-index: 2;
    display: inline-block;
    vertical-align: middle;
    width: 20px;
    height: 17px;
    text-align: center;
    cursor: pointer;
}

.b_header .b_search .btn:before {
    content: '';
    position: absolute;
    top: -17px;
    left: -9px;
    width: 1px;
    height: 18px;
    background: #292929;
    transform: rotate(-45deg);
    opacity: 0;
    transition: all 0.3s ease;
}

.b_header .b_search .btn-icon {
    display: inline-block;
    width: 17px;
    height: 17px;
    margin: auto;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.b_header .b_search .btn:after {
    content: '';
    position: absolute;
    top: -17px;
    right: -9px;
    width: 1px;
    height: 18px;
    background: #292929;
    transform: rotate(45deg);
    opacity: 0;
    transition: all 0.3s ease;
}

.b_header .b_menu {
    position: relative;
    z-index: 1;
    display: inline-block;
    width: 20px;
    height: 17px;
    flex-shrink: 0;
}

.b_header .b_menu-btn {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    cursor: pointer;
}

.b_header .b_menu-btn span {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 1px;
    height: 2px;
    margin: auto;
    background: #292929;
    transition: all 0.2s ease;
}

.b_header .b_menu-btn span:before {
    content: '';
    position: absolute;
    top: -6px;
    left: 0;
    width: 100%;
    height: 2px;
    opacity: 1;
    background: #292929;
    transition: all 0.2s ease;
}

.b_header .b_menu-btn span:after {
    content: '';
    position: absolute;
    bottom: -6px;
    right: 0;
    width: 100%;
    height: 2px;
    opacity: 1;
    background: #292929;
    transition: all 0.2s ease;
}

.b_header .b_menu-content {
    position: absolute;
    z-index: 10;
    top: 100%;
    right: -10px;
    width: 170px;
    max-height: 0;
    padding: 0 10px;
    opacity: 1;
    overflow: hidden;
    transition: all 0.15s ease;
}

@media screen and (max-width: 768px) {
    .b_header .logo img {
        height: 57px;
        max-width: 200px;
    }

    .b_header {
        padding: 0 15px 25px;
    }
}

@media screen and (max-width: 480px) {
    .b_nav.ajifemby {
        display: none;
    }

    .b_header .logo img {
        height: 18px;
        max-width: 100px;
    }

    .b_header {
        padding: 0 15px 25px;
    }
}

article .container {
    max-width: 660px;
    margin:  0 auto;
}

a {
    text-decoration: none;
}

.red {
    color: red;
}

.article-img img {
    width: 100%;
    max-width: 100%;
}

h1 {
    margin-bottom: 15px;
    font: bold 2.2rem/1.2 "Lora", serif;
    color: #292929;
}

h2 {
    font: normal 1.5rem/1.5 "Roboto", sans-serif;
    color: red;
    margin: 15px 0;
}

.b-text {
   font-style: italic;
    font-size: 17px;
}

p {
    font-size: 18px;
    margin: 15px 0;
}

.form-img {
    margin-bottom: 20px;
}

.form-img img {
    max-width: 400px;
    width: 100%;
}

.order_form {
    display: block !important;
    margin: 0 auto !important;
    text-align: center !important;
}

#order_form {
    padding: 40px 20px 20px 20px;
    width: 100%;
    max-width: 550px;
    font-family: Arial, sans-serif;
    margin: 20px 20px 85px 20px;
    background-image: url(../img/formbg.jpg);
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

#order_form div {
    background: transparent !important;
}

form input {
    font-weight: normal;
}

.input-group input {
    width: 100%;
    box-sizing: border-box;
}

#order_form input {
    background: #fff;
    width: 100%;
    font-size: 21px;
    padding: 15px;
    border: 2px solid #e9d7dc;
    margin-bottom: 20px;
}

#order_form button,
.ord_button {
    width: 100%;
    padding: 18px;
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 4px 15px 0 rgba(129, 150, 160, 0.45);
    background-color: #af0017;
    background-position: 1.35em 0.94em;
    background-size: 1em;
    background-repeat: no-repeat;
    transition: all .15s ease-in-out;
    border: none;
    cursor: pointer;
    font-size: 20px;
}




.ordered-mess-wrapper {
    position: fixed;
    top: -100%;
    right: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 500px;
    padding: 10px;
    background: linear-gradient(to top, #cfd9df 0%, #e2ebf0 100%);
    box-shadow: 1px 1px 5px 2px #000;
    color: black;
    font-family: Arial, sans-serif;
    border-radius: 10px;
    transition: .5s ease-in-out;
    z-index: 9999;
}

.ordered-mess-wrapper--open {
    top: 20px;
}

.ordered-message {
    display: flex;
    align-items: center;
}

.ordered-message img {
    max-width: 30px;
}

.ordered-message div {
    padding-right: 5px;
    width: 40px;
    display: flex;
    align-items: center;
}

.ordered-message span {
    padding: 0 2px;
}

.ordered-mess__count {
    margin-left: 3px;
}


.order-balance {
    display: flex;
    align-items: center;
    flex-direction: column;
}

.order-balance div {
    font-size: 23px;
    font-weight: bold;
    margin-bottom: 26px;
}

.order-balance p {
    font-weight: 700;
    padding: 15px 37px;
    font-size: 35px;
    background: #af0017;
    color: #FFFFFF;
    box-shadow: 20px 12px 35px -16px #000;
    border-radius: 12px;
}

.order-balance p span {
    display: inline-block;
    width: 30px;
    padding: 0 10px 0 0;
    font-size: 35px;
    text-align: center;
}

.comment-text p {
    font-size: 13px;
    padding: 10px 0;
    line-height: 17px;
    text-align: unset;
}

.comments-item {
    margin: 0 auto 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgb(225, 226, 227);
}

.comment-avatar {
    display: inline-block;
    vertical-align: top;
    margin-right: 10px;
    border: 1px solid rgb(204, 204, 204);
    font-size: 0;
}

.comment-avatar img {
    width: 50px;
    height: 50px;
}

.comment-text {
    display: inline-block;
    max-width: 89%;
    vertical-align: top;
}

.comment-username {
    color: rgb(54, 88, 153);
    font-weight: bold;
    margin-right: 10px;
    cursor: pointer;
}

.comment-action {
    padding: 3px 0 15px 30px;
    display: flex;
    justify-content: space-between;
}

.comment-time {
    font-size: 13px;
    color: #bababa;
    line-height: 17px;
}


.ord_button {
    margin-top: 20px;
}