.card__installment {
    font-weight: 500;
    font-size: 16px;
    line-height: 22px;
    color: #141414;
    margin-top: 24px;
    margin-bottom: 10px
}

.card__installment b {
    color: #e71d34
}

.color-elements {
    display: flex;
    flex-flow: row wrap;
    margin-top: 15px;
    margin-bottom: 26px
}
.color-element {
    margin-top: 8px;
    margin-right: 8px;
    position: relative;
    padding: 0 6px;
    display: flex;
    align-items: center;
    justify-content: center
}
.color-element:before {
    content: '';
    position: absolute;
    bottom: -8px;
    height: 3px;
    width: 0;
    background: #e71d34;
    left: 0;
    transition: .25s
}
.color-element:hover:before {
    width: 100%;
}
@media screen and (max-width: 767px) {
    .product__card-wrap {
        flex-direction: column;
    }
}
