.portal-totalizers-ref {
    height: 20px;
    background: #e56;
    border-radius: 50%;
    padding: 12px;
    color: white;
    font-weight: bold;
    top: -13px;
    position: relative;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.minicart-blur, .minicart-container {
    display: none;
}

.minicart-blur.aberto {
    display: block;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    z-index: 999999999;
    background: rgba(0, 0, 0, .7);
    font-family: 'Raleway Thin', sans-serif;
}

.minicart-container.aberto {
    display: block;
    width: 400px;
    height: 100%;
    position: fixed;
    z-index: 9999999999;
    background: #fff;
    right: 0;
    box-shadow: 0 0 5px 0 white;
}

.minicart-container .minicart-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 50px;
    background: #75a7ad;
    color: #fff;
    font-weight: bold;
    border-bottom: 0px solid #000;
    box-shadow: 0px -1px 4px 0px black;
}

.mc-close {
    padding: 10px;
    font-size: 30px;
}
.mc-close a {
    cursor: pointer;
}

.minicart-container .minicart-head .mc-title {
    width: 100%;
    text-align: center;
    font-size: 25px;
}

.minicart-body {
    height: 80%;
    display: flex;
    justify-content: center;
}

.minicart-body .minicart-product-list {
    overflow-y: auto;
    overflow-x: hidden;
    padding: 7px;
    height: 100%;
}

.minicart-body .minicart-product-list li {
    display: flex;
    align-items: center;
    width: 100%;
    border: 1px solid #d0d0d0;
    margin: 3px 0 3px 0;
    padding-top: 3px;
    padding-right: 3px;
    padding-left: 3px;
}

.minicart-body .minicart-product-list li {
    max-width: 100%;
}

.product-remove {
    color: orange;
    font-size: 1.3em;
    cursor: pointer;
}

.minicart-body .minicart-product-list li span.precoDe {
    text-decoration: line-through;
    color: #000;
    font-weight: normal;
    font-size: .7em;
}

.minicart-body .minicart-product-list li .minicart-item-price {
    font-size: 15px;
    font-weight: bold;
    color: #009fe3cc;
    margin-top: 3px;
}

.quantity-container {
    display: flex;
    width: 80px;
    justify-content: flex-start;
}

.quantity-container input[type=number] {
    width: 15px;
    max-width: 20px;
    text-align: center;
    border: 1px inset #f0f0f0;
}

.quantity-container input[type=number]::-webkit-inner-spin-button, .quantity-container input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.quantity-container * {
    margin-right: 4px;
}

.quantity-container button {
    border: 1px solid #77ccf0cc;
    padding: 5px;
    background: #77ccf0;
    color: #fff;
    font-weight: bold;
}

.quantity-container button:hover {
    background: #77ccf0;
    cursor: pointer;
}

.minicart-footer {
    width: 100%;
    height: 100px;
    background: #75a7ad;
    position: absolute;
    bottom: 0;
}

.minicart-footer .minicart-footer-container {
    background: #f0f0f0;
    display: flex;
    justify-content: space-around;
    padding: 10px;
}

.minicart-footer .minicart-footer-container .footer-text {
    font-weight: bold;
    font-size: 1.2em;
}

.minicart-footer .minicart-footer-container .footer-value {
    font-weight: bold;
    color: #005d6e;
    font-size: 1.2em;
}

.minicart-footer-button-wrapper {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    height: 70%;
}

.minicart-footer-button-wrapper a:nth-child(1) {
    background: #005d6e;
    border: 1px solid #fff;
    color: #fff;
}

.minicart-footer-button-wrapper a {
    background: #005d6e;
    /* background-image: linear-gradient(#009fE1, #5ccae7 100%, #009ee3); */
    border: 1px solid #fff;
    color: #fff;
    cursor: pointer;
    width: 140px;
    padding: 10px;
    border-radius: 10px;
    text-align: center;
    font-weight: bold;
    transition: 500ms;
}

.minicart-footer-button-wrapper a:nth-child(2) {
    box-shadow: 0px 4px 8px rgb(9, 9, 9, .5);
}

.minicart-footer-button-wrapper a:nth-child(2):hover {
    background-color: #005d6e;
    border: 1px outset #fff;
}

@media screen and (max-height: 450px) {
    .minicart-body .minicart-product-list {
        max-height: 200px;
    }
}

@media screen and (max-height: 350px) {
    .minicart-body .minicart-product-list {
        max-height: 180px;
    }
}

@media screen and (max-width: 410px) {
    .minicart-container.aberto {
        width: 350px;
    }
}

@media screen and (max-width: 350px) {
    .minicart-container.aberto {
        width: 300px;
    }
    .minicart-footer {
        height: 150px;
    }
    .minicart-footer-button-wrapper {
        flex-direction: column;
        padding: 10px;
    }
    .minicart-footer-button-wrapper a {
        width: 90%;
    }
    .minicart-footer-button-wrapper a:nth-child(2) {
        background-image: linear-gradient(#009EE1, #007fa1 100%, #009ee3);
    }
}

@media screen and (max-width: 280px) {
    .minicart-container.aberto {
        width: 250px;
    }
}