details {
    width: 55%;
    padding: 20px 20px 10px 20px;
    margin: 0 auto;
    position: relative;
    font-size: 18px;
    color: #111;
    background-color: #eef4ed;
    box-sizing: border-box;
    transition: 0.8s;
    border-radius: 10px
}

details+details {
    margin-top: 20px
}

details[open] {
    min-height: 10px;
    background-color: #eef4ed;
    transition: 0.8s
}

details p {
    color: #202020;
    font-weight: 200;
    border-left: 3px solid #058283;
    padding-left: 10px;
    font-size: 15px;
    font-family: 'Open Sans', sans-serif
}

summary {
    display: flex;
    justify-content: space-between;
    align-items: left;
    font-weight: 700;
    cursor: pointer;
    font-size: 15px;
    color: #058283;
    font-family: 'Open Sans', sans-serif
}

summary:focus {
    outline: none
}

summary:focus::after {
    content: "";
    height: 100%;
    width: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0
}

summary::-webkit-details-marker {
    display: none
}

.control-icon {
    fill: #058283;
    transition: 0.8s;
    pointer-events: none;
    padding-bottom: 10px
}

.control-icon-close {
    display: none
}

details[open] .control-icon-close {
    display: initial;
    transition: 0.8s
}

details[open] .control-icon-expand {
    display: none
}

@media (max-width:374px) {
    details {
        width: 100%
    }
}

@media (max-width:576px) {
    details {
        width: 100%
    }
}