/* -----------------------------------------------
:: WeltPixel QuickCart Overrides
----------------------------------------------- */
.minicart-wrapper.quickcart-wrapper .block-minicart.block-quickcart {
    position: fixed !important;
    top: 0;
    right: -320px;
    height: 100%;
    width: 320px;
    min-width: inherit;
    padding: 0;
    overflow: hidden;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

.minicart-wrapper.quickcart-wrapper.active .block-minicart.block-quickcart {
    right: 0 !important;
}

/*
:: top container
*/
.minicart-wrapper.quickcart-wrapper .block-minicart .block-title {
    display: none;
}

.block-content-quickcart .quickcart-top {
    padding: 0 1em;
    color: #ffffff;
    text-transform: uppercase;
    background: #000000;
}

.minicart-wrapper.quickcart-wrapper .quickcart-top button.close {
    top: 0;
}

.minicart-wrapper.quickcart-wrapper .quickcart-top button span {
    padding: 0;
}

/*
:: product items
*/
.minicart-wrapper.quickcart-wrapper .quickcart-items-wrapper {
    position: absolute;
    padding: 1em;
    height: calc(100% - 215px) !important;
    max-height: none;
    width: 100%;
    overflow: unset;
    overflow-y: auto;
    z-index: -1;
}

.minicart-wrapper.quickcart-wrapper .product-item {
    padding: 0.5em 0 0.5em 0;
}

.minicart-wrapper.quickcart-wrapper .product-image-container {
    position: static;
    top: auto;
    left: auto;
}

.minicart-wrapper.quickcart-wrapper .product-item-photo {
    float: left;
    border: none;
}

.minicart-wrapper.quickcart-wrapper .product-item-name {
    font-size: 12px; font-size: 0.75rem;
    text-transform: uppercase;
}

.minicart-wrapper.quickcart-wrapper .option-wrapper {
    float: left;
    margin-bottom: 0.5em;
    width: 100%;
}

.minicart-wrapper.quickcart-wrapper .option-wrapper .label,
.minicart-wrapper.quickcart-wrapper .option-wrapper .values {
    margin: 0 10px 0px 0;
    font-size: 12px; font-size: 0.75rem;
}

.minicart-wrapper.quickcart-wrapper .option-wrapper .values {
    padding-left: 0;
}

/*
:: qty update
*/
.minicart-wrapper.quickcart-wrapper .details-qty {
    position: relative;
    padding: 0 0 0.5em 0;
}

.minicart-wrapper.quickcart-wrapper .qty-update,
.minicart-wrapper.quickcart-wrapper .item-qty {
    display: inline-block !important;
    border: 1px solid #e5e5e5;
}

.minicart-wrapper.quickcart-wrapper .qty-update {
    position: relative;
    top: 0;
    font-family: 'luma-icons';
    padding: 0 7px;
    border: none;
    cursor: pointer;
}

.minicart-wrapper.quickcart-wrapper .item-minus {
    top: -1px;
}

.minicart-wrapper.quickcart-wrapper .item-minus:after {
    content: '-';
}

.minicart-wrapper.quickcart-wrapper .item-plus:after {
    content: '+'
}

.minicart-wrapper.quickcart-wrapper .details-qty .spinner {
    display: none;
    position: absolute;
    top: 3px;
    left: 4.45em;
    width: 16px;
    height: 14px;
    border: 1px solid #000;
    border-radius: 50%;
    border-bottom: 0 none;
    border-top: 0 none;
    background-color: #ffffff !important;
    -webkit-animation: sk-rotateplane 1.2s infinite ease-in-out;
    animation: sk-rotateplane 1.2s infinite ease-in-out;
}

@-webkit-keyframes sk-rotateplane {
    0% { -webkit-transform: rotate(0deg) }
    50% { -webkit-transform: rotate(-180deg) }
    100% { -webkit-transform: rotate(360deg) }
}

@keyframes sk-rotateplane {
    0% {
        transform: rotate(0deg);
        -webkit-transform: rotateX(0deg);
    } 50% {
          transform: rotate(-180deg);
          -webkit-transform: rotate(-180deg)
      } 100% {
            transform: rotate(360deg);
            -webkit-transform: rotate(360deg);
        }
}

/*
:: bottom container
*/
.minicart-wrapper.quickcart-wrapper.active .quickcart-bottom-container {
    position: absolute;
    bottom: 0;
    width: 100%;
}

.block-content-quickcart .quickcart-bottom-container .subtotal {
    float: none;
    padding: 1em;
    margin-bottom: 1em;
    width: auto;
    border-top: 1px solid #e5e5e5;
    background: #ffffff;
    text-transform: uppercase;
}

.minicart-wrapper.quickcart-wrapper.active .subtotal .label,
.minicart-wrapper.quickcart-wrapper.active .subtotal .amount {
    width: 45%;
    margin-bottom: 0;
}

.minicart-wrapper.quickcart-wrapper.active .subtotal .label {
    text-align: left;
}

/*
:: bottom container - buttons
*/
.minicart-wrapper.quickcart-wrapper.active .secondary,
.minicart-wrapper.quickcart-wrapper.active .primary {
    padding: 0 1em;
    text-align: center;
}

.minicart-wrapper.quickcart-wrapper.active .secondary {
    margin-bottom: 0;
}

.minicart-wrapper.quickcart-wrapper.active .action.viewcart span  {
    padding: 0;
}

.minicart-wrapper.quickcart-wrapper.active .action.viewcart span span {
    padding: 1.25em;
}

.minicart-wrapper.quickcart-wrapper.active .action.viewcart {
    margin-bottom: 1em;
}

.minicart-wrapper.quickcart-wrapper.active .action.primary.checkout {
    padding: 0;
}

.minicart-wrapper.quickcart-wrapper.active .action.primary.checkout span {
    padding: 1.25em;
}

/* -----------------------------------------------
:: Responsive
----------------------------------------------- */
@media only screen and (min-width:80em) {
    /*
    min-width 1280px
    */
    .minicart-wrapper.quickcart-wrapper .block-minicart.block-quickcart { width: 380px; }
}