/* ---------------------------------------------------
    User dashboard page
----------------------------------------------------- */
/** (<480px) **/
@media (max-width: 480px) {

    .user_dashboard__page .edm_sticky_menu_area.top_sticky_menu {
        display: none;
    }

    .user_dashboard__page .breadcrumb_area {
        display: none;
    }
}

#user_account_page.user_account_area {
    padding: 60px 0;
}

#user_account_page .container {
    width: 100%;
}

/** (<992px) **/
@media (max-width: 992px) {

    #user_account_page.user_account_area {
        padding: 0;
        border: 1px solid #dee2e6;
    }

    #user_account_page .container {
        width: 100%;
        padding-right: 0;
        padding-left: 0;
        max-width: unset;
    }
}

/* ---------------------------------------------------
    SIDEBAR STYLE
----------------------------------------------------- */
/**Web version**/
.user_account_area_web_wrapper {
    position: relative;
    width: 100%;
    display: flex;
}

/** (<480px) **/
@media (max-width: 480px) {

    .user_account_area_web_wrapper {
        display: none;
    }
}

.user_account_area_web_wrapper #user_account_dash_sidebar {
    width: 280px;
    height: auto;
    background: #e62237;
    color: #fff;
    transition: all 0.3s;
}

/** (<992px) **/
@media (max-width: 992px) {

    .user_account_area_web_wrapper #user_account_dash_sidebar {
        width: 240px;
    }
}

    .user_account_area_web_wrapper #user_account_dash_sidebar .sidebar-header {
        padding: 30px 20px;
        background: #000;
        text-align: center;
    }

        .user_account_area_web_wrapper #user_account_dash_sidebar .sidebar-header .imgupload {
            display: block;
            position: relative;
            width: 100%;
        }

        .user_account_area_web_wrapper #user_account_dash_sidebar .sidebar-header .imgupload img.user-profile-avatar {
            width: 150px;
            height: 150px;
            object-fit: cover;
            border-radius: 50%;
        }

            .user_account_area_web_wrapper #user_account_dash_sidebar .sidebar-header .imgupload .img_avatar_wrapper.loading_dummy_img_box.loading {
                height: 150px;
                width: 150px;
                background: #d9d9d9;
                border-radius: 50%;
                position: relative;
                overflow: hidden;
                margin: 0 auto;
            }

                .user_account_area_web_wrapper #user_account_dash_sidebar .sidebar-header .imgupload .img_avatar_wrapper.loading_dummy_img_box.loading::before {
                    position: absolute;
                    content: "";
                    height: 100%;
                    width: 100%;
                    background: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(rgba(255, 255, 255, 0.2)), to(transparent));
                    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.9), transparent);
                    background-repeat: no-repeat;
                    background-size: 450px 400px;
                    animation: shimmer1 1s linear infinite;
                    top: 0;
                    left: 0;
                }

                @keyframes shimmer1 {
                    0% {
                        background-position: -450px 0;
                    }

                    100% {
                        background-position: 450px 0;
                    }
                }

            .user_account_area_web_wrapper #user_account_dash_sidebar .sidebar-header .imgupload a div.change_profile_pic_text {
                font-size: 10px;
                color: #777;
                margin-top: -25px;
                text-decoration: underline;
                position: relative;
            }

        .user_account_area_web_wrapper #user_account_dash_sidebar .sidebar-header h2.h2_username {
            font-size: 22px;
            color: #fff;
            margin-top: 15px;
            font-weight: 700;
        }

        .user_account_area_web_wrapper #user_account_dash_sidebar .sidebar-header p.p_my_wallet {
            color: #8eb000;
            margin: 15px 0 0;
            font-size: 11px;
        }

        .user_account_area_web_wrapper #user_account_dash_sidebar .sidebar-header h4.h4_my_wallet_credit {
            color: #fff;
            font-size: 15px;
            font-weight: 600;
        }

    .user_account_area_web_wrapper #user_account_dash_sidebar ul.components {
        padding: 0;
    }

    .user_account_area_web_wrapper #user_account_dash_sidebar ul li a {
        display: block;
        padding: 14px;
        font-size: 14px;
        font-weight: 600;
        color: #fff;
    }

/** (<992px) **/
@media (max-width: 992px) {

    .user_account_area_web_wrapper #user_account_dash_sidebar ul li a {
        padding: 14px;
        font-size: 12px;
    }
}

        .user_account_area_web_wrapper #user_account_dash_sidebar ul li a:hover {
            color: #fff;
            background: #d6182d;
        }

    .user_account_area_web_wrapper #user_account_dash_sidebar ul li.active > a {
        color: #000;
        background: #fff;
        border-left: 8px solid #ffd800;
        padding-left: 6px;
        -webkit-box-shadow: 0 0 15px 0px #000;
        -moz-box-shadow: 0 0 15px 0px #000;
        box-shadow: 0 0 15px 0px #000;
    }

    .user_account_area_web_wrapper #user_account_dash_sidebar ul li a img.btn__icon {
        height: 30px;
        position: relative;
        padding-left: 10px;
        padding-right: 12px;
    }


/** (<992px) **/
@media (max-width: 992px) {

    .user_account_area_web_wrapper #user_account_dash_sidebar ul li a img.btn__icon {
        height: 24px;
        padding-left: 8px;
        padding-right: 10px;
    }
}

/**Mobile version**/
.user_account_area_mobile_wrapper {
    position: relative;
    width: 100%;
    display: none;
}

/** (<480px) **/
@media (max-width: 480px) {

    .user_account_area_mobile_wrapper {
        display: block;
        margin-top: 70px;
    }
}

.user_account_area_mobile_wrapper #user_account_dash_sidebar_mobile .sidebar-header {
    padding: 30px 20px;
    background: #000;
    display: flex;
}

.user_account_area_mobile_wrapper #user_account_dash_sidebar_mobile .sidebar-header .sidebar-header-left-avatar-img {
    text-align: center;
    width: 40%;
}

.user_account_area_mobile_wrapper #user_account_dash_sidebar_mobile .sidebar-header .sidebar-header-left-avatar-img .imgupload {
    display: block;
    position: relative;
    width: 100%;
}

    .user_account_area_mobile_wrapper #user_account_dash_sidebar_mobile .sidebar-header .sidebar-header-left-avatar-img .imgupload img.user-profile-avatar {
        width: 85px;
        height: 85px;
        object-fit: cover;
        border-radius: 50%;
    }

    .user_account_area_mobile_wrapper #user_account_dash_sidebar_mobile .sidebar-header .sidebar-header-left-avatar-img .imgupload .img_avatar_wrapper.loading_dummy_img_box.loading {
        height: 85px;
        width: 85px;
        background: #d9d9d9;
        border-radius: 50%;
        position: relative;
        overflow: hidden;
        margin: 0 auto;
    }

.user_account_area_mobile_wrapper #user_account_dash_sidebar_mobile .sidebar-header .sidebar-header-left-avatar-img .imgupload .img_avatar_wrapper.loading_dummy_img_box.loading::before {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    background: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(rgba(255, 255, 255, 0.2)), to(transparent));
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.9), transparent);
    background-repeat: no-repeat;
    background-size: 450px 400px;
    animation: shimmer2 1s linear infinite;
    top: 0;
    left: 0;
}

@keyframes shimmer2 {
    0% {
        background-position: -450px 0;
    }

    100% {
        background-position: 450px 0;
    }
}

.user_account_area_mobile_wrapper #user_account_dash_sidebar_mobile .sidebar-header .sidebar-header-left-avatar-img .imgupload a div.change_profile_pic_text {
    font-size: 10px;
    color: #777;
    margin-top: -25px;
    text-decoration: underline;
    position: relative;
}

.user_account_area_mobile_wrapper #user_account_dash_sidebar_mobile .sidebar-header .sidebar-header-right-user-info {
    text-align: left;
    width: 60%;
    padding-left: 5px;
}

.user_account_area_mobile_wrapper #user_account_dash_sidebar_mobile .sidebar-header h2.h2_username {
    font-size: 22px;
    color: #fff;
    margin-top: 5px;
    font-weight: 700;
}

    .user_account_area_mobile_wrapper #user_account_dash_sidebar_mobile .sidebar-header h2.h2_username:after {
        content: ' ';
        border-bottom: 4px solid #fff;
        width: 92%;
        display: block;
        top: 5px;
        position: relative;
    }

.user_account_area_mobile_wrapper #user_account_dash_sidebar_mobile .sidebar-header p.p_my_wallet {
    color: #8eb000;
    margin: 15px 0 0;
    font-size: 11px;
}

.user_account_area_mobile_wrapper #user_account_dash_sidebar_mobile .sidebar-header h4.h4_my_wallet_credit {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    margin-top: 0;
}

.user_account_area_mobile_wrapper #user_account_dash_sidebar_mobile ul.components {
    padding: 0;
}

.user_account_area_mobile_wrapper #user_account_dash_sidebar_mobile ul li {
    background-color: #fff;
    border-bottom: 1px solid #dee2e6;
}

    .user_account_area_mobile_wrapper #user_account_dash_sidebar_mobile ul li a {
        display: block;
        padding: 14px;
        font-size: 13px;
        font-weight: 600;
        color: #000;
        position: relative;
    }

    .user_account_area_mobile_wrapper #user_account_dash_sidebar_mobile ul li a img.btn__icon {
        height: 24px;
        position: relative;
        padding-left: 10px;
        padding-right: 20px;
    }

        .user_account_area_mobile_wrapper #user_account_dash_sidebar_mobile ul li a img.btn__icon.icon_arrow_right {
            right: 20px;
            position: absolute;
        }

        .user_account_area_mobile_wrapper #user_account_dash_sidebar_mobile ul li a i.fas {
            position: absolute;
            right: 40px;
            top: 20px;
            font-size: 16px;
            color: #E72236;
        }

/* ---------------------------------------------------
    CONTENT STYLE
----------------------------------------------------- */
/**Web version**/
.user_account_area_web_wrapper #user_account_dash_right_content,
.user_account_area_web_wrapper #user_account_dash_right_content_mobile {
    width: calc(100% - 280px);
    padding: 40px;
    height: 100%;
    height: auto;
    transition: all 0.3s;
    position: relative;
    background-color: #fff;
}

/** (<992px) **/
@media (max-width: 992px) {

    .user_account_area_web_wrapper #user_account_dash_right_content,
    .user_account_area_web_wrapper #user_account_dash_right_content_mobile {
        width: calc(100% - 240px);
    }
}

.user_account_area_web_wrapper #user_account_dash_right_content .user_account_page_header h2,
.user_account_area_web_wrapper #user_account_dash_right_content_mobile .user_account_page_header h2 {
    font-size: 32px;
    font-weight: 600;
}

    .user_account_area_web_wrapper #user_account_dash_right_content .user_account_page_header h2 a,
    .user_account_area_web_wrapper #user_account_dash_right_content_mobile .user_account_page_header h2 a {
        color: #e62237;
    }

    .user_account_area_web_wrapper #user_account_dash_right_content .user_account_page_header h2 img.btn__icon,
    .user_account_area_web_wrapper #user_account_dash_right_content_mobile .user_account_page_header h2 img.btn__icon {
        height: 36px;
        padding-right: 14px;
        margin-top: -8px;
    }

/** (<992px) **/
@media (max-width: 992px) {

    .user_account_area_web_wrapper #user_account_dash_right_content .user_account_page_header h2,
    .user_account_area_web_wrapper #user_account_dash_right_content_mobile .user_account_page_header h2 {
        font-size: 22px;
    }

        .user_account_area_web_wrapper #user_account_dash_right_content .user_account_page_header h2 img.btn__icon,
        .user_account_area_web_wrapper #user_account_dash_right_content_mobile .user_account_page_header h2 img.btn__icon {
            height: 22px;
            margin-top: -3px;
        }
}

/**Mobile version**/
/** (<480px) **/
@media (max-width: 480px) {

    .user_account_area_mobile_wrapper #user_account_dash_right_content,
    .user_account_area_mobile_wrapper #user_account_dash_right_content_mobile {
        width: 100%;
        height: 100%;
        padding: 12px 15px;
        transition: all 0.3s;
        position: relative;
        background-color: #f7f7f7;
    }

        .user_account_area_mobile_wrapper #user_account_dash_right_content .user_account_page_header h2,
        .user_account_area_mobile_wrapper #user_account_dash_right_content_mobile .user_account_page_header h2 {
            font-size: 16px;
            font-weight: 600;
            vertical-align: middle;
            display: inline;
        }

            .user_account_area_mobile_wrapper #user_account_dash_right_content .user_account_page_header h2 a,
            .user_account_area_mobile_wrapper #user_account_dash_right_content_mobile .user_account_page_header h2 a {
                color: #e62237;
            }

            .user_account_area_mobile_wrapper #user_account_dash_right_content .user_account_page_header h2 img.btn__icon,
            .user_account_area_mobile_wrapper #user_account_dash_right_content_mobile .user_account_page_header h2 img.btn__icon {
                height: 22px;
                padding-left: 14px;
                padding-right: 14px;
                margin-top: -4px;
            }

            .user_account_area_mobile_wrapper #user_account_dash_right_content .user_account_page_header h2 i,
            .user_account_area_mobile_wrapper #user_account_dash_right_content_mobile .user_account_page_header h2 i {
                font-size: 18px;
                padding: 10px 8px 10px 2px;
                color: #e62237;
            }

        .user_account_area_mobile_wrapper #user_account_dash_right_content .form-group,
        .user_account_area_mobile_wrapper #user_account_dash_right_content_mobile .form-group {
            margin-bottom: 11px;
        }
}

/* ---------------------------------------------------
    Custom tab
----------------------------------------------------- */
.custom_tab_wrapper {
    margin-top: 30px;
}

.custom_tab_wrapper .custom__tab {
    display: inline-block;
    border-bottom: 1px solid #dee2e6;
    padding: 0;
}

.custom_tab_wrapper .custom__tab .nav-item {
    margin: 0px 0px 0px 30px;
    float: left;
}

/** (<992px) **/
@media (max-width: 992px) {

    .custom_tab_wrapper .custom__tab .nav-item {
        margin: 0px 0px 0px 15px;
        float: left;
    }
}

.custom_tab_wrapper .custom__tab .nav-item .nav-link {
    font: 400 15px "Poppins", sans-serif;
    color: #677294;
    border: 0px;
    padding: 0px 0px 10px;
    position: relative;
}

/** (<992px) **/
@media (max-width: 992px) {

    .custom_tab_wrapper .custom__tab .nav-item .nav-link {
        font: 400 12px "Poppins", sans-serif;
        padding: 0px 0px 10px;
    }
}

.custom_tab_wrapper .custom__tab .nav-item .nav-link:before {
    width: 0;
    content: "";
    left: auto;
    right: 0;
    height: 4px;
    background: #e62237;
    position: absolute;
    bottom: -2px;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

.custom_tab_wrapper .custom__tab .nav-item .nav-link.active {
    color: #000;
    font-weight: 600;
}

.custom_tab_wrapper .custom__tab .nav-item .nav-link.active:before {
    right: auto;
    left: 0;
    width: 100%;
}

.custom_tab_wrapper .custom__tab .nav-item:first-child {
    margin-left: 0px;
}

/**Mobile version**/
/** (<480px) **/
@media (max-width: 480px) {

    .user_account_area_mobile_wrapper #user_account_dash_right_content .custom_tab_wrapper,
    .user_account_area_mobile_wrapper #user_account_dash_right_content_mobile .custom_tab_wrapper {
        margin-top: 12px;
    }

        .user_account_area_mobile_wrapper #user_account_dash_right_content .custom_tab_wrapper .custom__tab,
        .user_account_area_mobile_wrapper #user_account_dash_right_content_mobile .custom_tab_wrapper .custom__tab {
            background: #fff;
            padding: 5px 4px;
            border-bottom: unset;
            width: 100%;
        }

            .user_account_area_mobile_wrapper #user_account_dash_right_content .custom_tab_wrapper .custom__tab .nav-item,
            .user_account_area_mobile_wrapper #user_account_dash_right_content_mobile .custom_tab_wrapper .custom__tab .nav-item {
                margin: 0;
                float: left;
                width: 33.333%;
                border-left: 1px solid #dee2e6;
                text-align: center;
                position: relative;
            }

                .user_account_area_mobile_wrapper #user_account_dash_right_content .custom_tab_wrapper .custom__tab .nav-item:first-child,
                .user_account_area_mobile_wrapper #user_account_dash_right_content_mobile .custom_tab_wrapper .custom__tab .nav-item:first-child {
                    border-left: unset;
                }

                .user_account_area_mobile_wrapper #user_account_dash_right_content .custom_tab_wrapper .custom__tab .nav-item.active:before,
                .user_account_area_mobile_wrapper #user_account_dash_right_content_mobile .custom_tab_wrapper .custom__tab .nav-item.active:before {
                    width: 100%;
                    content: "";
                    left: auto;
                    right: 0;
                    height: 4px;
                    background: #e62237;
                    position: absolute;
                    bottom: -2px;
                    -webkit-transition: all 0.3s linear;
                    -o-transition: all 0.3s linear;
                    transition: all 0.3s linear;
                }

                .user_account_area_mobile_wrapper #user_account_dash_right_content .custom_tab_wrapper .custom__tab .nav-item .nav-link,
                .user_account_area_mobile_wrapper #user_account_dash_right_content_mobile .custom_tab_wrapper .custom__tab .nav-item .nav-link {
                    padding: 8px 16px;
                    font: 400 12px "Poppins", sans-serif;
                }

                    .user_account_area_mobile_wrapper #user_account_dash_right_content .custom_tab_wrapper .custom__tab .nav-item .nav-link.last-link,
                    .user_account_area_mobile_wrapper #user_account_dash_right_content_mobile .custom_tab_wrapper .custom__tab .nav-item .nav-link.last-link {
                        padding: 8px 6px;
                    }
}
/* ---------------------------------------------------
    Input for verification code
----------------------------------------------------- */
.verify_code_input_grp {
    margin-bottom: 20px;
}

input.verify_code_input {
    margin: 0 1px 0 0;
    text-align: center;
    font-size: 20px;
    border: solid 1px #ccc;
    box-shadow: 0 0 5px #ccc inset;
    outline: none;
    width: 45px;
    height: 45px;
    transition: all .2s ease-in-out;
    border-radius: 3px;
}

/** (<320px) **/
@media (max-width: 320px) {

    input.verify_code_input {
        width: 40px;
        height: 40px;
    }
}

input.verify_code_input:focus {
    border-color: purple;
    box-shadow: 0 0 5px purple inset;
}

input.verify_code_input::selection {
    background: transparent;
}

/* ---------------------------------------------------
    Verification code page
----------------------------------------------------- */
.acct__verify_acct_form {
    padding: 0;
}

.acct_verified_status_wrapper {
    display: flex;
}

    .acct_verified_status_wrapper i {
        font-size: 32px;
        margin-right: 10px;
        color: #74BC00;
        padding: 3px;
        border: 3px solid #74BC00;
        border-radius: 50%;
        background: #fff;
        margin-top: -5px;
    }

    .acct_verified_status_wrapper .verify_success_msg {
        font-size: 18px;
        color: #74BC00;
        width: 300px;
        margin-left: 15px;
    }

/**Mobile version**/
/** (<480px) **/
@media (max-width: 480px) {

    .acct__verify_acct_form {
        padding: 15px 10px;
    }

    .acct_verified_status_wrapper i {
        font-size: 26px;
        margin-top: -8px;
    }

    .acct_verified_status_wrapper .verify_success_msg {
        font-size: 14px;
        width: 280px;
    }
}

/** (<320px) **/
@media (max-width: 320px) {

    .acct_verified_status_wrapper i {
        font-size: 22px;
        margin-top: -10px;
    }

    .acct_verified_status_wrapper .verify_success_msg {
        font-size: 12px;
        width: 260px;
    }
}

#acct_send_new_code_form_submit_btn,
#acct_send_new_code_form_submit_btn1 {
    padding: 8px 10px;
    font-size: 12px;
    margin-left: 1px;
}

.acct_pending_verify_status_wrapper {
    padding: 0;
}

/** (<480px) **/
@media (max-width: 480px) {

    .acct_pending_verify_status_wrapper p {
        font-size: 14px;
        line-height: 22px;
    }

    .acct_pending_verify_status_wrapper label {
        font-size: 14px;
        line-height: 22px;
    }
}

/* ---------------------------------------------------
    My appt page
----------------------------------------------------- */
/**overwrite the tab styling**/
#user_account_dash_right_content_mobile .acct__my_appt_content .custom_tab_wrapper .custom__tab .nav-item .nav-link {
    padding: 8px 22px;
    font: 400 12px "Poppins", sans-serif;
}

.acct__my_appt_form h5 {
    margin-top: 25px;
}

.acct__my_appt_form table {
    width: 100%;
}

.acct__my_appt_form table tbody tr {
    border: 1px solid #000;
    border-left: none;
    border-right: none;
}

    .acct__my_appt_form table tbody tr td {
        padding: 8px;
        font-size: 14px;
        line-height: 22px;
        color: #000;
    }

.acct__my_appt_form table tbody tr td img {
    height: 30px;
}

        .acct__my_appt_form table tbody tr td a.appt_view_btn {
            margin: 0 10px;
            color: #FE4647;
            cursor: pointer;
        }

        .acct__my_appt_form table tbody tr td a.appt_cancel_btn {
            margin: 0 10px;
            color: #9E9E9E;
            text-decoration: underline;
            cursor: pointer;
        }

/** (<480px) **/
@media (max-width: 480px) {

    .acct__my_appt_form .acct__my_appt_form_mobile_content {
        background-color: #fff;
        border-radius: 3px;
        padding: 12px;
        margin-top: 20px;
        padding-bottom: 20px;
    }

        .acct__my_appt_form .acct__my_appt_form_mobile_content h5 {
            margin: 10px 0 15px;
            font-size: 14px;
            font-weight: 700;
        }

    .acct__my_appt_form .acct__my_appt_form_mobile_content table tbody tr td {
        padding: 8px;
        font-size: 12px;
        color: #000;
        line-height: 18px;
    }

        .acct__my_appt_form .acct__my_appt_form_mobile_content table tbody tr td.td_icon_columns {
            width: 35px;
        } 
        
        .acct__my_appt_form .acct__my_appt_form_mobile_content table tbody tr td.td_action_columns {
            width: 80px;
        }

    .acct__my_appt_form .acct__my_appt_form_mobile_content table tbody tr td img {
        height: 20px;
    }
}

/* ---------------------------------------------------
    My wallet page
----------------------------------------------------- */
.acct__my_wallet_topup_withdraw_form {
    padding: 0 30px;
}

    .acct__my_wallet_topup_withdraw_form p.my_wallet_desc {
        font-size: 13px;
        color: #ccc;
        line-height: 22px;
    }

    .acct__my_wallet_topup_withdraw_form .card.my_wallet_card {
        margin-bottom: 25px;
        box-shadow: 0 1px 3px 0 #e6ebf1;
        box-shadow: 0px 2px 4px 0px rgba(12, 0, 46, .3);
        background: #FEDFDD;
        max-width: 400px;
    }

        .acct__my_wallet_topup_withdraw_form .card.my_wallet_card .card-body {
            height: 250px;
            padding: 30px;
        }

    .acct__my_wallet_topup_withdraw_form .card.my_wallet_card h5 {
        color: #EA3C4E;
        font-weight: 700;
        font-size: 24px;
    }

        .acct__my_wallet_topup_withdraw_form .card.my_wallet_card .my_wallet_card_actions {
            position: absolute;
            top: 20px;
            right: 18px;
            text-align: right;
        }

    .acct__my_wallet_topup_withdraw_form .card.my_wallet_card .my_wallet_card_actions .my_wallet__topup_collapse_btn,
    .acct__my_wallet_topup_withdraw_form .card.my_wallet_card .my_wallet_card_actions .my_wallet__withdraw_collapse_btn {
        font-size: 14px;
        font-weight: 500;
        color: #000;
        display: block;
        margin: 5px 5px 6px;
    }

        .acct__my_wallet_topup_withdraw_form .card.my_wallet_card .my_wallet_card_actions .my_wallet__topup_collapse_btn i {
            font-size: 22px;
            color: #fff;
            background: #EA1C30;
            padding: 10px;
            padding: 1px 8.65px;
            border-radius: 50%;
            margin-left: 7px;
            font-style: normal;
        }

        .acct__my_wallet_topup_withdraw_form .card.my_wallet_card .my_wallet_card_actions .my_wallet__withdraw_collapse_btn i {
            font-size: 22px;
            color: #fff;
            background: #01D502;
            padding: 10px;
            padding: 1px 10.06px;
            border-radius: 50%;
            margin-left: 7px;
            font-style: normal;
        }

    .acct__my_wallet_topup_withdraw_form .card.my_wallet_card .my_wallet_card_balance_amt_wrapper {
        display: table;
        border-bottom: 5px solid #fff;
        position: absolute;
        bottom: 30px;
        width: calc(100% - 60px);
        padding-bottom: 5px;
    }

        .acct__my_wallet_topup_withdraw_form .card.my_wallet_card .my_wallet_card_balance_amt_wrapper .my_wallet_card_balance_amt_currency {
            text-align: left;
            display: table-cell;
            width: 50%;
        }

        .acct__my_wallet_topup_withdraw_form .card.my_wallet_card .my_wallet_card_balance_amt_wrapper .my_wallet_card_balance_amt_currency h2 {
            font-size: 38px;
            font-weight: 600;
            color: #000;
        }

    .acct__my_wallet_topup_withdraw_form .card.my_wallet_card .my_wallet_card_balance_amt_wrapper .my_wallet_card_balance_amt {
        text-align: right;
        display: table-cell;
        width: 50%;
    }

    .acct__my_wallet_topup_withdraw_form .card.my_wallet_card .my_wallet_card_balance_amt_wrapper .my_wallet_card_balance_amt h2 {
        font-size: 70px;
        font-weight: 600;
        color: #000;
    }

    .acct__my_wallet_topup_withdraw_form .card.my_wallet_card .my_wallet_card_balance_amt_wrapper .my_wallet_card_balance_amt h2 small {
        font-size: 18px;
        font-weight: 500;
        color: #000;
    }

    /** topup tab **/
    .topup_tab_wrapper {
        max-width: 400px;
    }

    .topup_tab_wrapper .verticle_tab_custom_style.nav-tabs {
        border-bottom: none;
        width: 100%;
        margin: 0 10px 15px;
    }

    .topup_tab_wrapper .verticle_tab_custom_style.nav-tabs .nav-item.nav-link {
        flex: unset;
        width: 50%;
    }

    .topup_tab_wrapper .verticle_tab_custom_style.nav-tabs .nav-item.nav-link#nav-cc-topup-tab {
        text-align: left;
    }

    .topup_tab_wrapper .verticle_tab_custom_style.nav-tabs .nav-item.nav-link#nav-manually-topup-tab {
        text-align: right;
    }

    .topup_tab_wrapper .verticle_tab_custom_style.nav-tabs .nav-link {
        border: 1px solid transparent;
        border-bottom-color: transparent;
        border-bottom-style: solid;
        border-bottom-width: 1px;
        border-top-left-radius: .25rem;
        border-top-right-radius: .25rem;
        border-bottom: 1px solid #dee2e6;
        color: #D0D0D0;
        font-size: 14px;
        font-weight: 500;
        padding: 0;
    }

        .topup_tab_wrapper.verticle_tab_custom_style.nav-tabs .nav-item.show .nav-link, .verticle_tab_custom_style.nav-tabs .nav-link.active {
            color: #000;
            background-color: transparent;
            border-bottom: 4px solid #e62237 !important;
            font-size: 14px;
            font-weight: 500;
        }

    /** credit card info **/
    .acct__my_wallet_topup_withdraw_form .cc_topup_wrapper #cc_topup_form_submit_btn {
        padding: 8px 12px;
        font-size: 14px;
    }

    .acct__my_wallet_topup_withdraw_form .cc_topup_existing_cc_wrapper {
        max-width: 400px;
    }
    
    .acct__my_wallet_topup_withdraw_form .cc_topup_existing_cc_wrapper table tr td {
        font-size: 14px;
        font-weight: 500;
        color: #7B7B7B;
        padding: 0 10px;
    }

    .acct__my_wallet_topup_withdraw_form .cc_topup_existing_cc_wrapper #cc_delete_form_submit_btn {
        margin-top: 10px;
        margin-left: 10px;
        font-size: 12px;
    }

    .acct__my_wallet_topup_withdraw_form .cc_topup_existing_cc_wrapper #cc_topup_existing_cc_form_submit_btn {
        padding: 8px 12px;
        font-size: 14px;
    }

    /** bank account info **/
.acct__my_wallet_topup_withdraw_form .manully_topup_wrapper {
    max-width: 400px;
}

    .acct__my_wallet_topup_withdraw_form .manully_topup_wrapper table tr td {
        font-size: 14px;
        font-weight: 500;
        color: #7B7B7B;
        padding: 0 10px;
    }

    .acct__my_wallet_topup_withdraw_form .manully_topup_wrapper #manual_topup_form_submit_btn {
        padding: 8px 12px;
        font-size: 14px;
    }

    .acct__my_wallet_topup_withdraw_form .manully_topup_wrapper .single_imgupload_row {
        display: flex;
        width: 100%;
        position: relative;
    }

    .acct__my_wallet_topup_withdraw_form .manully_topup_wrapper .single_imgupload_row .single_imgupload_wrapper {
        padding: 0;
        width: 100%;
        position: relative;
    }

    .acct__my_wallet_topup_withdraw_form .manully_topup_wrapper .single_imgupload_row .single_imgupload_wrapper .imgupload {
        padding: 0 0 0 15px;
        text-align: center;
    }

        .acct__my_wallet_topup_withdraw_form .manully_topup_wrapper .single_imgupload_row .single_imgupload_wrapper .imgupload.imgupload-crop .item-img-output {
            width: 100%;
            height: 120px;
            object-fit: cover;
            padding: 0;
            background: #f8f8f8;
            border: none;
        }

        /***transaction table***/
table.ebm_table_custom.my_inappcredit_transact_table tbody tr td span.transact_amt {
    text-align: right;
    font-weight: 600;
    float: right;
}

/** withdrawal section **/
.acct__my_wallet_topup_withdraw_form .withdrawal_wrapper {
    max-width: 400px;
}

    .acct__my_wallet_topup_withdraw_form .withdrawal_wrapper #withdraw_form_submit_btn {
        padding: 8px 12px;
        font-size: 14px;
    }

/**Mobile version**/
/** (<480px) **/
@media (max-width: 480px) {

    .acct__my_wallet_topup_withdraw_form {
        padding: 0 10px;
    }

    .acct__my_wallet_topup_withdraw_form p.my_wallet_desc {
        font-size: 11px;
        color: #ccc;
        line-height: 16px;
    }

        .acct__my_wallet_topup_withdraw_form .card.my_wallet_card .card-body {
            height: 200px;
            padding: 20px 15px;
        }

        .acct__my_wallet_topup_withdraw_form .card.my_wallet_card h5 {
            color: #EA3C4E;
            font-weight: 700;
            font-size: 18px;
        }

        .acct__my_wallet_topup_withdraw_form .card.my_wallet_card .my_wallet_card_actions {
            position: absolute;
            top: 10px;
            right: 10px;
            text-align: right;
        }

        .acct__my_wallet_topup_withdraw_form .card.my_wallet_card .my_wallet_card_actions .my_wallet__topup_collapse_btn, .acct__my_wallet_topup_withdraw_form .card.my_wallet_card .my_wallet_card_actions .my_wallet__withdraw_collapse_btn {
            font-size: 11px;
            font-weight: 500;
            color: #000;
            display: block;
            margin: 3px 2px 4px;
        }

            .acct__my_wallet_topup_withdraw_form .card.my_wallet_card .my_wallet_card_actions .my_wallet__topup_collapse_btn i {
                font-size: 20px;
                color: #fff;
                background: #EA1C30;
                padding: 10px;
                padding: 1px 8.65px;
                border-radius: 50%;
                margin-left: 4px;
                font-style: normal;
            }

            .acct__my_wallet_topup_withdraw_form .card.my_wallet_card .my_wallet_card_actions .my_wallet__withdraw_collapse_btn i {
                font-size: 20px;
                color: #fff;
                background: #01D502;
                padding: 10px;
                padding: 1px 10.06px;
                border-radius: 50%;
                margin-left: 4px;
                font-style: normal;
            }

        .acct__my_wallet_topup_withdraw_form .card.my_wallet_card .my_wallet_card_balance_amt_wrapper {
            display: table;
            border-bottom: 5px solid #fff;
            position: absolute;
            bottom: 18px;
            width: calc(100% - 30px);
            padding-bottom: 0;
        }

        .acct__my_wallet_topup_withdraw_form .card.my_wallet_card .my_wallet_card_balance_amt_wrapper .my_wallet_card_balance_amt_currency {
            text-align: left;
            display: table-cell;
            width: 50%;
        }

        .acct__my_wallet_topup_withdraw_form .card.my_wallet_card .my_wallet_card_balance_amt_wrapper .my_wallet_card_balance_amt_currency h2 {
            font-size: 30px;
            font-weight: 600;
            color: #000;
        }

        .acct__my_wallet_topup_withdraw_form .card.my_wallet_card .my_wallet_card_balance_amt_wrapper .my_wallet_card_balance_amt {
            text-align: right;
            display: table-cell;
            width: 50%;
        }

        .acct__my_wallet_topup_withdraw_form .card.my_wallet_card .my_wallet_card_balance_amt_wrapper .my_wallet_card_balance_amt h2 {
            font-size: 58px;
            font-weight: 600;
            color: #000;
            margin-bottom: 0;
        }

        .acct__my_wallet_topup_withdraw_form .card.my_wallet_card .my_wallet_card_balance_amt_wrapper .my_wallet_card_balance_amt h2 small {
            font-size: 16px;
            font-weight: 500;
            color: #000;
        }

    /** topup tab **/
    .topup_tab_wrapper {
        max-width: 400px;
    }

        .topup_tab_wrapper .verticle_tab_custom_style.nav-tabs {
            border-bottom: none;
            width: 100%;
            margin: 0 0 15px;
        }

            .topup_tab_wrapper .verticle_tab_custom_style.nav-tabs .nav-item.nav-link {
                flex: unset;
                width: 49%;
                margin: 0 auto;
            }

                .topup_tab_wrapper .verticle_tab_custom_style.nav-tabs .nav-item.nav-link#nav-cc-topup-tab {
                    text-align: left;
                }

                .topup_tab_wrapper .verticle_tab_custom_style.nav-tabs .nav-item.nav-link#nav-manually-topup-tab {
                    text-align: right;
                }

            .topup_tab_wrapper .verticle_tab_custom_style.nav-tabs .nav-link {
                border: 1px solid transparent;
                border-bottom-color: transparent;
                border-bottom-style: solid;
                border-bottom-width: 0;
                border-top-left-radius: 0;
                border-top-right-radius: 0;
                border-bottom: none;
                color: #D0D0D0;
                font-size: 11px;
                font-weight: 500;
                padding: 9px 8px 5px;
                background-color: #e62237;
                opacity: 0.5;
                border-radius: 3px;
                line-height: 16px;
            }

            .topup_tab_wrapper.verticle_tab_custom_style.nav-tabs .nav-item.show .nav-link, .verticle_tab_custom_style.nav-tabs .nav-link.active {
                color: #fff;
                background-color: #e62237;
                border-bottom: none;
                font-size: 11px;
                font-weight: 500;
                opacity: 1;
            }

    /** credit card info **/
    .acct__my_wallet_topup_withdraw_form .cc_topup_wrapper #cc_topup_form_submit_btn1 {
        padding: 8px 12px;
        font-size: 12px;
    }

    .acct__my_wallet_topup_withdraw_form .cc_topup_wrapper .inappcredit_savecard_checkbox {
        font-size: 12px;
        margin-top: 3px !important;
    }

    .acct__my_wallet_topup_withdraw_form .cc_topup_existing_cc_wrapper {
        max-width: 400px;
        background-color: #fff;
        padding: 12px 8px;
        border-radius: 3px;
    }

        .acct__my_wallet_topup_withdraw_form .cc_topup_existing_cc_wrapper table tr td {
            font-size: 12px;
            font-weight: 500;
            color: #7B7B7B;
            padding: 6px;
            line-height: 18px;
        }

        .acct__my_wallet_topup_withdraw_form .cc_topup_existing_cc_wrapper #cc_delete_form_submit_btn1 {
            margin-top: 10px;
            margin-left: 10px;
            font-size: 12px;
        }

        .acct__my_wallet_topup_withdraw_form .cc_topup_existing_cc_wrapper #cc_topup_existing_cc_form_submit_btn1 {
            padding: 8px 12px;
            font-size: 12px;
        }

    /** bank account info **/
    .acct__my_wallet_topup_withdraw_form .manully_topup_wrapper {
        max-width: 400px;
        background-color: #fff;
        padding: 12px 8px;
        border-radius: 3px;
    }

        .acct__my_wallet_topup_withdraw_form .manully_topup_wrapper table tr td {
            font-size: 12px;
            font-weight: 500;
            color: #7B7B7B;
            padding: 6px 5px 6px 6px;
            line-height: 18px;
        }

        .acct__my_wallet_topup_withdraw_form .manully_topup_wrapper #manual_topup_form_submit_btn1 {
            padding: 8px 12px;
            font-size: 12px;
        }

        .acct__my_wallet_topup_withdraw_form .manully_topup_wrapper .single_imgupload_row {
            display: flex;
            width: 100%;
            position: relative;
        }

            .acct__my_wallet_topup_withdraw_form .manully_topup_wrapper .single_imgupload_row .single_imgupload_wrapper {
                padding: 0;
                width: 100%;
                position: relative;
                padding: 3px;
            }

                .acct__my_wallet_topup_withdraw_form .manully_topup_wrapper .single_imgupload_row .single_imgupload_wrapper .imgupload {
                    padding: 0;
                    text-align: center;
                }

                    .acct__my_wallet_topup_withdraw_form .manully_topup_wrapper .single_imgupload_row .single_imgupload_wrapper .imgupload.imgupload-crop .item-img-output {
                        width: 100%;
                        height: 120px;
                        object-fit: cover;
                        padding: 0;
                        background: #f8f8f8;
                        border: none;
                    }

    /** withdrawal section **/
    .acct__my_wallet_topup_withdraw_form .withdrawal_wrapper {
        max-width: 400px;
        background-color: #fff;
        padding: 12px 8px;
        border-radius: 3px;
    }

        .acct__my_wallet_topup_withdraw_form .withdrawal_wrapper #withdraw_form_submit_btn1 {
            padding: 8px 12px;
            font-size: 14px;
        }

    /***transaction table***/
    .acct__my_wallet_transaction_list .acct__my_wallet_transaction_list_mobile_content {
        background-color: #fff;
        border-radius: 3px;
        padding: 12px;
        padding-bottom: 12px;
        margin-top: 20px;
        padding-bottom: 20px;
    }

    table.ebm_table_custom.my_inappcredit_transact_table tbody tr td span.transact_amt {
        text-align: right;
        font-weight: 600;
        float: right;
    }
}

/* ---------------------------------------------------
    My bank page
----------------------------------------------------- */
.acct__my_bank_form h5 {
    margin-top: 25px;
}

.acct__my_bank_form p.my_bank_desc {
    font-size: 13px;
    color: #ccc;
    line-height: 22px;
}

/** (<480px) **/
@media (max-width: 480px) {

    .acct__my_bank_form .acct__my_bank_form_mobile_content h5 {
        margin: 10px 0 15px;
        font-size: 14px;
        font-weight: 700;
    }
}

/* ---------------------------------------------------
    My loan page
----------------------------------------------------- */
/**overwrite the tab styling**/
#user_account_dash_right_content_mobile .acct__my_loan_content .custom_tab_wrapper .custom__tab .nav-item .nav-link {
    padding: 8px 22px;
    font: 400 12px "Poppins", sans-serif;
}

.acct__my_loan_form h5 {
    margin-top: 25px;
}

.acct__my_loan_form table {
    width: 100%;
}

    .acct__my_loan_form table tbody tr {
        border: 1px solid #000;
        border-left: none;
        border-right: none;
    }

        .acct__my_loan_form table tbody tr td {
            padding: 8px;
            font-size: 14px;
            line-height: 22px;
            color: #000;
        }

            .acct__my_loan_form table tbody tr td img {
                height: 30px;
            }

            .acct__my_loan_form table tbody tr td a.loan_view_btn,
            .acct__my_loan_form table tbody tr td a.loan_continue_btn {
                margin: 0 10px;
                color: #FE4647;
                text-decoration: underline;
                cursor: pointer;
            }

/** (<480px) **/
@media (max-width: 480px) {

    .acct__my_loan_form .acct__my_loan_form_mobile_content {
        background-color: #fff;
        border-radius: 3px;
        padding: 12px;
        margin-top: 20px;
        padding-bottom: 20px;
    }

        .acct__my_loan_form .acct__my_loan_form_mobile_content h5 {
            margin: 10px 0 15px;
            font-size: 14px;
            font-weight: 700;
        }

        .acct__my_loan_form .acct__my_loan_form_mobile_content table tbody tr td {
            padding: 8px;
            font-size: 12px;
            color: #000;
            line-height: 18px;
        }

            .acct__my_loan_form .acct__my_loan_form_mobile_content table tbody tr td.td_icon_columns {
                width: 35px;
            }

            .acct__my_loan_form .acct__my_loan_form_mobile_content table tbody tr td.td_action_columns {
                width: 80px;
            }

            .acct__my_loan_form .acct__my_loan_form_mobile_content table tbody tr td img {
                height: 20px;
            }
}

/**************************************************************************************************************************/
/** View loan application info modal **/
/**************************************************************************************************************************/
.view_loan_application_info_form {
    padding: 25px 15px;
}

    /** Image **/
    .view_loan_application_info_form img {
        height: 85px;
        margin-top: 25px;
    }

@media (max-width: 992px) {
    .view_loan_application_info_form img {
        height: 65px;
    }
}

@media (max-width: 550px) {
    .view_loan_application_info_form img {
        height: 60px;
    }
}

.view_loan_application_info_form h4.success_text {
    color: #1C9A0B;
    margin-top: 8px;
}

.view_loan_application_info_form .view_loan_application_info_wrapper {
    padding: 10px 60px;
}

    .view_loan_application_info_form .view_loan_application_info_wrapper ul {
        margin-bottom: 25px;
    }

        .view_loan_application_info_form .view_loan_application_info_wrapper ul li {
            font-style: italic;
            color: #e62237;
            line-height: 22px;
        }

.view_loan_application_info_form .loan_application_info_card {
    margin-bottom: 30px;
} 

.view_loan_application_info_form .loan_application_info_card .loan_application_info_card_header {
    background-color: #e62237;
    color: #fff;
    line-height: 20px;
    font-size: 16px;
}

.view_loan_application_info_form .loan_application_info_card .loan_application_info_card_body .loanapp_info_media {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: start;
    align-items: flex-start;
    margin-bottom: 10px;
}

    .view_loan_application_info_form .loan_application_info_card .loan_application_info_card_body .loanapp_info_media .media_left {
        width: 165px;
        color: #13110c;
        font-size: 14px;
    }

    .view_loan_application_info_form .loan_application_info_card .loan_application_info_card_body .loanapp_info_media .media_body {
        padding-left: 20px;
        -ms-flex: 1;
        flex: 1;
        font-size: 14px;
        font-weight: 600;
        color: #e62237;
    }

.view_loan_application_info_form .loan_steps_wrapper p.loan_form_input_name {
    font-size: 14px;
    line-height: 20px;
}

.view_loan_application_info_form .loan_steps_wrapper p.loan_form_input_value {
    font-size: 14px;
    line-height: 20px;
    color: #000;
    font-weight: 500;
}

@media (max-width: 992px) {
    .view_loan_application_info_form .view_loan_application_info_wrapper {
        padding: 0 30px;
    }

    .view_loan_application_info_form h4.success_text {
        font-size: 1.2rem;
    }

    .view_loan_application_info_form p {
        font-size: 11px !important;
        line-height: 16px !important;
    }

    .view_loan_application_info_form .loan_application_info_card {
        margin-bottom: 25px;
    } 
    
    .view_loan_application_info_form .loan_application_info_card .loan_application_info_card_header {
        line-height: 18px;
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .view_loan_application_info_form h4.success_text {
        font-size: 1.2rem;
    }

    .view_loan_application_info_form p {
        font-size: 11px !important;
        line-height: 16px !important;
    }

    .view_loan_application_info_form .loan_application_info_card {
        margin-bottom: 25px;
    }
}

@media (max-width: 480px) {
    .view_loan_application_info_form .view_loan_application_info_wrapper {
        padding: 15px 0 0;
    }

    .view_loan_application_info_form h4.success_text {
        font-size: 1.1rem;
    }

    .view_loan_application_info_form .loan_steps_wrapper p.loan_form_input_name,
    .view_loan_application_info_form .loan_steps_wrapper p.loan_form_input_value {
        font-size: 11px !important;
        line-height: 16px !important;
    }

    .view_loan_application_info_form .loan_application_info_card .loan_application_info_card_body {
        padding: 15px 15px 5px;
    }

        .view_loan_application_info_form .loan_application_info_card .loan_application_info_card_body .loanapp_info_media .media_left {
            width: 110px;
            font-size: 11px;
            line-height: 16px;
        }

        .view_loan_application_info_form .loan_application_info_card .loan_application_info_card_body .loanapp_info_media .media_body {
            padding-left: 10px;
            font-size: 12px;
            font-weight: 600;
        }

    .view_loan_application_info_form h5 {
        font-size: 1rem;
    }
}

.view_loan_application_info_form h2.loan_application_info_section_title {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    width: 85%;
}

    .view_loan_application_info_form h2.loan_application_info_section_title a.btn {
        font-size: 12px;
        color: #fff;
        background: #EA1C30;
        padding: 3px 6px;
        border-radius: 50%;
        margin-left: 7px;
        position: absolute;
        line-height: 9px;
        display: inline-block;
        right: 20px;
        top: 8px;
    }

/********************************************************************************************************/
/********************************************************************************************************/
/********************************************************************************************************/
/********************************************************************************************************/
/********************************************************************************************************/
/********************************************************************************************************/
/********************************************************************************************************/
/* ---------------------------------------------------
    Marketplace
----------------------------------------------------- */
/** list grid toggle button **/
.list_grid_btn_group_wrapper .btn-secondary {
    color: #e62237;
    background-color: #fff;
    border-color: #e62237;
}

.list_grid_btn_group_wrapper .btn-secondary:hover {
    color: #e62237;
    background-color: #fff;
    border-color: #e62237;
}

.list_grid_btn_group_wrapper .btn-secondary:not(:disabled):not(.disabled).active,
.list_grid_btn_group_wrapper .btn-secondary:not(:disabled):not(.disabled):active {
    color: #fff !important;
    background-color: #e62237;
    border-color: #e62237;
}

/* ---------------------------------------------------
    Auction time left
----------------------------------------------------- */
.marketplace .sticky_wrapper,
.sticky_wrapper {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 99;
    box-shadow: 0px 50px 100px 0px rgba(5, 1, 64, 0.1);
}

.marketplace .ticket_item {
    width: 100%;
    margin-bottom: 0;
    padding: 15px 25px 0px;
    border-radius: unset;
    border-top: 5px solid #e62237;
}

/** Extra Small Device (Phones) (<768px) **/
@media (max-width: 767px) {
    .marketplace .ticket_item {
        padding: 10px 25px 0px;
    }
}

/*.marketplace .ticket_item::before {
    content: "";
    width: 100%;
    height: 10px;
    background: url("../../img/shape_bg.png") repeat scroll left bottom;
    position: absolute;
    bottom: -9px;
    left: 0;
}*/

.marketplace .ticket_item::after {
    bottom: 0px;
}

.marketplace .ticket_item h2 {
    color: #e62237;
    text-transform: unset;
}

.marketplace .ticket_item h2 small {
    font-size: 65%;
}

.marketplace .ticket_item p {
    line-height: 20px;
    margin-bottom: 10px !important;
}

/** Extra Small Device (Phones) (<768px) **/
@media (max-width: 767px) {
    .marketplace .ticket_item p {
        line-height: 18px;
        margin-bottom: 10px !important;
    }
}

.marketplace .ticket_item img {
    height: 35px;
    margin-left: 4px;
}

@media (max-width: 768px) {
    .marketplace .ticket_item h2 {
        font-size: 30px;
        margin-bottom: 0;
    }
}

.marketplace .ticket_item .icon {
    margin-bottom: 15px;
}

/* ---------------------------------------------------
    Auction - Filter, sort and bid item buttons
----------------------------------------------------- */
.marketplace .filter_sort_btn {
    padding: 14px 4px;
    text-align: center;
    font-size: 14px;
    line-height: 18px;
    /*width: 33.3%;*/ /** Three buttons **/
    width: 50%;
    border-right: 1px solid #ccc;
    cursor: pointer;
}

@media (max-width: 768px) {
    .marketplace .filter_sort_btn {
        padding: 14px 4px;
        text-align: center;
        font-size: 12px;
        line-height: 16px;
        /*width: 33.3%;*/ /** Three buttons **/
        width: 50%;
        border-right: 1px solid #ccc;
        cursor: pointer;
    }
}

.item_metadata_w_icon {
    display: inline-block;
    margin-right: 0;
    color: #7b7b93;
    font-size: 14px;
    line-height: 18px;
}

.item_metadata_w_icon .icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    line-height: 30px;
    text-align: center;
    background: #edfcec;
    display: inline-block;
    color: #fd475d;
    margin-right: 3px;
}

/* ---------------------------------------------------
    Auction - single item
----------------------------------------------------- */
#auction_item_wrapper .view-group {
    /*display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;*/
    padding-left: 0;
    margin-bottom: 0;
}

.single_auction_thumbnail {
    margin-bottom: 20px;
    padding: 0px;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px;
    box-shadow: 0px 2px 4px 0px rgba(12, 0, 46, .2);
}

.single_auction_thumbnail img.img-fluid {
    /*width: 400px;*/
    width: 100%;
    height: 250px;
    object-fit: cover;
    z-index: 80;
}

    .single_auction_thumbnail .thumb-sold-status {
        -webkit-transition: all 0.3s;
        -moz-transition: all 0.3s;
        transition: all 0.3s;
        background: rgba(216, 216, 216, 0.8);
        top: 100px;
        color: #FFF;
        font-size: 18px;
        font-weight: bolder;
        left: 0;
        letter-spacing: .75px;
        line-height: 1.1em;
        padding: 15px;
        position: absolute;
        text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
        text-shadow: rgba(255,255,255,0.5) 0px 1px 0px;
        text-transform: unset !important;
        box-shadow: 0px 0px 3px rgba(0,0,0,0.5);
        z-index: 2;
        width: 100%;
        text-align: center;
    }

    .single_auction_thumbnail .thumb-info-title {
        -webkit-transition: all 0.3s;
        -moz-transition: all 0.3s;
        transition: all 0.3s;
        background: rgba(23, 23, 23, 0.5);
        top: 0;
        color: #FFF;
        font-size: 16px;
        font-weight: 600;
        left: 0;
        letter-spacing: .75px;
        line-height: 1.1em;
        padding: 15px;
        position: absolute;
        text-align: left;
        text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
        text-transform: unset !important;
        z-index: 2;
        width: 100%;
    }

    .single_auction_thumbnail .item_metadata_title {
        font-size: 14px;
        margin-right: 25px;
    }

    .single_auction_thumbnail .item_metadata_price {
        margin-top: 5px;
    }

    .single_auction_thumbnail .biditem__add_to_fav,
    .single_auction_thumbnail .biditem__remove_to_fav {
        position: absolute;
        top: 265px;
        right: 20px;
    }

        .single_auction_thumbnail .biditem__add_to_fav i,
        .single_auction_thumbnail .biditem__remove_to_fav i {
            font-size: 22px;
            color: #e62237 !important;
        }

.badge-num {
    box-sizing: border-box;
    background: #fff;
    cursor: default;
    border-radius: 50%;
    color: #7b7b93;
    margin-top: -1rem;
    margin-left: .1rem;
    border: .2rem solid #fff;
    text-align: left;
    display: inline-block;
    animation: pulse 1.5s 1;
    height: 30px;
    width: 30px;
}

        .badge-num:after {
            content: '';
            position: absolute;
            /*top: -.1rem;
            left: -.1rem;*/
            top: 2px;
            left: 0;
            border: 2px solid rgba(255,0,0,.5);
            opacity: 0;
            border-radius: 50%;
            width: 100%;
            height: 100%;
            animation: sonar 1.5s 1;
        }

@keyframes sonar {
    0% {
        transform: scale(.9);
        opacity: 1;
    }

    100% {
        transform: scale(2);
        opacity: 0;
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    20% {
        transform: scale(1.4);
    }

    50% {
        transform: scale(.9);
    }

    80% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}

/* ---------------------------------------------------
    Auction - single item 
    - Ribbon SOLD
----------------------------------------------------- */
.ribbon-wrapper-sold {
    width: 100px;
    height: 100px;
    overflow: hidden;
    position: absolute;
    top: 0;
    right: 0;
}

.ribbon-sold {
    font: bold 12px Open sans;
    color: #333;
    text-align: center;
    text-shadow: rgba(255,255,255,0.5) 0px 1px 0px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    position: relative;
    padding: 6px 0;
    left: -4px;
    top: 22px;
    width: 135px;
    background-color: grey;
    color: #fff;
    font-size: 18px;
    font-weight: bolder;
    -webkit-box-shadow: 0px 0px 3px rgba(0,0,0,0.5);
    -moz-box-shadow: 0px 0px 3px rgba(0,0,0,0.5);
    box-shadow: 0px 0px 3px rgba(0,0,0,0.5);
}

    .ribbon-sold:before, 
    .ribbon-sold:after {
        content: "";
        border-top: 5px solid #7b1121;
        border-left: 5px solid transparent;
        border-right: 5px solid transparent;
        position: absolute;
        bottom: -3px;
    }

    .ribbon-sold:before {
        left: 0;
    }

    .ribbon-sold:after {
        right: 0;
    }

/* ---------------------------------------------------
    Auction - filter side panel
----------------------------------------------------- */
.sidenav {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 9999;
    top: 0;
    right: 0;
    background-color: rgba(0,0,0, 0.7);
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 40px;
}

    .sidenav .sidenav_wrapper {
        padding: 20px 20px 40px;
        background-color: #fff;
    }

.sidenav .closebtn {
    position: absolute;
    /*top: 0;*/
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
}

@media (max-width: 768px) {
    .sidenav {
        padding-top: 15px;
    }
}

#clear_filter_auction_btn,
#submit_filter_auction_btn {
    width: 100%;
}

#clear_filter_auction_btn {
    background-color: #f8f8f8;
    border-color: #f8f8f8;
    color: #677294;
}

#slider_yearrange_output,
#slider_pricerange_output {
    margin-left: 5px;
    border: 0;
    color: #e62237;
    font-weight: bold;
    letter-spacing: .8px;
}

/* ---------------------------------------------------
    Auction - Bid items side panel
----------------------------------------------------- */
#bidItemSidenav .single_auction_thumbnail img.img-fluid {
    /*width: 480px;*/
    width: 100%;
    height: 300px;
    object-fit: cover;
}

#bidItemSidenav .single_auction_thumbnail .thumb-info-title {
    top: 265px;
}

@media (max-width: 768px) {
    #bidItemSidenav .single_auction_thumbnail img.img-fluid {
        /*width: 400px;*/
        width: 100%;
        height: 250px;
        object-fit: cover;
    }

    #bidItemSidenav .single_auction_thumbnail .thumb-info-title {
        top: 217px;
    }
}

#bidItemSidenav #_biditem_auction_item_wrapper {
    min-height: 500px;
}

#bidItemSidenav .single_auction_thumbnail .biditem__add_to_fav,
#bidItemSidenav .single_auction_thumbnail .biditem__remove_to_fav {
    position: absolute;
    top: 315px;
    right: 20px;
}

    #bidItemSidenav .single_auction_thumbnail .biditem__add_to_fav i,
    #bidItemSidenav .single_auction_thumbnail .biditem__remove_to_fav i {
        font-size: 22px;
        color: #e62237 !important;
    }

/* ---------------------------------------------------
    Auction - Bid items detail page
----------------------------------------------------- */
.breadcrumb {
    background-color: transparent;
    margin-bottom: 0;
    margin-top: 0;
}

.breadcrumb li.breadcrumb-item a {
    color: #565d64;
    font-size: 14px;
}

.web_header_title {
    margin-top: 11px;
}

    .web_header_title .badge {
        line-height: 25px;
        margin-left: 10px;
    }

.mobile_header_title {
    font-size: 16px;
    margin-top: 8px;
}

.marketplace_bid_item_header_mobile {
    margin: -10px;
}

@media (min-width: 767px) {
    .mobile_header_title {
        display: none;
    }

    .marketplace_bid_item_header_mobile {
        display: none;
    }
}

@media (max-width: 767px) {
    .marketplace_bid_item_header_web {
        display: none;
    }
}

.backtomarketplacebtn {
    padding: 8px 20px;
}

@media (max-width: 768px) {
    #marketplace_detail_page_container.marketplace .sticky_wrapper {
        margin: -10px;
    }
}

/* ---------------------------------------------------
    Auction - Bid items details thumb
----------------------------------------------------- */
.pictures {
    position: relative;
}

    .pictures img.bid__item__profile_img {
        width: 100%;
        object-fit: cover;
    }

.pictures figure:not(.item_main_thumb) {
    display: none;
}

    .pictures figure span.item_thumb_status_info.badge {
        top: 15px;
        right: 15px;
        position: absolute;
        line-height: 25px;
        font-size: 18px;
        font-weight: 700;
        padding: 8px 20px;
    }

    .pictures figure span.item_thumb_sold_status {
        -webkit-transition: all 0.3s;
        -moz-transition: all 0.3s;
        transition: all 0.3s;
        background: rgba(216, 216, 216, 0.8);
        top: 40%;
        color: #FFF;
        font-size: 18px;
        font-weight: bolder;
        left: 0;
        letter-spacing: .75px;
        line-height: 1.1em;
        padding: 15px;
        position: absolute;
        text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
        text-shadow: rgba(255,255,255,0.5) 0px 1px 0px;
        text-transform: unset !important;
        box-shadow: 0px 0px 3px rgba(0,0,0,0.5);
        z-index: 2;
        width: 100%;
        text-align: center;
    }

.pictures figure div.item_thumb_info {
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
    background: rgba(23, 23, 23, 0.8);
    bottom: 0;
    color: #FFF;
    font-size: 14px;
    font-weight: 400;
    left: 0;
    letter-spacing: .75px;
    padding: 9px 11px 9px;
    position: absolute;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
    text-transform: unset !important;
    z-index: 2;
    width: 100%;
}

.pictures figure div.item_thumb_info .score_info {
    float: left;
}

.pictures figure div.item_thumb_info .score_info i {
    margin-top: -2px;
}

.pictures figure div.item_thumb_info .score_info span {
    margin-left: 5px;
    font-weight: 700;
}

.pictures figure div.item_thumb_info .thumbnail_info {
    float: right;
    font-size: 12px;
    font-style: italic;
}

#auction_item_wrapper .auction__item .single_auction_item_name_addtofav_session {
    position: relative;
}

#auction_item_wrapper .auction__item .item_metadata_title {
    margin-right: 35px !important;
    margin-bottom: 12px !important;
}

#auction_item_wrapper .auction__item .biditem__add_to_fav,
#auction_item_wrapper .auction__item .biditem__remove_to_fav {
    position: absolute;
    top: 2px;
    right: 25px;
}

    #auction_item_wrapper .auction__item .biditem__add_to_fav i,
    #auction_item_wrapper .auction__item .biditem__remove_to_fav i {
        font-size: 26px;
        color: #e62237 !important;
    }

.single_auction_item_info .current_bid_price_text {
    font-size: 11px;
    font-weight: 300;
    display: block;
    margin-top: 3px;
}

.single_auction_item_info .item_metadata_price {
    font-size: 1.8rem;
}

    .single_auction_item_info .item_metadata_price span.badge {
        position: absolute;
        display: block;
        /*width: 60%;*/
        font-size: 14px;
        margin-top: -28px;
        padding: 6px 8px;
    }

.single_auction_item_info .item_metadata_previous_bid_price {
    font-size: 16px;
}

.numofviewed {

}

.numofviewed .alert {
    padding: 8px 12px;
}

    .numofviewed .alert p {
        padding-left: 35px;
        margin-bottom: 0;
        color: #856404;
    }

    .numofviewed .fa-eye {
        margin-right: 7px;
        margin-left: -35px;
        margin-top: -3px;
        width: 25px;
        position: absolute;
    }

@media (max-width: 768px) {
    .numofviewed .alert p {
        padding-left: 30px;
        margin-bottom: 0;
        color: #856404;
    }

    .numofviewed .fa-eye {
        margin-right: 7px;
        margin-left: -30px;
        width: 20px;
    }
}


.directbuybtn {
    display: block !important;
    position: relative;
    margin-top: 0;
}

.directbuybtn button {
    background-color: #FF525D;
    font-size: 18px;
}

.directbuybtn button:hover {
    background-color: #FF525D;
    color: #fff;
}

    .directbuybtn button img {
        height: 30px;
        margin-right: 5px;
    }

    .directbuybtn span {
        font-size: 24px;
        font-weight: 700;
    }

@media (max-width: 768px) {
    .directbuybtn button {
        padding: 8px 16px;
        font-size: 14px;
    }

        .directbuybtn span {
            font-size: 22px;
            font-weight: 700;
        }
}

@media (min-width: 768px) and (max-width: 1199px) {
    .directbuybtn button {
        padding: 8px 16px;
        font-size: 14px;
    }

    .directbuybtn span {
        font-size: 22px;
        font-weight: 700;
    }
}

.bid_auction_form {
    position: relative;
}

button.manual_bid {
    color: #fff;
    background: #e66f22;
    border: 1px solid #e66f22;
    font-size: 12px;
    margin-top: 5px;
    border-radius: 50px;
    padding: 16px 12px;
    margin-right: 10px;
}

.bid_auction_form .input_bid_amount {
    font: 400 16px "Poppins", sans-serif;
    color: #677294;
    border-radius: 3px;
    background-color: #fff;
    -webkit-box-shadow: 0px 3px 4px 2px rgba(12, 0, 46, 0.3);
    box-shadow: 0px 3px 4px 2px rgba(12, 0, 46, 0.3);
    border-radius: 0px;
    border: 0px;
    padding-left: 20px;
    height: 55px;
    z-index: 1;
    border: 1px solid transparent;
    letter-spacing: 1.2px;
}

    .bid_auction_form .input_bid_amount:focus {
        border: 1px solid red;
        z-index: 1;
    }

.bid_auction_form button.submit_max_bid {
    border-radius: 30px;
    font-size: 16px;
    position: absolute;
    height: 40px;
    width: 40px;
    padding: 5px;
    z-index: 10;
    cursor: pointer;
    margin: 7px 0 6px;
    color: #fff;
    background: #e62237;
    border: 1px solid #e62237;
    right: 10px;
}

#collapseManualBidForm h2.card_title {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
}

#collapseManualBidForm p.card_msg {
    font-style: italic;
    font-size: 12px;
    margin: 8px 0 5px;
    line-height: 18px;
}

#collapseManualBidForm p.card_submsg {
    font-size: 12px;
    margin: 5px 0;
    line-height: 18px;
    color: #0088cc !important;
    color: blue !important;
}

.input_manual_bid_amount {
    font-size: 28px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
}

/** Inspector notes **/
#inspector_notes_title {
    margin-top: 30px;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 600;
}

#inspector_notes {
    max-height: 225px;
    background: whitesmoke;
    overflow-x: hidden;
    width: 100%;
    padding: 15px;
    border: 1px solid rgba(0,0,0,0.25);
    margin-top: 10px !important;
    margin-bottom: 30px !important;
}

    #inspector_notes p {
        line-height: 18px;
        font: 300 14px/18px "Poppins", sans-serif;
    }

.single_auction_inspection_damage_tab {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

/* ---------------------------------------------------
    Auction - Bid items details inspection tab
----------------------------------------------------- */
    .single_auction_inspection_damage_tab .nav-item {
        width: calc(100% / 2);
    }

        .single_auction_inspection_damage_tab .nav-item .nav-link {
            text-align: center;
            font-size: 14px;
            font-weight: 300;
            color: #7b7b93;
            background: #faf7f8;
            border-radius: 0px;
            border: 0px;
            line-height: 20px;
            border-left: 2px solid #f7f0f0;
            border-bottom: 2px solid #f7f0f0;
            text-transform: uppercase;
            padding: 25px 0;
            height: 100%;
        }

    .single_auction_inspection_damage_tab .nav-item .nav-link.active {
        background: #fff;
        border-bottom-color: #fff;
        font-weight: 600;
        color: #222d39;
    }

.single_auction_inspection_damage_tab .nav-item:first-child .nav-link {
    border-left: 0px;
}

.inspection_report_wrapper ul li i {
    margin-top: 2px;

}

.inspection_report_wrapper .tab-pane .card {
    border: 0px;
    border-radius: 0px;
    background: transparent;
    border-bottom: 1px solid #e4e0ee;
}

    .inspection_report_wrapper .tab-pane .card .card-header {
        padding: 0px;
        border: 0px;
        background: transparent;
    }

        .inspection_report_wrapper .tab-pane .card .card-header .btn {
            color: #5e2ced;
            display: block;
            width: 100%;
            text-align: left;
            font: 500 18px/26px "Poppins", sans-serif;
            padding: 20px 30px 20px 0px;
            position: relative;
            white-space: normal;
        }

            .inspection_report_wrapper .tab-pane .card .card-header .btn i {
                position: absolute;
                right: 0;
                top: 50%;
                -webkit-transform: translateY(-50%);
                -ms-transform: translateY(-50%);
                transform: translateY(-50%);
                display: none;
                font-size: 20px;
            }

                .inspection_report_wrapper .tab-pane .card .card-header .btn i + i {
                    display: block;
                }

            .inspection_report_wrapper .tab-pane .card .card-header .btn.collapsed {
                color: #576370;
            }

                .inspection_report_wrapper .tab-pane .card .card-header .btn.collapsed i {
                    display: block;
                }

                    .inspection_report_wrapper .tab-pane .card .card-header .btn.collapsed i + i {
                        display: none;
                    }

    .inspection_report_wrapper .tab-pane .card .card-body {
        padding: 0px 0px 45px;
        font: 400 15px/26px "Poppins", sans-serif;
        color: #677294;
    }

.inspection_report_wrapper .accordion .card:first-of-type {
    border-radius: 0;
}

.inspection_report_wrapper .accordion .card .card-header {
    padding: 6px 1.25rem;
    margin-bottom: 0;
    background-color: rgba(0,0,0,.03);
    border-bottom: 1px solid rgba(0,0,0,.125);
    text-align: right;
}

.inspection_report_wrapper .accordion .card .card-header h2 button {
    font-weight: 700;
    font-size: 14px;
}

.inspectionreport_toggle .btn.btn-primary {
    background: #e62237;
    border: 1px solid #e62237;
}

/* ---------------------------------------------------
    Auction - Bid items details damage photos tab
----------------------------------------------------- */
.damage__pictures figure:not(:last-child) {
    border-bottom: 1px solid rgba(0,0,0,.125);
    padding-bottom: 15px;
}

.damage__pictures figure img {
    max-width: 50%;
}

.damage__pictures figure p {
    display: inline-block;
    vertical-align: top;
    padding: 0;
    padding-left: 10px;
}

.damage__pictures figure span {
    display: inline-block;
    vertical-align: top;
    padding: 0;
    padding-left: 16px;
    width: 45%;
}

/* ---------------------------------------------------
    Auction - My Appointment
----------------------------------------------------- */
.my_appt_wrapper {
    margin: 0 auto;
}

    .my_appt_wrapper .media {
        border-radius: 6px;
        background-color: white;
        box-shadow: 0px 2px 4px 0px rgba(12, 0, 46, .2);
        padding: 20px 40px;
        margin-bottom: 20px;
        -webkit-transform: translateY(10px);
        -ms-transform: translateY(10px);
        transform: translateY(10px);
        -webkit-transition: all 0.3s linear;
        -o-transition: all 0.3s linear;
        transition: all 0.3s linear;
    }

    .my_appt_wrapper .media.cancelled_status {
        background-color: #f8f8f8;
    }

        .my_appt_wrapper .media .media-left {
            margin-right: 70px;
            min-width: 120px;
        }

            .my_appt_wrapper .media .media-left img {
                margin-bottom: 12px;
                width: 120px;
            }

            .my_appt_wrapper .media .media-left a {
                display: block;
                font-size: 16px;
                line-height: 20px;
                color: #2c2c51;
                margin-top: 6px;
            }

                .my_appt_wrapper .media .media-left a i {
                    color: #fd475d;
                    padding-right: 8px;
                }

        .my_appt_wrapper .media .media-body {
            border-left: 1px solid #f1ece5;
            padding-left: 70px;
        }

            .my_appt_wrapper .media .media-body .h_head {
                font-weight: 500;
                font-size: 16px;
                margin-bottom: 3px;
            }

            .my_appt_wrapper .media .media-body span {
                color: #505975;
                display: block;
                font-weight: 500;
                margin-right: 0;
            }

                .my_appt_wrapper .media .media-body span a {
                    color: #fba820;
                }

            .my_appt_wrapper .media .media-body p {
                color: #7b7b93;
                margin-bottom: 0;
            }

    .my_appt_wrapper .show .media {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }

    .my_appt_wrapper .media .badge {
        line-height: 25px;
        margin-bottom: 10px;
        padding: 5px 12px;
    }

@media (max-width: 768px) {
    .my_appt_wrapper .media {
        display: block;
    }

    .my_appt_wrapper .media .media-left {
        margin-right: 0;
    }

    .my_appt_wrapper .media .media-body {
        border-left: unset;
        margin-top: 10px;
        padding-left: 0;
    }

    .my_appt_wrapper .media .media-body button {
        margin-bottom: 5px;
    }
}

.myappt .sticky_wrapper, .sticky_wrapper {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 99;
    box-shadow: unset;
}

.myappt .actions_button {
    padding: 14px 25px;
    text-align: center;
    font-size: 16px;
    line-height: 25px;
    /*width: 50%;*/
    width: 100%;
    border: 1px solid #ccc;
    cursor: pointer;
    color: #677294;
}

/* ---------------------------------------------------
    Auction - My Transaction
----------------------------------------------------- */
.my_transact_wrapper {
    margin: 0 auto;
}

    .my_transact_wrapper .card {
        margin-bottom: 20px;
        box-shadow: 0px 2px 4px 0px rgba(12, 0, 46, .2);
    }

    .my_transact_wrapper .card .card-header {
        padding: 0;
    }

    .my_transact_wrapper .media {
        border-radius: 6px;
        background-color: white;
        /*box-shadow: 0px 2px 4px 0px rgba(12, 0, 46, .2);*/
        padding: 20px 40px;
        margin-top: 0;
        -webkit-transition: all 0.3s linear;
        -o-transition: all 0.3s linear;
        transition: all 0.3s linear;
    }

        .my_transact_wrapper .media .media-left {
            margin-right: 70px;
        }

            .my_transact_wrapper .media .media-left img {
                margin-bottom: 12px;
                width: 120px;
            }

            .my_transact_wrapper .media .media-left a {
                display: block;
                font-size: 16px;
                line-height: 20px;
                color: #2c2c51;
                margin-top: 6px;
            }

                .my_transact_wrapper .media .media-left a i,
                .my_transact_wrapper .media .media-left a .icon {
                    color: #fd475d;
                    padding-right: 8px;
                    font-size: 16px;
                }

        .my_transact_wrapper .media .media-body {
            border-left: 1px solid #f1ece5;
            padding-left: 70px;
        }

            .my_transact_wrapper .media .media-body .h_head {
                font-weight: 500;
                font-size: 16px;
                margin-bottom: 3px;
            }

            .my_transact_wrapper .media .media-body span {
                color: #7b7b93;
                display: block;
                margin-right: 10px;
            }

                .my_transact_wrapper .media .media-body span a {
                    color: #fba820;
                    font-size: 20px;
                    font-weight: 600;
                }

            .my_transact_wrapper .media .media-body p {
                color: #7b7b93;
                margin-bottom: 0;
                padding-top: 10px;
            }

    .my_transact_wrapper .show .media {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }

    .my_transact_wrapper .media .badge {
        line-height: 25px;
        margin-bottom: 10px;
        padding: 5px 12px;
    }

@media (max-width: 768px) {
    .my_transact_wrapper .media {
        display: block;
    }

        .my_transact_wrapper .media .media-left {
            margin-right: 0;
        }

        .my_transact_wrapper .media .media-body {
            border-left: unset;
            margin-top: 10px;
            padding-left: 0;
        }

            .my_transact_wrapper .media .media-body button {
                margin-bottom: 5px;
            }
}

.my_transact_wrapper .single_transact_item .item_sales_price {
    font-size: 18px !important;
    font-weight: 700 !important;
    line-height: 22px !important;
}

.my_transact_wrapper .single_transact_item .item_previous_bid_price {
    font-size: 12px;
    line-height: 16px;
}

.my_transact_wrapper .single_transact_item ul.item_other_info li {
    line-height: 22px;
    color: #505975;
    font-weight: 300;
    font-size: 14px;
}

.my_transact_wrapper .single_transact_item ul.item_other_info li span {
    color: #505975;
    display: inline-block;
    font-weight: 500;
    margin-right: 0;
}

/* ---------------------------------------------------
    My Loan page
----------------------------------------------------- */
.my_loan_wrapper {
    margin: 0 auto;
}

    .my_loan_wrapper .media {
        border-radius: 6px;
        background-color: white;
        box-shadow: 0px 2px 4px 0px rgba(12, 0, 46, .2);
        padding: 20px 40px;
        margin-bottom: 20px;
        -webkit-transform: translateY(10px);
        -ms-transform: translateY(10px);
        transform: translateY(10px);
        -webkit-transition: all 0.3s linear;
        -o-transition: all 0.3s linear;
        transition: all 0.3s linear;
    }

        .my_loan_wrapper .media .media-left {
            margin-right: 70px;
            min-width: 120px;
        }

            .my_loan_wrapper .media .media-left img {
                margin-bottom: 12px;
                width: 120px;
            }

            .my_loan_wrapper .media .media-left a {
                display: block;
                font-size: 16px;
                line-height: 20px;
                color: #2c2c51;
                margin-top: 6px;
            }

                .my_loan_wrapper .media .media-left a i {
                    color: #fd475d;
                    padding-right: 8px;
                }

                    .my_loan_wrapper .media .media-left a i.fas {
                        font-size: 12px;
                        margin-left: 3px;
                    }

        .my_loan_wrapper .media .media-body {
            border-left: 1px solid #f1ece5;
            padding-left: 70px;
        }

            .my_loan_wrapper .media .media-body .h_head {
                font-weight: 500;
                font-size: 16px;
                margin-bottom: 3px;
            }

            .my_loan_wrapper .media .media-body span {
                color: #505975;
                display: block;
                font-weight: 500;
                margin-right: 0;
            }

                .my_loan_wrapper .media .media-body span a {
                    color: #fba820;
                }

            .my_loan_wrapper .media .media-body p {
                color: #7b7b93;
                margin-bottom: 0;
            }

    .my_loan_wrapper .item_sales_price {
        font-size: 18px !important;
        font-weight: 700 !important;
        line-height: 22px !important;
    }

    .my_loan_wrapper .media .badge {
        line-height: 25px;
        margin-bottom: 10px;
        padding: 5px 12px;
    }

@media (max-width: 768px) {
    .myloanapp .media {
        display: block;
    }

        .myloanapp .media .media-left {
            margin-right: 0;
        }

        .myloanapp .media .media-body {
            border-left: unset;
            margin-top: 10px;
            padding-left: 0;
        }
}

.myloanapp .sticky_wrapper {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 99;
    box-shadow: unset;
}

.myloanapp .actions_button {
    padding: 14px 25px;
    text-align: center;
    font-size: 16px;
    line-height: 25px;
    /*width: 50%;*/
    width: 100%;
    border: 1px solid #ccc;
    cursor: pointer;
    color: #677294;
}

/**************************************************************************************************************************/
/*** In App credit add page
    ***/
/**************************************************************************************************************************/
/** upload image **/
.upload_img_wrapper {
    position: relative;
    display: block;
}

.upload-img-box {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    width: 90px;
    height: 70px;
    border: 1px solid #ced4da;
    text-align: center;
    margin: 5px 10px 5px 0;
}

    .upload-img-box i {
        line-height: 72px;
    }

    .upload-img-box img {
        object-fit: cover !important;
        width: 100%;
        height: 100%;
    }

    .upload-img-box .remove-img-button {
        background-color: #C02942 !important;
        color: #fff !important;
        border-radius: 50%;
        height: 18px;
        width: 18px;
        position: absolute;
        top: -7px !important;
        right: -7px !important;
        font-size: 11px;
    }

        .upload-img-box .remove-img-button i {
            line-height: 18px;
            margin-left: -6px;
            position: absolute;
        }


    .upload-img-box .overlay-effect {
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        opacity: 1;
        transition: .5s ease;
        background-color: rgba(0, 0, 0, 0.6);
        overflow: hidden;
    }

        .upload-img-box .overlay-effect i {
            font-size: 26px;
            color: #fff;
        }

.upload_event_photos_error_msg.alert {
    padding: 0 0 0 15px;
    border: unset;
    font-size: 14px;
}

/** Inappcredit **/
.inappcredit_info {
    border: 1px solid #f4f4f9;
    border: 1px solid #ccc;
    background-color: white;
    -webkit-box-shadow: 0px 2px 4px 0px rgba(12, 0, 46, 0.04);
    box-shadow: 0px 2px 4px 0px rgba(12, 0, 46, 0.04);
    padding: 25px;
}

    .inappcredit_info .info_head {
        /*border-bottom: 1px solid #eeebf6;*/
        padding-bottom: 10px;
    }

        .inappcredit_info .info_head i {
            font-size: 34px;
            color: #e62237;
            text-shadow: 0px 14px 30px rgba(94, 44, 237, 0.4);
            margin-bottom: 20px;
            display: inline-block;
        }

        .inappcredit_info .info_head .amount {
            color: #e62237;
        }

    .inappcredit_info .info_item {
        position: relative;
        padding-left: 30px;
        margin-top: 25px;
    }

        .inappcredit_info .info_item i {
            color: #9979f7;
            font-size: 18px;
            position: absolute;
            left: 0;
            top: 5px;
        }

        .inappcredit_info .info_item h6 {
            font-size: 18px;
            color: #222d39;
            font-family: "Poppins", sans-serif;
            font-weight: 400;
            margin-bottom: 5px;
        }

        .inappcredit_info .info_item p {
            margin-bottom: 0px;
            font-size: 14px;
            font-weight: 300;
            color: #677294;
        }

/**************************************************************************************************************************/
/** FAQ page **/
/**************************************************************************************************************************/
#accordion-style-1 h1,
#accordion-style-1 a {
    color: #576370;
}

#accordion-style-1 .btn-link {
    background-color: transparent;
    text-decoration: none !important;
    font-size: 16px;
    font-weight: 500;
    line-height: 22px;
    padding-left: 0;
}

@media (max-width: 768px) {
    #accordion-style-1 {
        font-size: 12px;
    }

        #accordion-style-1 .btn-link {
            font-size: 13px;
            white-space: unset;
        }
}

@media (min-width: 1200px) {
    #accordion-style-1 img.list-group-image {
        max-width: 400px !important;
    }
}

#accordion-style-1 .card-body {
    border-top: 2px solid #e62237;
}

#accordion-style-1 .card .card-header .btn.collapsed {
    color: #576370;
}

#accordion-style-1 .card .card-header .btn:not(.collapsed) {
    color: #e62237;
}

#accordion-style-1 .card .card-header .btn.collapsed .icon.main {
    display: none;
}

#accordion-style-1 .card .card-header .btn.collapsed .icon.second {
    display: inline-block;
}

#accordion-style-1 .card .card-header .btn .icon.main {
    display: inline-block;
}

#accordion-style-1 .card .card-header .btn .icon.second {
    display: none;
}

/**************************************************************************************************************************/
/** Add Appointment page **/
/**************************************************************************************************************************/
/* ---------------------------------------------------
        Appt date picker
    ----------------------------------------------------- */
.appt_datepicker .datepicker {
    width: 100%;
    padding: 50px 20px;
    box-shadow: 0px 2px 4px 2px rgba(12, 0, 46, .1);
}

    .appt_datepicker .datepicker table {
        width: 100%;
    }

        .appt_datepicker .datepicker table thead {
            width: 100%;
        }

        .appt_datepicker .datepicker table tfoot .clear {
            background: transparent;
            /*border: 1px solid #e62237;*/
            color: #e62237;
            padding: 4px;
        }

        .appt_datepicker .datepicker table tr td.active:active,
        .appt_datepicker .datepicker table tr td.active.highlighted:active,
        .appt_datepicker .datepicker table tr td.active.active,
        .appt_datepicker .datepicker table tr td.active.highlighted.active {
            color: #fff;
            background-color: #e62237;
            border-color: #e62237;
            border-radius: 4px;
        }

    .appt_datepicker .datepicker .datepicker-switch,
    .appt_datepicker .datepicker .prev,
    .appt_datepicker .datepicker .next,
    .appt_datepicker .datepicker tfoot tr th {
        color: #222d39;
    }

    .appt_datepicker .datepicker table tr th.dow {
        color: #222d39;
    }

    .appt_datepicker .datepicker table tr td.disabled {
        opacity: .3;
    }

@media (max-width: 768px) {
    .appt_datepicker .datepicker {
        padding: 30px 20px;
    }
}

/* ---------------------------------------------------
        Appt time slot picker
    ----------------------------------------------------- */
.appt_timeslotpicker {
    width: 100%;
    height: 340px;
    padding: 20px 15px 15px;
    box-shadow: 0px 2px 4px 2px rgba(12, 0, 46, .1);
}

    .appt_timeslotpicker hr {
        margin: 12px 0;
    }

@media (max-width: 768px) {
    .appt_timeslotpicker {
        height: auto;
    }
}

#apptdaterequiredmsg,
#timeslotrequiredmsg,
#agreepolicyrequiredmsg {
    margin-bottom: .5rem;
    color: #721c24;
    width: 100%;
}

/* ---------------------------------------------------
        Appt time slot checkbox
    ----------------------------------------------------- */
.custom__checkboxes_grp [type="checkbox"]:checked,
.custom__checkboxes_grp [type="checkbox"]:not(:checked),
.custom__checkboxes_grp [type="radio"]:checked,
.custom__checkboxes_grp [type="radio"]:not(:checked) {
    position: absolute;
    left: -9999px;
    width: 0;
    height: 0;
    visibility: hidden;
}

.custom__checkboxes_grp .checkbox-tools:checked + label,
.custom__checkboxes_grp .checkbox-tools:not(:checked) + label {
    position: relative;
    display: inline-block;
    padding: 8px;
    width: 85px;
    font-size: 13px;
    line-height: 17px;
    letter-spacing: 1px;
    margin: 0 auto;
    margin-left: 0;
    margin-right: 5px;
    margin-bottom: 0;
    text-align: center;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    text-transform: uppercase;
    color: #fff;
    -webkit-transition: all 300ms linear;
    transition: all 300ms linear;
}

.custom__checkboxes_grp .checkbox-tools:not(:checked) + label {
    /*background-color: #5d5e6a;*/
    background-color: #fff;
    color: #e62237;
    border: 1px solid #e62237;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1);
}

.custom__checkboxes_grp .checkbox-tools:checked + label {
    background-color: transparent;
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
}

.custom__checkboxes_grp .checkbox-tools:not(:checked) + label:hover {
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
}

.custom__checkboxes_grp .checkbox-tools:checked + label::before,
.custom__checkboxes_grp .checkbox-tools:not(:checked) + label::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 4px;
    background-color: #e62237;
    z-index: -1;
}

.custom__checkboxes_grp .checkbox-tools + label.lbl_disabled {
    background-color: #ececec;
    border: 1px solid #bbb;
    color: #bbb;
    text-decoration: line-through;
}

/** Extra Small Device (Phones) (<768px) **/
@media (max-width: 767px) {
    .custom__checkboxes_grp .checkbox-tools:checked + label,
    .custom__checkboxes_grp .checkbox-tools:not(:checked) + label {
        position: relative;
        display: inline-block;
        padding: 8px;
        width: 85px;
        font-size: 12px;
        line-height: 16px;
        letter-spacing: 1px;
        margin: 0 auto;
        margin-left: 0;
        margin-right: 2px;
    }
}

/* ---------------------------------------------------
        Hamburger menu
    ----------------------------------------------------- */
.hamburger-menu-button {
    width: 50px;
    height: 50px;
    display: block;
    position: fixed;
    margin: -10px 0 -10px -30px;
    z-index: 100;
    color: #fff;
    background-color: #13110c;
    border: unset;
    border-radius: unset;
    padding: 10px 20px;
    box-sizing: content-box;
    text-indent: 100%;
    color: transparent;
    white-space: nowrap;
    cursor: pointer;
    overflow: hidden;
    opacity: .95;
}

.hamburger-menu-button-open {
    top: 50%;
    margin-top: -1px;
    left: 50%;
    margin-left: -12px;
}

    .hamburger-menu-button-open,
    .hamburger-menu-button-open::before,
    .hamburger-menu-button-open::after {
        position: absolute;
        width: 24px;
        height: 2px;
        background: #fff;
        border-radius: 4px;
        -webkit-transition: all 0.3s;
        transition: all 0.3s;
    }

        .hamburger-menu-button-open::before,
        .hamburger-menu-button-open::after {
            left: 0;
            content: "";
        }

        .hamburger-menu-button-open::before {
            top: 6px;
        }

        .hamburger-menu-button-open::after {
            bottom: 6px;
        }

.hamburger-menu-button-close {
    background: transparent;
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

    .hamburger-menu-button-close::before {
        -webkit-transform: translateY(-6px) rotate(45deg);
        transform: translateY(-6px) rotate(45deg);
    }

    .hamburger-menu-button-close::after {
        -webkit-transform: translateY(6px) rotate(-45deg);
        transform: translateY(6px) rotate(-45deg);
    }

.mobile_sidebarCollapse {
    display: none;
}

@media (max-width: 1024px) {
    .hamburger-menu-button {
        position: relative !important;
    }

    .hamburger-menu-button span {
        display: block;
    }

    .web_sidebarCollapse {
        display: none;
    }

    .mobile_sidebarCollapse {
        display: block;
    }
}

@media (max-width: 992px) {
    .hamburger-menu-button {
        margin: -10px 0 -10px -15px;
    }
}

.navbar__title {
    margin: 12px auto;
}

/* ---------------------------------------------------
       My appt page reminder
----------------------------------------------------- */
.appt_reminder__msg p {
    padding-left: 8px;
    display: inline-block;
}

    .appt_reminder__msg p.second_msg {
        padding-left: 39px;
        display: block;
    }

@media (max-width: 768px) {

    .appt_reminder__msg i {
        font-size: 24px !important;
    }

    .appt_reminder__msg p {
        padding-left: 0 !important;
        margin-bottom: 10px !important;
        display: block;
    }
}

/**************************************************************************************************************************/
/** Admin fees table **/
/**************************************************************************************************************************/
.marketplace_admin_fees_table {
    width: 80%;
    margin: 0 auto;
    text-align: left;
}

    .marketplace_admin_fees_table .table {
        margin: 0 auto;
        text-align: left;
        font-size: 15px;
        line-height: 18px;
    }

        .marketplace_admin_fees_table .table th {
            border-top: 0;
        }

        .marketplace_admin_fees_table .table td,
        .marketplace_admin_fees_table .table th {
            padding: .60rem;
        }

    .marketplace_admin_fees_table p {
        color: #F12C4A;
    }

@media (max-width:768px) {
    .marketplace_admin_fees_table {
        width: 100%;
    }

        .marketplace_admin_fees_table .table {
            font-size: 11px;
            line-height: 13px;
        }

            .marketplace_admin_fees_table .table td,
            .marketplace_admin_fees_table .table th {
                padding: .22rem;
            }

            .marketplace_admin_fees_table .table small {
                font-size: 72%;
                font-weight: 400;
                line-height: 8px;
            }

        .marketplace_admin_fees_table p {
            font-size: 11px !important;
            line-height: 13px !important;
        }

        .marketplace_admin_fees_table .table .f_mobile_small {
            font-size: 9px !important;
            line-height: 11px !important;
        }
}

/**************************************************************************************************************************/
/** Bid item details page list **/
/**************************************************************************************************************************/
.table.table_bid_item_details_list {
    margin-top: 0px;
    margin-bottom: 35px;
}

.table.table_bid_item_details_list tr td {
    padding: 6px;
    line-height: 20px;
}

/**************************************************************************************************************************/
/** user portal - my ads page **/
/**************************************************************************************************************************/
.acct__my_ads_list {
    margin-top: 25px;
}

    .acct__my_ads_list .single_used_new_thumbnail {
        position: relative;
        padding: 10px;
        width: 100%;
        display: block;
    }

        .acct__my_ads_list .single_used_new_thumbnail .deleted-status-ads-item {
            -webkit-transition: all 0.3s;
            -moz-transition: all 0.3s;
            transition: all 0.3s;
            background: rgba(255, 255, 255, 0.6);
            top: 0;
            left: 0;
            position: absolute;
            z-index: 2;
            width: 100%;
            height: 100%;
        }

        .acct__my_ads_list .single_used_new_thumbnail .img-event {
            position: relative;
            display: inline-block;
            width: 28%;
            vertical-align: top;
        }

            .acct__my_ads_list .single_used_new_thumbnail .img-event img.img-fluid {
                width: 100%;
                height: 175px;
                object-fit: cover;
                z-index: 1;
                border-radius: 10px;
                position: relative;
            }


@media (max-width:1024px) {
    .acct__my_ads_list .single_used_new_thumbnail .img-event {
        width: 25%;
    }

        .acct__my_ads_list .single_used_new_thumbnail .img-event img.img-fluid {
            height: 120px;
        }
}

@media (max-width:992px) {
    .acct__my_ads_list .single_used_new_thumbnail .img-event {
        width: 20%;
    }

        .acct__my_ads_list .single_used_new_thumbnail .img-event img.img-fluid {
            height: 80px;
        }
}

@media (max-width:480px) {
    .acct__my_ads_list .single_used_new_thumbnail .img-event {
        width: 30%;
    }
}

.acct__my_ads_list .single_used_new_thumbnail .caption.card-body {
    position: relative;
    display: inline-block;
    /*width: 50%;*/
    width: 44%;
    vertical-align: top;
    padding: 0 10px 10px 10px !important;
}

@media (max-width:1024px) {
    .acct__my_ads_list .single_used_new_thumbnail .caption.card-body {
        width: 41%;
    }
}

@media (max-width:992px) {
    .acct__my_ads_list .single_used_new_thumbnail .caption.card-body {
        width: 42%;
    }
}

@media (max-width:480px) {
    .acct__my_ads_list .single_used_new_thumbnail .caption.card-body {
        width: 68%;
    }
}

.acct__my_ads_list .single_used_new_thumbnail .caption.card-body .item_metadata_itemid {
    position: relative;
    top: unset;
    right: unset;
    color: #13110c;
    font-size: 12px;
}

            .acct__my_ads_list .single_used_new_thumbnail .caption.card-body .item_metadata_title {
                margin: 0 5px 5px 0 !important;
                height: 40px;
                color: #13110c;
            }

@media (max-width:1024px) {
    .acct__my_ads_list .single_used_new_thumbnail .caption.card-body .item_metadata_title {
        font-size: 13px;
        height: 46px;
    }
}
@media (max-width:1024px) {
    .acct__my_ads_list .single_used_new_thumbnail .caption.card-body .item_metadata_itemid {
        font-size: 11px;
    }

    .acct__my_ads_list .single_used_new_thumbnail .caption.card-body .item_metadata_title {
        font-size: 12px;
        height: 46px;
    }
}

@media (max-width:480px) {
    .acct__my_ads_list .single_used_new_thumbnail .caption.card-body .item_metadata_itemid {
        left: 0;
    }

    .acct__my_ads_list .single_used_new_thumbnail .caption.card-body .item_metadata_title {
        font-size: 11px;
        height: 36px;
    }
}

.acct__my_ads_list .single_used_new_thumbnail .caption.card-body .item_start_price {
    font-size: 10px;
    margin-bottom: 1px;
}

            .acct__my_ads_list .single_used_new_thumbnail .caption.card-body .item_metadata_price {
                font-size: 26px;
                font-weight: 700;
                color: #13110c;
            }

@media (max-width:1024px) {
    .acct__my_ads_list .single_used_new_thumbnail .caption.card-body .item_metadata_price {
        font-size: 22px;
    }
}

@media (max-width:992px) {
    .acct__my_ads_list .single_used_new_thumbnail .caption.card-body .item_metadata_price {
        font-size: 20px !important;
    }
}

@media (max-width:480px) {
    .acct__my_ads_list .single_used_new_thumbnail .caption.card-body .item_metadata_price {
        font-size: 18px !important;
    }
}

.acct__my_ads_list .single_used_new_thumbnail .caption1.card-body {
    position: relative;
    display: inline-block;
    /*width: 20%;*/
    width: 26.5%;
    vertical-align: top;
    padding: 26px 2px 0 !important;
}

@media (max-width:1024px) {
    .acct__my_ads_list .single_used_new_thumbnail .caption1.card-body {
        width: 32.5%;
    }
}

@media (max-width:992px) {
    .acct__my_ads_list .single_used_new_thumbnail .caption1.card-body {
        width: 36%;
    }
}

@media (max-width:480px) {
    .acct__my_ads_list .single_used_new_thumbnail .caption1.card-body {
        width: 68%;
        margin-left: 30%;
        padding: 0 9px !important;
        margin-top: -5px;
    }
}

.acct__my_ads_list .single_used_new_thumbnail .caption1.card-body .freeads_spec_item_info_list .freeads_item_info_list .single_freeads_item_info_wrapper {
    position: relative;
    width: 100%;
    -ms-box-orient: horizontal;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -moz-flex;
    display: -webkit-flex;
    display: flex;
    flex-flow: row wrap;
    align-content: flex-start;
    justify-content: flex-start;
    line-height: 24px;
}

@media (max-width:1024px) {
    .acct__my_ads_list .single_used_new_thumbnail .caption1.card-body .freeads_spec_item_info_list .freeads_item_info_list .single_freeads_item_info_wrapper {
        line-height: 22px;
    }
}

                .acct__my_ads_list .single_used_new_thumbnail .caption1.card-body .freeads_spec_item_info_list .freeads_item_info_list .single_freeads_item_info_wrapper .single_freeads_item_info_left {
                    font-size: 12px;
                    font-weight: lighter;
                    color: #8A8A8A;
                    margin: 0;
                    flex: 0 0 26px;
                    text-align: left;
                }

                    .acct__my_ads_list .single_used_new_thumbnail .caption1.card-body .freeads_spec_item_info_list .freeads_item_info_list .single_freeads_item_info_wrapper .single_freeads_item_info_left img {
                        width: 18px;
                        height: 18px;
                        margin-right: 2px;
                        margin-top: -4px;
                    }

.acct__my_ads_list .single_used_new_thumbnail .caption1.card-body .freeads_spec_item_info_list .freeads_item_info_list .single_freeads_item_info_wrapper .single_freeads_item_info_right {
    font-size: 11px;
    font-weight: lighter;
    color: #8A8A8A;
    margin: 0;
    flex: 0 0 calc(100% - 26px);
    text-align: left;
    line-height: 14px;
    margin-top: 5px;
}

@media (max-width:1024px) {
    .acct__my_ads_list .single_used_new_thumbnail .caption1.card-body .freeads_spec_item_info_list .freeads_item_info_list .single_freeads_item_info_wrapper .single_freeads_item_info_left img {
        width: 16px;
        height: 16px;
    }

    .acct__my_ads_list .single_used_new_thumbnail .caption1.card-body .freeads_spec_item_info_list .freeads_item_info_list .single_freeads_item_info_wrapper .single_freeads_item_info_right {
        font-size: 10px;
    }
}

@media (max-width:480px) {
    .acct__my_ads_list .single_used_new_thumbnail .caption1.card-body .freeads_spec_item_info_list .freeads_item_info_list .single_freeads_item_info_wrapper .single_freeads_item_info_right {
        font-size: 10px;
        margin-top: 2px;
    }
}

        /***action btn**/
        .acct__my_ads_list .single_used_new_thumbnail .caption.card-body .freeads_actions {
            -ms-box-orient: horizontal;
            display: -webkit-box;
            display: -moz-box;
            display: -ms-flexbox;
            display: -moz-flex;
            display: -webkit-flex;
            display: flex;
            flex-flow: row wrap;
            align-content: flex-start;
            justify-content: flex-start;
            flex: 1 0 100%;
        }

@media (max-width:480px) {
    .acct__my_ads_list .single_used_new_thumbnail .caption.card-body .freeads_actions {
        margin-to: 30px;
    }
}


.acct__my_ads_list .single_used_new_thumbnail .caption.card-body .freeads_actions .freeads_actionsbtn {
    margin: 0;
    flex: 0 0 110px;
    text-align: left;
    cursor: pointer;
}

@media (max-width:992px) {
    .acct__my_ads_list .single_used_new_thumbnail .caption.card-body .freeads_actions .freeads_actionsbtn {
        flex: 0 0 90px;
    }
}

                .acct__my_ads_list .single_used_new_thumbnail .caption.card-body .freeads_actions .freeads_actionsbtn img {
                    width: 20px;
                    height: 20px;
                    margin-right: 4px;
                    margin-top: -2px;
                }

                .acct__my_ads_list .single_used_new_thumbnail .caption.card-body .freeads_actions .freeads_actionsbtn span {
                    margin: 0;
                    text-align: left;
                    font-size: 14px;
                    font-weight: 500;
                    color: #E52038;
                    line-height: 22px;
                    text-decoration: underline;
                }

@media (max-width:1024px) {
    .acct__my_ads_list .single_used_new_thumbnail .caption.card-body .freeads_actions .freeads_actionsbtn img {
        width: 16px;
        height: 16px;
        margin-right: 4px;
        margin-top: -2px;
    }

    .acct__my_ads_list .single_used_new_thumbnail .caption.card-body .freeads_actions .freeads_actionsbtn span {
        font-size: 12px;
        line-height: 20px;
    }
}

@media (max-width:480px) {
    .acct__my_ads_list .single_used_new_thumbnail .caption.card-body .freeads_actions .freeads_actionsbtn span {
        font-size: 10px;
        line-height: 20px;
    }
}

/**hr line**/
.hr_line_seperator hr {
    border-top: 1px solid #747474;
    margin: 30px 0;
}
