body {
    min-width: 320px;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    padding: 0px;
    margin: 0px;
    background-color: #fff;
    font-size: 15px;
    color: #000;
    line-height: 1.42857143;
    font-family: 'Open Sans', sans-serif;
}

#header ul, #header ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

a {
    cursor: pointer;
}

.grey {
    width: 100%;
    height: 30px;
    background-color: #f6f5f5;
    position: absolute;
    z-index: -200;
}

#v-messages {
    position: absolute;
}

.header__wrapper {
    width: 100%;
    max-width: 1210px;
    margin: 0 auto;
    padding: 0 15px;
    display: grid;
    grid-template-areas: "logo menu city""logo search phone""logo icons login";
    grid-template-rows: 30px 1fr 1fr;
    grid-template-columns: 1fr 8fr 2fr;
}

.logo {
    grid-area: logo;
}

.logo a {
    text-decoration: none;
}

.logo__text {
    display: block;
    color: #6b6b6b;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
}

.top-menu {
    grid-area: menu;
    width: 100%;
    position: relative;
}

.top-menu__items {
    display: flex;
    justify-content: flex-start;
}

.top-menu__item {
    padding: 0px 29px;
    position: relative;
    white-space: nowrap;
}

.top-menu__item::after {
    content: '';
    border-right: 1px solid gray;
    position: absolute;
    height: 16px;
    top: 7px;
    right: 0;
}

.no-border::after {
    content: '';
    border-right: none;
}

.top-menu__link {
    text-transform: uppercase;
    text-decoration: none;
    color: #5f5f5f;
    padding: 0 3px;
    line-height: 30px;
}

.top-menu__link:hover {
    color: #328c4f;
}

.search__wrapper {
    grid-area: search;
    width: 85%;
    margin-left: 28px;
    border-bottom: 2px solid #328c4f;
}

.currency {
    text-align: right;
    padding-top: 20px;
    font-weight: 300;
}

.search {
    font-size: 15px;
    padding: 8px 2px 8px;
}

.search .fa {
    color: gray;
}

.nav-icons {
    grid-area: icons;
    padding-top: 23px;
}

.nav-icons__items {
    display: flex;
    padding-left: 28px;
}

.nav-icons__item {
    position: relative;
    height: 35px;
    padding: 0 53px 0 45px;
    line-height: 35px;
    background-repeat: no-repeat;
    background-size: 35px;
    background-position: top left;
}

.nav-icon__link {
    text-decoration: underline;
    color: #000;
    font-size: 15px;
    white-space: nowrap;
}

.icon-calc {
    background-image: url('/images/i_calk.png');
}

.icon-import {
    background-image: url('/images/i_import.png');
}

.icon-best {
    background-image: url('/images/i_best.png');
}

.icon-basket {
    background-image: url('/images/i_korzina.png');
}

.counter {
    font-size: 12px;
    color: #fff;
    font-family: "Arial";
    font-weight: bold;
    border-radius: 3px;
    align-items: center;
    display: inline-flex;
    height: 14px;
    justify-content: center;
    line-height: 20px;
    width: 27px;
    padding: 0 5px;
    position: absolute;
    text-align: center;
    top: -5px;
    left: 24px;
}

.counter_green {
    background-color: #398f55;
}

.counter_red {
    background-color: #ff0000;
}

.city {
    grid-area: city;
    line-height: 30px;
    color: #5f5f5f;
    font-weight: 500;
    text-align: right;
    display: flex;
}

.city .city_select {
    display: inline-block;
}

.city select {
    color: #328c4f;
    text-decoration: underline;
    cursor: pointer;
    outline: none;    
}

.city a {
    text-decoration: underline;
    color: rgb(236, 106, 0);
}

.city span,
.phone span,
.login-wrapper span {
    display: block;
    white-space: nowrap;
}

.city span {
    display: inline;
}

.phone {
    grid-area: phone;
    text-align: right;
    margin-top: 25px;
}

.header-phone {
    font-size: 24px;
    color: rgb(236, 106, 0);
    line-height: 1.2;
    text-decoration: none;
}

.work-time {
    font-size: 14px;
    line-height: 1.2;
    margin-bottom: 0;
}

.login-wrapper {
    grid-area: login;
    display: flex;
    /* justify-content: flex-end; */
}

.login-box {
    position: relative;
    width: 180px;
    min-height: 35px;
    margin-top: 24px;
    text-align: left;
    /* padding-left: 45px; */
    padding-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* flex-direction: column; */
    /* background-image: url(/images/i_chel.png);*/
}

a.login-img {
    width: 35px;
    min-width: 35px;
    height: 35px;
    display: block;
    margin-right: 10px;
}

a.login-img img{
    width: 35px;
    height: 35px;
}

.login-box a {
    font-size: 14px;
    font-weight: 400;
    line-height: 17px;
}

.drop_menu {
    display: none;
    box-sizing: border-box;
    position: absolute;
    top: 35px;
    left: 0;
    padding: 10px;
    width: 200px;
    z-index: 100000;
    border: 3px solid #398f55;
    border-radius: 6px;
    background-color: #fff;
}

.login-box:hover div.drop_menu,
.drop_menu:hover {
    display: block;
}
li.top-menu__item.selection {
    display: none !important;
}
.drop_menu a {
    display: block;
    margin: 7px 0;
    text-decoration: underline;
}

.drop_menu a:hover {
    color: #ec6a00;
}

.login-box .login {
    color: #000;
    text-decoration: underline;
}

.login-box .login:hover {
    text-decoration: none;
}

.login-box .register {
    color: #398f55;
}

.login-box .register:hover {
    color: rgb(236, 106, 0);
}

.content {
    width: 100%;
    max-width: 1210px;
    margin: 30px auto 0;
    padding: 0 15px;
    display: grid;
    grid-template-areas: "cat-list slider""cat-list sale""cat-list banner""cat-list latest""cat-list news""cat-list recomended";
    grid-template-columns: 3fr 9fr;
    grid-gap: 15px;
}

.catalog-list {
    grid-area: cat-list;
}

.left-banner {
    grid-area: ban-left;
}

.mailing {
    grid-area: mailing;
}

.slider {
    grid-area: slider;
}

.sale {
    grid-area: sale;
}

.banner {
    grid-area: banner;
}

.latest {
    grid-area: latest;
}

.news {
    grid-area: news;
}
.news {
    grid-area: recomended;
}

.footer {
    width: 100%;
    max-width: 1210px;
    margin: 30px auto 0;
    padding: 0 15px 35px;
    display: grid;
    grid-template-areas: "contacts center-area footer-menu";
    grid-template-columns: 1fr 1fr 1fr;
}

.contacts {
    grid-area: contacts;
    padding: 0 20px 0 0;
}

.center-area {
    grid-area: center-area;
    text-align: center;
    padding: 0 30px;
}

.mailing-footer {
    display: none;
}

.footer-menu {
    grid-area: footer-menu;
    padding-left: 33%;
}

.footer p.adress {
    font-size: 13px;
}

.form {
    width: 300px;
    margin: 20px auto;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1050;
    display: none;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: rgba(0, 0, 0, .5);
}

.modal__wrapper {
    max-width: 360px;
    margin: 40px auto;
}

.modal__content {
    position: relative;
    width: 100%;
    padding: 10px 30px;
    background-color: #fff;
    border-radius: 4px;
    overflow-y: auto;
}

.modal__close {
    position: absolute;
    right: 14px;
    font-size: 30px;
    color: #ff0000;
    font-weight: 700;
    background-color: transparent;
    cursor: pointer;
    border-radius: 50%;
    display: block;
    width: 25px;
    height: 25px;
    line-height: 20px;
    text-align: center;
}

.modal__close .close_img {
    width: 25px;
    height: 25px;
}

.login_logo {
    text-align: center;
}

.login_logo img {
    max-width: 60px;
}

.modal__title {
    font-size: 22px;
    margin: 30px 0;
    text-align: center;
}

.modal-text {
    padding: 0 10px 20px;
    text-align: center;
    font-size: 18px;
}

.login_input input {
    border-bottom: 1px solid #000;
    width: 100%;
    margin: 10px 0;
    padding: 5px 15px;
}

.login_btn {
    display: block;
    margin: 20px auto 20px;
    text-align: center;
    background-color: #348B51;
    color: #fff;
}

.login_btn input {
    width: 100%;
    padding: 10px 15px;
}

.login_links {
    display: flex;
    justify-content: space-between;
}

.login_links a {
    display: block;
}

.hide-modal {
    display: none;
}

.show-modal {
    display: block;
}

.fade {
    animation-name: fade;
    animation-duration: 1.5s;
}

@keyframes fade {
    from {
        opacity: 0.1;
    }

    to {
        opacity: 1;
    }
}

.filter__title {
    display: none;
}

.filials {
    margin: 10px;
    padding: 10px 15px;
    background-color: #F6F5F5;
    flex-basis: 30%;
}

.close_img {
    width: 15px;
    height: 15px;
}

h3.razdel_name {
    font-size: 20px;
}

.filter-body {
    background-color: #F6F5F5;
    margin-bottom: 10px;
}

.filter-body .v-subheader {
    color: #000 !important;
    font-weight: 700;
}

.filter-body .prokrutka {
    background-color: #F6F5F5;
}

.theme--dark .v-card .card-body {
    min-height: auto !important;
}

.register {
    max-width: 540px;
    margin: 30px auto 0;
}

a.register {
    margin: 0;
}

.register_item {
    margin-bottom: 20px;
}

.register label {
    margin-bottom: 0;
}

.register input {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.description .buy {
    justify-content: start;
}

.description .buy .btn {
    padding: .375rem 1.75rem;
}

.table th {
    vertical-align: middle;
}

.file_wrapper {
    display: flex;
    justify-content: center;
}

.file-listing {
    width: 80px;
    margin: 0 20px;
    padding: 10px;
}

.file-listing img {
    height: 50px;
}

.file-listing span {
    display: block;
    text-align: center;
    font-size: 12px;
    text-transform: lowercase;
    line-height: 13px;
}

.remove-container {
    text-align: center;
}

.remove-container .remove {
    color: red !important;
    font-size: 24px;
    font-weight: bolder;
    cursor: pointer;
}

progress.upload-progress {
    width: 100%;
}

.theme--dark.v-sheet.failure {
    background-color: #ff0000 !important;
}

.theme--dark.v-sheet.warning {
    background-color: #fff3cd !important;
}

.warning .v-alert__icon.v-icon,
.warning .v-alert__content {
    color: #856404 !important;
}

.failure .v-alert__icon.v-icon,
.failure .v-alert__content {
    color: #fff !important;
}

#kabinet_import .figure {
    position: relative;
}

#fileUpload input[type=file] {
    width: 0.1px;
    height: 0.1px;
    opacity: 0;
    position: absolute;
    z-index: -10;
}

.figure-caption {
    width: 100%;
    height: 100%;
    color: #000 !important;
}

.search input[type="text"] {
    width: 90%;
    padding: 0 0 0 10px;
}

.search input[type="text"]:focus {
    outline: none;
}

.hist_zakazov table td span {
    display: block;
}

.v-card {
    display: flex !important;
    flex-direction: column !important;
}

.filials.current {
    box-shadow: 0px 6px 11px -6px #398f55;
    border: 4px solid #dcdcdc;
    padding: 6px 9px;
}

.img_warning {
    display: block;
    position: relative;
    text-align: left;
    z-index: 1000;
    left: 0;
    font-size: 11px;
    color: #999;
}

.img_warning.mob {
    display: none;
}

.alert-warning.to-close {
    display: flex;
    justify-content: space-between;
    width: 300px;
    padding: 10px;
    margin: 10px auto 0;
    align-items: center;
}

.alert-warning.to-close a {
    font-size: 20px;
}

.basket__search {
    width: 100%;
    /* max-width: 600px; */
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 15px 0;
}
.basket__search-text {
    position: relative;
    width: 70%;
}
.basket__search-btn {
    max-width: 35px;
    cursor: pointer;
}
.basket__search .error {
    color: #ff0000;
}
.row.under_table-search.fix-pos {
    position: fixed;
    bottom: 55px;
    left: 0;
    width: 100%;
    background: rgba(0,0,0,0.3);
    z-index: 0;
    padding: 10px 30px;
    margin: 0 !important;
}

.zakaz_file {
    text-decoration: underline;
}
.zakaz_file:hover {
    color: #ec6a00;
}

.repeat_text span.warning {
    color: #ffe5a5;
    display: block;
    background: #c78e00;
    padding: 3px 5px;
}
.repeat_text span.error {
    color: #a50000;
    display: block;
    background: #ffd7d7;
    padding: 3px 5px;
}
.repeat_text span.success {
    color: #03851b;
    display: block;
    background: #d7ffe8;
    padding: 3px 5px;
}
.to_last {
    display: block;
    position: fixed;
    bottom: 50px;
    right: 20px;
    padding: 15px;
    background: #7f7f7f;
    color: #fff;
    border-radius: 4px;
}
.to_last div {
    transform: rotate(90deg) scaleY(2.5);
}

.attention {
    position: fixed;
    width: 100%;
    height: 25px;
    left: 0;
    bottom: 0;
    background: rgba(255,255,255,0.9);
    color: #ff0000;
    text-align: center;
    font-weight: 600;
}
.footer__basket {
    position: fixed;
    bottom: 25px;
    left: 0;
    width: 100%;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0,0,0,0.5);
    color: #fff;
}
.footer__basket-btn {
    cursor: pointer;
    height: 100%;
    line-height: 30px;
    padding: 0 20px;
}
.footer__basket-btn:hover {
    background: rgba(0,0,0,0.2);
}
i.fa.fa-shopping-cart {
    margin-right: 5px;
    font-size: 18px;
}

@media (max-width:1264px) {
    .picture_t {
        max-height: 250px;
        max-width: 33.333333% !important;
    }

    .picture_t .carousel-inner img {
        max-height: 240px;
    }

    .box-content {
        height: 0px;
        opacity: 0;
        transition: all ease 0.2s;
    }

    .box-content.open {
        height: 100%;
        opacity: 1;
    }

    .green {
        display: none;
    }

    .catalog-list .box-content {
        height: auto;
        opacity: 1;
    }

    .catalog-list .green {
        display: block;
    }
}

@media (max-width:1263px) {
    .filter__title {
        display: block;
        width: 90%;
        margin: 0 auto 20px;
        padding: 5px 15px;
        background-color: #FF8D18;
        color: #fff;
        text-transform: uppercase;
        font-weight: 500;
    }

    .filter__content {
        height: 0px;
        opacity: 0;
        transition: all ease 0.2s;
    }

    .filter__content.open {
        height: 100px;
        opacity: 1;
    }

    #v-filter {
        display: flex;
        justify-content: space-evenly;
        flex-wrap: wrap;
    }
}

@media screen and (max-width:1210px) {
    .header__wrapper {
        max-width: 1000px;
        grid-template-columns: 1fr 6fr 5fr;
    }

    .top-menu__item {
        padding: 0px 15px;
    }

    .top-menu__link {
        font-size: 14px;
    }

    .search__wrapper {
        width: 620px;
    }

    .nav-icons__item {
        padding: 0 10px 0 38px;
    }

    .nav-icon__link {
        font-size: 13px;
    }

    .city {
        font-size: 13px;
    }

    .header-phone {
        font-size: 18px;
    }

    .work-time {
        font-size: 12px;
    }

    .login-box {
        margin-top: 30px;
    }

    .login-box a {
        font-size: 12px;
    }

    .content {
        max-width: 1000px;
        grid-template-areas: "slider""sale""cat-list""banner""latest""news""recomended";
        grid-template-columns: 100%;
    }

    .left-banner,
    .mailing {
        display: none;
    }

    .content_logo {
        max-width: 980px;
        margin: 0 auto;
    }

    .carousel-item {
        text-align: center;
    }

    .footer {
        max-width: 1000px;
    }

    .catalog-list .box-content {
        height: 0px;
        opacity: 0;
        transition: all ease 0.2s;
    }

    .catalog-list .box-content.open {
        height: 100%;
        opacity: 1;
    }

    .green {
        display: none;
    }
}

@media screen and (max-width:1023px) {
    .hist_zakazov table td {
        padding: 0.75rem 0.35rem;
    }

    .grey {
        display: block;
        width: 100%;
        margin: 0 auto;
        max-width: 760px;
        height: 20px;
        background-color: #6c757d;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        z-index: -100;
    }

    .logo {
        display: none;
    }

    .header__wrapper {
        max-width: 760px;
        margin: 0 auto 0;
        grid-template-areas: "city login login""menu icons phone""search search search";
        grid-template-rows: 17px 1fr 28px;
        grid-template-columns: 75% 5fr 1fr;
    }

    .city {
        line-height: 17px;
        text-align: left;
    }

    .city span {
        display: none;
    }

    .city span.city-name {
        display: inline-block;
        position: relative;
        color: #fff;
        padding-left: 15px;
    }

    .city span.city-name::before {
        content: '';
        position: absolute;
        height: 12px;
        width: 10px;
        top: 3px;
        left: -3px;
        background-image: url(/images/gorod_v.png);
        background-repeat: no-repeat;
        padding-left: 15px;
        background-position: 0 50%;
    }

    .login-wrapper {
        grid-area: login;
        display: block;
    }

    .login-box {
        width: 180px;
        margin-top: -2px;
        text-align: right;
        padding-left: 0;
        display: block;
        background-image: none;
    }
    a.login-img {
        display: none;
    }
    
    a.login-img img{
        display: none;
    }
    .login-box a {
        font-size: 14px;
        font-weight: 400;
        line-height: 17px;
    }

    .login-box .login {
        color: #fff;
    }

    .login-box .login:hover {
        text-decoration: none;
    }

    .login-box .register {
        display: none;
    }

    .mobo {
        display: flex;
    }

    .mob-menu__btn {
        position: relative;
        border-radius: 5px;
        background-color: transparent;
        width: 30px;
        height: 30px;
        margin: 0;
        margin-top: 15px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }

    .logo-mob {
        height: 18px;
        width: 59px;
        margin: 20px 0 0 20px;
        background-image: url(/images/vbh.png);
        background-size: cover;
        background-repeat: no-repeat;
    }

    .mob-menu__btn span {
        display: block;
        transition: all 0.1s;
        width: 29px;
        margin: 3px 0;
        height: 7px;
        background-color: #6b6b6b;
        border-radius: 4px;
    }

    .top-menu__items {
        display: none;
    }

    .top-menu__items {
        display: flex;
        position: absolute;
        top: 50px;
        transition: all ease 0.2s;
        left: 0;
        z-index: 200;
        width: 0px;
        justify-content: flex-start;
        flex-direction: column;
        background-color: #f2f2f2;
        padding: 10px 0;
    }

    .top-menu__items li.top-menu__item,
    .top-menu__items a.top-menu__link {
        display: none;
        transition: all ease 0.2s;
    }

    .show {
        width: 75vw;
    }

    .show li.top-menu__item,
    .show a.top-menu__link,
    .show li.top-menu__item.selection {
        display: block!important;
    }
    

    .top-menu__item {
        padding: 0px 29px;
    }

    .top-menu__item::after {
        border-right: none;
        border-top: 1px solid #e9ecef;
        position: absolute;
        height: 1px;
        top: 0px;
        left: 18px;
        width: 90%;
    }

    .icon-calc,
    .icon-import,
    .icon-best .link_name,
    .icon-basket .link_name {
        display: none;
    }

    .score_k,
    .score_i {
        font-size: 10px;
        height: 11px;
        line-height: 12px;
        width: 20px;
        margin-left: 0px;
    }

    .nav-icons__item {
        position: relative;
        height: 25px;
        padding: 0 30px 0 30px;
        line-height: 25px;
        background-repeat: no-repeat;
        background-size: 25px;
        background-position: center;
    }

    .icon-best {
        background-image: url('/images/zvezda_m.png');
    }

    .icon-basket {
        background-image: url('/images/korz_m.png');
    }

    .phone {
        display: block;
        width: 25px;
        height: 25px;
        margin-top: 22px;
        background-image: url('/images/tel_m.png');
        background-size: cover;
    }

    .header-phone {
        display: block;
        width: 25px;
        height: 25px;
    }

    .header-phone span,
    span.work-time {
        display: none;
    }

    .currency {
        display: none;
    }

    .search__wrapper {
        width: 100%;
        margin-left: 0;
        padding-bottom: 42px;
    }

    .search {
        padding: 20px 2px 20px;
    }

    .content {
        max-width: 760px;
    }

    .content_logo {
        max-width: 760px;
    }

    .footer {
        max-width: 760px;
        grid-template-columns: 1fr 335px 0.7fr;
    }

    .footer p.adress {
        font-size: 11px;
    }

    .center-area {
        display: none;
    }

    .mailing-footer {
        display: block;
        grid-area: center-area;
        text-align: center;
        padding: 41px 0 0;
    }

    .footer-menu {
        padding-left: 53%;
    }

    .pokup_f h4 {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .pokup_f a {
        font-size: 12px;
    }

    .theme--dark.v-card {
        margin-right: 5px !important;
        margin-left: 5px !important;
    }

    .card_image {
        height: auto;
        min-height: 231px;
    }

    .card_image img {
        max-height: 211px;
    }

    .theme--dark .v-card .card-body {
        min-height: auto !important;
        padding: 5px !important;
    }

    .card-body .card-text a {
        font-size: 12px;
    }

    .grey_m .nav_po_strelke {
        font-size: 14px;
    }

    .podbor_furnituru legend {
        font-size: 18px;
    }

    .filials {
        margin: 15px;
        padding: 5px 10px;
        flex-basis: 45%;
    }
}

@media screen and (max-width:767px) {
    .picture_t {
        max-width: 100% !important;
    }

    .grey_m .nav_po_strelke span {
        font-size: 12px;
    }

    .hist_zakazov table thead,
    .view-zakaz table thead {
        display: none;
    }

    .hist_zakazov table tr,
    .view-zakaz table tr {
        border-bottom: 3px solid #dddddd;
        display: block;
    }

    .hist_zakazov table td,
    .view-zakaz table td {
        border-bottom: 1px solid #dddddd;
        display: block;
        padding: 5px 15px;
    }

    .hist_zakazov table td span,
    .view-zakaz table td span {
        display: inline;
    }

    .hist_zakazov table td:before,
    .view-zakaz table td:before {
        content: attr(aria–label);
        display: block;
        font-size: 12px;
        font-weight: 700;
        color: #000;
        text-align: left;
    }

    .hist_zakazov .btn-group {
        display: flex;
        justify-content: space-around;
    }

    .orders th,
    .orders th {
        font-size: 12px;
    }

    .header__wrapper {
        max-width: 540px;
        grid-template-columns: 60% 1fr 0.4fr;
    }

    .city span a {
        font-size: 12px;
    }

    .login-box .login {
        font-size: 12px;
    }

    .content {
        max-width: 540px;
    }

    .content_logo {
        display: block;
        max-width: 540px;
    }

    .footer {
        max-width: 540px;
        grid-template-areas: "center-area""contacts";
        grid-template-columns: 1fr;
        grid-template-rows: 30px auto;
    }

    .footer .soc_seti,
    .footer .icon_cont {
        display: none;
    }

    .footer .ajRand {
        background-color: #969696;
        padding: 15px 20px;
        color: #fff;
    }

    .footer .mailing-footer .ajRand {
        padding: 0;
        background: none;
    }

    .contacts {
        padding: 0;
        text-align: center;
        margin-top: 70px;
    }

    .footer-menu {
        display: none;
    }

    .container {
        padding: 0 !important;
    }

    .theme--dark.v-card {
        margin-right: 1px !important;
        margin-left: 1px !important;
    }

    .card_image {
        height: auto;
        line-height: 1rem;
    }

    .card_image {
        height: auto;
        min-height: 166px;
    }

    .card_image img {
        max-height: 146px;
    }

    .theme--dark .v-card .card-body {
        min-height: auto !important;
        padding: 5px !important;
    }

    .card-body .card-text a {
        font-size: 12px;
    }

    .net_tovar,
    .nal_tovar {
        font-size: 12px;
    }

    .card_price_mob {
        font-size: 11px;
        display: flex;
        justify-content: space-evenly;
        align-items: center;
    }

    .grey_m {
        margin-bottom: 20px;
    }

    .grey_m .nav_po_strelke {
        line-height: 14px;
        font-size: 12px;
    }

    .filials {
        margin: 10px 0;
        padding: 5px 10px;
        flex-basis: 90%;
    }

    .img_warning {
        display: none;
    }

    .img_warning.mob {
        display: block;
        position: relative;
        text-align: center;
    }
}

@media screen and (max-width:575px) {
    .header__wrapper {
        max-width: 320px;
        grid-template-columns: 50% 1fr 0.4fr;
    }

    .login-wrapper {
        margin-left: -30px;
    }

    .nav-icons__item {
        padding: 0 20px 0 22px;
    }

    .content {
        max-width: 320px;
        padding: 0;
    }

    .content_logo {
        display: block;
        max-width: 320px;
    }

    .footer {
        max-width: 320px;
    }

    .container {
        padding: 0 !important;
    }

    .theme--dark.v-card {
        margin-right: 1px !important;
        margin-left: 1px !important;
    }

    .card_image {
        height: auto;
        min-height: 103px;
    }

    .card_image img {
        max-height: 83px;
    }

    .theme--dark .v-card .card-body {
        min-height: 110px !important;
        padding: 5px !important;
    }

    .card-body .card-text a {
        font-size: 12px;
    }

    .card_price_mob {
        font-size: 11px;
        display: flex;
        justify-content: space-evenly;
        align-items: center;
    }

    .modal__wrapper {
        max-width: 320px;
    }

    .login_links {
        flex-direction: column;
        justify-content: center;
    }
    
    .basket__search {
        flex-direction: column;
    }
    .basket__search > div {
        margin-bottom: 10px;
    }
    .basket__search-text {
        position: relative;
        width: 100%;
    }
}

@media (max-width:575px) {
    .news .card-img {
        display: none;
    }
}

/* city modal */
  .city{
    cursor: pointer !important;
  }
    .cover_full{
        width: 100%;
        height: 100%;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 100;
        background: rgba(0,0,0, 0.5);
      }
    .city_select_modal_wrap{
        width: 300px;
        padding: 20px;
        background: #fff;
        border-radius: 5px;
        position: fixed;
        top: 32px;
        right: 13%;
        z-index: 102;
    }
    .city_select_modal_wrap span{
        font-size: 24px;
        font-weight: 500;
    }
    .city_select_modal_wrap h2{
        font-size: 25px;
        font-weight: 700;
        color: #00B050;
    }
    .city_select_btns button {
        padding: 7px 15px;
        border-radius: 5px;
        margin-top: 20px;
        outline: none;
    }
    .city_select_btns button:nth-child(1) {
        background: #999;
        color: #000;
    }
    .city_select_btns button:nth-child(2) {
        background: #00B050;
        color: #fff;
    }
    /* city modal */
    .city_modal {
      background: #fff;
        width: 700px;
        padding: 20px;
        margin: 20px auto;
        border-radius: 5px;
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 103;
      }
      .city_modal_header {
        font-family: sans-serif;
        display: flex;
        justify-content: space-between;
        align-items: center;
      }
      .city_modal_header h3{
        font-size: 20px;
        font-weight: 600;
      }
      .city_search_input {
        margin: 20px 0;
      }
      .city_search_input input {
        width: 100%;
        height: 40px;
        padding: 0 20px;
        border: none;
        outline: none;
        border-radius: 5px;
        border: 1px solid #999;
        background-color: white;
        background-image: url(" /city_modal/search_icon.png");
        background-position: right 10px center;
        background-repeat: no-repeat;
        background-size: 20px;
        font-size: 17px;
      }
      .city_modal_my_wrap {
        display: flex;
        flex-wrap: wrap;
      }
      .city_modal_my {
        display: flex;
        align-items: center;
        flex-basis: 200px;
        margin: 5px;
      }
      .city_modal_my span {
        font-weight: 600;
      }
      .city_modal_my img {
        width: 20px;
        height: 20px;
        margin-right: 5px;
      }
      .location_img_city {
        width: 20px;
        height: 20px;
        margin-right: 5px;
      }
      .cities{
        overflow-x: auto;
        height: 60vh;
      }
      
      .cities::-webkit-scrollbar {
        width: 8px; 
        height: 8px; 
      }

      .cities::-webkit-scrollbar-thumb {
        background-color: #888; 
        border-radius: 4px;
      }

      .cities::-webkit-scrollbar-thumb:hover {
        background-color: #555; 
      }

      .cities::-webkit-scrollbar-corner {
        background-color: #999; 
      }

      .cities::-webkit-scrollbar-track {
        background-color: #f1f1f1; 
      }
      .city_modal_alfavit_wrap {
        margin: 10px 0;
       
      }
      .city_modal_alfavit_wrap h3 {
        margin-left: 10px;
        font-size: 20px;
        font-weight: 600;
      }
      .city_modal_alfavit_wrap_in {
        display: flex;
        flex-wrap: wrap;
        justify-content: start;
      }
      .city_modal_my_alfavit {
        display: flex;
        align-items: center;
        flex-basis: 200px;
        margin: 5px;
        cursor: pointer;
      }
      .city_modal_my_alfavit span {
        font-weight: 600;
        color: #999;
      }
      .city_modal_close_btn {
        outline: none;
      }
    


