.seller-types-container {
    padding: 30px 72px;
    border: solid 1px #e7e7e7;
    margin: 20px auto;
    max-height: max-content;
    height: auto;
    position: relative;
    border-radius: 8px;
    background-color: #ffffff;
    flex-direction: column;
    transition: width .1s;
    overflow: auto;
    letter-spacing: -0.25px;
    box-sizing: border-box;
    font-family: 'Inter', -apple-system, system-ui, sans-serif, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol" !important;
    box-shadow: 0 3px 8px #00000029;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 18px;
}

.seller-types-container .seller-type-cards {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
    width: 100%;
}

.seller-types-container .seller-type-cards .seller-card {
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 170px;
    padding: 20px 10px;
    box-shadow: 0 0 5px #00000030;
    border-radius: 6px;
    width: calc(25% - 9px);
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.15s;
}

.seller-types-container .seller-type-cards .seller-card:hover {
    border: 2px solid #f66d00;
}

.seller-types-container .seller-type-cards .seller-card.selected {
    border: 2px solid #f66d00;
}

.seller-types-container .seller-type-cards .seller-card img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.seller-types-container .seller-type-cards .seller-card h2 {
    font-size: 14px;
    font-weight: 600;
    margin: 0;
}

.seller-types-container .seller-type-cards .seller-card p {
    margin: 0;
}

.seller-types-container .seller-type-selected .seller-card {
    display: flex;
    gap: 12px;
    width: 100%;
}

.seller-types-container .seller-type-selected .seller-card .seller-type-info {
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 20px 10px;
    flex-shrink: 0;
    min-width: 20%;
}

.seller-types-container .seller-type-selected .seller-card .seller-type-content {
    padding: 20px 30px;
    border-radius: 6px;
    width: 100%;
    font-size: 14px;
    background: #f3f3f3;
}

.seller-types-container .seller-type-selected .seller-card img {
    width: 140px;
    height: 140px;
    object-fit: contain;
}

.seller-types-container .seller-type-selected .seller-card h2 {
    font-size: 22px;
    font-weight: 600;
    margin: 0;
}

.seller-types-container .seller-type-selected .seller-card p {
    margin: 0;
}

.seller-type-selected {
    width: 100%;
}

@media only screen and (max-width: 992px) {
    .seller-types-container .seller-type-selected .seller-card {
        flex-wrap: wrap;
    }

    .seller-types-container .seller-type-selected .seller-card .seller-type-info {
        padding: 6px;
        width: 100%;
    }

    .seller-types-container .seller-type-selected .seller-card .seller-type-content {
        padding: 0;
        background-color: #fff;
    }

    .seller-types-container {
        padding: 16px;
    }

    .seller-types-container .seller-type-cards .seller-card {
        width: calc(50% - 6px);
    }
}


/** DARK THEME **/
body.dark-theme .seller-type-content span,
body.dark-theme .seller-type-content strong {
    color: #fff !important;
}

body.dark-theme .seller-types-container {
    background-color: #212630;
}

body.dark-theme .seller-types-container .seller-type-cards .seller-card,
body.dark-theme .seller-types-container .seller-type-selected .seller-card .seller-type-content {
    background-color: #171a21;
}

body.dark-theme .seller-types-container {
    border-color: #323948 !important;
}

body.dark-theme .seller-type-content span,
body.dark-theme .seller-type-content strong {
    background-color: transparent !important;
}

