.stepper-wrapper {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.stepper-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.stepper-item::before {
    position: absolute;
    content: "";
    border-bottom: 2px solid #29283B;
    width: 100%;
    top: 20px;
    left: -50%;
    z-index: 2;
}

.stepper-item::after {
    position: absolute;
    content: "";
    border-bottom: 2px solid #29283B;
    width: 100%;
    top: 20px;
    left: 50%;
    z-index: 2;
}

.stepper-item .step-counter {
    position: relative;
    z-index: 5;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #29283B;
    color: #fff;
    margin-bottom: 6px;
    box-shadow: inset 0 -5px 45px rgba(100, 100, 100, 0.2), 0 1px 1px rgba(255, 255, 255, 0.2);
    -webkit-transition: box-shadow 0.5s ease;
    -moz-transition: box-shadow 0.5s ease;
    -o-transition: box-shadow 0.5s ease;
    -ms-transition: box-shadow 0.5s ease;
    transition: box-shadow 0.5s ease;
    font-family: "Prompt", sans-serif !important;
    border: 1px solid rgba(0, 0, 0, 0.3);
}

.stepper-item.active {
    font-weight: bold;
}

.stepper-item.active .step-counter {
    box-shadow: inset 0 -5px 45px rgba(100, 100, 100, 0.4), 0 1px 1px rgba(255, 255, 255, 0.2);
}

.stepper-item.completed .step-counter {
    background-color: #0177FC;
    box-shadow: inset 0 -5px 45px rgba(100, 100, 100, 0.2), 0 1px 1px rgba(255, 255, 255, 0.2);
}

.stepper-item.completed::after {
    position: absolute;
    content: "";
    border-bottom: 2px solid #0177FC;
    width: 100%;
    top: 20px;
    left: 50%;
    z-index: 3;
}

.stepper-item:first-child::before {
    content: none;
}

.stepper-item:last-child::after {
    content: none;
}

.step {
    display: none;
}

.step.active {
    display: block;
}

.step label {
    color: white;
}


.bank-info {
    width: 100%;
    cursor: pointer;
}

.bank-info .image {
    width: 60px;
    /* border: 2px solid #fff; */
    border-radius: 10px;
    overflow: hidden;
    margin: auto;
    /* background: #fff; */
}

.bank-info .image img {
    filter: drop-shadow(0 0 0px white) invert(0%);
    transition: all 0.3s;
}

.bank-info:hover .image img {
    filter: drop-shadow(0 0 4px white) invert(0%);
}

.bank-info.selected .image {
    border-color: #3BE41F;
}

.bank-info .image img {
    width: 100%;
}

.bank-info .name {
    text-align: center;
    color: white;
    margin-top: 5px;
    flex-wrap: wrap;
    line-height: 1;
}

.bank-list {
    width: 500px;
    height: 500px;
    overflow-y: auto;
    max-width: 100%;
}

.register-form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media only screen and (max-width: 500px) {
    .bank-list {
        width: 350px;
    }
}

@media only screen and (max-width: 350px) {
    .bank-list {
        width: 100%;
    }
}



.mobile-sidebar.show .sidebar {
    left: 0
}

.bank-list::-webkit-scrollbar {
    height: 4px;
    width: 4px
}

.bank-list::-webkit-scrollbar,
.bank-list::-webkit-scrollbar-thumb,
.bank-list::-webkit-scrollbar-track {
    background-color: transparent
}

.bank-list::-webkit-scrollbar {
    background-color: rgba(13, 19, 28, .8);
    border-radius: 2px
}

.bank-list::-webkit-scrollbar-thumb {
    background-color: #1074e5;
    border-radius: 2px
}

.bank-list::-webkit-scrollbar-thumb:hover {
    background-color: #202735;
}

.two-lines {
    display: -webkit-box;
    max-width: 100%;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}