
/*Acordeon de compra*/
/* Style the buttons that are used to open and close the accordion panel */

button.accordion {
    color: #727070;
    background-color: transparent;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    text-align: left;
    border-color: transparent transparent #727070 transparent;
    border-bottom-width: 1.5px;
    outline: none;
    transition: 0.4s;
}

/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
button.accordion.active {
background-color: transparent;
border-color: transparent transparent transparent transparent;
}

/* Style the accordion panel. Note: hidden by default */
div.panel {
    border: none;
    padding: 0 18px;
    background-color: transparent;
    display: none;
}
