body{
    overflow: auto !important;
}

.main{
    min-height: 100vh;
}

.nlens-card-1 {
    display: flex;
    flex-direction: column;
    background: var(--neutral-1);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    max-width: 500px;
    width: 100%;
    margin: auto;
}

.store-list-card{
    height: 500px;
}

@media (max-width: 576px) {

    body{
        background-color: var(--neutral-1);
    }
    
    .nlens-card-1{
        justify-content: center;
        height: 100%;
        max-width: 100%;
        margin: 0;
        box-shadow: unset;
        border-radius: unset;
        padding: 2rem 1rem;
    }

}

.logo-onbrd{
    max-width: 140px;
}

.divider {
    display: flex;
    align-items: center;
    text-align: center;
}

.divider::before,
.divider::after {
    content: "";
    flex: 1;
    border-bottom: 1px solid #dee2e6;
}

.divider::before {
    margin-right: .75rem;
}

.divider::after {
    margin-left: .75rem;
}

.stores_list {
    flex: 1;
    overflow: auto;
}

.stores_list .store{
    padding: 1rem;
    border: 1px solid var(--border-color);
    border-radius: 12px;
}

.stores_list .store:not(:last-child) {
    margin-bottom: .5rem;
}

.store-initial {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 3.5rem;
    min-height: 3.5rem;
    border: 1px solid var(--primary-color);
    border-radius: 12px;
    background-color: var(--primary-color);
    color: var(--white-color);
}

