#solutions_all {
}
#solutions_all_container {
}
#solutions_all_content {
    margin: 0 0;
    flex-direction: column;
    /*border: solid 1px blue;*/
}
#solutions_all_wrapper {
    width: 80%;
    display: flex;
    flex-direction: column;
    align-items: start;
    /*border: solid 1px orange;*/
}
#solutions_all_title {
    display: flex;
    flex-direction: column;
    justify-content: start;
    white-space: normal;
    /*border: solid 1px blue;*/
}
#solutions_all_bottom {
}
#solutions_all_panels {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    list-style: none;
    /*border: solid 1px orange;*/
}
.solutions_all_panel {
    width: 85vw;
    margin: 0.7rem;
    padding: 1rem;
    background-color: var(--white);
    border-top: solid 0.1rem var(--primary-color);
    border-right: solid 0.1rem var(--primary-color);
    border-bottom: solid 0.1rem var(--primary-color);
    border-left: solid 0.5rem var(--highlight-color);
    border-radius: var(--box-border-radius);
}
.solutions_all_panel_icon {
    width: 100%;
    min-height: 50px;
    display: flex;
    flex-direction: row;
    justify-content: start;
    /*border: solid 1px red;*/
}
.solutions_all_panel_ring {
    display: flex;
    flex-direction: row;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--tertiary-background);
    border: solid 1px black;
}
.solutions_all_panel_icon_img {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    /*border: solid 1px red;*/
}
.solutions_all_panel_title {
    margin: 20px 0 10px 0;
    font-size: 1.37rem;
    font-weight: bold;
    color: var(--highlight-color);
}
.solutions_all_panel_text {
    color: var(--secondary-color);
}
.solutions_all_panel_text li {
    margin-bottom: 10px;
}
#solutions_all_footer_text {
    margin-bottom: 30px;
    padding: 10px 10px;
    font-size: 1.1rem;
    color: var(--secondary-color);
}
.negrita_numeros li::marker {
    font-weight: bold;
}
@media (min-width: 900px) {
    .solutions_all_panel {
        width: 35vw;
    }
}
@media (min-width: 1200px) {
    .solutions_all_panel {
        /*width: 25vw;*/
    }
}
@media (min-width: 1400px) {
    .solutions_all_panel {
        width: 37vw;
    }
}
@media (min-width: 1600px) {
    .solutions_all_panel {
        width: 25vw;
    }
}