.text-price{
    color: #3F2323;
    font-size: 1rem;
}
.accordion {
    background-color: rgba(238, 238, 238, 0);
    color: #3F2323;
    cursor: pointer;
    padding: 9px 0;
    width: 100%;
    /*border: none;*/
    text-align: left;
    outline: none;
    font-size: 1.3rem;
    transition: 0.7s;
}

.active, .accordion:hover {
    /*background-color: #c9a991;*/
}

.accordion:after {
    content: '\002B';
    color: #3F2323;
    font-weight: bold;
    float: right;
    margin-left: 5px;
}

.active:after {
    content: "\2212";
}

.panel {
    padding-bottom: 4px;
    background-color: rgba(255, 255, 255, 0.04);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s ease-out;
    border-bottom: 2px solid #3F2323;
}

@media not all and (min-width: 1280px) {
    .text-price{
        font-size: .9rem;
    }
}
@media not all and (min-width: 480px) {
    .text-price{
        font-size: .9rem;
        display: flex;
        gap: 5px;
    }
    .panel {
    padding-bottom: 2px;
}
}