.random-background {
    background-color: #36a88e;
    /*top colour*/
    background-image: -webkit-linear-gradient(top, #36a88e, #f35b47);
    background-image: -moz-linear-gradient(top, #36a88e, #f35b47);
    background-image: -o-linear-gradient(top, #36a88e, #f35b47);
    background-image: linear-gradient(to bottom, #36a88e, #f35b47);
    height: 200vh;
    width: 100vw;
}

.itemlist{
    max-width:1024px;
    margin:auto;
    padding:20px;
    display:flex;
    flex-wrap: wrap;
}

.itemlist-item-wrapper{width: calc(90% / 3); display:inline-block; font-size: 20px !important; margin:1% 0.5% 0.5% 0.5%; background-color:white; padding:10px;
    box-sizing: content-box;}

@media(max-width: 800px){
    .itemlist{ width:auto; margin:auto; padding:0;}
    .itemlist-item-wrapper{width:48%; margin:auto; margin-bottom:0.5%; padding:30px;}
}

@media(max-width: 600px){
    .itemlist{ width:auto; margin:auto; padding:0;}
    .itemlist-item-wrapper{width:auto; margin:auto; margin-bottom:2%;}
}


.lightbox-blanket {
    background-color: rgba(30, 30, 30, 0.9);
    display: block;
    height: 100vh;
    position: fixed;
    overflow-y: scroll;
    top: 0;
    width: 100vw;
    z-index: 20;
}

.pop-up-container {
    height: 100%;
    width: auto;
    display: table;
    margin: auto;
    position: static;
}

@media (max-width:400px) {
    .pop-up-container {
        width: 96%;
        margin: 2%;
    }
}

.pop-up-container-vertical {
    height: 100%;
    vertical-align: middle;
    display: table-cell;
}

.pop-up-wrapper {
    -webkit-box-shadow: -45px 49px 83px 1px rgba(0, 0, 0, 0.45);
    -moz-box-shadow: -45px 49px 83px 1px rgba(0, 0, 0, 0.45);
    box-shadow: -45px 49px 83px 1px rgba(0, 0, 0, 0.45);
    display: block;
    margin: 20% auto;
    width: auto;
    position: relative;
}

.pop-up-wrapper {
    background-color: white;
    display: block;
    padding: 0px;
}

.go-back {
    position: absolute;
    right: -20px;
    top: -20px;
    color:#fff;
    width: 0;
    height: 0;
    border: 25px solid #c50000;
    /* border-right: 50px solid transparent;*/
    border-radius: 50%;
}

.go-back i {
    font-size:20px;
    position: relative;
    top: -11px;
    left: -6px;
}

.go-back:hover {
    border: 25px solid #000;
}


.product-details {
    max-width: 900px;
}

.product-left {
    display: inline-block;
    padding-right: 4%;
    vertical-align: top;
    width: 46%;
}

.product-right {
    display: inline-block;
    vertical-align: top;
    width: 49%;
}

.product-bottom{border-top:1px solid #ccc; position:relative; padding-top:20px;}

@media (max-width:650px){
    .product-left, .product-right, .product-bottom{
        width:100%;}
    .product-left{padding-right:0;}
    .product-info{display:inline-block; width:60%; vertical-align:top;}
    .product-image{display:inline-block; width:39%; vertical-align:top;}
}

@media (max-width:512px){
    .product-info, .product-image{width:100%;}
}

.product-manufacturer {
    color:#222;
    font-size: 70px;
    font-weight: bold;
    line-height: 1;
    margin: -2px;
}

.product-title {
    font-size: 28px;
    color: #888;
}

.product-price {
    color:#222;
    font-size: 24px;
    letter-spacing: 1px;
}

.product-price-cents {
    text-decoration: underline;
    vertical-align: top;
    padding-left:3px;
}

.product-image {
    padding: 10px 10px 0 10px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    height: 295px;
}

.product-description {line-height:1.5;}

.product-available {
    margin-top: 25px;
}

.product-rating{
    margin-top:25px;
}

i.fa-star{color:#aaa; display:inline-block;}
i.fa-star.rating{color: rgb(232, 217, 31);}
.product-rating-details{display:inline-block; padding-left: 10px;}
@media(max-width:515px){
    .product-rating-details{padding-left:0;}
}
.product-extended {
    color: #235ba8;
    padding-left: 5px;
}
.product-quantity{margin-top:25px;
    margin-bottom:25px;}

.product-checkout{position:absolute; left:0;font-size: 12px; text-transform: uppercase;}
.product-checkout-actions{position:absolute; right:0;}
.product-checkout-total, .product-checkout-total-amount{font-size: 20px; color: #C17A41;}
.product-checkout-total * {display:inline-block;}
.product-checkout-actions{}

/* 6. Components - buttons, menus, images, etc. */
.product-quantity-label{text-transform:uppercase;}
.product-quantity *{display:inline-block;}

#product-quantity-input{background-color: #eee;border: none; width:2.5em; text-align: center;}
.product-quantity-subtract, .product-quantity-add{margin-left: 20px; padding-left:5px; padding-right: 5px;}
.product-quantity-subtract{margin-right:20px;}


.toast{
    position: fixed;
    top: -50px;
    left: calc(50vw - 50px);
    z-index:25;
    padding:5px 10px;
    border-radius: 15px;
}

.toast-success{
    background-color: green;
    color:white;
    font-size: 9pt;
}

.toast-transition{
    top: calc(50px);
    transition:top 1s;
}


/* 7. Trumps - text helpers, often !important */

.hidden {
    display: none;
}