#balance-in-the-store {
    margin: 50px 0 0;

    @media (max-width: 767px) {
        margin: 30px -15px 0 -15px;
        padding: 30px 15px 0 15px;
        border-top: 1px solid rgba(59, 79, 63, 0.30);
    }
}

.stores-title .h2-title {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 22px;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 40px;
    text-transform: uppercase;
}

.stores-title .h2-title span {
    display: flex;
    flex: 1 0 max-content;
    align-items: center;
    justify-content: center;
}

@media (min-width: 768px) {
    .stores-title .h2-title:after {
        content: "";
        position: relative;
        display: block;
        border-bottom: 1px solid rgba(59, 79, 63, 0.30);
        width: 100%;
    }
}

.stores-main {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 20px;
}

.stores-main .store-container {
    padding: 20px;
    background: #FFF;
    height: 100%;
}

.stores-main .quantity-container {
    margin-bottom: 20px;
}

.stores-main .quantity-content {
    padding: 6px 8px;
    font-size: 13px;
    font-weight: 700;
    line-height: normal;
    width: fit-content;
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: var(--second-font);
    clip-path: polygon(0 0,calc(100% - 7px) 0,100% 7px,100% 100%,7px 100%,0 calc(100% - 7px));
}

.stores-main .quantity-content:before {
    content: '';
    display: block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
}

.stores-main .quantity-content.not-available {
    background: #FEEEEA;
}

.stores-main .quantity-content.not-available:before {
    background: #EC4D2D;
}

.stores-main .quantity-content.available {
    background: #EBF7ED;
}

.stores-main .quantity-content.available:before {
    background: #44B95B;
}

.stores-main .availability-city-name {
    font-size: 15px;
    font-weight: 700;
    line-height: 19px;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.stores-main .availability-address,
.stores-main .availability-phone,
.stores-main .availability-working-hours {
    font-size: 14px;
    font-weight: 500;
    line-height: 21px;
    margin-bottom: 5px;
}

.stores-main .availability-working-hours {
    margin-bottom: 0;
}

.stores-main .availability-working-hours b {
    font-weight: 600;
}

@media (max-width: 991px) {
    .stores-main {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 767px) {
    .stores-main {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .stores-main .store-container {
        padding: 15px;
    }

    .stores-main .quantity-container,
    .stores-main .availability-city-name {
        margin-bottom: 15px;
    }

    .stores-main .availability-working-hours {
        display: flex;
        flex-direction: column;
    }

    .stores-title .h2-title {
        margin-bottom: 30px;
    }
}

@media (max-width: 479px) {
    .stores-main {
        gap: 5px;
    }

    .stores-main .availability-city-name {
        font-size: 15px;
        line-height: normal;
    }
}

@media (max-width: 359px) {
    .stores-main {
        grid-template-columns: 1fr;
    }
}