.product__card {
    display: flex;
    justify-content: space-between;
    padding-bottom: 50px;
    border-bottom: 1px solid #F1F0F0;
}

.product__card-main-info {
    display: flex;
    justify-content: space-between;
    padding-bottom: 50px;
    border-bottom: 1px solid #F1F0F0;
}

.product__img-holder {
    width: 33%;
}

.product__info {
    width: 58%;
}

.product__img {
    width: 100%;
}

.product__name {
    font-weight: bold;
    font-size: 24px;
    color: #181818;
    margin-bottom: 10px;
}

.product__property {
    margin-bottom: 50px;
    padding-left: 65px;
    position: relative;
    color: #181818;
}

.product__property-icon {
    width: 47px;
    position: absolute;
    left: 0;
    top: 0;
}

.product__property-title {
    font-size: 15px;
    font-weight: bold;
    padding-bottom: 5px;
}

.product__manufacturer {
    font-size: 18px;
    color: #E20932;
    font-weight: bold;
}

.product__includes, .product__downloads {
    padding-left: 20px;
}

.product__includes-item, .product__downloads-item {
    list-style: circle;
    list-style-type: disc;
    color: #000;
}

.product__downloads-item-link {
    color: #E20932;
}

.product__downloads-item-link:hover {
    text-decoration: underline;
}

.product__basic-set-price {
    font-size: 18px;
    font-weight: bold;
}

.product__buy-controls {
    padding-left: 65px;
}

.product__buy-btn {
    display: inline-block;
    color: #fff;
    font-weight: bold;
    text-align: center;
    background: #E20932;
    padding: 10px 20px;
    border: 2px solid #E20932;
    transition: 200ms ease all;
}

.product__buy-btn:hover {
    background: #fff;
    color: #E20932;
}

.product__buy-btn--inactive {
    background: #999999;
    border: 2px solid #999999;
    cursor: default;
}

.product__buy-btn--inactive:hover {
    color: #fff;
    background: #999999;
}

.product__availability {
    margin-top: 25px;
    font-size: 13px;
    font-weight: bold;
}

@media screen and (max-width: 991px) {
    .product__card-main-info {
        flex-direction: column;
    }
    .product__info {
        width: 100%;
    }
}

@media screen and (max-width: 767px) {
    .product__basic-set-price {
        display: block;
    }
}
