@charset "UTF-8";

/* FONTS - Google Fonts
-------------------------------------------------- */


/*
    PMI COLORS:
    01 Purple: rgba(57,30,56,1)
    02 Purple: rgba(102,11,54,1)
    03 Gold: rgba(205,171,52,1)
*/
/* General styles
-------------------------------------------------- */
html {
    position: relative;
    min-height: 100%;
}

body {
    background-color: rgba(0,0,0,0.025);
    font-family: 'Roboto', sans-serif;
    margin-bottom: 20px;
    /* 
        font-family: 'Roboto', sans-serif;
        font-family: 'Open Sans', sans-serif;
    */
}

#load_status {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background: rgb(249,249,249);
    opacity: .85;
}
    #load_status:before {
        content: "";
        position: fixed;
        left: 0px;
        top: 0px;
        width: 100%;
        height: 100%;
        background-image: url('../img/website_images/loading_gold.gif');
        background-position: 50% 30%;
        background-repeat: no-repeat;
        background-size: 200px;
    }

    #load_status:after {
        content: "Loading...";
        position: fixed;
        width:100%;
        top:40%;
        text-align:center;
        font-size:30px;
        font-weight:500;
    }

#process_status {
    display:none;
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background: rgb(249,249,249);
    opacity: .9;
}

        #process_status:before {
            content: "";
            position: fixed;
            left: 0px;
            top: 0px;
            width: 100%;
            height: 100%;
            background-image: url('../img/website_images/loading_cogs.gif');
            background-position: 50% 25%;
            background-repeat: no-repeat;
            background-size: 250px;
        }
        #process_status:after {
            content: "Processing...";
            position: fixed;
            width: 100%;
            top: 45%;
            text-align: center;
            font-size: 30px;
            font-weight: 500;
        }

h1, h2, h3, h4, h5 {
    font-family: 'Roboto', sans-serif;
}

.width-50 {
    width: 50px;
}

.width-100 {
    width: 100px;
}

.width-150 {
    width: 150px;
}

.checks {
    color: rgb(239, 239, 239);
}

a.navbar-brand {
  white-space: normal;
  text-align: center;
  word-break: break-all;
}

a {
    color: rgba(57,30,56,1);
}
    a:hover {
        color: rgba(102,11,54,1);
    }
.pmi_primary_color {
    color: rgba(57,30,56,1);
}
.pmi_secondary_color {
    color: rgba(102,11,54,1);
}
.btn_pmi {
    color: #fff;
    background-color: rgba(57,30,56,1);
    border-color: rgba(57,30,56,1);
}

    .btn_pmi:hover,
    .btn_pmi:active,
    .btn_pmi:visited {
        color: #fff;
        background-color: rgba(102,11,54,1);
        border-color: rgba(102,11,54,1);
    }

.btn-primary {
    color: #fff;
    background-color: rgba(57,30,56,1);
    border: 1px solid rgba(57,30,56,1);
}
    .btn-primary:hover,
    .btn-primary:active,
    .btn-primary:visited {
        color: #fff;
        background-color: rgba(102,11,54,1);
        border-color: rgba(102,11,54,1);
    }

.btn-outline-primary {
    color: rgba(57,30,56,1);
    border-color: rgba(57,30,56,1);
}
    .btn-outline-primary:hover,
    .btn-outline-primary:active {
        color: rgba(255,255,255,1);
        background-color: rgba(102,11,54,1);
        border-color: rgba(102,11,54,1);
    }

.btn-secondary {
    color: #fff;
    background-color: rgba(102,11,54,1);
    border: 1px solid rgba(102,11,54,1);
}
    .btn-secondary:hover,
    .btn-secondary:active,
    .btn-secondary:visited {
        color: #fff;
        background-color: rgba(57,30,56,1);
        border-color: rgba(57,30,56,1);
    }

.btn_pmi_transparent {
    color: rgba(102,11,54,1);
    background-color: #fff;
    border: 1px solid rgba(102,11,54,1);
    /* padding: 8px 10px 6px; */
    /* text-transform: uppercase; */
    /* display: block; */
    /* text-decoration: none; */
    /* text-align: center; */
    /* font-size: 0.9em; */
    /* font-weight: 500; */
}
    .btn_pmi_transparent:hover {
        background-color: rgba(102,11,54,1);
        font-weight: 700;
        color: white;
    }
    .btn_pmi_transparent:visited {
        font-weight: 700;
    }
    .btn_pmi_transparent:active {
        background-color: #ddd;
    }
.btn_pmi_light {
    color: rgba(0,0,0,0.25);
    background-color: #fff;
    border: 1px solid rgba(0,0,0,0.25);
    padding: 8px 10px 6px;
    text-transform: uppercase;
    display: block;
    text-decoration: none;
    text-align: center;
    font-size: 0.9em;
    font-weight: 500;
}
.btn_pmi_light.disable {
    cursor:default;
}
    .btn_pmi_light.disable:hover {
        color: rgba(0,0,0,0.25);
    }

.btn_grey {
    color: #333;
    background-color: rgba(0,0,0,0.1);
    border-color: rgba(0,0,0,0.1);
}

.btn-primary:hover,
.btn-primary:active,
.btn-primary:visited {
    color: #fff;
    background-color: rgba(102,11,54,1);
    border-color: rgba(102,11,54,1);
}

/* PMI Buttons
-------------------------------------------------- */
.btn-pmi {
    color: #FFFFFF !important;
    background-color: rgba(57,30,56,1) !important;
}

    .btn-pmi:hover {
        color: rgba(57,30,56,1) !important;
        border: 1px solid rgba(57,30,56,1) !important;
        background-color: #FFFFFF !important;
    }

.btn-pmi-outline {
    color: rgba(57,30,56,1) !important;
    border: 1px solid rgba(57,30,56,1) !important;
    background-color: #FFFFFF !important;
}

    .btn-pmi-outline:hover {
        color: #FFFFFF !important;
        background-color: rgba(57,30,56,1) !important;
    }

.btn_pmi_light {
    color: rgba(0,0,0,0.25);
    background-color: #fff;
    box-shadow: none;
}

    .btn_pmi_light:hover {
        color: rgba(0,0,0,0.35);
        background-color: #fff;
        box-shadow: none;
    }

.btn_pmi_purple {
    color: #fff;
    background-color: rgba(102,11,54,1);
    border: 1px solid rgba(102,11,54,1);
}

    .btn_pmi_purple:hover {
        color: rgba(102,11,54,1);
        background-color: #fff;
        border: 1px solid rgba(102,11,54,1);
    }

.btn_pmi_yellow {
    color: #fff;
    background-color: #ffa000;
    border: 1px solid #ffa000;
}

    .btn_pmi_yellow:hover {
        color: #ffa000;
        background-color: #fff;
        border: 1px solid #ffa000;
    }

.btn_pmi_green {
    color: #fff;
    background-color: #00402E;
    border: 1px solid #00402E;
}

    .btn_pmi_green:hover {
        color: #00402E;
        background-color: #fff;
        border: 1px solid #00402E;
    }

.btn_pmi_red {
    color: #fff;
    background-color: #c61118;
    border: 1px solid #c61118;
}

    .btn_pmi_red:hover {
        color: #c61118;
        background-color: #fff;
        border: 1px solid #c61118;
    }

.btn_files_upload {
    width: 100%
}

.btn_files_upload_others {
    color: rgba(102,11,54,1);
    font-size: 15px;
    border: none;
    background: transparent;
    text-decoration: underline;
}

.file_to_upload {
    margin: 10px 0px 10px;
    padding: 5px 0px 6px 10px;
    border-bottom: 1px solid #ddd;
}

.other_file_upload {
    display: none;
    margin: 10px 0px 10px;
    padding: 5px 0px 6px 10px;
    border-bottom: 1px solid #ddd;
}

.btn_files_upload i {
    font-size: 15px;
}

.file_tipe_hidden {
    position: absolute;
    opacity:0;
    z-index:-1;
}

/* BS Fixes
-------------------------------------------------- */
.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
    color: #fff;
    background-color: rgba(102,11,54,1);
    border-color: rgba(102,11,54,1);
}
.features_title{
    font-weight: 500;
    margin: 0px;
    padding: 0px;
}
.error_span {
    font-size: 12px;
    position: relative;
    display: block;
    top: 8px;
}
.error_span_account_access {
    font-size: 12px;
    display: block;
}
.validation_li {
    padding: 0px;
    margin: -4px 0px -4px -12px;
    font-size: 16px;
    font-weight: 400;
    width: 100%;
    color: #dc3545;
}
    .validation_li.hidden {
        display: none;
    }
    .validation_li.valid {
        display: none;
    }
.selected_type {
    display: none;
}
.not_register {
    text-align: center;
    font-size: 0.85em;
    padding-top: 2px;
}
    .not_register a {
        font-weight: 500;
        text-decoration: none;
    }
.border_dashed_top{
    border-top:1px dashed rgba(0,0,0,0.2);
}
.wrong_credentials {
    color: #dc3545 !important;
    text-align: center;
    font-weight: 700;
}
.hidden_fields {
    position: absolute;
    width: 1px;
    height: 1px;
    z-index: -1;
    border: none;
}
    .hidden_fields:focus {
        border: none !important;
    }

.components_pages {
    margin: 140px 0px 30px;
}
.acknow_pages {
    margin: 160px 0px 60px;
}
.accounts_pages {
    margin: 230px 0px 60px;
}

/* Footer Styles */
.footer_acknow,
.footer_accounts,
.footer_components,
.footer_customer,
.footer_dealer,
.footer_admin,
.footer_login{
    position: fixed;
    width: 100%;
    bottom: 0px;
    background-color: white;
    font-size: 12px;
    padding: 4px;
    box-shadow: 0px 1px 5px 2px lightgrey;
}

    .footer_acknow .lang_bar,
    .footer_accounts .lang_bar{

    }

/* Modal Styles */
.modals-single p {
    font-size: 14px;
    color: #222;
    line-height: 24px;
}

.modal-ft .btn-modal,
.modals-default-cl .btn-info,
.modal-sm .modal-footer .btn-default,
.modal-large .modal-footer .btn-default,
.modals-default .modal-footer .btn-default {
    background: #00c292;
    outline: none;
    color: #fff;
    border-radius: 3px;
    border: none;
}

.modals-default-cl .btn-info {
    margin-right: 10px;
}

.modal-ft .btn-modal {
    margin-left: 10px;
}

.modal-footer .btn + .btn {
    margin-left: 10px;
}

.modal-dialog.modals-default {
    width: 720px;
    margin-top: 110px;
}

.modal-dialog.modal-sm {
    width: 510px;
    margin-top: 110px;
}

.modal-dialog.modal-large {
    width: 910px;
    margin-top: 110px;
}

.modal-dialog.modals-default .modal-content {
    border-radius: 0px;
    padding: 40px 50px;
}

.modals-default.pmi-modal-color .modal-content,
.modals-default.pmi-modal-color .modal-footer .btn-default {
    background: #673AB7;
}

.modals-default.pmi-modal-color .modal-content {
    border: 1px solid #673AB7;
}

.modals-default.pmi-modal-color .modal-body h2,
.modals-default.pmi-modal-color .modal-body p {
    color: #fff;
}

.modal-dialog .modal-content {
    border-radius: 0px;
    box-shadow: 0px 0px 30px rgba(0,0,0,0.15);
    border: 1px solid rgba(0,0,0,0.15);
}

.modal-backdrop{
    background-color: #fff;
}
    .modal-backdrop.show {
        opacity: .95;
    }

/* Form Styles */
textarea.form-control:focus,
input[type="text"]:focus,
input[type="password"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="time"]:focus,
input[type="week"]:focus,
input[type="number"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="color"]:focus,
.form-select:focus,
.uneditable-input:focus {
    border: 1px solid rgba(102,11,54,0.1);
    border-bottom: 2px solid rgba(102,11,54,0.9);
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.2) inset;
    outline: 0 none;
}
textarea.form-control:hover,
input[type="text"]:hover,
input[type="password"]:hover,
input[type="datetime"]:hover,
input[type="datetime-local"]:hover,
input[type="date"]:hover,
input[type="month"]:hover,
input[type="time"]:hover,
input[type="week"]:hover,
input[type="number"]:hover,
input[type="email"]:hover,
input[type="url"]:hover,
input[type="search"]:hover,
input[type="tel"]:hover,
input[type="color"]:hover,
.form-select:hover,
.uneditable-input:hover {
    background-color: rgba(0,0,0,0.005);
    border: 1px solid rgba(102,11,54,0.1);
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.2) inset;
    border-bottom: 2px solid rgba(102,11,54,0.5);
    outline: 0 none;
}
.form-group {
    margin-top: 1.2rem;
    margin-bottom: 1.3rem;
    line-height: 0;
}
.form-control,
.form-select {
    /* line-height: 1.6; */
    /* font-size: 1.2rem; */
    /* padding: 10px 15px 8px; */
    /* border-radius: 5px; */
    /* border: 1px solid rgba(0,0,0,0.2); */
    /* border-bottom: 1px solid rgba(0,0,0,0.25); */
    /* background-color: rgba(0,0,0,0.025); */
}
.inv_btns {
    font-size: 1.1rem;
    margin: 2px 2px;
    padding: 5px 10px;
    border: 1px solid rgba(0,0,0,0.15);
    border-radius: 5px;
}

.invalid-feedback{
    margin-top:15px;
    font-size:16px;
}

/* Jumbotron Styles */
.jumbotron {
    margin-bottom: 2rem;
    background-color: transparent;
    border-radius: 0;
}

/* Language Setting Styles
-------------------------------------------------- */
.lang_bar {

}
.lang_btn {
    cursor: pointer;
    display: block;
}
.lang_btn i{
    padding-left: 8px;
}
.lang_list {
    position: absolute;
    bottom: 10px;
    margin-left: 35px;
    background-color: white;
    border: 1px solid rgba(0,0,0,0.1);
    z-index: 10;
}
    .lang_list.hide {
        display: none;
    }
    .lang_list.show {
        display: block;
    }
.lang_item {
    list-style: none;
    margin: 0px 20px 0px -15px;
}
.lang_link {
    font-size: 13px;
    text-decoration: none;
    padding: 0px 20px 0px 10px;
}

/* Site Headers Styles
-------------------------------------------------- */
.header_accounts {
    position: fixed;
    top: 0px;
    overflow: hidden;
    margin: 0px auto 80px;
    padding: 10px 0px;
    text-align: center;
    background-color: rgba(102,11,54,1);
}

    .header_accounts img {
        margin-top: 40px;
        transition: all 0.1s linear;
    }

    .header_accounts.small_header img {
        margin-top: 5px;
        width: 180px;
        transition: all 0.1s linear;
    }

.header_components {
    background-color: rgba(102,11,54,1);
    position: fixed;
    top: 0px;
    width: 100%;
    overflow: hidden;
    padding: 5px 0px;
    text-align: start;
    transition: all 0.1s linear;
}

    .header_components img {
        margin-top: 0px;
        width: 90%;
        transition: all 0.1s linear;
    }

    .header_components.small_header img {
        margin-top: 5px;
        width: 180px;
        transition: all 0.1s linear;
    }

.site_headers {
        overflow: hidden;
        margin: auto;
        text-align: center;
    }
    .site_headers img {
        display: block;
        margin-left: auto;
        margin-right: auto;
        width: 100%;
    }

.header_branding {
    background-size: 1920px;
    background-position: center center;
    height: 150px;
    margin: 0px;
    padding: 0px;
    box-shadow: 0px 10px 15px 0px rgba(0,0,0,0.30);
    transition: all 0.1s linear;
}
.dealer_branding {
    overflow: hidden;
    margin: auto;
    text-align: center;
}

    .dealer_branding img {
        display: block;
        margin-left: auto;
        margin-right: auto;
        width: 100%;
    }

    .dealer_branding.dealer_header {
        width: 450px;
    }

#header_shadow {
    width:100%;
    height:0px;
}
#header_shadow.active {
    width: 100%;
    height: 190px;
}

.header_class {
    /*background-color: rgba(102,11,54,1);*/
    width: 100%;
    z-index: 1;
    box-shadow: 0px 10px 15px 0px rgba(0,0,0,0.30);
    transition: all 0.1s linear;
}

    .header_class.small_header {
        top: 0px;
        margin: 0px;
        padding: 0px;
        height: 60px;
        position: fixed;
        transition: all 0.1s linear;
    }

        .header_class.small_header .single_step {
            display: none;
            transition: all 0.3s linear;
        }

.header_steps {
    color: white;
    text-align: center;
    transition: all 0.3s linear;
}

.header_class .header_headline {
    padding: 15px 0 20px;
    text-align: center;
    font-size: 34px;
    font-weight: 700;
    text-shadow: 2px 2px 0px black;
    margin-bottom: 20px;
    transition: all 0.3s linear;
}
.header_class.small_header .header_headline {
    padding: 10px 0px;
    text-align: start;
    font-size: 30px;
    font-weight: 500;
    transition: all 0.3s linear;
}

.header_components .header_headline {
    text-align: start;
    padding: 20px 0 20px;
    margin-bottom: 0px;
}

.single_step .step_circle {
    margin: auto;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    border: 3px solid white;
    line-height: 1.5;
    font-size: 12px;
    font-weight: 700;
    box-shadow: 1px 1px 0px 0px black;
    text-shadow: 1px 1px 0px black;
}

.single_step .step_text {
    text-transform: uppercase;
    font-size: 10px;
    font-weight: 500;
    text-shadow: 1px 1px 0px black;
    margin-top: 10px;
}

.single_step .step_line {
    width: 215px;
    border: 1px solid white;
    position: absolute;
    margin-top: -53px;
    margin-left: 128px;
}

.single_step.done .step_circle {
    color: rgba(102,11,54,1);
    background-color: #ffffff;
}

    .single_step.done .step_circle::after {
        width: 20px;
        height: 20px;
        content: "✔";
        color: rgba(102,11,54,1);
        background-color: #ffffff;
        border-radius: 50%;
        position: absolute;
        margin-left: -12px;
    }

.single_step.done .step_text {
    font-size: 10px;
    font-weight: 600;
}

.single_step.done .step_line {
    border: 1px solid white;
}

.single_step.current .step_circle {
    color: #ffffff;
    background-color: darkgreen;
}

.single_step.current .step_text {
    font-size: 10px;
    font-weight: 700;
}

.single_step.current .step_line {
    border: 1px dashed white;
    opacity: 0.5;
}

.single_step.left .step_circle {
    opacity: 0.5;
}

.single_step.left .step_text {
    opacity: 0.4;
}

.single_step.left .step_line {
    border: 1px dashed white;
    opacity: 0.4;
}

@media (max-width: 1399px) {
    .single_step .step_line {
        width: 180px;
        margin-left: 112px;
    }
}
@media (max-width: 1199px) {
    .single_step .step_line {
        width: 150px;
        margin-left: 94px;
    }

    .header_accounts img {
        margin-top: 50px;
    }
}
@media (max-width: 991px) {
    .single_step .step_line {
        width: 104px;
        margin-left: 71px;
    }

    .header_class.small_header .header_headline {
        margin-left: 25px;
    }

    .header_accounts img {
        margin-top: 60px;
    }
}
@media (max-width: 768px) {
    .single_step {
        display: none;
    }

    .header_class {
        height: auto;
    }

        .header_class.small_header {
            height: auto;
        }

            .header_class.small_header .header_headline {
                font-size: 22px;
                margin: 0px;
                padding: 0px 0 5px;
                text-align: center;
            }

    .header_accounts img {
        margin-top: 15px;
        width: 250px;
    }

    .header_class .header_headline {
        margin-bottom: 0px;
        text-align: center;
    }

    /* Footer Styles */
    .footer_acknow,
    .footer_accounts,
    .footer_components,
    .footer_customer,
    .footer_dealer,
    .footer_admin,
    .footer_login {
        display:none;
    }

}

/* Site Sections Styles
-------------------------------------------------- */
.site_sections {
    margin-top: 3em;
    margin-bottom: 2.5em;
}

/* Sticky footer styles
-------------------------------------------------- */
.border-top {
  border-top: 1px solid #e5e5e5;
}
.border-bottom {
  border-bottom: 1px solid #e5e5e5;
}

.box-shadow {
  box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05);
}

button.accept-policy {
  font-size: 1rem;
  line-height: inherit;
}

/* Label Styles
-------------------------------------------------- */
label {
    display: inline-block;
    font-size: 16px;
    margin: 0px 15px 0px 0px;
}
.lb_wrap{
    display: block;
}
.control-label,
.label_filled {
    font-weight: bold;
    color: rgba(57,30,56,1);
    font-size: 16px;
    margin: 0px 2px 5px;
    line-height: 1;
}
.lb_label {
    font-weight: bold;
    color: rgba(57,30,56,1);
    width: 100%;
    font-size: 14px;
}
    .lb_label.active {
        color: #000;
        font-size: 15px;
    }

/* Inner Styles
-------------------------------------------------- */
.form_select_language {
    border: none;
}
.page_title {
    color: rgba(57,30,56,1);
    margin: 25px 0px 20px;
    font-size: 2rem;
    font-weight: 500;
    text-align: center;
}
h4 {
    color: rgba(57,30,56,1);
    margin: 25px 0px 10px;
    padding-bottom: 5px;
    font-weight: 500;
    border-bottom: 1px solid rgba(102,11,54,1);
}
h5 {
    margin: 10px 0px 2px;
    font-weight: 500;
    text-align:justify;
}
    h5 .inline_text {
        font-weight: 400;
        font-size: 75%;
    }

small.small_inline_text {
    font-weight: 400;
    font-size: 95%;
}
p, li {
    /* margin: 5px 5px 15px; */
    text-align: justify;
    font-size: 1.15rem;
    line-height: 2rem;
    font-weight: 300;
}

tr th, tr td {
    margin: 3px 5px;
    font-size: 1.15rem;
    line-height: 2rem;
}

tr th {
    font-weight:400;
}

tr td {
    font-weight: 300;
}

    p.w300 {
        font-weight: 300;
    }

    p.w400 {
        font-weight: 400;
    }

    p.disclosure {
        font-style: italic;
        font-size: 1rem;
        margin: 15px;
    }

    p.subsection {
        margin: 0px 0px;
        padding: 20px 15px;
        font-size: 0.95rem;
        line-height: 1.5rem;
        background-color: rgba(0,0,0,0.05);
        border: 1px solid rgba(0,0,0,0.07);
        border-radius: 5px;
    }

    p.subtext {
        margin: 0px 0px;
        padding: 0px 20px;
        font-size: 1rem;
    }

.title {
    color: rgba(102,11,54,1);
    font-weight: 700;
    text-align: center;
}
.subtitle {
    color: rgba(102,11,54,1);
    font-weight: 500;
    text-align: center;
}

.account_docs_buttons {
    width:100%;
    display: table;
    margin: 10px 5px;
}

.account_doc_button {
    vertical-align: middle;
    display: table-cell;
    text-decoration: none;
    font-weight:500;
}
    .account_doc_button i {
        display:block;
        font-size: xx-large;
        margin-bottom: 15px;
    }
.account_doc_label{
    cursor:pointer;
    margin:2px;
    padding: 15px;
    border: 1px solid rgba(102,11,54,0.05);
    border-bottom: 3px solid rgba(102,11,54,0.2);
    background-color: rgba(0,0,0,0.1);
    text-align: center;
    font-size: 14px;
    font-weight: 500;
}
    .account_doc_label:hover {
        border: 1px solid transparent;
        border-bottom: 3px solid transparent;
        background-color: rgba(102,11,54,0.3);
    }
.account_docs_iframe{
    width: 100%;
    height: 1000px;
    border: none;
}
.subfields {
    border-left: 1px solid rgba(0,0,0,0.3);
    margin: 0px 5px 10px 15px;
    padding: 0px 5px 0px 15px;
}

/* Acknowledgement Styles
-------------------------------------------------- */
h4.acknow_title {
    font-size: 1.5rem;
}

h5.acct_type {
    font-size: 1.4rem;
}

#acknow_form p,
#acknow_transfer p,
#acknow_form li,
#acknow_transfer li {
    text-align: justify;
    font-size: 1.15rem;
    line-height: 2rem;
    font-weight: 300;
    margin-bottom: 20px;
}
    #acknow_form p.w300 {
        font-weight: 300;
    }
    #acknow_form p.w400 {
        font-weight: 400;
    }
    #acknow_form p.subsection {
        margin: 0px 0px;
        padding: 20px 15px;
        font-size: 0.95rem;
        line-height: 1.5rem;
        background-color: rgba(0,0,0,0.05);
        border: 1px solid rgba(0,0,0,0.07);
        border-radius: 8px;
    }
    #acknow_form p.subtext {
        margin: 0px 0px;
        padding: 0px 20px;
        font-size: 1rem;
    }
#acknow_form ol {
    list-style: none;
    counter-reset: li
}
#acknow_form li {
    counter-increment: li
}
    #acknow_form li::before {
        content: counter(li)". ";
        color: rgba(57,30,56,1);
        font-weight: 500;
        display: inline-block;
        width: 2.5rem;
        margin-left: -2.75rem;
        text-align: right;
        padding-right: 5px;
    }
h4.acknow_title {
    font-size: 1.5rem;
}
.header_acknow.header_class {
    top: 0px;
    margin: 0px;
    padding: 0px;
    position: fixed;
    width: 100%;
    z-index: 1;
    box-shadow: 0px 10px 15px 0px rgba(0,0,0,0.30);
    background-color: rgba(255,255,255,1);
    transition: all 0.1s linear;
}

    .header_acknow.header_class.small_header {
        transition: all 0.1s linear;
    }

        .header_acknow.header_class.small_header .header_branding {
            transition: all 0.1s linear;
            height: 100px !important;
            background-size: 1421px;
        }

h5.acct_type {
    font-size: 1.4rem;
}

.transfer_pmi {
    margin-top: 20px;
    padding: 30px 10px;
    border-radius:10px;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0px 0px 30px rgba(0,0,0,0.15);
}
    .transfer_pmi button {
        padding: 10px 50px;
    }

.accounts h4 small{
    padding-left:5px;
    font-size:1.1rem;
    font-weight:400;
    color:black;
}

.accounts .form-check {
    margin-left: 0px;
    padding-left: 0px;
}

.accounts .types_radio {
    display: none;
}

.accounts .types_label {
    margin: 2px 0px;
    border-radius: 5px;
    padding: 12px 15px 10px;
    font-size: 18px;
    width: 100%;
    font-weight: 500;
    background-color: rgba(0,0,0,0.025);
    border-bottom: 2px solid rgba(0,0,0,0.05);
}

    .accounts .types_label:hover {
        cursor: pointer;
        background-color: rgba(0,0,0,0.15);
        border-bottom: 2px solid rgba(102,11,54,0.95);
    }

.accounts .types_radio:checked + .types_label {
    font-size: 20px;
    width: 100%;
    color: rgba(255,255,255,0.95);
    border-bottom: 2px solid rgba(0,0,0,1);
    background-color: rgba(57,30,56,1);
    /*
    border-bottom: 2px solid rgba(102,11,54,0.9);
    background-color: rgba(0,0,0,0.075);
    */
}
    .accounts .types_radio:checked + .types_label::before {
        content: " ";
    }
    .accounts .types_radio:checked + .types_label::after {
        content: " ";
    }

.accounts .types_radio.not_checked + .types_label {
    color: rgba(134,231,54,1);
    border-bottom: 2px solid rgba(0,0,0,1);
    background-color: rgba(57,30,56,1);

}

#features_list .types li{
    margin-top: 0px;
    margin-bottom: auto;
}

#acknow_form .accounts li {
    margin: 0px;
}
#acknow_form #fields {
    background-color: white;
    padding: 20px 30px;
    margin: 30px 0px;
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 10px;
    box-shadow: 5px 5px 15px 0px rgb(0,0,0,0.25);
}

.pmi_radio_input {
    display: none;
}

.pmi_radio_label {
    cursor: pointer;
    font-size: 16px;
}

    .pmi_radio_label::Before {
        position: relative;
        top: -2px;
        content: "✔";
        margin: -2px 4px 0px 2px;
        padding: 0px 4px;
        font-size: 15px;
        color: transparent;
        background-color: rgba(0,0,0,0.05);
        border: 1px solid rgba(0,0,0,0.25);
        border-radius: 5px;
    }

    .pmi_radio_label:hover::Before {
        content: "✔";
        color: white;
        background-color: rgba(57,30,56,0.4);
    }

.pmi_radio_input:checked + .pmi_radio_label::Before {
    content: "✔";
    color: white;
    background-color: rgba(57,30,56,1);
}

.pmi_checkboxes_input {
    display: none;
}

.pmi_checkboxes_label {
    cursor: pointer;
    font-size: 18px;
}

    .pmi_checkboxes_label::Before {
        position: relative;
        top: -2px;
        content: "✔";
        margin: -2px 8px 0px 2px;
        padding: 0px 4px;
        font-size: 15px;
        color: transparent;
        background-color: rgba(0,0,0,0.05);
        border: 1px solid rgba(0,0,0,0.25);
        border-radius: 5px;
    }

    .pmi_checkboxes_label:hover::Before {
        content: "✔";
        color: white;
        background-color: rgba(57,30,56,0.4);
    }

.pmi_checkboxes_input:checked + .pmi_checkboxes_label::Before {
    content: "✔";
    color: white;
    background-color: rgba(57,30,56,1);
}


/* Accounts Styles
-------------------------------------------------- */

#accounts_form .accounts li {
    margin: 0px;
}

#accounts_welcome #fields,
#accounts_form #fields {
    background-color: white;
    padding: 20px 30px;
    margin: 30px 0px;
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 10px;
    box-shadow: 5px 5px 15px 0px rgb(0,0,0,0.25);
}

.account_docs_container .inv_btns {
    font-size: 1.1rem;
    margin: 5px 2px 10px;
    padding: 4px 50px;
    border: 1px solid rgba(0,0,0,0.55);
    font-weight: 500;
}

    .account_docs_container .inv_btns:hover {
        border: 1px solid rgba(0,0,0,1);
    }

.document_content{
    margin-bottom: 75px;
}

.pa_section .form-check {
    padding-left:0px;
}

/* Account Documents Steps */
.steps_container {
    margin: 10px 0px 30px;
    width: 100%;
    text-align: center;
}

.steps {
    margin: auto;
    display: inline-block;
    overflow: hidden;
    border-radius: 2px;
}

.step {
    text-decoration: none;
    outline: none;
    display: block;
    float: left;
    font-size: 14px;
    line-height: 40px;
    padding: 0 20px 0 30px;
    position: relative;
    background: rgba(102,11,54,1);
    color: rgba(255,255,255,1);
}

    .step:last-child {
        padding-right: 30px;
    }

        .step:last-child::after {
            content: none;
        }

    .step::after {
        content: '';
        position: absolute;
        top: 0;
        right: -18px;
        width: 40px;
        height: 40px;
        transform: scale(0.707) rotate(45deg);
        z-index: 1;
        border-radius: 0 5px 0 50px;
        background: rgba(102,11,54,1);
        transition: background 0.5s;
        box-shadow: 2px -2px 1px 1px rgba(255,255,255,1);
    }

.step_white {
    color: rgba(102,11,54,1);
    background: rgba(255,255,255,1);
}

    .step_white::after {
        top: 8px;
        width: 24px;
        height: 24px;
        background: rgba(255,255,255,1);
        box-shadow: 2px -2px 1px 1px rgba(102,11,54,1);
    }

#customer_signatures {
    padding: 0px 30px;
}
.accounts_pages .docs{
    padding-bottom:100px;
}

#accounts_documents .fields{
    background-color: white;
    padding: 20px 30px;
    margin: 30px 0px;
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 10px;
    box-shadow: 5px 5px 15px 0px rgb(0 0 0 / 25%);
}

/* Documents Styles
-------------------------------------------------- */
#documents_content {
    background-color: white;
    padding: 20px 30px;
    margin: 30px 0px;
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 10px;
    box-shadow: 5px 5px 15px 0px rgb(0,0,0,0.25);
}

#accounts_documents .accordion .accordion-item {
    margin: 0px;
}

    #accounts_documents .accordion .accordion-item .accordion-body {
        padding: 5px 30px 5px 30px;
    }

    #accounts_documents .accordion .accordion-item .accordion-button {
        border: none;
        padding: 5px 30px;
    }

        #accounts_documents .accordion .accordion-item .accordion-button h4 {
            width: 100%;
        }

#accounts_documents .accordion-item .accordion-button {
    border: none;
}

.accordion-button:not(.collapsed) .accordion-collapse {
    border: none;
    padding: 10px 30px;
}

#accounts_documents .accordion .accordion-button:not(.collapsed) {
    border: none;
    background-color: transparent;
}

#accounts_documents .accordion .accordion-collapse {
    border: none;
}

#accounts_documents .accordion .accordion-button::after {
    position: absolute;
    right: 35px;
}

#document1_button,
#document2_button,
#document3_button {
    display: none;
}

/* Account Transfer
-------------------------------------------------- */
.corporate_requirements {
    background-color: white;
    padding: 20px 30px;
    margin: 20px 0px;
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 10px;
    box-shadow: 5px 5px 15px 0px rgb(0,0,0,0.25);
}
.transfer_options {
    background-color: white;
    padding: 20px 30px;
    margin: 20px 0px;
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 10px;
    box-shadow: 5px 5px 15px 0px rgb(0,0,0,0.25);
}

/* Error Page
-------------------------------------------------- */
#error_page {
    padding-top: 100px;
}

    #error_page i {
        font-size: 9.5rem;
        color: rgba(57,30,56,1);
    }
    #error_page .icon {
        text-align:right;
    }
        #error_page .error_title {
        font-size: 3.2rem;
        font-weight: 500;
        color: rgba(57,30,56,1);
        line-height: 3.5rem;
    }

    #error_page .error_subtitle {
        font-size: 1.5rem;
    }

    #error_page .error_text {
        font-size: 1rem;
    }

/* Access Styles
-------------------------------------------------- */
.form_container {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0px 0px 30px rgba(0,0,0,0.15);
}

.form_padding {
    padding: 30px 40px 40px;
}

.dealer_logo img{
    border-radius:10px 10px 0 0;
}

.dealer_hash_form {
    padding: 30px 45px;
}

.pmi_logo {
    text-align: center;
    margin: 0px auto 30px;
    padding-bottom: 20px; 
    border-bottom: 1px dashed lightgrey;
}

.dots {
    border-top: 1px dotted black;
    margin-bottom: 20px;
}

.other_form {
    margin-top: 60px;
}

.or {
    font-size: 1.2em;
    font-weight: 300;
    text-align: center;
    position: relative;
    top: 28px;
}

    .or span {
        background-color: white;
        padding: 0px 4px 0px 5px;
    }

/* Login using Account Number and PIN # */
#login-form {
    margin: 20px 0px;
}
#form_client_log_in {
    margin: 22px 0px;
}

    #form_client_log_in .separator_input {
        width: 3%;
        display: block;
        float: left;
        text-align: center;
        vertical-align: middle;
        margin-top: 5px;
        font-weight: 600;
    }

    #form_client_log_in .acct_input {
        text-align: center;
        float: left;
    }

    #form_client_log_in .acount_form_inputs {
        text-align: center;
    }

    #form_client_log_in label {
        display: block;
        margin:0 0 5px 0;
        text-align: center;
    }

    #form_client_log_in .error_span_account_access {
        font-size: 12px;
        display: block;
        text-align:center;
        height:20px;
    }
    #form_client_log_in .error_show {
        display:none;
    }
    /* Id Upload Styles
-------------------------------------------------- */
.imageLoader {
    background-color: white;
    text-align: center;
    padding: 20px 0px;
    margin: 30px 0px;
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 10px;
    box-shadow: 5px 5px 15px 0px rgb(0,0,0,0.25);
}

#upload_id_qruser .id_fields,
#upload_id_qrusersao .id_fields {
    background-color: white;
    text-align: center;
    padding: 40px 10px;
    margin: 30px 0px;
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 10px;
    box-shadow: 5px 5px 15px 0px rgb(0,0,0,0.25);
}

.id_fields label{
    padding:0px;
    margin:0px;
}

.QrUserBtn,
.QrUserSaoBtn {
    /*display: none;*/
}

.id_upload_container ol li,
.id_upload_container ul li {
    line-height: 1.6rem;
}
.id_instructions_title {
    color: rgba(57,30,56,1);
    font-weight: 700;
    padding: 0px;
    margin: 0px;
    font-size: 1.25rem;
    line-height: 1.7rem;
}
.id_instructions_subtitle {
    font-weight: 500;
    padding: 0px;
    margin: 0px;
    font-size: 1.2rem;
    line-height: 1.7rem;
}
.id_instructions_text {
    line-height: 1.6rem;
}
.IdUploadTitles h3 {
    padding: 0px;
}
.IdUploadTitles h4 {
    margin: 0px;
}
.IdUploadBoxes {
    padding: 10px 0px 15px;
    text-align:center;
}
.IdUploadBoxesText {
    margin-top: 10px;
    margin-bottom: 15px;
    font-weight: 700;
}
.IdUploadBoxesTextQR {
    font-weight: 500;
}
.IdUploadBoxesImages {
    width: 250px;
    margin: auto;
    overflow: hidden;
}
.IdUploadBoxesTextQRImage {
    position: relative;
    top: -18px;
    margin-bottom: -35px;
}
.IdUploadBoxesTextQRFigure {
    text-transform: uppercase;
    font-size: 12px;
}
.IdUploadLinks {
    padding: 10px 0px 15px;
    text-align: center;
}
.IdUploadLinksText {
    margin-top: 10px;
    margin-bottom: 15px;
    font-weight: 700;
}
.IdUploadLinksTextQR {
    font-weight: 500;
}
.IdUploadLinksImages {
    width: 350px;
    margin: auto;
}
.IdUploadLinksTextQRFigure {
    font-size: 12px;
    text-transform: uppercase;
}

.to_load_images {
    display: none;
}
.to_upload_images_figure {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding-top: 5px;
}

.to_load_images_links {
    display: none;
}

.to_upload_images_figure_links {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding-top: 5px;
}

.to_upload_images_label {
    cursor: pointer;
    box-shadow: 0px 0px 15px 1px rgba(0,0,0,0.5);
}

.to_ipload_images_icon {
    width: 250px;
    margin: auto;
}

.to_ipload_images_hide {
    display: none;
}

.id_files_btns {
    text-align:center;
}

    .id_files_btns:hover {
        color: rgba(0,0,0,0.75);
    }

    .id_files_btns.active {
        cursor: pointer;
        color: rgba(102,11,54,1);
        font-weight: 500;
        padding: 0px 5px 2px;
        border-bottom: 1px dotted rgba(102,11,54,1);
    }

    .id_files_btns.inactive {
        cursor:default;
        color: rgba(10,10,10,1);
        border: none;
        font-size: 18px;
        font-weight: 700;
        border-bottom: 1px solid;
        padding: 0px 10px 2px;
        text-transform: uppercase;
    }

.id_files_divs.hide {
    display: none;
}

.id_files_divs.show {
    display: block;
}

.id_data_text {
    background-color: #fefefe;
    border: 1px solid #333;
    border-radius: 10px;
    margin: 0px 20px;
    padding: 20px;
}

#upload_id_qruser .id_fields .id_data_text,
#upload_id_qrusersao .id_fields .id_data_text{
    text-align:left;
}


.id_success_text {
    background-color: honeydew;
    border: 1px solid green;
    border-radius: 10px;
    margin: 0px 20px;
    padding: 20px;
}
    .id_success_text p span {
        font-size: 24px;
        font-weight: 700;
    }
    .id_success_text p {
        text-align: center;
        font-size: 20px;
        font-weight: 400;
        color: green;
    }

.btn_id_submit {
    width: 80%;
    height: 50px;
    font-size: 20px;
    font-weight: 700;
    background-color: rgba(102,11,54,1);
    color: rgba(255,255,255,1);
    border: 1px solid rgba(102,11,54,1);
    text-transform: uppercase;
}
    .btn_id_submit:hover {
        background-color: rgba(102,11,54,0.75);
        color: rgba(255,255,255,1);
        border: 1px solid rgba(102,11,54,1);
    }
    .btn_id_submit.inactive {
        background-color: rgba(0,0,0,0.1);
        color: rgba(0,0,0,0.25);
        border: 1px solid rgba(0,0,0,0.25);
        cursor:default;
    }

/* Id Corporate Resolution
-------------------------------------------------- */
.CorpResolutionTitles h3 {
    padding: 0px;
}

.CorpResolutionTitles h4 {
    margin: 0px;
}
.corporate_fields {
    background-color: white;
    padding: 40px 40px;
    margin: 0px 0px;
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 10px;
    box-shadow: 5px 5px 15px 0px rgb(0,0,0,0.25);
}

/* Customer Profile Styles
-------------------------------------------------- */
#profile_form .form-group {
    margin-top: 0px;
}

#profile_form .customer_information th {
    text-align: right;
}

#profile_form .fees_pts {
    float: right;
    margin-top: -48px;
    margin-right: 10px;
    font-size: 26px !important;
}

#profile_form .form-check-input:disabled ~ .form-check-label,
#profile_form .form-check-input[disabled] ~ .form-check-label {
    opacity: 0.7;
}
#profile_done .profile_fields,
#profile_form .profile_fields {
    background-color: white;
    padding: 40px 40px;
    margin: 0px 0px;
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 10px;
    box-shadow: 5px 5px 15px 0px rgb(0,0,0,0.25);
}
#profile_done .profile_fields .pdf_link {
    font-size: 15px;
    display: block;
}
#profile_done .profile_fields .go_to_pmi_link {
    display: block;
    width: 100%;
}
#profile_form .mt95 {
    margin-top: 95px;
}
#profile_form .profile_table span {
    font-size: 20px;
    line-height: 50px;
}
#profile_form .invalid-feedback{
    margin-top:0px;
}

/* Access - Forgot
-------------------------------------------------- */
.solve_input {
    margin: auto;
    text-align: center;
    font-size: 24px;
    font-weight: 600;
    text-shadow: 1px 1px white;
    background: palegoldenrod;
    border: none;
}
    .solve_input:hover {
        margin: auto;
        text-align: center;
        font-size: 24px;
        font-weight: 600;
        text-shadow: 1px 1px white;
        background: palegoldenrod;
        border: none;
        border-radius: 10%;
    }

    .solve_input:disabled,
    .solve_input[readonly] {
        background: palegoldenrod;
    }

.solve_symbols {
    font-size: 24px;
    font-weight: 700;
    position: relative;
    top: 10px;
    text-align: center;
}
.solve_input_result {

}

/* Dashboard Styles
-------------------------------------------------- */
/* got to file dashboards.css */

/* Other Styles
-------------------------------------------------- */
table.dataTable tbody tr {
    background-color: #fff;
    border: 1px solid rgba(0,0,0,0.1);
}

/* Media Query Styles
-------------------------------------------------- */
@media (min-width: 1200px) {
    h4 {
        font-size: 1.55rem;
    }

    h5 {
        font-size: 1.45rem;
    }

    .title {
        margin: 0px 0px 40px;
        font-size: 1.8rem;
    }

    .subtitle {
        margin: 40px 0px 0px;
        font-size: 1.6rem;
    }
}

@media (max-width: 1200px) {
    .acknow_pages {
        margin-top: 120px;
    }

    .header_branding {
        background-size: 1400px;
        height: 110px;
    }
}

@media (max-width: 992px) {
    .page_title {
        font-size: 1.6rem;
    }

    .title {
        font-size: 1.2rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    .account_docs_iframe {
        height: 900px;
    }

    .id_files_btns.inactive {
        font-size: 15px;
        padding: 0px 0px 2px;
    }

    .id_files_btns.inactive {
        font-size: 15px;
        padding: 0px 0px 2px;
    }

    .btn_id_submit {
        width: 100%;
    }

    #upload_id_qruser h2,
    #upload_id_qrusersao h2 {
        font-size: 22px;
    }

    .IdUploadLinksImages{
        width:auto;
    }
}

@media (max-width: 768px) {
    .acknow_pages {
        margin-top: 130px;
    }

    .header_branding {
        background-position: top;
        background-repeat: no-repeat;
        background-size: 410px;
        height: 115px !important;
    }

    .header_acknow.header_class.small_header .header_branding {
        background-repeat: no-repeat;
        background-size: 365px;
        height: 100px !important;
    }

    #error_page .icon {
        text-align: center;
    }

    .account_docs_iframe {
        height: 700px;
    }

    .account_doc_label {
        margin: 2px 0px;
        padding: 15px 5px;
    }

    #profile_form,
    #profile_done {
        margin-top: 250px;
    }

        #profile_done .profile_fields,
        #profile_form .profile_fields {
            padding: 5px 15px;
        }

        #profile_form .customer_information th,
        #profile_form .customer_information td {
            padding: 0;
            margin: 0;
            display: block;
            width: 100%;
            text-align: left;
            font-size: 16px;
            line-height: 30px;
        }
        #profile_form .customer_information td{
            margin-bottom:10px;
        }

    #site_footer {
        display: none;
    }

    .corporate_fields {
        margin-top: 100px;
        margin-bottom: 20px;
    }

    #accounts_documents .fields {
        padding: 20px 10px;
        margin: 30px 0px;
    }

    .id_files_btns.inactive {
        font-size: 18px;
        padding: 0px 0px 2px;
        margin: 5px 0px;
    }

    .id_files_btns.inactive {
        font-size: 16px;
        padding: 0px 0px 2px;
        margin: 5px 0px;
    }

    .btn_id_submit {
        width: 70%;
    }

    #upload_id_qruser h2,
    #upload_id_qrusersao h2 {
        font-size: 26px;
    }

    .IdUploadBoxes{
        display:none;
    }
}

@media (max-width: 576px) {
    .modal-dialog.modals-default {
        width: 95%;
    }

    .acknow_pages {
        margin-top: 100px;
    }

    .header_branding {
        background-repeat: no-repeat;
        background-position: top;
        background-size: 380px;
        height: 105px !important;
    }

    .header_acknow.header_class.small_header .header_branding {
        background-repeat:no-repeat;
        background-position: top;
        background-size: 360px;
        height: 100px !important;
    }

    .account_docs_iframe {
        display: none;
    }

    .account_doc_button {
        display: block;
    }

    .corporate_fields {
        padding: 20px 10px;
    }

    .IdUploadBoxes .IdUploadBoxesTextQR,
    .IdUploadBoxes .IdUploadBoxesTextQRFigure,
    .IdUploadBoxes .to_ipload_images_icon {
        display: none;
    }

    #acknow_form #fields,
    #accounts_welcome #fields,
    #accounts_form #fields,
    #accounts_documents .fields,
    .form_container,
    .imageLoader,
    #upload_id_qruser .id_fields,
    #upload_id_qrusersao .id_fields,
    .corporate_fields,
    #profile_done .profile_fields,
    #profile_form .profile_fields {
        padding: 0;
        margin: 0;
        border: none;
        border-radius: 0px;
        box-shadow: none;
    }

    .components_pages {
        margin: 200px 0px 30px;
    }
}

@media (max-width: 450px) {
    body {
        background-color: white;
    }

    .acknow_pages {
        margin-top: 110px;
    }

    .header_branding {
        height: 100px;
    }

    .site_headers.header_pmi {
        width: 100%
    }

    .header_acknow.header_class.small_header .header_branding {
        background-position: top;
        background-size: 350px;
        height: 95px !important;
    }

    #acknow_form #fields,
    #accounts_welcome #fields,
    #accounts_form #fields,
    #accounts_documents .fields,
    .form_container,
    .imageLoader,
    #upload_id_qruser .id_fields,
    #upload_id_qrusersao .id_fields,
    .corporate_fields,
    #profile_done .profile_fields,
    #profile_form .profile_fields {
        padding: 0;
        margin: 0;
        border: none;
        border-radius: 0px;
        box-shadow: none;
    }
}

@media only print{
    body {
        -webkit-print-color-adjust: exact !important;
        print-color-adjust: exact !important;

        font-size: 10pt !important;
        background-color: black !important;
    }
    body,
    header, footer,
    section, div,
    p, span,
    ol li, ul li {
        margin: 0px !important;
        padding: 0px !important;
    }
    ol li, ul li {
        font-size: 11pt !important;
        line-height: 1.5 !important;
        color: #333 !important;
    }
    p {
        font-size: 11pt !important;
        line-height: 1.5 !important;
        color: #333 !important;
    }
    header {
        height: auto !important;
        position: relative !important;
        box-shadow: none !important;
        background-color: white !important;
    }
    footer {
        display: none !important;
    }
    h1 {
        padding: 0px;
        font-size: 16pt !important;
    }
    h2 {
        padding: 0px;
        font-size: 14pt !important;
    }
    h3 {
        padding: 0px;
        font-size: 13pt !important;
    }
    h4 {
        padding: 0px;
        font-size: 12pt !important;
    }
    h5 {
        padding: 0px;
        font-size: 11pt !important;
    }
    button,
    [type=button],
    [type=submit] {
        margin-top: 8px !important;
        margin-bottom: 5px !important;
        padding: 4px 10px !important;
        font-size: 9pt !important;
    }
    .or{
        top:0px;
    }
    #invalid_email,
    #passwords_match {
        opacity: 0 !important;
        display: none !important;
    }

    .invalid-feedback {
        opacity: 0 !important;
        display: none !important;
    }

    .dealer_logo {
        border: none !important;
        text-align: center !important;
        width: 100% !important;
    }
        .dealer_logo img {
            margin: auto !important;
            width: 40% !important;
        }
    .pmi_logo{
        border:none !important;
    }
        .pmi_logo img {
            width: 30% !important;
        }
    .header_acknow, 
    .header_class, 
    .header_branding, 
    .header_class.small_header {
        height: auto !important;
        position: relative !important;
        box-shadow: none !important;
    }
        .header_acknow .header_branding,
        .header_class .header_branding,
        .header_branding .header_branding,
        .header_class.small_header .header_branding {
            background-size: 60% !important;
            background-repeat: no-repeat !important;
        }
    .form-control, .form-select {
        line-height: 1 !important;
        font-size: 9pt !important;
        padding: 10px 15px 9px !important;
        border-radius: 5px !important;
        border: 1px solid rgba(0,0,0,0.2) !important;
        border-bottom: 1px solid rgba(0,0,0,0.2) !important;
        background-color: rgba(0,0,0,0.025) !important;
    }
    .subsection {
        padding: 15px !important;
    }
    .form-check {
        min-height: none !important;
    }
    .form-check-label {
        line-height: 1 !important;
        font-size: 10pt !important;
    }
    #accounts_welcome .btn_pmi {
        color: inherit !important;
        background: inherit !important;
    }
    .accounts_pages {
        margin: 0px !important;
        padding: 0px !important;
    }
    .header_headline {
        text-align: center !important;
        margin-top: 10px !important;
        text-shadow: none !important;
        font-size: 18pt !important;
    }
    .page_title {
        margin: 5px !important;
        padding: 0px !important;
        font-size: 14pt !important;
    }
    .subtitle {
        margin: 5px !important;
        padding: 0px !important;
        font-size: 12pt !important;
    }
    .title {
        margin: 5px !important;
        padding: 0px !important;
        font-size: 12pt !important;
    }
    .header_steps img {
        margin-top: 10px;
        padding: 10px;
        width: 180px !important;
        background-color: rgba(102,11,54,1) !important;
    }
    .single_step,
    #account_document {
        display: none !important;
    }
    #fields,
    .transfer_pmi,
    .form_container,
    #accounts_documents .fields,
    .imageLoader,
    .id_fields,
    .corporate_fields,
    #profile_done .profile_fields,
    #profile_form .profile_fields {
        border: none !important;
        box-shadow: none !important;
    }
    .disclosure {
        font-size: 10pt !important;
        line-height: 1.4 !important;
    }
    .account_doc_label i {
        display: none !important;
    }
    .account_doc_label {
        color: #333 !important;
        margin-top: 3px !important;
        margin-bottom: 3px !important;
        padding: 5px !important;
        border-bottom: 1px solid rgba(102,11,54,0.05) !important;
        font-size: 10pt !important;
    }
    .control-label, .label_filled {
        color: rgba(57,30,56,1) !important;
        font-size: 10pt !important;
        line-height: 1.4 !important;
        margin: 15px 2px 10px !important;
        line-height: 1 !important;
    }
    #accounts_documents form #div1,
    #accounts_documents form #div2,
    #accounts_documents form #div3,
    #accounts_documents form #div4 {
        display: block !important;
    }
    #accounts_documents form #div2,
    #accounts_documents form #div3,
    #accounts_documents form #div4 {
        page-break-before: always;
    }
    .id_success_text{
        border:none;
        background-color:transparent;
    }
    #profile_form .profile_table span {
        font-size: 12pt;
        line-height: 1;
    }
    #profile_done .profile_fields,
    #profile_form .profile_fields {
        padding: 0px;
        margin:0px;
    }

    #profile_form .customer_information th,
    #profile_form .customer_information td {
        padding: 0;
        margin: 0;
        display: block;
        width: 100%;
        text-align: left;
        font-size: 10pt;
        line-height: 1.25;
    }
    #profile_form .customer_information td {
        margin-bottom: 20px;
    }
    .profile_fields h4 {
        margin: 15px 0px 5px;
    }
    .profile_fields .form-check {
        position:relative;
        left:20px;
    }
    .profile_fields .fees_pts{
        display:none;
    }
}}