@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    --poppins: 'Poppins', sans-serif;
    --pass-primary: #083EA1;
    --pass-primary-dark: #063388;
    --pass-secondary: #009DD8;
    --pass-danger: #DC2127;
    --pass-danger-dark: #c41117;
    --pass-success: #45B500;
    --pass-black: #131313;
    --pass-black-shade: #3D3D3D;
    --pass-grey: #909090;
    --pass-grey-2: #C8C8C8;
    --pass-box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.05);
}

#account-pass {
    font-family: var(--poppins);
    font-size: 16px;
    width: 100%;
    min-height: 100vh;
    background: url(./../account-and-passes-assets/main-body-bg.png);
    background-position: top center;
    background-attachment: fixed;
    background-size: cover;
    background-repeat: no-repeat;
}

.error {
    color: var(--pass-danger);
}

#account-pass h1,
#account-pass h2,
#account-pass h3,
#account-pass h4,
#account-pass h5,
#account-pass h6,
#account-pass p,
#account-pass a,
#account-pass span,
#account-pass button,
#account-pass div {
    font-family: var(--poppins) !important;
}

.link_terms_agree,
a {
    font-size: 16px;
    text-decoration: none;
    color: var(--pass-black);
}

.link_terms_agree {
    color: var(--pass-primary);
}

label {
    font-size: 16px;
    font-weight: 500;
    color: var(--pass-black);
    margin-bottom: 5px;
}

.form-control {
    padding: 10px 13px;
    border-radius: 10px;
    box-shadow: none;
    background: #ffffff;
    border: 1.5px solid #909090;
    box-shadow: 0 0 10px #f9f9f9 !important;
}

.form-select {
    padding: 10px 10px;
    border-radius: 10px;
    box-shadow: none;
    border: 1.5px solid #909090;
    box-shadow: 0 0 10px #f9f9f9 !important;
}

.password_wrap {
    position: relative;
}

.password_wrap .eye_btn {
    position: absolute;
    right: 10px;
    font-size: 20px;
    color: var(--pass-black-shade);
    background: none;
    border: none;
    top: 10px;
}

.password_wrap .eye_btn .eyeslash {
    display: none;
}

.password_wrap .eye_btn.active .eyeslash {
    display: block;
}

.password_wrap .eye_btn.active .eye {
    display: none;
}

.password_validator {
    opacity: 0;
    position: absolute;
    z-index: 9;
    padding: 10px;
    width: 100%;
    background: #fff;
    box-shadow: 0px 4px 10px #ddd;
    border-radius: 10px;
    transition: 0.5s ease;
    pointer-events: none;
}

#password2:focus~.password_validator,
#password:focus~.password_validator {
    opacity: 1;
}

.password_validator ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.password_validator h6 {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 2px;
}

.password_validator ul li {
    font-size: 14px;
    color: var(--pass-black-shade);
}

.password-validate-item .icon span:first-child {
    display: none;
}

.password-validate-item.valid .icon span:last-child {
    display: none;
}

.password-validate-item.valid .icon span:first-child {
    display: block;
}

.form-control:focus {
    border-color: var(--pass-primary);
}

.form-control::placeholder {
    color: #909090;
}

.text-muted {
    color: var(--pass-grey) !important;
}

.btn_primary {
    background: var(--pass-primary);
    border-color: var(--pass-primary);
    font-size: 18px;
    font-weight: 400;
    cursor: pointer;
    transition: 0.5s ease;
    border-radius: 8px;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 150px;
    max-width: 150px;
}

.btn_phone_code {
    background: var(--pass-primary);
    border-color: var(--pass-primary);
    color: #fff;
    z-index: 9;
}

.btn_number {
    background: transparent;
    border: transparent;
    color: #fff;
}

.btn_danger {
    background: var(--pass-danger);
    border-color: var(--pass-danger);
    font-size: 18px;
    font-weight: 400;
    cursor: pointer;
    transition: 0.5s ease;
    border-radius: 8px;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 150px;
    max-width: 150px;
}

.btn_danger:hover {
    background: var(--pass-danger-dark);
    border-color: var(--pass-danger-dark);
}

.btn_primary:hover {
    background: var(--pass-primary-dark);
    border-color: var(--pass-primary-dark);
}

.btn_primary:disabled {
    background: var(--pass-primary);
    border-color: var(--pass-primary);
    opacity: 0.4;
}

.btn__next__step {
    position: absolute;
    bottom: 35px;
    right: 40px;
}

.btn_save_and_exit {
    position: absolute;
    bottom: 35px;
    left: 40px;
}

.fleet_logo span:first-child {
    color: var(--pass-primary);
}

.fleet_logo span:last-child {
    color: var(--pass-secondary);
}

.side_menu_wraper {
    position: fixed;
    display: flex;
    height: 100vh;
    top: 0;
    left: 50px;
    align-items: center;
}

.side_menu_wraper ul {
    display: inline-flex;
    flex-direction: column;
    gap: 25px;
    list-style-type: none;
    padding: 0;
}

.side_menu_wraper.driver_signup ul {
    gap: 32px;
}

.side_menu_wraper .side_menuItem {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    line-height: 1;
    font-weight: 500;
    color: var(--pass-black);
}

.side_menu_wraper .side_menuItem a {
    display: flex;
    gap: 5px;
}

.side_menu_wraper .side_menuItem.active {
    color: var(--pass-primary);
}

.side_menu_wraper .side_menuItem .circle {
    position: relative;
    display: block;
    width: 15px;
    height: 15px;
    background: var(--pass-grey-2);
    border-radius: 50px;
}

.side_menu_wraper .side_menuItem .active .circle,
.side_menu_wraper .side_menuItem .done .circle,
.side_menu_wraper .side_menuItem.active .circle {
    background: var(--pass-primary);
}

.side_menu_wraper .side_menuItem .circle::after {
    content: '';
    display: block;
    background: var(--pass-grey-2);
    width: 2px;
    height: 16px;
    position: absolute;
    left: 6px;
    top: 150%;
}

.side_menu_wraper .side_menuItem:last-child .circle::after {
    display: none;
}

.side_menu_wraper .side_menuItem .active .circle::after,
.side_menu_wraper .side_menuItem .done .circle::after,
.side_menu_wraper .side_menuItem.active .circle::after {
    background: var(--pass-primary);
}

.side_menu_wraper .side_menuItem .circle.last::after {
    display: none;
}

/* Header Part */
#account-pass header .header-wraper {
    display: flex;
    align-items: center;
    max-height: 100px;
    padding: 25px 0px;
    justify-content: space-between;
}

#account-pass header .header-wraper .header_left .header_logo {
    width: 150px;
    height: auto;
}

#account-pass header .header-wraper .header_right .account_pass_drop {
    display: flex;
    gap: 10px;
}

.header_right .account_pass_drop .pass_drop {
    font-family: var(--poppins);
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--pass-black);
    font-weight: 400;
}



.header_right .account_pass_drop .pass_drop .acc_drop_left {
    display: flex;
    align-items: center;
    gap: 5px;
}

.header_right .account_pass_drop .pass_drop::after {
    display: none;
}

#header.actived_header {
    backdrop-filter: blur(10px);
    background: #eeeff11c;
}

/* Main */
main.pass_main {
    padding-top: 100px;
    min-height: calc(100vh - 120px);
    margin-bottom: 15px;
}

/* Footer CSS */
.footer_wraper .footer_links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px 20px;
    margin-bottom: 10px;
}

.footer_wraper .footer_links .foo_link {
    font-size: 16px;
    color: var(--pass-black);
    font-weight: 400;
    cursor: pointer;
    transition: 0.5s ease;
}

.footer_wraper .footer_links .foo_link:hover {
    color: var(--pass-primary);
}

/* Explore */
.card_pass {
    padding: 20px;
    border-radius: 35px;
    border: none;
    box-shadow: var(--pass-box-shadow);
    overflow: auto;
}

.explore_content h3 {
    font-size: 32px;
    font-weight: 600;
    color: var(--pass-black);
    line-height: normal;
    margin-bottom: 10px;
}

.explore_content p {
    font-size: 16px;
    color: var(--pass-black-shade);
    font-weight: 400;
    margin-bottom: 20px;
}

.explore-radio {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 75%;
}

.explore-radio .radio__item {
    display: flex;
    gap: 10px;
    padding: 10px;
    border: 1px solid #C6C6C6;
    border-radius: 10px;
    cursor: pointer;
}

.explore-radio .radio__item>input {
    display: none;
}

.explore-radio .radio__item .round {
    width: 30px;
    height: 30px;
    background-color: transparent;
    border: 1px solid var(--pass-grey);
    border-radius: 50px;
    pointer-events: none;
}

.explore-radio .radio__item .radio_text {
    font-size: 20px;
    color: var(--pass-black);
    font-weight: 500;
    pointer-events: none;
}

.explore-radio .radio__item.activeItem {
    border-color: #005AFF;
}

.explore-radio .radio__item.activeItem .round {
    border-color: #005AFF;
    background: #005AFF;
}

/* Account page */
.pass_main .page_title {
    text-align: center;
}

.pass_main .page_title h3 {
    font-size: 28px;
    color: var(--pass-black);
    font-weight: 600;
    text-align: center;
    margin-bottom: 15px;
}

.pass_main .page_title .account_type {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.pass_main .page_title .account_type .accountType {
    font-size: 20px;
    font-weight: 500;
    color: #444444;
    display: flex;
    gap: 10px;
    align-items: center;
    cursor: pointer;
}

.pass_main .page_title .account_type .accountType input {
    background: none;
}

.pass_main .page_title .account_type .accountType input[type='radio']:after {
    content: '';
    position: relative;
    display: block;
    width: 18px;
    height: 18px;
    border: 1px solid var(--pass-primary);
    background: #f3f3f3;
    border-radius: 50px;
    top: -1px;
    left: -1px;
}

.pass_main .page_title .account_type .accountType input[type='radio']:checked:after {
    background: var(--pass-primary) !important;
}

.pass_main .page_title .account_type .accountType input[type='radio']:checked~.label_txt {
    color: var(--pass-black);
}

#accountForm {
    min-height: 50vh;
}

.details_title h3 {
    font-size: 28px;
    font-weight: 600;
    color: var(--pass-black);
}

.details_title p {
    font-size: 16px;
    color: var(--pass-black-shade);
    font-weight: 400;
}

.details_wrap h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--pass-black);
}

.btn_verify_email {
    display: flex;
    align-items: center;
    gap: 5px;
    background: var(--pass-primary);
    padding: 8px 15px;
    border-color: var(--pass-primary);
    margin-top: 8px;
}

.btn_verify_email span:first-child {
    font-size: 18px;
}

.digit-group input[type=number] {
    width: 40px;
    height: 40px;
    background-color: #ffffff;
    border: solid 1px #000000;
    border-radius: 2px;
    line-height: 40px;
    text-align: center;
    font-size: 15px;
    font-weight: 200;
    margin: 0 5px;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.btns_signature {
    display: inline-flex;
    flex-direction: column;
    margin-bottom: 15px;
}

.btn-Check {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    height: 40px;
}

.hide {
    display: none;
}

#address tbody tr {
    margin-bottom: 10px;
}

.input_address_search {
    background: var(--pass-primary);
    border-color: var(--pass-primary);
    font-size: 20px;
    color: #fff;
    z-index: 9;
}

#signupForm .actions.clearfix ul {
    list-style: none;
    padding: 0px;
    display: flex;
    justify-content: space-between;
    margin: 20px 0px;
}

#signupForm .actions.clearfix ul li a {
    background: var(--pass-primary);
    border-color: var(--pass-primary);
    color: #fff;
    font-size: 18px;
    font-weight: 400;
    cursor: pointer;
    transition: 0.5s ease;
    border-radius: 8px;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 150px;
    max-width: 150px;
}

#signupForm .actions.clearfix ul li:first-child a {
    background: var(--pass-danger);
}

.btn.sw-btn.sw-btn-next.disabled {
    display: none;
}

.side_menuItem .txt {
    font-size: 14px !important;
    color: var(--pass-black);
    line-height: 1;
}


.active .txt,
.done .txt {
    color: var(--pass-primary);
}

.btn.sw-btn {
    background: var(--pass-primary) !important;
    border-color: var(--pass-primary) !important;
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    cursor: pointer;
    transition: 0.5s ease;
    border-radius: 8px;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100px;
    max-width: 150px;
}

#btnFinish:disabled {
    display: none;
}

.sw-toolbar-elm.toolbar.toolbar-bottom {
    display: flex;
    justify-content: space-between;
    margin: 10px 100px;
}

.nav.steps_5 {
    display: none;
}

.signature_wraper {
    display: grid;
    grid-template-columns: 300px 1fr;
    align-items: center;
}

.thankyou_wraper {
    padding: 30px 0px;
    text-align: center;
}

.thank-you-img img {
    width: 270px;
}

.thank-you-img img {
    margin-bottom: 20px;
}

.username h2 {
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 15px;
}

.checked_box {
    padding: 25px 15px;
    border: 1px solid #B7DCF6;
    background: #FAFAFA;
    border-radius: 15px;
    margin-bottom: 20px;
}

.checked_box h5 {
    font-size: 18px;
    color: #7F7F7F;
    margin-bottom: 5px;
}

.checked_box h2 {
    font-size: 30px;
    text-transform: uppercase;
    color: #1463B3;
    margin-bottom: 15px;
    font-weight: 600;
}

.checked_box p {
    font-size: 14px;
    margin-bottom: 0px;
}

.footer_logo a {
    display: block;
    margin-bottom: 10px;
}

.footer_logo a>img {
    width: 200px;
}

.lang__dropdwon .lang__menu {
    min-width: 230px;
    padding: 10px 10px;
    border-radius: 10px;
    border: none !important;
    box-shadow: 0 0 10px #28282833;
}

.lang__dropdwon .lang__menu .lang_sep {
    display: grid;
    gap: 6px;
    font-size: 14px;
    font-weight: bold;
    margin: 5px 0px;
    color: #000;
    grid-template-columns: auto 1fr;
    align-items: center;
}

.lang__dropdwon .lang__menu .lang_sep span:first-child {
    flex-grow: 1;
}

.lang__dropdwon .lang__menu .lang_sep .line__sep {
    height: 1px;
    background: #ddd;
    width: 100%;
}

.lang__dropdwon .lang__menu .dropdown-item {
    font-size: 14px;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.2s;
}

.lang__dropdwon .lang__menu .dropdown-item:hover {
    background: var(--primary-color);
    color: var(--white-color);
}

.autocomplete-error,
#autocomplete-error {
    position: absolute;
    bottom: -56px;
}

#txtPhoneM-error {
    position: absolute;
    bottom: -60px;
}

.sw>.tab-content>.tab-pane{
    padding: 0px;
}
@media only screen and (max-width:1700px) {
    .explore-radio {
        gap: 10px;
    }

    .explore-radio {
        width: 90%;
    }

    .explore-radio .radio__item {
        padding: 8px;
    }

    .explore-radio .radio__item .round {
        width: 25px;
        height: 25px;
    }

    .explore-radio .radio__item .radio_text {
        font-size: 18px;
    }

    .explore_content h3,
    .pass_main .page_title h3 {
        font-size: 25px;
    }

    .pass_main .page_title .account_type .accountType {
        font-size: 18px;
    }

    .side_menu_wraper {
        left: 20px;
    }

    .side_menu_wraper ul {
        gap: 20px;
    }

    .side_menu_wraper .side_menuItem {
        font-size: 16px;
    }

    .side_menu_wraper .side_menuItem>a {
        display: flex;
        gap: 10px;
    }

    .side_menu_wraper .side_menuItem .circle::after {
        height: 10px;
    }

    .card.card_pass {
        width: 85%;
        margin: 0 auto;
    }

    .side_menu_wraper .side_menuItem .circle::after {
        top: 130%;
    }

    .details_title h3 {
        font-size: 24px;
        margin-bottom: 3px;
    }

    .details_wrap h4,
    .card h4 {
        font-size: 18px;
    }

    .explore_content p,
    .details_title p {
        font-size: 14px;
    }

    .details_wrap .row .col-lg-9 {
        width: 100%;
    }

    .form-control,
    label {
        font-size: 14px;
    }
}

@media only screen and (max-width:1400px) {
    .card.card_pass {
        width: 80%;
        margin: 0 auto;
    }

    .side_menu_wraper .side_menuItem .circle::after {
        height: 22px;
    }

    .explore-radio {
        margin-bottom: 25px;
    }

    .btn_save_and_exit,
    .btn__next__step {
        bottom: 23px;
    }

    .btn_save_and_exit {
        left: 20px;
    }

    .btn__next__step {
        right: 20px;
    }
}

@media only screen and (max-width:992px) {
    .card.card_pass {
        width: 100%;
        padding: 10px;
        border-radius: 20px;
        margin-bottom: 35px;
    }

    .card__img>img {
        width: 100%;
        height: 350px;
        object-fit: cover;
        border-radius: 15px;
        margin-bottom: 20px;
    }

    .explore_content h3,
    .pass_main .page_title h3 {
        font-size: 20px;
        margin-bottom: 5px;
    }

    .explore-radio {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    main.pass_main {
        min-height: auto;
        padding-top: 170px;
    }

    .side_menu_wraper {
        top: -30px;
        width: 100%;
        height: 30px;
    }

    .side_menu_wraper ul {
        display: grid;
        grid-template-columns: repeat(6, 80px);
        width: 100%;
        margin: 0 auto;
        justify-content: space-between;
        gap: 5px;
        left: -25px;
    }

    .side_menu_wraper.prepaid_side_wrap ul {
        grid-template-columns: repeat(6, 60px);
    }

    .side_menu_wraper.postpaid_side_wrap ul {
        grid-template-columns: repeat(6, 60px);
    }

    .side_menu_wraper.postpaid_side_wrap,
    .side_menu_wraper.prepaid_side_wrap {
        top: 0px;
        margin: 25px 0px;
    }

    .side_menu_wraper.driver_signup ul {
        grid-template-columns: repeat(4, 100px);
    }

    .side_menu_wraper .side_menuItem>a,
    .side_menu_wraper .side_menuItem {
        flex-direction: column;
        text-align: center;
    }

    .side_menu_wraper .side_menuItem>a {
        align-items: center;
    }

    .side_menu_wraper {
        position: relative;
    }

    .side_menu_wraper .side_menuItem .circle::after {
        display: none;
        height: 2px;
        width: 60px;
        top: 6px;
        right: 20%;
    }

    .side_menu_wraper .side_menuItem {
        position: relative;
        top: 0;
    }

    .side_menu_wraper .side_menuItem::after {
        content: '';
        position: absolute;
        width: 50px;
        height: 3px;
        display: block;
        right: -55%;
        top: 15px;
        background: var(--pass-grey-2);
    }

    .side_menu_wraper.prepaid_side_wrap .side_menuItem::after {
        right: -90%;
    }

    .side_menu_wraper.postpaid_side_wrap .side_menuItem::after {
        right: -90%;
    }
    .form-control{
        border-radius: 5px;
    }
    .side_menu_wraper .side_menuItem:last-child:after {
        display: none;
    }

    .side_menu_wraper .side_menuItem.active::after {
        background: var(--pass-primary);
    }

    .details_title h3 {
        font-size: 20px;
    }

    .side_menuItem .txt {
        display: inline-block;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
        width: 100%;
    }

    .sw-toolbar-elm.toolbar.toolbar-bottom {
        margin: 0px;
    }
}

@media only screen and (max-width:768px) {
    .side_menu_wraper .side_menuItem::after {
        right: -33%;
    }

    .side_menu_wraper.prepaid_side_wrap .side_menuItem::after {
        right: -85%;
    }

    .side_menu_wraper.postpaid_side_wrap .side_menuItem::after {
        right: -100%;
    }
}

@media only screen and (max-width:550px) {

    a,
    p {
        font-size: 12px;
    }

    .btn_primary,
    .btn-danger {
        font-size: 14px;
    }

    .btn-danger,
    .btn_primary {
        width: 120px;
        min-height: 40px;
    }

    .side_menu_wraper .side_menuItem .circle {
        width: 12px;
        height: 12px;
    }

    .side_menu_wraper .side_menuItem {
        font-size: 10px;
    }

    .side_menu_wraper ul {
        grid-template-columns: repeat(6, 50px);
    }

    .side_menu_wraper.prepaid_side_wrap ul {
        grid-template-columns: repeat(6, 50px);
    }

    .side_menu_wraper.driver_signup ul {
        grid-template-columns: repeat(4, 1fr);
        gap: 10px;
    }

    .side_menu_wraper.postpaid_side_wrap ul {
        grid-template-columns: repeat(6, 50px);
    }

    .side_menu_wraper.prepaid_side_wrap .side_menuItem::after {
        right: -30%;
    }

    .side_menu_wraper.postpaid_side_wrap .side_menuItem::after {
        right: -30%;
    }

    .side_menu_wraper {
        left: 0px;
        top: -15px;
    }

    .side_menu_wraper .side_menuItem::after {
        width: 25px;
        height: 1px;
    }

    .details_title h3,
    .explore_content h3,
    .pass_main .page_title h3 {
        font-size: 18px;
    }

    .pass_main .page_title .account_type .accountType {
        font-size: 14px;
        gap: 5px;
    }

    .pass_main .page_title .account_type .accountType input[type='radio']:after {
        width: 15px;
        height: 15px;
    }

    .details .details_wrap h4,
    .card h4 {
        font-size: 14px;
    }

    .form-select,
    .form-control,
    label {
        font-size: 12px;
    }

    .card.card_pass {
        margin-top: 15px !important;
        border-radius: 10px;
    }

    .password_validator h6,
    .explore_content p,
    .details_title p {
        font-size: 12px;
    }

    .password_validator ul li {
        font-size: 11px;
    }

    .footer_wraper .footer_links .foo_link {
        font-size: 12px;
    }

    .footer_wraper .footer_links {
        gap: 5px 12px;
    }

    h4.mb-3 {
        margin-bottom: 3px !important;
    }

    .pass_drop .acc_drop_right {
        display: none;
    }

    .pass_drop {
        width: 40px;
        height: 40px;
        gap: 0px;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 1px solid var(--pass-black);
    }

    .pass_drop .txt {
        display: none;
    }

    #account-pass header .header-wraper .header_left .header_logo {
        width: 100px;
    }

    #account-pass header .header-wraper {
        padding: 25px 0px;
    }

    main.pass_main {
        overflow: hidden!important;
        padding-top: 125px;
    }

    .card.card_pass {
        padding: 0px;
    }

    .card__img>img {
        border-radius: 10px;
        height: 200px;
    }

    .explore-radio {
        grid-template-columns: 1fr;
        gap: 5px;
        margin-bottom: 60px;
    }

    .explore-radio .radio__item .radio_text {
        font-size: 14px;
    }

    .explore-radio .radio__item .round {
        width: 15px;
        height: 15px;
    }

    .explore-radio .radio__item {
        padding: 8px;
        align-items: center;
        gap: 5px;
        border-radius: 7px;
    }

    .btns_signature {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    #signupForm .actions.clearfix ul li a {
        font-size: 14px;
        border-radius: 8px;
        min-height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        width: 100px;
        max-width: 100px;
    }

    .signature_wraper {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .sw-toolbar-elm.toolbar.toolbar-bottom {
        margin: 0px;
    }

    .thank-you-img img {
        width: 200px;
    }

    .username h2 {
        font-size: 25px;
    }

    .checked_box {
        border-radius: 10px;
    }

    .checked_box h5 {
        font-size: 16px;
    }

    .checked_box h2 {
        font-size: 22px;
    }
    .side_menuItem .txt{
        width: 68%!important;
    }
    .form-control{
        border-radius: 5px;
    }
}

@media only screen and (max-width:300px) {

    .side_menu_wraper .side_menuItem::after {
        width: 24px;
    }

    .side_menu_wraper.driver_signup ul {
        grid-template-columns: repeat(4, 50px);
        gap: 3px;
    }
    
}

.steps.clearfix {
    display: none;
}

#dl_photo_front-error {
    display: block;
}

.select2-container {
    width: 100% !important;
}

.select2-container .select2-selection--single {
    height: 38px !important;
    line-height: 1.5;
}

#emailAgreementsErrorMessage {
    color: var(--pass-danger);
}
