body {
    background: #f5f5f5;
}

main {
    margin-top: unset;
}

.tree-container {
    max-width: 340px;
    padding: 48px 24px;
    margin: 0 auto;
    text-align: center;
    background: #fff;
}

.tree-container .tree-header {
    margin-bottom: 48px;
}

.tree-container .tree-header > a {
    display: block;
}

.tree-container .tree-header > a > img {
    width: 88px;
    height: 88px;
    object-fit: contain;
}

.tree-container .tree-header > h1 {
    color: #404040;
    text-align: center;
    font-family: 'Metropolis', sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 28px; /* 140% */
    letter-spacing: 0.4px;
    display: flex;
    gap: 0 8px;
    margin: 0 0 16px 0;
    padding: 0;
    align-items: center;
    justify-content: center;
}

.tree-container .tree-header > h1 > img {
    width: 16px;
    height: 16px;
    object-fit: contain;
}

.tree-body label.tree-info {
    color: #0A0A0A;
    text-align: center;
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    display: block;
    margin-bottom: 24px;
}

.tree-body .tree-item {
    padding: 18px 16px;
    gap: 0 4px;
    border-radius: 24px;
    border: 2px solid rgba(181, 227, 225, 0.75);
    backdrop-filter: blur(6px);
    cursor: pointer;
    margin-bottom: 24px;
}

.tree-body .tree-item > .tree-item-header {
    display: flex;
    gap: 0 4px;
    align-items: center;
}

.tree-body .tree-item > .tree-item-header > img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    flex: 0;
}

.tree-body .tree-item > .tree-item-header > i {
    transition: all 0.2s linear;
    transform-origin: center;
}

.tree-body .tree-item > .tree-item-header > label {
    font-family: 'Open Sans', sans-serif;
    color: #292929;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px; /* 150% */
    flex: 1;
    text-align: left;
    cursor: pointer;
}

.tree-body .tree-item > figure {
    height: 0;
    overflow: hidden;
    margin: 0;
    transition: all 0.2s linear;
}

.tree-body .tree-item.expand > figure {
    height: 254px;
    margin-top: 24px;
}

.tree-body .tree-item.expand > .tree-item-header > i {
    transform: rotate(90deg);
}

.tree-body .tree-item > figure > img {
    width: 100%;
    border-radius: 8px 8px 0 0;
}

.tree-body .tree-item > figure > figcaption > a {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 16px 24px;
    color: #fcfcfc;
    background: #141414;
    /* Text sm/Semibold */
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px; /* 142.857% */
    border-bottom: 1px solid #404040;
    align-items: center;
}

.tree-body .tree-item > figure > figcaption > a:last-child {
    border-radius: 0 0 8px 8px;
}