.product-bundle {
    clear: both;
}

.product-bundle *,
.product-bundle{
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    text-decoration: none;
}

.product-bundle__item:not(:last-child){
    margin-bottom: 20px;
}

.product-bundle__header {
    padding: 15px 25px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 0;
}
.product-bundle__title {
    color: #000;
    font-weight: bold;
}
.product-bundle__inner {

    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 20px;
}
.product-bundle__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: #dee4f0;
}
@media (min-width: 1024px) {
    .product-bundle__item {
       -webkit-flex-direction: row;
       -moz-flex-direction: row;
       -ms-flex-direction: row;
       -o-flex-direction: row;
       flex-direction: row;
       -webkit-flex-wrap: wrap;
       -moz-flex-wrap: wrap;
       -ms-flex-wrap: wrap;
       -o-flex-wrap: wrap;
       flex-wrap: wrap;
    }
}

.product-bundle__products {
    background-color: #fff;
}

.product-bundle__product {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    /*outline: 1px solid red;*/
}

@media (min-width: 1024px) {
    .product-bundle__products {
        display: -webkit-flex;
        display: -moz-flex;
        display: -ms-flex;
        display: -o-flex;
        display: flex;
        -webkit-flex-wrap: wrap;
        -moz-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        -o-flex-wrap: wrap;
        flex-wrap: wrap;
        -ms-align-items: center;
        align-items: center;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        padding: 50px 0 50px 10px;
        overflow: hidden; /* hide + symbol from first item */
    }
    .product-bundle__product__main {
        width: 48%;
    }
    .product-bundle__product__sale {
        width: 52%;
    }
}

.product-bundle__product:not(:first-child):before {
    content: '+';
    display: block;
    width: auto;
    color: #a9aeb8;
    font-family: MontserratLight, sans-serif;
    font-size: 60px;
    margin: 0 auto 10px;
    overflow: hidden;
    line-height: 1;
}
@media (min-width: 1024px) {
    .product-bundle__product:not(:first-child):before {
        position: absolute;
        top: 50%;
        left: 0;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
        margin: 0 0 0 -32px;
    }
}
.product-bundle__product-image{
    position: relative;
}
.product-bundle__product__sale .product-bundle__product-image {
    max-width: 100px;
    padding-left: 10px;
}

.product-bundle__product-title{
    line-height: 1.3;
    margin-bottom: 5px;
}
.product-bundle__product-title a{
    color: #323232;
}
.product-bundle__product-title a:hover {
    text-decoration: none;
}

.product-bundle__product-price{
    font-size: 14px;
    line-height: 1.3;
    margin: 0;
}

.product-bundle__purchase {
    position: relative;
    background-color: #fff;
}
@media (min-width: 1024px) {
    .product-bundle__purchase {
        padding-left: 50px;
        overflow: hidden;
    }
}
.product-bundle__purchase:before {
    content: '=';
    display: block;
    width: auto;
    font-family: MontserratLight, sans-serif;
    font-size: 60px;
    margin: auto;
    color: #a9aeb8;
}
@media (min-width: 1024px) {
    .product-bundle__purchase:before {
        position: absolute;
        left: 0px;
        top: 50%;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
    }
}
.product-bundle__purchase-inner {
    min-width: 200px;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    flex-direction: column;
    background: #dee4f0;
}
.product-bundle__price {
    padding-bottom: 10px;
}
.product-bundle__discount {
    padding-bottom: 10px;
    font-size: .9em;
    color: #ff762c;
}
.product-bundle__btn {
    padding: 2px 0;
}
.product-bundle__btn form{
    margin-bottom: 0;
}
.product-bundle__discount-label {
    display: none;
    position: absolute;
    top: 0;
    left: -25px;
    font-size: 0.8em;
    color: #43454b;
    background-color: #fff;
    white-space: nowrap;
    border: 1px solid #6d6d6d;
    padding: .202em .6180469716em;
    text-transform: uppercase;
    border-radius: 3px;
}