
/*
.read-more-container {
    position: relative;
}

.read-more-content {
    display: none;
}

.read-more-content.show {
    display: flow-root;
}

button.read-more-toggle {
    background-color: transparent;
    border: none;
    color: #e00a16;
    padding: 10px 0px;
    border-radius: 100px;
    font-size: 15px;
}

button.read-more-toggle:before {
    content: "";
    width: 20px;
    height: 2px;
    background-color: red;
    position: absolute;
    left: -30px;
    bottom: 27px;
}
*/

.read-more-container {
    display: flex;
    flex-direction: column;
    position: relative;
    /* border-top: 1px dashed #d4d4d4 !important; */
    /* padding: 10px 0px; */
    margin-top: 20px;
}

.read-more-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease; /* Transición suave de 0.5 segundos */
    margin-top: 10px;
}

.read-more-content.show {
    max-height: 1500px; /* Asegúrate de que este valor sea lo suficientemente grande para el contenido */
}

.read-more-toggle {
    cursor: pointer;
    display: block;
}

body .read-more-content .column-top-margin {
    margin-top: 0;
}




button.read-more-toggle {
    background-color: transparent;
    border: none;
    padding: 10px 0px;
    border-radius: 100px;
    font-size: 15px;
    left: 28px;
    position: relative;
    width: 78px;
    color: black;
}
button.read-more-toggle:before {
    content: "+";
    width: 18px;
    height: 18px;
    background-color: red;
    position: absolute;
    left: -25px;
    bottom: 10px;
    color: white;
    font-weight: bold;
    font-size: 19px;
    line-height: 1;
}

@media only screen and (max-width: 767px) {
button.read-more-toggle:before {
    font-size: 19px;
    line-height: 0.9;
}
}
