.accordions {
    max-width: 504px;
    min-width: 312px;
    box-shadow: 0 2px 8px 0 rgba(32, 38, 36, 0.16);
    border-radius: 8px;
}

.accordion-item input {
    display: none;
}

.accordion-item label {
    display: flex;
    cursor: pointer;
    padding: 16px 24px;
    color: #162c2b;
    background-color: white;
    border-bottom: 1px solid rgb(217, 221, 219);
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 22px;
    letter-spacing: 0;
    text-align: left;
    height: 65px;
    box-sizing: border-box;
}

.accordion-item label > img {
    transform: rotate(0deg);
    transition: transform 400ms cubic-bezier(1, 0.38, 0, 0.73) 0s;
    margin-left: 16px;
    height: 16px;
    width: 16px;
}

.accordions :first-child label {
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.accordions :last-child label {
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    -webkit-transition: max-height 0.5s ease-in-out;
    -moz-transition: max-height 0.5s ease-in-out;
    -o-transition: max-height 0.5s ease-in-out;
    -ms-transition: max-height 0.5s ease-in-out;
    transition: max-height 0.5s ease-in-out;
    color: rgb(36, 38, 37);
    background-color: white;
}

[id^='accordion']:checked ~ .accordion-content {
    max-height: 100rem;
    border-bottom: 1px solid rgb(217, 221, 219);
}

[id^='accordion']:checked ~ label > img {
    transform: rotate(180deg);
}

[id^='accordion']:checked ~ label {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.element-content {
    margin: 16px 24px;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: 0;
    text-align: left;
}

.ripple {
    background-position: center;
    transition: background 0.8s;
}

.ripple:hover {
    background: rgb(239, 239, 239)
    radial-gradient(circle, transparent 1%, rgb(239, 239, 239) 1%) center/15000%;
}

.ripple:active {
    background-color: rgb(255, 255, 255);
    background-size: 100%;
    transition: background 0s;
}

.image-broken {
    margin: 48px auto !important;
    width: 143px;
    height: 117px;
}

.header {
    margin-bottom: 40px;
    font-style: normal;
    text-align: center;
    letter-spacing: 0;
}

.header > h2 {
    margin: 0 auto;
    font-size: 18px;
    font-weight: 600;
    line-height: 26px;
    margin-bottom: 7px !important;
    max-width: 296px;
    text-align: center;
}

.header > p {
    margin: 0 auto;
    max-width: 296px;
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    text-align: center;
}

.inside-title {
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    letter-spacing: 0;
    text-align: left;
}

.container-accordions {
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding: 0 24px 150px 24px;
    align-items: center;
}

.link,
.link:visited,
.link:hover,
.link:active {
    color: rgb(7, 157, 86);
}
