@media screen and (min-width: 1081px) {
    .fa-close {
        display: block !important;
        cursor: pointer;
    }
}

#cart-app {
    position: relative;
}

#cart-app i.fa-shopping-cart {
    font-size: 30px;
}

.lighter-text {
    color: #ABB0BE;
}

.main-color-text {
    color: #e88f1c;
}

.navbar-left {
    float: left;
}

.navbar-right {
    float: right;
}

.clearfix {
    display: inline;
    padding-left: 20px;
}

#cart {
    color: #e88f1c;
    text-decoration: none;
    font-size: 20px;
    cursor: pointer;
}

#cartManage {
    display: flex;
    justify-content: center;
    width: 100%;
    cursor: pointer;
    border: none;
    border-radius: 0.25rem;
    padding: 0.5rem 1rem;
    font-size: 1.125rem;
    line-height: 1.75rem;
    font-weight: 700;
    color: white;
    background-color: green;
    margin-top: 5px;
}

.badge {
    background-color: #e88f1c;
    border-radius: 10px;
    color: white;
    display: inline-block;
    font-size: 12px;
    line-height: 1;
    padding: 3px 7px;
    text-align: center;
    vertical-align: middle;
    white-space: nowrap;
}

.shopping-cart {
    margin: 0;
    float: right;
    background: white;
    width: 360px;
    border-radius: 3px;
    padding: 25px 25px 18px 25px;
    /* display: none; */

    position: fixed;
    right: 0;
    top: 0;
    z-index: 99999;
    overflow: auto;
    height: 100vh;
    box-shadow: 0 19px 38px rgba(0, 0, 0, 0.30), 0 15px 12px rgba(0, 0, 0, 0.22);
}

/*Barra de rolagem carrinho firefox */
.shopping-cart {
    scrollbar-color: #e88f1c orange;
    scrollbar-width: thin;
    scroll-padding-right: 1px;
}

/*Barra de rolagem carrinho chrome e safari */
.shopping-cart::-webkit-scrollbar {
    width: 6px;
    border: 0px;
}

.shopping-cart::-webkit-scrollbar-thumb {
    background-color: #e88f1c;
    border-radius: 5px;
}

.shopping-cart .shopping-cart-header {
    border-bottom: 1px solid #e8e8e8;
    padding-bottom: 15px;
}

.shopping-cart .shopping-cart-header .shopping-cart-total {
    float: right;
}

.shopping-cart .shopping-cart-items {
    padding-top: 20px;
}

.shopping-cart .shopping-cart-items li {
    margin-bottom: 18px;
}

.shopping-cart .shopping-cart-items img {
    float: left;
    margin-right: 12px;
    object-fit: scale-down;
}

.shopping-cart .shopping-cart-items .item-name {
    display: block;
    padding-top: 10px;
    font-size: 16px;
}

.shopping-cart .shopping-cart-items .item-price {
    margin-right: 8px;
}

.shopping-cart .shopping-cart-items .item-quantity {
    color: #6b6b6b;
}

.shopping-cart:after {
    bottom: 100%;
    left: 89%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-bottom-color: white;
    border-width: 8px;
    margin-left: -8px;
}

.cart-icon {
    color: #515783;
    font-size: 24px;
    margin-right: 7px;
    float: left;
}

.button-cart {
    background-color: #e88f1c;
    color: white;
    text-align: center;
    padding: 12px;
    text-decoration: none;
    display: block;
    border-radius: 3px;
    font-size: 16px;
    margin: 25px 0 15px 0;
}

.button-confiraKits {
    background-color: #606060;
    color: white;
    text-align: center;
    padding: 12px;
    text-decoration: none;
    display: block;
    border-radius: 3px;
    font-size: 16px;
    margin: 25px 0 15px 0;
}

.clearfix:after {
    content: "";
    display: table;
    clear: both;
}

.d-flex {
    display: flex;
}

.align-items-center {
    align-items: center;
}

.justify-content-center {
    justify-content: center;
}

.col-12 {
    width: 100%;
}

.col-6 {
    width: 50%;
}

.col-4 {
    width: 33.33%;
}

.col-3 {
    width: 25%;
}

.d-flex {
    display: flex;
}

@media screen and (max-width: 1080px) {
    .shopping-cart {
        top: 0px !important;
        margin: 0px !important;
        float: right;
        background: white;
        width: 100%;
        position: fixed !important;
        border-radius: 0;
        padding: 19px 18px 56px 25px;
        right: 0px;
        /* display: none; */
        box-shadow: 0 19px 38px rgba(0, 0, 0, 0.3),
            0 15px 12px rgba(0, 0, 0, 0.22);
        height: 100% !important;
    }

    #cart {
        color: #e88f1c;
        text-decoration: none;
        font-size: 20px;
        cursor: pointer;
        display: block;
        text-align: center;
        padding-bottom: 10px;
        padding-top: 10px;
        margin-left: 10px;
        margin-right: 10px;
    }

    .fa-close {
        display: block !important;
        cursor: pointer;
        color: #515783;
    }
}