.card.card-product {
    border-radius: 1rem;
    overflow: hidden;
}

.card.card-product:not(.card-product-border) {
    padding: 0.5rem 0.5rem 1rem;
}

.card.card-product .wrap {
    position: relative;
    height: auto;
    padding-top: 66%;
}

.card.card-product .img-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 1rem;
    overflow: hidden;
}

.card.card-product .card-img-top {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.card.card-product .btn_favorites {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    width: 30px;
    color: #fff;
}

.card.card-product .btn_favorites:hover,
.card.card-product .btn_favorites.active {
    color: var(--theme-skit-color);
}

.card.card-product .description-wrap {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    height: 100%;
}

.card.card-product .card-body {
    padding: 1rem 0;
}

.card.card-product-border.card-product .card-body {
    padding: 1rem;
}

.card.card-product .card-section {
    font-size: 0.8rem;
    line-height: 1.2;
    color: inherit;
    opacity: 0.5;
}

.card.card-product .card-title {
    margin-bottom: 1rem;
}

.card.card-product .card-title a {
    font-size: 1.2rem;
    font-weight: 600;
    color: inherit;
    -webkit-transition: all .15s ease-in-out;
    transition: all .15s ease-in-out;
}

.card.card-product .card-title a:hover {
    color: var(--theme-skit-color);
}

.card_item_prop_list {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}

.card_item_prop {
    width: 50%;
    margin-bottom: 1rem;
}

.card_item_prop_name {
    font-size: 0.7rem;
    line-height: 1.2;
    font-weight: 500;
    text-transform: uppercase;
    color: inherit;
}

.card_item_prop_value {
    font-size: 0.7rem;
    line-height: 1.2;
    text-transform: uppercase;
    color: inherit;
    opacity: 0.5;
}

.card_item_prop_single {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    width: auto;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    margin-right: 0.5rem;
}

.card_item_prop_single:last-child {
    margin-right: 0;
}

.card_item_prop_single_icon {
    margin-right: 0.5rem;
}

.card_item_prop_single_icon svg {
    width: auto;
    height: auto;
    max-height: 22px;
}

.card_item_prop_single_value {
    font-size: 1rem;
    line-height: 1;
    font-weight: 600;
    white-space: nowrap;
}

.card.card-product .card-footer {
    padding: 0;
}

.card.card-product-border.card-product .card-footer {
    padding: 0 1rem 1rem;
}

.card.card-product .price {
    font-size: 1.2rem;
    line-height: 1;
    font-weight: 600;
    color: var(--theme-skit-color);
}

.card.card-product .price_2 {
    font-size: 0.8rem;
    line-height: 1;
    margin-top: 0.25rem;
    opacity: 0.5;
}

.card.card-product .card-footer .skit-button {
    font-size: 0.8rem !important;
    padding: 0.5rem 2rem !important;
}

/*list-group-item*/
@media all and (min-width: 767px){
    .item.list-group-item .card.card-product {
        -webkit-flex-direction: row;
        flex-direction: row;
    }

    .item.list-group-item .wrap {
        width: 40%;
        min-width: 40%;
        padding-top: 23%;
        margin-right: 2rem;
    }

    .item.list-group-item .img-wrap {
        border-radius: 0.5rem 0 0 0.5rem;
    }

    .item.list-group-item .card-body {
        padding-top: 0;
    }
}

@media all and (max-width: 767px) {
    .card.card-product:not(.card-product-border) {
        padding: 0 0 1rem;
    }
}