.wizard-head {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
}

.wizard-body {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}

.wizard-title {
    background: #FFFFFF;
    box-shadow: 0px 6px 25px 2px rgba(5, 84, 242, 0.04);
    border-radius: 66px 66px 0px 66px;
    padding: 20px 30px 16px 79px;
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    width: max-content;
}

.wizard-head .icon {
    margin-bottom: auto;
}

.wizard-title a {
    color: #6832FF;
}

.wizard-content {
    /* padding: 20px 30px 16px 79px;*/
}

.wizard-footer {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.wizard-side {
    position: relative;
    display: flex;
    height: 100%;
    width: 100%;
    text-align: left;
    flex-direction: column;
    justify-content: flex-end;
}

.wizard-splitter {
    background-image: url('/images/arts/line.png');
    display: block;
    width: 100%;
    height: 1px;
    height: 1px;
}

.filter-head {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
}

.filter-body {
    display: flex;
    flex-direction: row;
    gap: 20px;
    width: 100%;
    background: #F8F6FF;
    border-radius: 66px 66px 0px 66px;
    padding: 0 0 0 50px;
    flex-wrap: wrap;
}

.filter-body .title {
    background: #FFFFFF;
    box-shadow: 0px 6px 25px 2px rgba(5, 84, 242, 0.04);
    border-radius: 66px 66px 0px 66px;
    padding: 20px 30px 16px 79px;
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    flex: 1.5;
}

.filter-head .icon {
    margin-bottom: auto;
}

.filter-body .holder {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    padding: 10px;
    flex: 1;
    justify-content: center;
}

.filter-body .holder .property {
    display: flex;
    flex-direction: row;
    gap: 10px;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.filter-body .holder .property span {
    background: #FFFFFF;
    box-shadow: 0px 6px 25px 2px rgba(5, 84, 242, 0.04);
    background: #FDFDFD;
    border-radius: 5px;
    padding: 10px 20px;
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    white-space: nowrap;
}

.filter-body .holder .action {
    padding: 0 20px;
}

.filter-body .holder button {
    border: 1px solid #6832FF;
    border-radius: 6px;
    width: 100%;
    padding: 5px 20px;
    color: #6832FF;
    font-weight: 500;
    background: transparent;
    font-size: 16px;
}

.filter-item {
    background: #FFFFFF;
    /* Gray 5 */
    border: 1px solid #E0E0E0;
    /* 12 */
    box-shadow: 0px 6px 25px 2px rgba(104, 50, 255, 0.03);
    border-radius: 20px;
    margin-bottom: 5px;
    padding: 15px 15px 5px;
    display: flex;
}

.filter-item .title {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.filter-item .title h4 {
    font-size: 18px;
}

.filter-item .title .rate {
    display: flex;
    flex-direction: row;
    gap: 10px;
}

.star {
    display: inline-flex;
    flex-direction: row-reverse;
    gap: 10px;
}

.filter-item .title .cap {
    color: #34CC33;
}

.filter-item .info {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    justify-content: center;
}

.filter-item .info a {
    width: 100%;
}

.filter-item .info ul {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
}

.filter-item .info ul li {
    padding-right: 5px;
}

.filter-item .info ul li::before {
    content: "\2022";
    /* Add content: \2022 is the CSS Code/unicode for a bullet */
    color: #6832FF;
    /* Change the color */
    font-weight: bold;
    /* If you want it to be bold */
    display: inline-block;
    /* Needed to add space between the bullet and the text */
    font-size: 18px;
    width: 6px;
    /* Also needed for space (tweak if needed) */
    margin-left: 10px;
    /* Also needed for space (tweak if needed) */
}

.filter-item .price {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    justify-content: center;
}

.filter-item .price .penalty {
    color: #EB5757;
    font-size: 12px;
}

.filter-item .price .payable {
    display: flex;
    flex-direction: row;
    gap: 5px;
    align-items: center;
    justify-content: center;
}

.filter-item .price .payable h4 {
    font-size: 20px;
}

.filter-item .price .payable h5 {
    font-size: 14px;
}

.filter-box {
    background: #FFFFFF;
    border: 1px solid #BDBDBD;
    border-radius: 20px;
    padding: 20px 25px;
    zoom: 0.8;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
    font-size: 18px;
}

.filter-box h5 {
    font-size: 16px;
    color: #34CC33;
    font-weight: 500;
}