@media screen {
    body {
        position: relative;
        overflow-x: hidden;
        width: 100%;
    }
    div.cbtl-panel.panel-full-width {
        overflow: hidden;
    }
    .product-category-container button.slick-arrow {
        background-color: #000;
    }
    .product-category-container .slick-list{
        overflow: visible;
    }
    .product-category-container .slick-list:before,
    .product-category-container .slick-list:after{
        content: '';
        display: block;
        width: 100%;
        position: absolute;
        height: 100%;
        top: 0;
        background: #FFF;
        opacity: 0.9;
        z-index: 1;
    }
    .product-category-container .slick-list:before{
        left: calc(-100% + 60px);
    }
    .product-category-container .slick-list:after {
        right: calc(-100% + 60px);
    }
    .product-category-container .product-container {
        margin: 0 25px;
    }

    .add-to-cart .btn {
        display: block;
        background: purple;
        color: white;
        text-align: center;
    }
    .shipping-promo {
        background: #F2EFF4;
        text-align: center;
        padding: .25rem;
    }
    section.subheader .shipping-promo p {
        color: #111820;
        font-family: 'Nunito Sans', sans-serif;
        font-size: 12px;
        font-weight: 700;
    }
    section.subheader a.button {
        font-family: Montserrat,sans-serif;
        font-weight: 700;
    }
    .cart-container .edit-cart img {
        min-width: inherit;
        max-width: 13px;
        width: auto;
    }
    #block-orderstatus {
        margin-right: 2rem;
    }
}

@media screen and (min-width: 1000px)  {
    #block-cbtl-blend-cartblock,
    #block-cartblock{
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        /*position: absolute;*/
        /*right: 0;*/
        /*top: calc(50% - 8px);*/
        margin-right: 1rem;
    }
    .my-cart {
        font-size: 12px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .my-cart-icon {
        position: relative;
        margin-left: 10px;
        bottom: 2px;
    }
    .my-cart-icon img {
        width: 14px;
    }
    .my-cart-count {
        position: absolute;
        top: -2px;
        right: -7px;
        color: #532D6D;
        background: #FFF;
        font-size: 10px;
        border-radius: 50%;
        border: 1px solid #532D6D;
        height: 13px;
        min-width: 13px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: 'Montserrat', sans-serif;
        font-weight: 400;
        padding: 2px;
    }
    .cart-section {
        position: relative;
        text-align: right;
        width: 100px;
        overflow: visible;
    }
    .cart-section .item-content-section{
        flex-grow: 1;
    }
    .cart-section .item-content-section .item-title {
        display: flex;
        margin-bottom: 0;
    }
    .cart-section .item-content-section .item-title span a {
        font-family: 'Nunito Sans', sans-serif;
        font-size: 14px;
        font-weight: 700;
        color: #111820;
        text-align: left;
        max-width: 90%;
        white-space: nowrap;
        text-overflow: ellipsis;
        overflow: hidden;
    }
    .cart-section .item-content-section .item-title .edit-cart {
        flex-grow: 1;
        text-decoration: none;
        display: flex;
        flex-direction: row;
        justify-content: flex-end;
    }
    .cart-section .item-content-section .item-attributes {
        font-weight: bold;
    }
    .cart-section .item-content-section .item-attributes .price {
        font-family: 'Nunito Sans', sans-serif;
        font-size: 12px;
        font-weight: 700;
        line-height: 16px;
        color: #111820;
        flex-grow: 1;
    }
    .cart-section .item-content-section .item-attributes .item-option {
        display: flex;
    }
    .cart-section .item-content-section .item-attributes .item-option span,
    .cart-section .item-content-section .item-attributes .item-quantity-price .quantity {
        font-family: 'Nunito Sans', sans-serif;
        font-size: 12px;
        font-weight: 600;
        line-height: 16px;
        color: #8A8A8D;
    }
    .cart-section .item-content-section .item-attributes .item-option span:first-child {
        margin-right: 5px;
    }
    .cart-section .item-content-section .item-attributes .item-quantity-price {
        display: flex;
        align-items: center;
    }
    .cart-section .item-content-section .item-attributes .item-quantity-price input {
        color: #000;
        padding: 5px;
        width: 35px;
        border: 1px solid #EBEBED;
        border-radius: 2px;
    }
    .cart-section .cart-container {
        opacity: 0;
        visibility: hidden;
        -webkit-transform: translateY(50px);
        transform: translateY(0);
        -webkit-transition: opacity .75s .5s, visibility .75s .5s, -webkit-transform .3s .25s;
        transition: opacity .75s .5s, visibility .75s .5s, transform .3s .25s;
        box-shadow: 1px 1px 15px rgba(0, 0, 0, 0.35);
        position: absolute;
        top: 24px;
        right: -16px;
        background: #FFF;
        z-index: 2;
        padding: 0;
        width: 325px;
    }
    .cart-section .cart-container-wrap {
        padding: 1rem;
    }
    .cart-section .cart-container.item-removed,
    .cart-section:hover .cart-container {
        z-index: 2;
        opacity: 1;
        visibility: visible;
        -webkit-transform: translateY(0);
        transform: translateY(0);
        -webkit-transition: opacity .3s 0s, visibility .3s 0s, -webkit-transform .3s 0s;
        transition: opacity .3s 0s, visibility .3s 0s, transform .3s 0s;
    }

    .cart-section .cart-container:hover {
        opacity: 1;
        visibility: visible;
    }

    .cart-section .cart-container .item-container {
        display: flex;
        flex-direction: row;
        margin: 0 0 1rem;
        padding: 0 0 1rem;
        border-bottom: 1px solid #EBEBED;
    }
    .cart-section .cart-container .item-image {
        margin: 0 .25rem 0 0;
    }
    .cart-section .cart-container .item-image img {
        max-width: 50px;
        min-width: inherit;
        width: 50px;
    }
    .cart-section .cart-container .subtotal {
        padding: 1rem 0 0;
        display: flex;
        font-family: 'Nunito Sans', sans-serif;
        font-size: 16px;
        font-weight: 700;
        color: #111820;
    }
    .cart-section .cart-container .subtotal span {
        flex-basis: 0;
        flex-grow: 1;
        text-align: left;
    }
    .cart-section .cart-container .cart-buttons a {
        display: block;
        text-align: center;
    }
    .cart-section .cart-container .cart-buttons .edit-bag {
        font-family: 'Montserrat', sans-serif;
        font-size: 14px;
        font-weight: 700;
        text-align: center;
        color: #8A8A8D;
        margin: 1rem 0 0;
    }
}

@media screen and (max-width: 550px) {
    #block-orderstatus {
        display: none;
    }
}