/* fix 9907 */
.shopping-cart .my-tooltip .products-list .product-unit .units-selector .plus.check_dis {
    background: #bebebe;
    cursor: default;
    pointer-events: none;
}


#shopping-item.slow-blink {
    opacity: 1;
    animation-name: slow-blink;
    animation-duration: 3s;
    animation-iteration-count: infinite;
}

#shopping-item.fast-blink {
    transform: rotate(0deg);
    transform-origin: 50% 50%;
    opacity: 1;
    animation-name: fast-blink;
    animation-duration: 1.5s;
    animation-iteration-count: infinite;
}

#shopping-item {
    position: relative;
    display: inline-block;
}

    #shopping-item .productsLength {
        top: auto;
        right: 0;
        bottom: -3px;
        position: absolute;
        display: block;
        margin: 0;
        padding: 0;
    }

@keyframes slow-blink {
    0% {
        opacity: 1;
    }

    12.5% {
        opacity: 0.25;
    }

    25% {
        opacity: 1;
    }

    100% {
        opacity: 1;
    }
}

@keyframes fast-blink {
    0% {
        opacity: 1;
    }

    12.5% {
        opacity: 0.2;
    }

    35% {
        opacity: 0.75;
    }

    55% {
        transform: rotate(0deg);
    }

    62.5% {
        opacity: 1;
        transform: rotate(-20deg);
    }

    75% {
        transform: rotate(15deg);
    }

    82.6% {
        transform: rotate(-10deg);
    }

    100% {
        transform: rotate(0deg);
    }
}


.shopping-cart .products-list::-webkit-scrollbar-track {
    border-radius: 10px;
    width: 10px;
    background-color: #F5F5F5;
}

.shopping-cart .products-list::-webkit-scrollbar {
    width: 12px;
    background-color: #F5F5F5;
}

.shopping-cart .products-list::-webkit-scrollbar-thumb {
    background-color: #c1c1c1;
    border: 2px solid transparent;
    border-radius: 10px;
    background-clip: content-box;
}


.productsLength {
    /*fre*/
    width: 15px;
    height: 15px;
    display: inline-block;
    background: #c30000;
    color: white;
    border-radius: 50%;
    vertical-align: middle;
    line-height: 15px;
    margin-left: 3px;
    font-size: 11px;
    position: absolute;
    top: 25%;
    right: 47px;
    z-index: 40;
    text-align: center;
    opacity: 0;
}

    .productsLength.active {
        opacity: 1;
    }

#shopping-item svg {
    width: 22px;
    height: 26px;
    /* stroke: black;*/
    fill: #242424;
    margin-left: 8px;
    margin-right: 5px;
    margin-bottom: -6px;
    cursor: pointer;
    -webkit-transition: fill 250ms ease-in-out;
    -moz-transition: fill 250ms ease-in-out;
    transition: fill 250ms ease-in-out;
}

#shopping-item:hover svg {
    fill: #c30000;
}

@media (min-width:768) {
    #shopping-item svg {
    }
}

.productsLength {
    margin-right: -32px;
    margin-top: 7px;
    width: 15px;
    height: 15px;
    display: inline-block;
    background: #c30000;
    color: white;
    border-radius: 50%;
    vertical-align: middle;
    line-height: 15px;
    margin-left: 3px;
    font-size: 11px;
    top: 25%;
    right: 47px;
    z-index: 40;
    text-align: center;
    opacity: 0;
    cursor: pointer;
}

    .productsLength.active {
        opacity: 1;
    }


.shopping-cart {
    position: relative;
    font-size: 14px;
    color: #4c4c4c;
    vertical-align: middle;
    display: inline-block; /* IE */
    display: inline-flex;
}

    .shopping-cart .dropdown-button {
        display: inline;
        display: flex;
        align-items: center;
        text-align: right;
    }

        .shopping-cart .dropdown-button:hover {
            cursor: pointer;
        }

        .shopping-cart .dropdown-button > div {
            vertical-align: middle;
            display: inline-block;
            /*display: lo flex;*/
            /*align-items: fes center;*/
            padding-bottom: 2px;
        }

            .shopping-cart .dropdown-button > div > p {
                display: inline;
            }

        .shopping-cart .dropdown-button label {
            height: 33px;
            width: 33px;
        }

            .shopping-cart .dropdown-button label span {
                font-size: 16px;
                display: inline-block;
                vertical-align: baseline;
            }

        .shopping-cart .dropdown-button img {
            margin-left: 5px;
        }

    .shopping-cart svg {
        max-width: 15px;
        height: 8px;
        stroke: #333;
        fill: none;
        transition: stroke 200ms;
        stroke-width: 4px;
    }

    .shopping-cart .my-tooltip svg {
        height: 20px;
        stroke-width: 1px;
    }

    .shopping-cart svg.pencil {
        -ms-transform: rotate(225deg); /* IE 9 */
        -webkit-transform: rotate(225deg); /* Chrome, Safari, Opera */
        transform: rotate(225deg);
    }

    .shopping-cart svg.orders {
    }

    .shopping-cart svg.cross {
        stroke-width: 2px;
    }

    .shopping-cart .arrow {
        -ms-transform: rotate(90deg); /* IE 9 */
        -webkit-transform: rotate(90deg); /* Chrome, Safari, Opera */
        transform: rotate(90deg);
        transition: transform 0.75s;
        margin-right: 5px;
        margin-left: 5px;
    }

    .shopping-cart .dropdown-button.active,
    .shopping-cart .dropdown-button:hover {
        cursor: pointer;
        color: #c30000;
    }

    .shopping-cart.active .arrow .shopping-cart .dropdown-button:hover .arrow {
        stroke: #c30000;
        -ms-transform: rotate(-90deg); /* IE 9 */
        -webkit-transform: rotate(-90deg); /* Chrome, Safari, Opera */
        transform: rotate(-90deg);
    }

    .shopping-cart .my-tooltip {
        position: absolute;
        width: 365px;
        right: 0px;
        /*top: calc(100% + 20px);*/
        top: -1000px;
        background-color: white;
        border: solid 1px rgb(221,221,221);
        -webkit-box-shadow: 0px 0px 20px rgba(0,0,0,.175);
        box-shadow: 0px 0px 20px rgba(0,0,0,.175);
        z-index: 21;
        padding: 15px 25px;
        opacity: 0;
    }

        .shopping-cart .my-tooltip .carrot {
            width: 0;
            height: 0;
            border-top: 13px solid transparent;
            border-left: 13px solid rgb(221,221,221);
            border-right: 13px solid transparent;
            position: absolute;
            top: -14px;
            right: -5px;
        }

            .shopping-cart .my-tooltip .carrot:after {
                content: '';
                width: 0;
                height: 0;
                border-top: 12px solid transparent;
                border-left: 12px solid #fff;
                border-right: 12px solid transparent;
                position: absolute;
                top: -10px;
                left: -12px;
            }

    .shopping-cart.active .my-tooltip {
        top: calc(100% + 25px);
        opacity: 1;
        -webkit-transition: opacity 500ms ease-in-out;
        -moz-transition: opacity 500ms ease-in-out;
        transition: opacity 500ms ease-in-out;
    }

    .shopping-cart header {
        display: flex;
        align-items: center;
        padding-bottom: 15px;
        padding-top: 10px;
        margin-bottom: 10px;
    }

        .shopping-cart header > * {
            margin: 0;
        }

        .shopping-cart header > div {
            text-align: left;
        }

        .shopping-cart header h4 {
            text-transform: uppercase;
            font-size: 16px;
        }

        .shopping-cart header .profile-img label {
            width: 75px;
            height: 75px;
            margin-left: 5px;
            margin-right: 15px;
        }

    .shopping-cart .profile-ul-options {
        text-align: center;
    }

    .shopping-cart .item {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 12px;
    }

        .shopping-cart .item p {
            text-transform: uppercase;
            font-size: 16px;
        }

        .shopping-cart .item svg {
            margin-left: 10px;
        }

        .shopping-cart .item:hover svg {
            stroke: #c30000;
        }

    .shopping-cart footer {
        border-top: solid 1px rgb(221,221,221);
    }

        .shopping-cart footer .item {
            padding-bottom: 0px;
        }

    .shopping-cart .my-tooltip header {
        padding: 10px 25px;
        position: relative;
        margin-bottom: 9px;
    }

        .shopping-cart .my-tooltip header p {
            font-size: 14px;
            text-transform: uppercase;
            font-weight: 500;
            color: black;
        }

        .shopping-cart .my-tooltip header .delete-product,
        .shopping-cart .my-tooltip .products-list .product-unit .delete-product {
            stroke: black;
            width: 18px;
            height: 22px;
            cursor: pointer;
            margin-left: auto;
            margin-top: -6px;
            max-width: unset;
        }

            .shopping-cart .my-tooltip header .delete-product:hover {
                stroke: #c30000;
            }

    .shopping-cart .my-tooltip {
        padding: 15px 0px;
    }

        .shopping-cart .my-tooltip .products-list {
            position: relative;
            max-height: 295px;
            /*height: 295px;*/
            overflow: hidden;
            overflow-y: auto;
            border-top: solid 1px #dddddd;
        }

        .shopping-cart .my-tooltip .product-added .product-unit {
            padding: 10px 15px;
            padding-left: 5px;
            border-bottom: solid 1px #dddddd;
        }

        .shopping-cart .my-tooltip .products-list .product-unit {
            padding: 10px 15px;
            border-bottom: solid 1px #dddddd;
            padding-left: 5px;
        }

            .shopping-cart .my-tooltip .products-list .product-unit img,
            .shopping-cart .my-tooltip .product-added .product-unit img {
                /* margin-top: 12px;*/
                padding: 5px 10px 5px 0;
            }

            .shopping-cart .my-tooltip .products-list .product-unit .product-desc,
            .shopping-cart .my-tooltip .product-added .product-unit .product-desc {
                margin-top: 7px;
                padding-left: 5px;
            }

                .shopping-cart .my-tooltip .products-list .product-unit .product-desc p,
                .shopping-cart .my-tooltip .product-added .product-unit .product-desc p {
                    display: flex;
                    font-size: 14px;
                    text-transform: uppercase;
                    float: left;
                    text-align: left;
                    width: 89%;
                    line-height: 1.2em;
                }

            .shopping-cart .my-tooltip .products-list .product-unit .product-more {
                margin-top: 15px;
                padding-left: 5px;
            }

        .shopping-cart .my-tooltip .product-added .product-unit .product-more {
            margin-top: 10px;
            padding-left: 5px;
        }

        .shopping-cart .my-tooltip .products-list .product-unit .delete-product,
        .shopping-cart .my-tooltip .product-added .product-unit .delete-product {
            float: right;
        }

        .shopping-cart .my-tooltip .products-list .product-unit .delete-product,
        .shopping-cart .my-tooltip .product-added .product-unit .delete-product {
            margin-top: 7px;
            margin-left: -5px;
        }

            .shopping-cart .my-tooltip .products-list .product-unit .delete-product:hover {
                stroke: #c30000;
            }

        .shopping-cart .my-tooltip .products-list .product-unit .units {
            display: inline-flex;
            align-items: center;
            float: left;
        }

        .shopping-cart .my-tooltip .products-list .product-unit,
        .shopping-cart .my-tooltip .product-added .product-unit {
            color: black;
        }

            .shopping-cart .my-tooltip .products-list .product-unit .units-selector > div {
                position: relative;
                background: rgb(36,36,36);
                width: 20px;
                height: 20px;
                cursor: pointer;
                display: flex;
                align-items: center;
                justify-content: center;
            }

                .shopping-cart .my-tooltip .products-list .product-unit .units-selector > div:hover {
                    background: #c30000;
                }

            .shopping-cart .my-tooltip .products-list .product-unit .units-selector {
                display: flex;
                align-items: center;
                margin-right: 5%;
            }

        .shopping-cart .my-tooltip .products-list .no-products {
            text-align: left;
            padding: 10px 25px;
            color: black;
            padding-top: 0;
            padding-bottom: 15px;
        }

        .shopping-cart .my-tooltip header.no-products {
            /*Fix bug 11010*/
            margin-bottom:0;
        }

            .shopping-cart .my-tooltip header.no-products svg {
                display: none;
            }

        .shopping-cart .my-tooltip .products-list.no-products {
            height: auto;
            border-top: unset;
        }

        .shopping-cart .my-tooltip footer.no-products {
            content: unset;
        }

        .shopping-cart .my-tooltip .no-product-header {
            background-color: rgb(244,244,244);
            border-top: solid 1px rgb(230,230,230);
            text-align: center;
            padding: 13px 0;
            margin: 0;
            text-transform: uppercase;
            text-decoration: underline;
            font-size: 14px;
        }

            .shopping-cart .my-tooltip .no-product-header a p {
                display: inline-flex;
                margin-left: -10px;
            }

            .shopping-cart .my-tooltip .no-product-header .discount-alert {
                stroke-width: 2px;
                stroke: black;
                height: 19px;
                max-width: unset;
                width: 30px;
                fill: black;
                margin-right: 10px;
                margin-top: -1px;
            }

            .shopping-cart .my-tooltip .no-product-header a {
                cursor: pointer;
            }

        .shopping-cart .my-tooltip.no-products {
            padding-bottom: 0px;
        }

.units-selector .plus, .units-selector .minus {
    -webkit-transition: background-color 250ms ease-in-out;
    -moz-transition: background-color 250ms ease-in-out;
    transition: background-color 250ms ease-in-out;
}


    .units-selector .plus:after, .units-selector .minus:after {
        height: 1px;
        width: 35%;
    }

    .units-selector .plus:after, .units-selector .minus:after, .units-selector .plus:before {
        content: '';
        position: absolute;
        background: white;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        margin: auto;
    }

    .units-selector .plus:before {
        height: 36%;
        width: 1px;
    }

.units-selector .value {
    padding: 0 7px;
    width: 36px !important;
    text-align: center;
}

.shopping-cart .my-tooltip .products-list .product-unit .units-selector p {
    width: 100%;
    float: left;
    line-height: 19px;
}

.units .plus:hover, .units .minus:hover {
    background-color: #c30000;
}

.shopping-cart .my-tooltip .products-list .product-unit .units span {
    font-size: 13px;
    text-transform: uppercase;
}

    .shopping-cart .my-tooltip .products-list .product-unit .units span:not(:last-child) {
        margin-right: 7px;
    }

.shopping-cart .my-tooltip .products-list .product-unit .units-selector p {
    margin-left: -7px;
    margin-right: -7px;
}

.shopping-cart .my-tooltip .products-list .product-unit .product-price,
.shopping-cart .my-tooltip .product-added .product-unit .product-price {
    font-size: 15px;
    display: inline-flex;
    float: right;
    color: black;
}

.shopping-cart .my-tooltip .products-list .product-unit:last-child {
    border-bottom: unset;
}

.shopping-cart .my-tooltip header.scrolled:after {
    content: "";
    display: block;
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 10px;
    background: linear-gradient(to bottom, rgba(0,0,0,0.09), transparent);
}

.shopping-cart .my-tooltip footer.scrolled:before {
    content: "";
    display: block;
    position: absolute;
    top: -10px;
    left: 0;
    width: 100%;
    height: 10px;
    background: linear-gradient(to top, rgba(0,0,0,0.09), transparent);
}

.shopping-cart .my-tooltip footer {
    position: relative;
    text-transform: uppercase;
    padding: 10px 25px;
    color: black;
    display: flex;
    flex-direction: column;
}

    .shopping-cart .my-tooltip footer .total-title {
        display: block;
        float: left;
        font-size: 14px;
        text-align: left;
        margin-top: 7px;
    }

    .shopping-cart .my-tooltip footer .prices {
        float: right;
        font-size: 20px;
        text-align: right;
        font-weight: bold;
    }

        .shopping-cart .my-tooltip footer .prices .geral {
        }

        .shopping-cart .my-tooltip footer .prices .member {
            color: #c30000;
        }

        .shopping-cart .my-tooltip footer .prices small {
            font-weight: 500;
            font-size: 14px;
        }

        .shopping-cart .my-tooltip footer .virtual-wallet-wrapper {
            background: #F4F4F4;
            margin-left: -10px;
            margin-right: -10px;
            position: relative;
        }

        .shopping-cart .my-tooltip footer .virtual-wallet {
            padding: 10px;
            display: flex;
            align-items: center;
        }

            .shopping-cart .my-tooltip footer .virtual-wallet svg {
                stroke: #C30000;
                margin-right: 10px;
                max-width: 25px;
            }

            .shopping-cart .my-tooltip footer .virtual-wallet p {
                color: #C30000;
                font-size: 12px;
                font-family: 'Roboto Condensed', sans-serif;
            }

            .shopping-cart .my-tooltip footer .virtual-wallet span {
                color: #C30000;
                font-size: 18px;
                font-weight: bold;
                position: absolute;
                right: 10px;
            }

    .shopping-cart .my-tooltip footer .button {
        border: none;
        text-align: center;
        background: rgb(36,36,36);
        color: white;
    }

        .shopping-cart .my-tooltip footer .button span {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .shopping-cart .my-tooltip footer .button.pay svg {
            max-width: 40px;
            stroke: white;
            fill: none;
            stroke: none;
            fill: white;
            height: 25px;
            padding: 3px 0;
            width: 40px; /* added because of IE - #1512 */
        }

        .shopping-cart .my-tooltip footer .button span span {
            display: inline;
        }

    .shopping-cart .my-tooltip footer .previewOptions {
        margin-top: 12px;
    }

        .shopping-cart .my-tooltip footer .previewOptions .pay {
            width: 80%;
            float: right;
            height: 42px;
        }

        .shopping-cart .my-tooltip footer .previewOptions .bag {
            padding: 0;
            width: 17%;
            float: left;
            height: 42px;
            display: block;
        }

            .shopping-cart .my-tooltip footer .previewOptions .bag span {
                display: flex;
                height: 100%;
            }

            .shopping-cart .my-tooltip footer .previewOptions .bag svg {
                height: 25px;
                max-width: 20px;
                stroke: white;
                fill: none;
                overflow: hidden;
                margin-bottom: -7px;
                margin-left: -10px;
                position: absolute;
                left: 0;
                right: 0;
                margin: auto;
                top: 0;
                bottom: 0;
            }

@media (max-width:425px) {
    .shopping-cart .my-tooltip {
        width: calc(100vw - 23px);
        max-width: 365px;
    }

        .shopping-cart .my-tooltip footer .previewOptions .pay {
            width: 75%;
            padding: 10px 0px;
            float: right;
        }
}

@media (min-width:425px) {
    .shopping-cart .my-tooltip .products-list .product-unit,
    .shopping-cart .my-tooltip .product-added .product-unit {
        padding: 10px 13px;
        padding-left: 15px;
    }

        .shopping-cart .my-tooltip .products-list .product-unit .delete-product .shopping-cart .my-tooltip .product-added .product-unit .delete-product {
            margin-left: 0px;
        }

    .shopping-cart .my-tooltip .products-list .product-unit {
    }
}

@media (min-width:768px) {

    .shopping-cart .my-tooltip .products-list .product-unit .units-selector {
        margin-bottom: 0px;
        margin-top: 0px;
    }

    .shopping-cart .my-tooltip {
        right: -47px;
    }

        .shopping-cart .my-tooltip .carrot {
            right: 40px;
        }

        .shopping-cart .my-tooltip .products-list .product-unit .units-selector > div {
            width: 15px;
            height: 15px;
        }

        .shopping-cart .my-tooltip .products-list .product-unit .units-selector p {
            line-height: 20px;
        }

        .shopping-cart .my-tooltip .products-list .product-unit .units span:not(:last-child) {
            margin-right: 12px;
        }

    .productsLength {
        margin-right: 25px;
        margin-top: 10px;
    }
}

@media (min-width:1000px) {
    .container-fluid.movable-menu.fixed.animate.animate-height .productsLength {
        margin-right: 34px;
    }
}

@media (min-width:1200px) {
    .welcome-user .my-tooltip .carrot {
        right: 76px;
    }

    .productsLength {
        margin-right: 26px;
        margin-top: 11px;
    }

    .container-fluid.movable-menu.fixed.animate.animate-height .productsLength {
        margin-right: 35px;
    }
}

#shopping-item.mobile-shopping-item {
    display: none;
}

@media (max-width:576px) {
    .shopping-cart {
        display: none;
    }

    #shopping-item {
        display: none;
    }

        #shopping-item.mobile-shopping-item {
            display: inline-block;
        }
}

/* fix 816 */
.shopping-cart .my-tooltip footer > div {
    margin-top: 10px;
}