#to_buy {
    border-radius: unset !important;
    color: #ffffff !important;
    background-color: #000000 !important;
    border: 0px !important;
    font-size: 16px;
}

#buy_whatsapp {
    cursor: pointer;
    background: #25d366;
    color: white;
    padding: 8px 25px;
    font-size: 16px;
    border-radius: unset;
    border: 1px solid #25d366;
}

#keep_buy {
    cursor: pointer;
    background: #FFFFFF;
    color: #000;
    padding: 8px 25px;
    font-size: 16px;
    border-radius: unset;
    border: 1px solid #000;
}

.title_p {
    display: none;
}

@media (max-width: 767px) {
    .table-shopping-cart thead {
        display: none;
    }

    .table-shopping-cart tbody > tr {
        display: block;
    }

    .table-shopping-cart tbody > tr > td:first-child {
        width: 100%;
        display: inline-block;
    }

    .table-shopping-cart tbody > tr > td:first-child .aside {
        display: block;
    }

    .table-shopping-cart tbody > tr > td:first-child .info {
        padding-left: 15px;
    }

    .table-shopping-cart tbody > tr > td:nth-child(2) {
        width: 45%;
        display: inline-block;
    }

    .table-shopping-cart tbody > tr > td:nth-child(3) {
        width: 25%;
        display: inline-block;
        padding: 10px 5px;
        text-align: right;
    }

    .table-shopping-cart tbody > tr > td:nth-child(4) {
        width: 25%;
        display: inline-block;
        padding: 10px 5px;
        text-align: right;
    }

    .table-shopping-cart .price {
        margin: 0
    }

    .title_p {
        display: block;
    }

}

@media (min-width: 1200px) {
    .whatsapp-order {
        width: 35vw;
    }
}

.whatsapp-modal {
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 99999;
    display: none;
    justify-content: center;
    align-items: center;
}

.whatsapp-form {
    display: flex;
    flex-direction: column;
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    position: relative;
}

.whatsapp-form input {
    font-size: 1rem;
    padding: 0.25rem 0.5rem;
    margin-bottom: 1rem;
    border: 1px solid #898989;
    border-radius: 5px;
}

.whatsapp-form input:focus {
    outline: none;
    border: 1px solid gray;
}

.whatsapp-form input::placeholder {
    color: #C2C2C2;
}

.whatsapp-form .close {
    cursor: pointer;
    position: absolute;
    top: 10px;
    right: 10px;
    width: 24px;
    height: 24px;
}

.whatsapp-form .input-wrap {
    display: flex;
    flex-direction: column;
}

.whatsapp-form button {
    background: black;
    color: white;
    padding: 0.25rem 0;
    border: 1px solid black;
    border-radius: 5px;
}

#whatsappError {
    margin-bottom: 1rem;
    height: 8px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

#whatsappError p {
    color: red;
}

.whatsapp-order {
    position: relative;
    display: none;
    align-items: center;
    flex-direction: column;
    background: white;
    padding: 1rem;
    border-radius: 10px;
}

.whatsapp-order .close {
    cursor: pointer;
    position: absolute;
    top: 10px;
    right: 10px;
    width: 24px;
    height: 24px;
}

#whatappOrderRedirect {
    text-align: center;
    cursor: pointer;
    background: black;
    color: white;
    padding: 0.75rem 0;
    width: 100%;
    margin-top: 0.5rem;
    border-radius: 5px;
}

.whatsapp-loading {
    display: none;
    border: 4px solid rgba(0, 0, 0, 0.1);
    border-top: 4px solid #3498db;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.whatsapp-title {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.whatsapp-icon {
    color: #25d366;
}

.whatsapp-subtitle {
    text-align: center;
    margin-bottom: 1rem;
    padding: 0 2rem;
}

.order-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.order-subtitle {
    margin-bottom: 0.25rem;
}

.order-number {
    text-decoration: underline;
    margin-bottom: 0.25rem;
}

.order-date {
    margin-bottom: 0.25rem;
}

.order-payment {
    font-weight: 500;
}

.order-detail {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-height: 250px;
    overflow: hidden;
    overflow-y: auto;
}

.order-detail .item-wrapper {
    display: flex;
    justify-content: space-between;
    background: #F3F3F3;
    border-radius: 5px;
    padding: 0.5rem;
}

.order-detail .item-wrapper img {
    object-fit: cover;
    aspect-ratio: 1 / 1;
    width: 15%;
    border-radius: 5px;
}

.order-detail .item-wrapper .item-info {
    width: 80%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.order-detail .item-wrapper .item-info p {
    margin-bottom: 0;
}

.order-detail .item-wrapper .item-info strong {
    font-weight: 500;
}

.order-total {
    background: #F3F3F3;
    border-radius: 5px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0.25rem 0;
    margin: 0.5rem 0 1rem;
}

.order-total h2 {
    margin: 0;
    display: flex;
    color: #495057;
    font-size: 1.2rem;
    align-items: center;
}

.order-total strong {
    margin-left: 0.5rem;
    color: black;
    font-size: 2.4rem;
}

.order-total p {
    font-size: 0.9rem;
    color: #495057;
}

.breadcrb {
    padding-bottom: 20px;
}

.breadcrb ol li a, .breadcrb ol li a:hover, .breadcrb ol li a:focus, .breadcrb ol li a:active {
    color: #000;
}