.store-items {
    overflow: hidden;
}

.catalog-stores-item-name {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 10px;
}

.stores_items_left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 100%;
}

.catalog-stores-item-address {
    font-weight: 400;
    margin-bottom: 12px;
}

.catalog-stores-item-payment {
    width: 200px;
    flex-shrink: 0;
}

.catalog-stores-item-payment .accept_payment {
    font-size: 12px;
    line-height: 11px;
    color: #83879C;
}

.catalog-stores-item-payment .payment_description {
    color: var(--main_font_color);
    font-size: 14px;
}

.catalog-stores-item-title {
    width: 50%;
    padding-right: 50px;
}

.catalog-stores-item-schhedule {
    margin-bottom: 30px;
}

.catalog-stores-item-phone {
    margin-bottom: 8px;
}

.catalog-stores-item-metro {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 14px;
}

.catalog-stores-item-metro .metro_icon {
    margin-right: 6px;
    line-height: 1;
    margin-top: -1px;
    min-width: 16px;
}

.catalog-stores-item-metro .metro_icon svg {
    min-width: 15px;
    width: 15px;
    overflow: visible;
}

.catalog-stores-item-description {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 350px;
}

.metro_name {
    font-weight: 400;
}

.catalog-stores-item-description span {
    height: 24px;
    padding: 0 14px;
    font-size: 12px;
    font-weight: 400;
    color: #505050;
    border-radius: 14px;
    margin: 3px 6px 3px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f3f3f3;
    border: 1px solid #d9d9d9;
}

.circule {
    width: 7px;
    height: 7px;
    border-radius: 100%;
    margin-right: 6px;
    position: relative;
    bottom: 0;
    top: 1px;
    line-height: 1;
}

.payments_description {
    display: flex;
    align-items: center;
}

.payments_description span:nth-child(2) {
    font-weight: 400;
}

.payments_description .green {
    color: #7DC054;
    line-height: 1;
}

.store_item {
    display: flex;
    width: 100%;
    justify-content: space-between;
    background-color: #fafafa;
    padding: 30px;
    margin-bottom: 20px;
}

.store_item:last-child {
    margin-bottom: 0;
}

.payments_description.grey .circule {
    background-color: #808080;
}

.payments_description.orange .circule {
    background-color: #FFC164;
}

.payments_description.green .circule {
    background-color: #82E88C;
}

[data-metro^=red] {
    fill: red;
}

[data-metro^=green] {
    fill: green;
}

[data-metro^=blue] {
    fill: blue;
}

[data-metro^=yellow] {
    fill: yellow;
}

[data-metro^=orange] {
    fill: orange;
}

[data-metro^=violet] {
    fill: violet;
}

.store_item .link, .catalog-stores-item-schhedule-content {
    font-weight: 400;
}

.store_item .subtitle {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
}

.store_item h3 {
    font-size: 17px;
    line-height: 1;
    font-weight: 700;
    margin-bottom: 10px;
}

@media (max-width: 992px) {
    .store_item {
        flex-wrap: wrap;
        padding: 20px;
    }

    .catalog-stores-item-title {
        width: 70%;
    }

    .catalog-stores-item-info {
        max-width: 30%;
    }

    .catalog-stores-item-payment {
        margin-top: 20px;
    }

    .catalog-stores-item-schhedule {
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .catalog-stores-item-title {
        width: 65%;
        padding-right: 40px;
    }

    .catalog-stores-item-info {
        max-width: 35%;
    }
}

@media (max-width: 576px) {
    .stores_items_left {
        display: block;
    }

    .catalog-stores-item-title {
        width: 100%;
        padding-right: 0;
    }

    .catalog-stores-item-info {
        max-width: 100%;
        margin-top: 20px;
    }
}