div.bundle span.bundleMarker
{
    background-color: #547dbf;
    padding: 2px 10px;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 0.8em;
    color: black;
    text-decoration: none;
}

div.bundle h2.bundleName
{
    display: inline-block;
    color: white;
    margin: 0 10px 20px 0;
    padding: 0;
    vertical-align: middle;
}

div.bundle div.coverArtWithPrice
{
    background-color: #353844;
    padding: 7px;
    width: 650px;
    margin-bottom: 20px;
    box-sizing: border-box;
}

div.bundle div.missingItemsPrice
{
    background-color: #353844;
    padding: 7px;
    width: 650px;
    margin-bottom: 20px;
    box-sizing: border-box;
}

div#bundleAndProducts
{
    width: 100%;
    padding: 0;
}

div.bundle div.discountPriceToolbar
{
    text-align: right;
}

div.bundle div.discountPriceToolbar span.discountPercent
{
    display: inline-block;
    min-width: 80px;
    border: solid 1px #e5e9ee;
    border-radius: 5px;
    background-color: transparent;
    color: #e5e9ee;
    padding: 0px 30px;
    font-style: italic;
    font-size: 2em;
    text-align: center;
    vertical-align: middle;
}

div.bundle div.discountPriceToolbar a.priceWithDiscount
{
    text-decoration: none;
    color: black;
    display: inline-block;
    white-space: nowrap;
    text-align: center;
    vertical-align: middle;
}

div.bundle div.discountPriceToolbar a.priceWithDiscount span.regularPrice
{
    display: inline-block;
    background-color: #547dbf;
    width: 50%;
    padding: 10px 20px;
    box-sizing: border-box;
    border-top-left-radius: 3px;
    border-bottom-left-radius: 3px;
    text-decoration: line-through;
}

div.bundle div.discountPriceToolbar a.priceWithDiscount span.discountedPrice
{
    display: inline-block;
    background-color: #fce003;
    width: 50%;
    padding: 10px 20px;
    font-weight: bold;
    box-sizing: border-box;
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
}

div.bundle div.bundledProducts
{
    width: 650px;
    box-sizing: border-box;
    border: solid 1px #353844;
    border-radius: 5px;
    margin-bottom: 20px;
}

div.bundle div.bundledProducts > h3
{
    color: white;
    background-color: #353844;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    padding: 5px 20px;
    margin: 0 0 10px 0;
}

div.bundle div.bundledProducts > a
{
    text-decoration: none;
    color: white;
    display: block;
}

div.bundle div.bundledProduct
{
    background-color: #353844;
    margin: 0 10px 10px 10px;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

div.bundle div.bundledProduct > div.coverArt
{
    display: inline-block;
    vertical-align: middle;
    width: 37%;
    text-align: left;
}

div.bundle div.bundledProduct > div.coverArt img
{
    width: 211px;
    height: 99px;
}

div.bundle div.bundledProduct > div.productInfo
{
    width: 62%;
    display: inline-block;
    vertical-align: middle;
}

div.bundle div.bundledProduct > div.productInfo > h3
{
    color: white;
    font-style: italic;
}

div.bundle div.bundledProduct > div.productInfo img.platform
{
    width: 32px;
}

div.bundle div.bundledProduct div.discountPriceToolbar button.priceWithDiscount
{
    display: inline-block;
    background-color: #fce003;
    padding: 5px 20px;
    font-weight: bold;
    box-sizing: border-box;
    border-radius: 3px;
    border: none;
    color: black;
}

div.bundle div.bundledProduct div.discountPriceToolbar span.regularPrice
{
    display: inline-block;
    background-color: #547dbf;
    padding: 5px 20px;
    font-weight: bold;
    box-sizing: border-box;
    border-radius: 3px;
    border: none;
    color: black;
    text-decoration: line-through;
}

div.bundleDetailes
{
    background-color: #e5e9ee;
    color: black;
    text-align: center;
    position: relative;
    border-radius: 5px;
}

div.bundleDetailes > h3
{
    background: linear-gradient(to bottom, #5b6576, #48505e);
    padding: 20px;
    text-align: center;
    color: #e5e9ee;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    margin: 0;
    font-size: 1.2em;
}

div.bundleDetailes > h3 i
{
    font-weight: normal;
}

div.bundleDetailes div.specsContainer
{
    padding: 10px;
}

div.bundleDetailes div.specsContainer > div
{
    border-bottom: solid 1px #bac4d6;
}

div.bundleDetailes div.specsContainer > div.introduction
{
    text-align: left;
    padding: 10px;
}

div.bundleDetailes div.specsContainer > div:last-child
{
    border: none;
}

div.bundleDetailes label
{
    color: #547dbf;
    font-weight: bold;
    display: block;
    margin-top: 10px;
}

div.bundleDetailes span
{
    display: block;
    margin-bottom: 10px;
}

div.bundleDetailes div.available
{
    background: linear-gradient(to bottom, #5b6576, #48505e);
    width: 100%;
    color: white;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    padding: 10px;
    box-sizing: border-box;
}

div.bundleDetailes div.available div.availableInStores img
{
    width: 32px;
}

@media only screen and (max-width: 940px)
{
    div.bundle h2.bundleName
    {
        margin: 10px;
    }

    div.bundle div.coverArtWithPrice
    {
        width: 100%;
    }

    div.bundle div.bundledProducts
    {
        width: 100%;
        flex-wrap: wrap;
    }

    div.bundle div.bundledProduct > div.coverArt img
    {
        width: 100%;
        height: auto;
    }

    div.bundle div.bundledProduct > div.productInfo
    {
        width: 60%;
    }

    div.bundle div.bundledProduct > div.productInfo > h3
    {
        margin-top: 0;
    }
}