.to_steps_wrap {
    width: 100%;
    max-width: 380px;
    color: #fff;
    padding: 20px 10px;
    margin: 0 auto;
    background: rgba(23, 23, 23, 0.4);
    -webkit-backdrop-filter: blur(70px);
    backdrop-filter: blur(70px);
    border-radius: 40px;
}

.to_steps_title {
    font-size: 14px;
    text-align: center;
    margin-bottom: 20px;
}


.to_steps_list {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 470px;
    border-radius: 40px;
    overflow: hidden;
}

.to_steps_item {
    position: absolute;
    left: 0;
    bottom: 0;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    padding: 2rem 3rem;
    background: rgba(255, 255, 255, 0.2);
    -webkit-backdrop-filter: blur(70px);
    backdrop-filter: blur(70px);
    border-radius: 40px 40px 0 0;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.to_steps_item[data-num='0'] {
    top: var(--to-steps-item-top-0);
}

.to_steps_item[data-num='1'] {
    top: var(--to-steps-item-top-1);
}

.to_steps_item[data-num='2'] {
    top: var(--to-steps-item-top-2);
}

.to_steps_item[data-num='3'] {
    top: var(--to-steps-item-top-3);
}

.to_steps_item[data-num='4'] {
    top: var(--to-steps-item-top-4);
}

.to_steps_item[data-num='5'] {
    top: var(--to-steps-item-top-5);
}

.to_steps_item[data-num='6'] {
    top: var(--to-steps-item-top-6);
}

.to_steps_item[data-num='7'] {
    top: var(--to-steps-item-top-7);
}

.to_steps_item[data-num='8'] {
    top: var(--to-steps-item-top-8);
}

.to_steps_list.open .to_steps_item:not(.active) {
    transform: translateY(100%);
}

.to_steps_list.open .to_steps_item.active {
    top: 0;
}

.to_steps_item_title_wrap {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    gap: 10px;
}

.to_steps_item_title {
    font-family: 'Copyright Bolditalic Studio Arha Trial', sans-serif !important;
    font-size: 15px;
    line-height: 1;
    font-weight: 400;
}

.to_steps_item_title_icon {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    width: 25px;
    min-width: 25px;
    height: 25px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    -webkit-backdrop-filter: blur(35px);
    backdrop-filter: blur(35px);
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    cursor: pointer;
}

.to_steps_item_title_icon:hover {
    background: var(--theme-color-orange);
}

.to_steps_item.active .to_steps_item_title_icon {
    background: var(--theme-color-orange);
}

.to_steps_item_title_icon svg {
    width: 60%;
    height: auto;
}

.to_steps_item_title_icon svg.minus {
    display: none;
}

.to_steps_item.active .to_steps_item_title_icon svg.plus {
    display: none;
}

.to_steps_item.active .to_steps_item_title_icon svg.minus {
    display: block;
}

.to_steps_item_text {
    display: none;
    font-size: 14px;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.to_steps_item.active .to_steps_item_text {
    display: block;
}

.to_steps_item_button_wrap {
    display: block;
    font-size: 14px;
    text-align: center;
    padding: 6px 10px;
    background: rgba(255, 255, 255, 0.2);
    -webkit-backdrop-filter: blur(70px);
    backdrop-filter: blur(70px);
    border-radius: 40px;
    margin-top: 20px;
}

.to_steps_button {
    color: inherit;
    border: none;
    background: transparent;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.to_steps_button:hover {
    color: var(--theme-color-orange);
}

.to_steps_link {
    font-size: 12px;
    text-align: center;
    margin-top: 3px;
}

.to_steps_link a {
    color: inherit;
    opacity: 0.5;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.to_steps_link a:hover {
    color: var(--theme-color-orange);
    opacity: 1;
}

@media all and (max-width: 991px){
    .to_steps_item {
        padding: 2rem 1rem;
    }
}