.showCart {
    cursor: pointer;
}
.Content__fastCart {
    position: fixed;
    top: 0;
    right: 0;
    width: 25%;
    height: 100vh;
    background-color: #fff;
    padding: 1vw 1.5vw;
    box-sizing: border-box;
    transform: translateX(100%);
    transition: .3s ease-in-out;
    z-index: 99999999;
    box-shadow: 0px 0px 10px #00000024;
}
.Content__fastCart--body-container {
    overflow: overlay;
    margin-bottom: 15px;
}
.cartActive {
    transform: translateX(0);
    transition: .3s ease-in-out;
}
.Content__fastCart--container {
    display: grid;
    grid-template-rows: 70px 1fr 170px;
    height: 100%;
    width: 100%;
}
.Content__fastCart--top-closeCart {
    position: absolute;
    top: 1.2vw;
    right: 1.5vw;
    width: 1.5vw;
    height: 1.5vw;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0.1vw solid #000;
    border-radius: 50px;
    cursor: pointer;
}
.Content__fastCart--top-closeCart img {
    width: 0.7vw;
    height: 0.7vw;
}
.Content__fastCart--top-title {
    padding-bottom: 0.55vw;
    border-bottom: 0.15vw solid #707070;
   
}
.Content__fastCart--top-title h2 {
    font-size: 2vw;
    font-weight: 700;
    line-height: 1;
    color: #000;
}
.Content__fastCart--body {
    display: grid;
    align-items: center;
    grid-template-columns: 2vw 5vw 1fr 1.2vw;
    gap: 0.5vw;
    padding-bottom: 1vw;
    margin-bottom: 1vw;
    border-bottom: 0.1vw solid #707070;
}
.Content__fastCart--body:last-of-type {
    border-bottom: 0px;
}
.Content__fastCart--body-amount {
    display: grid;
    grid-template-rows: 20px 1fr 20px;
    height: 100%;
}
.fastCart__body--amount-plusInput input {
    width: 100%;
    height: 100%;
    background-color: transparent;
    border: none;
    color: #000;
    font-size: 1vw;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.Content__fastCart--body-amount > div {
    display: flex;
    align-items: center;
    justify-content: center;
}
.fastCart__body--amount-minusOne {
    align-items: flex-end !important;
}
.Content__fastCart--body-amount > div i {
    height: auto !important;
}
.Content__fastCart--body-amount > div i {
    height: 100%;
    color: #000;
    font-size: 0.9vw;
    cursor: pointer;
}
/* .Content__fastCart--body-amount > div i:last-of-type {
    margin-top: 0.5vw;
} */
.Content__fastCart--body-image img{
    width: auto;
    height: auto;
    object-fit: fill;
    display: flex;
    justify-content: center;
    margin: 0 auto;
}
.Content__fastCart--body-image {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    position: relative;
    overflow: hidden;
}
.cart__productImage {
    position: relative;
    overflow: hidden;
}
.floatOutOfStockAlert {
    font-weight: 600;
    color: #ffff;
    background: #8f2323;
    padding: 5px 5px;
    border-radius: 2px;
    font-size: 10px !important;
    white-space: nowrap;
    width: 100%;
    box-sizing: border-box;
    text-align: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
}
.fastCart__body--data-name {
    margin-bottom: 0.65vw;
    line-height: 1.2;
}
.fastCart__body--data-name h4 {
    font-family: 'Lato', sans-serif;
    font-size: 0.8vw;
    font-weight: 400;
    color: #000;
}
.fastCart__body--data-price > div {
    display: flex;
    align-items: center;
}
.fastCart__body--data-price > div:first-of-type {
    margin-bottom: 0.5vw;
}
.fastCart__body--data-price > div img {
    width: 1.7vw;
    height: 1vw;
}
.fastCart__body--data-price > div span {
    font-family: 'Lato', sans-serif;
    font-weight: 600;
    font-size: 1.2vw;
    margin-left: 0.35vw;
    line-height: 1;
    color: #000;
}
.fastCart__body--data-price > div:first-of-type span {
    color: #15B473;
}
.body__data--price-card span {
    font-size: 1vw !important;
}
.Content__fastCart--bottom > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 1.25vw;
    border-bottom: 0.1vw solid #707070;
    margin-bottom: 1.25vw;
}
.Content__fastCart--bottom > div:last-of-type {
    padding-bottom: 0;
    border-bottom: none;
    justify-content: initial;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 1.25vw;
    margin-top: 1.15vw;
}
.Content__fastCart--bottom > div p {
    font-family: 'Lato', sans-serif;
    color: #000;
    font-size: 0.8vw;
    font-weight: 500;
    line-height: 1;
}
.fastCart__bottom--buttons a {
    font-family: 'Lato', sans-serif;
    width: 100%;
    height: 2.5vw;
    border-radius: 0.4vw;
    border: none;
    box-sizing: border-box;
    color: #fff;
    text-transform: uppercase;
    font-size: 0.8vw;
    font-weight: 600;
    cursor: pointer;
    transition: .3s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}
.fastCart__bottom--buttons-goCartButton a {
    background-color: #F7B500;
}
.fastCart__bottom--buttons-goCartButton a {
    color: #fff;
    transition: .3s ease-in-out;
}
.fastCart__bottom--buttons-goCartButton a:hover {
    background-color: #fff;
    color: #000;
    transition: .3s ease-in-out;
}
.fastCart__bottom--buttons-goCartButton a:hover {
    color: #000;
    transition: .3s ease-in-out;
}
.fastCart__bottom--buttons-payButton a {
    background-color: var(--secondary--color);
    width: 100%;
}
.fastCart__bottom--buttons-payButton a:hover {
    background-color: var(--secondary--color--hover);
    color: #fff;
    transition: .3s ease-in-out;
}
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    background: #00000077;
    width: 100%;
    height: 100vh;
    transform: translateX(-100%);
    transition: .3s ease-in-out;
    z-index: 55;
}
.overlayActive {
    transform: translateX(0);
    transition: .3s ease-in-out;
}

/* Hide scrollbar for Chrome, Safari and Opera */
.Content__fastCart--body-container::-webkit-scrollbar {
    display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.Content__fastCart--body-container {
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}

.Content__fastCart--top-closeCart svg {
    width: 100%;
    height: 100%;
}

.product-quantity {
    padding: 0 !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    color: #000 !important;
    font-family: Nunito Sans, sans-serif !important;
    font-size: 16px !important;
}
.decrease-quantity,
.increase-quantity {
    font-size: 20px;
}
.Content__fastCart--body-data h4 {
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    display: -webkit-box !important;
    -webkit-box-orient: vertical !important;
    -webkit-line-clamp: 1 !important;
    margin-bottom: 8px !important;
}
.Content__fastCart--body-data h4 a {
    color: #000 !important;
    font-family: Lato, sans-serif !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    display: block !important;
    line-height: 1.3 !important;
    
}
.Content__fastCart--body-data .woocommerce-Price-amount bdi {
    color: #15b473 !important;
    font-size: 18px !important;
    font-weight: 600 !important;
    line-height: 1 !important;
    font-family: Lato, sans-serif !important;
}

.Content__fastCart--cart-subtotal,
.Content__fastCart--cart-totals {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #000 !important;
    font-size: 14px !important;
    width: 100%;
}
.Content__fastCart--cart-subtotal bdi,
.Content__fastCart--cart-totals bdi {
    font-size: 14px !important;
    color: #000 !important;
}
.fastCart__bottom--buttons a:first-of-type {
    background-color: #f7b500;
}
.fastCart__bottom--buttons a:first-of-type:hover {
    background-color: #fff;
}
.fastCart__bottom--buttons a:last-of-type {
    background-color: #0090ff;
}
.fastCart__bottom--buttons a:last-of-type:hover {
    background-color: #076cbb;
    color: #fff;
}
/* INICIO RESPONSIVE */

@media (max-width: 1400px) {

    .Content__fastCart {
        padding: 15px;
        width: 35%;
    }
    .Content__fastCart--container {
        grid-template-rows: 55px 1fr 150px;
    }
    .Content__fastCart--top-closeCart {
        top: 10px;
        right: 35px;
        width: 25px;
        height: 25px;
        border: 1px solid #fff;
    }
    .Content__fastCart--top-closeCart img {
        width: 10px;
        height: 10px;
    }
    .Content__fastCart--top-title h2 {
        font-size: 22px;
    }
    .Content__fastCart--top-title {
        padding-bottom: 10px;
        border-bottom: 1px solid #707070;
        margin-top: 20px;
        margin-bottom: 30px;
    }
    .Content__fastCart--body {
        grid-template-columns: 30px 80px 1fr 25px;
        padding-bottom: 20px;
        margin-bottom: 20px;
        border-bottom: 1px solid #707070;
    }
    .Content__fastCart--body-amount > div i {
        font-size: 12px;
    }
    .fastCart__body--amount-plusInput input {
        font-size: 16px;
    }
    .fastCart__body--amount-minusOne {
        margin-top: 10px;
    }
    .fastCart__body--data-price > div img {
        width: 20px;
        height: 14px;
    }
    .fastCart__body--data-name h4 {
        font-size: 14px;
    }
    .fastCart__body--data-price > div span {
        font-size: 18px;
        margin-left: 8px;
    }
    .body__data--price-card span {
        font-size: 16px !important;
    }
    .Content__fastCart--bottom > div p {
        font-size: 14px;
    }
    .Content__fastCart--bottom > div {
        padding-bottom: 15px;
        border-bottom: 1px solid #707070;
        margin-bottom: 15px;
    }
    .Content__fastCart--bottom > div:last-of-type {
        gap: 15px;
        margin-top: 20px;
    }
    .fastCart__bottom--buttons button {
        height: 35px;
        border-radius: 5px;
        font-size: 12px;
    }
    .fastCart__body--data-price > div:first-of-type {
        margin-bottom: 10px;
    }
    .Content__fastCart--top-title {
        padding-bottom: 10px;
        border-bottom: 1px solid #707070;
        margin-top: 0;
        margin-bottom: 0;
    }
    .fastCart__bottom--buttons a {
        height: 35px !important;
        font-size: 12px !important;
    }

}

@media (max-width: 1100px) {

    .Content__fastCart {
        width: 40%;
    }

}

@media (max-width: 1024px) {

    .Content__fastCart {
        width: 50%;
    }

}

@media (max-width: 1000px) {

    .Content__fastCart--body-image {
        height: 80px;
    }
    .Content__fastCart--body {
        height: 100%;
        max-height: 80px;
        gap: 15px;
    }

}

@media (max-width: 768px) {

    .Content__fastCart {
        width: 60%;
    }

}

@media (max-width: 575px) {

    .Content__fastCart--container {
        grid-template-rows: 50px 1fr 235px !important;
        padding-top: 10px;
    }
    .Content__fastCart--body-image img {
        max-height: 75px;
    }
    .Content__fastCart--body-image {
        height: 100%;
        max-height: 100px;
    }
    .Content__fastCart--body {
        grid-template-columns: 30px 80px 1fr 20px;
        gap: 10px;
        max-height: 80px;
        height: 80px;
    }
    .Content__fastCart {
        width: 80%;
    }

}

@media (max-width: 480px) {

    .Content__fastCart--top-closeCart {
        top: 21px;
        right: 15px;
    }
    .Content__fastCart--top-title {
        margin: 0;
    }
    .fastCart__bottom--buttons {
        display: block !important; 
    }
    .fastCart__bottom--buttons-goCartButton {
        margin-bottom: 15px;
    }
    .fastCart__body--data-name h4 {
        font-size: 10px;
    }
    .fastCart__body--data-price > div span {
        font-size: 16px;
        margin-left: 8px;
    }
    .body__data--price-card span {
        font-size: 14px !important;
    }

}

.fastCart__bottom--buttons a:first-of-type:hover {
    background-color: #d89e00 !important;
    color: white !important;
}

