#react-shopify-cart {
    background-color: white;
    width: 300px;
    position: fixed;
    right: 0;
    top: 0;
    overflow: auto;
    height: 100%;
}
div#react-shopify-cart {
    padding: 60px 20px 20px;
    box-shadow: 0px 5px 100px 20px rgba(0,0,0,0.4);
    border-left:5px solid #eee;
}
div#react-shopify-cart{
    transition:0.35s cubic-bezier(0.32, 0.39, 0.36, 1.0) all;
    opacity:0;
    z-index:99999 !important;
    right:-300px;
}
div#react-shopify-cart.visible {
    right:0 !important;
    opacity:1;
}

span.no-items {
    width: 100% !important;
    text-align: center;
    display: inline-block;
    min-height: 50vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-family: Oswald, Helvetica, Arial !important;
    color: #ccc;
    font-size: 1.5em;
    letter-spacing: 0 !important;
    font-weight: bold;
}

footer#colophon{
    z-index:1 !important;
    position:relative;
}

.cart {
    position:relative;
}

h3.cart-title {
    text-transform:uppercase;
    font-size:21px;
    font-weight:bolder;
    width:100%;
    padding:10px 0;
    border-bottom: 2px solid #333;
    font-family: AvenirNext;
}

button.cart-close-button {
    position: absolute;
    top: 15px;
    right: -4px;
    border: none;
    width: 24px;
    height: 24px;
    line-height: 24px;
    text-align: center;
    font-weight: bolder;
    font-size: 34px;
    cursor: pointer;
    transform: rotate(45deg);
    background-color: transparent;
}

ul.cart-item-list {}
ul.cart-item-list li{
    display:flex;
    padding: 10px 5px;
    position: relative;
}

ul.cart-item-list li:nth-child(even){
    background:#f6f6f6;
    text-shadow:0px 1px 0px #fff;
    border-top:1px solid #fafafa;
}

.product-thumbnail {
    flex:1;
    margin-right:10px;
}

.product-information {
    flex:2;
}

.product-buttons {
    position:absolute;
    top:-10px;
    left:-10px;
}

.product-buttons button{
    width:32px;
    height:32px;
    background:#fff;
    color:#111;
    border-radius:32px;
    font-weight:bold;
    border:none;
    border:1px solid #eee;
    box-shadow:0px 4px 3px rgba(0,0,0,0.2);
    transition:0.3s ease all;
    cursor: pointer;
}

.product-buttons button:hover{
    background:red;
    border-color:#fff;
    color:#fff;
    margin-top:-2px;
}

.cart-totals {}

h4.product-title {
    font-size:15px;
    font-family:AvenirNext,Arial,sans-serif !important;
    margin:0;
    line-height: 1em;
    padding: 10px 0 2px;
}

.same-row {
    display: flex;
    width: 100%;
    justify-content:space-between;
}

span.total-price {
    text-transform:uppercase;
    font-family: "Oswald",sans-serif !important;
    font-size:21px;
    color:#333;
    border-top:2px solid #111;
    width:100%;
    display:block;
    margin:20px 0;
    text-align:right;
    padding:10px 0;
}

.product-price{
    font-family: "Trade Gothic","Oswald",sans-serif;
    color:#888;
    margin:0;
    font-size:15px;
    margin-top:-10px;
    display:inline-block;
}

.cart-buttons a{
    display: inline-block;
    width: auto;
    text-decoration: none;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    border: 1px solid transparent;
    border-radius: 2px;
    padding: 8px 15px;
    background-color: red;
    color: #fff;
    font-family: "Trade Gothic","Oswald",sans-serif;
    font-style: normal;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    white-space: normal;
    font-size: 14px;
}

.same-row > *{
    flex:1;
    text-align:center;
}

.same-row button{
    width:24px;
    height:24px;
    border: none;
    font-size: 21px;
    /* font-weight: bold; */
    color: #333;
    font-family: AvenirNext, Helvetica, Arial;
    cursor: pointer;
}

span.no-items {
    line-height: 1.8em;
}

span.no-items a,
span.no-items a:visited{
    color:red;
    text-decoration:underline;
}