.black-friday {
    background-color: #000;
    text-align: center;
}
.bf-poster {
    max-width: 600px;
}
/*
/=============================================================================\
 ## Promotion bundles
\=============================================================================/ 
*/
#promotions {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 20px;
    color: #888;
    background-color: #fff;
    margin-bottom: 40px;
}
#promotions .promotions-title {
    font-size: 40px;
    margin-top: 0;
    margin-bottom: 70px;
    color: inherit;
}
#promotions * {
    box-sizing: border-box;
}
#promotions .bundle {
    /*width: 1170px;*/
    /* display: flex;
    flex-wrap: wrap; */
    align-self: stretch;
    display: grid;
    grid-template-columns: repeat(auto-fit, 390px);
    justify-content: center;
    font-size: 16px;
    list-style: none;
    text-align: center;
}
#promotions .bundle .bundle-li {
    /* flex: 0 0 300px; */
    margin: auto 45px 20px;
}
#promotions .bundle .bundle-li .bundle-title {
    font-size: 24px;
    margin: auto auto 20px;
}
.bundle-image-container {
    width: 300px;
    height: 188px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: dashed 2px #888888;
    border-radius: 20px;
    margin-bottom: 15px;
}
.bundle-image {
    max-width: 280px;
    max-height: 172px;
}
.bundle-details {
    margin-bottom: 20px;
    white-space: pre-wrap;
}
#promotions .bundle .bundle-li .bundle-cta-button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background-color: #fe2e68;
    width: 130px;
    height: 50px;
    color: #fff;
    border-radius: 17px;
    margin-bottom: 15px;
    transition: all 0.3s cubic-bezier(.51,.03,.21,.97)
}
#promotions .bundle .bundle-li .bundle-cta-button:hover {
    color: #fff;
    background-color: #b81341;
    box-shadow: 0 5px 8px 0 rgba(184,19,65,0.27)
}
.bundle-discount-code {
    
}