.walkthrough-box {
    border-radius: 16px;
    border: 1px solid #1F2028;
    background: #13141A;
    padding: 32px;
    overflow: hidden;
    position: relative;
    transition: max-height 2s cubic-bezier(0.65, 0.05, 0.36, 1);
    max-height: 544px;
}

.walkthrough-box.expanded {
    transition: max-height 2s cubic-bezier(0.65, 0.05, 0.36, 1);
}

.walkthrough-fade {
    position: absolute;
    bottom: 0px;
    width: calc(100% - 48px);
    margin: 0 auto;
    left: 0px;
    right: 0;
    height: 200px;
    background: #13141A;
    background: linear-gradient(0deg, rgba(19, 20, 26, 1) 0%, rgba(19, 20, 26, 1) 50%, rgba(19, 20, 26, 0) 100%);
    pointer-events: none;
    z-index: 1;
    transition: opacity 2s ease;
    border-radius: 0;
}

.walkthrough-box.expanded .walkthrough-fade {
    opacity: 0;
}

button.walkthrough-toggle {
    padding: 8px !important;
    position: absolute;
    bottom: 32px;
    background: #1f2028 !important;
    z-index: 2;
    border-radius: 8px;
    border: 1px solid rgba(174, 177, 199, 0.10) !important;
    color: #aeb1c7 !important;
    margin: 0 auto !important;
    text-align: center;
    width: 160px;
    left: 50%;
    transform: translateX(-50%);
    transition: 0.3s all;
}

button.walkthrough-toggle:hover {
    border: 1px solid rgba(174, 177, 199, 0.25) !important;
    color: #FFFFFF !important;
}

.walkthrough-content {
    padding-bottom: 64px;
}

.walkthrough-box hr {
    border: none;
    border-top: 2px solid #1F2028;
    margin: 24px 0 !important;
}

.walkthrough-box h2,
.walkthrough-box h3,
.walkthrough-box h4,
.walkthrough-box h5,
.walkthrough-box h6 {
    color: #FFF;
    font-family: 'Lexend', sans-serif;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-top: 24px;
    margin-bottom: 12px;
}

.walkthrough-box h2 { font-size: 24px; }
.walkthrough-box h3 { font-size: 20px; }
.walkthrough-box h4 { font-size: 16px; }
.walkthrough-box h5 { font-size: 14px; }
.walkthrough-box h6 { font-size: 12px; }

.walkthrough-box h2:first-of-type,
.walkthrough-box h3:first-of-type,
.walkthrough-box h4:first-of-type,
.walkthrough-box h5:first-of-type,
.walkthrough-box h6:first-of-type {
    margin-top: 0;
}
