a.shop-item{
    display: flex;
    flex-direction: column;
    height: 100%;
}

.shop-img-wrp{
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}
.shop-img{
    max-width: 100%;
    max-height: 200px;
}
.badge-sale{
    background: #fff1f1;
    color: #ff4747;
    font-size: 70%;
    font-weight: 600;
}

.badge-sale-ma{
    background: #f2f1ff;
    color: #e347ff;
    font-size: 70%;
    font-weight: 600;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}



/* Оформление checkbox */

.checkbox {
    display: flex;
    align-items: center;
    line-height: 22px;
}

.checkbox_fill {
    flex-grow: 1;
}

.checkbox__label {
    height: 32px;
    display: inline-flex;
    align-items: center;
    margin-bottom: 0;
    cursor: pointer;
    width: 100%;
}

.checkbox__name {
    margin-right: 10px;
}

.checkbox__content {
    box-sizing: border-box;
    padding: 2px 5px;
    font-size: 14px;
    line-height: 13px;
}

.checkbox__content_header {
    padding-left: 69px;
}

.checkbox__block {
    display: inline-block;
    width: 32px;
    height: 32px;
    border-radius: 0;
    box-sizing: border-box;
    border: 0;
    position: relative;
    cursor: pointer;
    background: rgb(255, 255, 255);
    border-radius: 3px 0 0 3px;
    box-shadow: inset 2px 2px 10px rgba(0,0,0,0.2);
    flex-shrink: 0;
}

.checkbox__block:after {
    font-family: 'Glyphicons Halflings';
    content: '\2714';
    opacity: 0;
    z-index: 3;
    transition: 0.2s all;
    transform: scale(2);
    pointer-events: none;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.checkbox__label:hover .checkbox__block:after  {
    opacity: 1;
    transform: scale(1);
}

.checkbox__input {
    display: none;
}

.checkbox__input:checked + .checkbox__block:after {
    opacity: 1;
    transform: scale(1);
    color: rgb(255, 255, 255);
    background-color: rgb(92, 184, 92);
}


/* isel */

.isel {
    display: flex;
    align-items: center;
    min-height: 34px;
    box-sizing: border-box;
    border-radius: 3px;
    border: 1px solid RGB(209, 211, 212);
}

.isel:not(:nth-last-child(1)) {
    margin-bottom: 4px;
}

.isel_header {
    border: 0;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 14px;
}

.isel_footer {
    border: 0;
}

.isel__img {
    width: 32px;
    height: 32px;
    display: block;
    flex-shrink: 0;
}

.isel__quantity {
    width: 19%;
    min-width: 100px;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.isel__qty {
    border: 1px solid rgb(232, 232, 232);
    border-radius: 3px;
    box-shadow: inset 0 0 6px rgba(40, 40, 40, 0.2);
}

.isel__qty:focus {
    border: 1px solid rgb(232, 232, 232);
    border-radius: 3px;
    box-shadow: inset 0 0 3px rgba(40, 40, 40, 0.2);
}

.isel__price {
    width: 11%;
    min-width: 55px;
    flex-shrink: 0;
    text-align: center;
}

.isel__heading {
    font-size: 12px;
}
.isel-list_flex {
    display: flex;
    flex-wrap: wrap;
}

.isel_color {
    width: 74px;
    margin-right: 20px;
    align-self: flex-start;
}

.isel__color {
    align-self: stretch;
    flex-grow: 1;
}
