body.no-scroll {
    overflow-y: hidden;
    margin-right: 15px;
}

a {
    text-decoration: none !important;
}

input[type=submit] {
    cursor: pointer;
}

.breadcrumbs .goodinfo__mobile-hidden {
    display: block;
}

.breadcrumbs .goodinfo__mobile-visible {
    display: none;
}

@media screen and (max-width: 900px) {
    .breadcrumbs .goodinfo__mobile-visible {
        display: block;
    }

    .breadcrumbs .goodinfo__mobile-hidden {
        display: none;
    }
}


.d-flex {
   display: flex;
}

.d-flex.wrap {
    flex-wrap: wrap;
}
.d-flex.gap-5 {
    gap: 5px;
}
.d-flex.gap-10 {
    gap: 10px;
}
.d-flex.justify-content-between {
    justify-content: space-between;
}

.btn-red-outlined {
    color: #cb0232;
    border-color: #cb0232;
}

.alert {
    display: flex;
    padding: 10px;
    border: 1px solid;
    border-radius: 5px;
    justify-self: center;
    margin: 10px 0;
}

.alert.alert-danger {
    border-color: darkred;
    background-color: darkred;
    color: white;
}

.alert.alert-success {
    border-color: darkgreen;
    background-color: darkgreen;
    color: white;
}

a.afteradd.order:hover {
    opacity: 0.7;
}


.product-price__btn.outlined {
    background-color: unset;
    background: unset;
}

.product-price__btn.outlined a:not(.order) {
    color: #000;

}

.product-price__btn.outlined {
    background-color: #fff !important;
    color: #000 !important;
}

.title-block {
    display: flex;
    gap: 5px;
    align-items: baseline
}

.title-block span.title-catalog-counts {
    color: grey;
    font-size: 13px;
}

/* basket and order */
.col.quantity-block {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-basis: 220px !important;
    justify-content: space-evenly;
}

.col.subtotal-block {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-basis: 120px;
    justify-content: flex-end;
}

.col.subtotal-block .subtotal {
    font-weight: 600;
}

.col.quantity-block .price {
    flex-basis: 120px
}