.wedding-template-collapse-item {
    margin-bottom: 10px;
    border-radius: 4px;
    overflow: hidden;
}

.wedding-template-collapse-header {
    padding: 24px 0;
    cursor: pointer;
    font-weight: bold;
    border-bottom: 1px solid rgba(7, 7, 7, 0.40);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.wedding-template-collapse-item-content {
    padding: 0;
    color: #070707;
    font-family: "Merriweather Sans";
    font-size: 24px;
    font-style: normal;
    font-weight: 300;
    line-height: 40px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition:
            max-height 0.3s ease-in-out,
            opacity 0.3s ease-in-out,
            padding 0.2s ease-in-out;
}

.wedding-template-collapse-item-content.active {
    max-height: 100px;
    opacity: 1;
    padding: 38px 0 64px 0;
}

.wedding-template-collapse-header-text {
    font-family: Cormorant;
    color: #070707;
    font-size: 48px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}