.signup_container .input_checkbox_wrap:not(:last-of-type) {
    margin-bottom: 16px;
}

.edk_WAI.checkbox.login_type+label {
    color: var(--error-color);
}

.edk_WAI.checkbox.login_type+label:before {
    background-image: url("/static/app_www/base/img/icon_checkbox_default_red.png");
}

.edk_WAI.checkbox.login_type:checked+label:before {
    background-image: url("/static/app_www/base/img/icon_checkbox_active_red.png");
}

.driver_banner {
    background-color: #FBF8FF;
    padding: 120px 0 200px;
}

.driver_banner .banner_title {
    font-size: 30px;
    text-align: center;
    margin-bottom: 50px;
    font-weight: 700;
}

.driver_banner .store_list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

.driver_banner .store_list .list_item {
    width: 100%;
    max-width: 158px;
    display: flex;
}

@media screen and (max-width:767px) {
    .driver_banner {
        padding: 50px 0;
    }

    .driver_banner .banner_title {
        font-size: 20px;
        margin-bottom: 30px;
    }

    .driver_banner .store_list .list_item {
        max-width: 120px;
    }
}