/* .step-title.active {
    font-family: "Gotham";
    font-weight: 600;
} */

.step-item {
    display: none;
}
.step-item.active {
    display: block;
}
.step-container {
    max-width: 500px;
    border: 1px solid #eee;
    padding: 20px;
    border-radius: 15px;
}
.step-container .step-title {
    font-size: 24px;
}
.niceselect {
    width: 100%;
    height: 50px;
    line-height: 50px;
}
.niceselect .list {
    width: 100%;
    max-height: 200px;
    overflow: auto;
}
select.niceselect.invalid + .nice-select {
    border-color: #d0021b !important;
    box-shadow: 0 0 5px -2px #d0021b;
}
.discount-info {
    font-size: 14px;
    margin-top: 20px;
    padding: 25px 35px;
    background: #fff1a6;
    border-radius: 40px;
    font-weight: 600;
}
.discount-info ul {
    margin: 0;
}

.grand-total {
    font-family: "Gotham";
    font-weight: 800;
    font-size: 28px;
}

.total-value {
    font-size: 24px;
}

.step-actions {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
}

.step-actions .payment-btn {
    display: none;
    width: 100%;
    background: #fff;
    color: #000;
    font-weight: bold;
    font-family: "Gotham";
}
.step-actions .payment-btn:hover {
    background: #225db3;
    color: #fff;
}

[data-step="4"] {
    background: #fdda26;
}
[data-step="4"] .step-actions .payment-btn {
    display: inline-block;
}
[data-step="4"] .step-actions .step-btn {
    display: none;
}

.step-actions .step-btn {
    background: #fdda26;
    padding: 10px;
    color: #fff;
    border-radius: 100%;
}
.step-actions .step-btn.hidden {
    visibility: hidden;
}

.payment-method label {
    display: inline-block;
    width: 100%;
    padding: 10px;
    border: 1px solid #eee;
    border-radius: 10px;
    box-sizing: border-box;
    cursor: pointer;
    transition: all 0.25s ease-in-out;
}
.payment-method.selected label {
    border-color: #007aff;
}

.payment-method.selected label,
.payment-method label:hover {
    background: #fafafa;
}

.consent-input label {
    display: flex;
    align-items: flex-start;
    gap: 5px;
}