.cart-shipping-notice {
    font-size: 16px;
    margin-top: 20px;
}

.cart-shipping-notice span {
    color: #C64910;
    font-weight: 600;
    font-size: 23px;
}

.shopping-cart-wrapper {
    position: fixed;
    right: 10px;
    top: 60px;
    z-index: 3;
    cursor: pointer;
}

.fa-trash-alt {
    color: #e01e1e;
    font-size: 18px;
}

.shopping-cart-icon {
    color: #fff;
    font-size: 44px;
}

.shopping-cart-wrapper img {
    width: 100%;
}

.shopping-cart-number {
    position: absolute;
    left: 0px;
    right: 0;
    top: 5px;
    bottom: 0;
    margin: auto;
    color: #C64910;
    width: 1px;
    font-family: proxima-nova, sans-serif;
}

.cart-modal {
    display: none;
    position: fixed;
    top: 75px;
    right: 0;
    bottom: 0;
    left: 0;
    font-size: 20px;
    width: 88%;
    max-width: 600px;
    height: 50%;
    margin: auto;
    background: #fff;
    z-index: 6;
    border: 1px solid #F07800;
    overflow: scroll;
    box-shadow: 2px 2px 7px #3a3a3a;
    padding: 35px 10px 30px 10px;
}

.close-cart-modal {
    position: absolute;
    top: 5px;
    right: 10px;
    font-size: 40px;
    cursor: pointer;
    transition: .3s color;
}

.close-cart-modal:hover {
    color: #616161;
}

.cart-title {
    font-family: 'Teko', sans-serif;
    text-align: center;
    font-size: 40px;
    margin-bottom: 10px;
}

.cart-item-name {
    display: inline-block;
    width: 70%;
    vertical-align: top;
}

.cart-price-quantity-wrapper {
    display: inline-block;
    vertical-align: top;
    width: 28%;
    text-align: right;
}

.cart-price-quantity-wrapper div {
    display: inline-block;
}

.cart-quantity-wrapper span {
    font-size: 17px;
}

.cart-spacer {
    width: 100%;
    border-top: 1px solid #F07800;
    margin: 15px 0;
}

.cart-empty-space {
    display: inline-block;
    width: 60%;
}

.cart-total {
    display: inline-block;
    text-align: right;
    width: 38%;
    margin-bottom: 15px;
}

.checkout-btn {
    float: right;
    background: #C64910;
    color: #fff;
    text-transform: uppercase;
    width: 150px;
    padding-top: 3px;
    cursor: pointer;
    box-shadow: 1px 2px 2px #2b2b2b;
    margin: auto;
    text-align: center;
    font-size: 25px;
    font-weight: 600;
    padding-bottom: 1px;
    font-family: 'Teko', sans-serif;
    transition: .3s background;
}

.checkout-btn:hover {
    background: #4A6682;
}

.remove-from-cart {
    font-size: 18px;
    margin-left: 2px;
    font-family: 'Teko', sans-serif;
    cursor: pointer;
}

.view-cart-text {
    display: none;
}

@media (min-width: 450px) {
    .cart-modal {
        height: 320px;
    }
}

@media (min-width: 768px) {
    .shopping-cart-wrapper {
        top: 83px;
        right: 14px;
    }
}

@media (min-width: 1170px) {
    .shopping-cart-wrapper {
        top: 40px;
        right: 20px;
    }
}

@media (min-width: 1200px) {
    /*.shopping-cart-wrapper {
        top: 10px;
        right: 148px;
    }*/

    /*.view-cart-text {
        display: block;
        position: absolute;
        font-family: 'Teko', sans-serif;
        color: #FAFFFD;
        left: 54px;
        top: 0;
        font-weight: 300;
        width: 93px;
        font-size: 30px;
        text-transform: uppercase;
    }*/
}






