/* ------- Cart Flyout Panel ------ */
    body.overflow-hidden {overflow: hidden;}
    .cd-cart-trigger {
        position:relative;
        z-index:0;
    }
    #cd-cart{
        position: fixed;
        top: 0;
        height: 100%;
        width: 260px;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
        z-index: 9999;
    }
    #cd-cart .panel-close{
        opacity:0;
        -webkit-transition: all 0.3s ease;
        -moz-transition: all 0.3s ease;
        -o-transition: all 0.3s ease;
        transition: all 0.3s ease;
        padding: 5px;
    }
    #cd-cart .panel-close img {max-width: 20px;}
    .speed-in .panel-close {position:fixed;top:15px;right:10px;z-index:9;opacity:1 !important;}
    @media only screen and (min-width: 768px) {
         #cd-cart {width:350px;}
    }
    @media only screen and (min-width: 1200px) {
         #cd-cart {width:28%; padding-top:0px;}
    }
    @media only screen and (max-width: 640px) {
        #cd-cart .checkout-btn {width:90%; /*min-height:40px; line-height:40px;*/}
        .shopping-empty-state-text {padding:1em;}
        .speed-in .panel-close {top:15px;right:15px;}
        .speed-in .panel-close img {max-width:20px;}
        .speed-in .cd-cart-trigger {
            position:fixed;
            top:0;
            right:0;
            z-index:99;
        }
    }
    #cd-cart {
        right: -100%;
        background: #FFF;
        -webkit-transition: right 0.3s;
        -moz-transition: right 0.3s;
        transition: right 0.3s;
    }
    #cd-cart.speed-in {right:0; background-color:#f5f5f5; padding-top: 2em;}
    #cd-cart > * {padding:0 1em;}
    .no-touch #cd-cart .cd-item-remove:hover {background-color: #e0e6ef;}
    #cd-cart .cd-cart-total::after {
            content: '';
            display: table;
            clear: both;
    }
    @media only screen and (min-width: 1200px) {
            #cd-cart .cd-cart-items li {padding:0.6em 2em;}
            #cd-cart .cd-item-remove {right: 2em;}
    }
    #cd-shadow-layer {
            position: fixed;
            min-height: 100%;
            width: 100%;
            top: 0;
            left: 0;
            background: rgba(67,87,121,.6);
            cursor: pointer;
            z-index: 9999;
            display: none;
    }
    #cd-shadow-layer.is-visible {
            display: block;
            -webkit-animation: cd-fade-in 0.5s;
            -moz-animation: cd-fade-in 0.5s;
            animation: cd-fade-in 0.5s;
    }
    @-webkit-keyframes cd-fade-in {
      0% {
            opacity: 0;
      }
      100% {
            opacity: 1;
      }
    }
    @-moz-keyframes cd-fade-in {
      0% {
            opacity: 0;
      }
      100% {
            opacity: 1;
      }
    }
    @keyframes cd-fade-in {
      0% {
            opacity: 0;
      }
      100% {
            opacity: 1;
      }
    }
