:root {
	--lk-l-blue: #eff6ff;
	--lk-blue: #155dfc;
	--lk-l-viol: #eff6ff;
	--lk-l-blue: #709FCB;
	--lk-or: #f54a00;
	--lk-red: #B7131A;
}


/*** UI Kit ***/
label.mortix_radio {
    cursor: pointer;
    transition: 0.3s;
    margin: 0.5rem;
    border-radius: 0.4rem;
    border: 0.1rem solid var(--txt-gray);
    padding: 0.5rem 3rem;
    display: flex;
    width: max-content;
    position: relative;
    height: 4rem;
    align-items: center;
}

label.mortix_radio input {
    display: none;
}

label.mortix_radio:hover {
    color: var(--wh);
    background: var(--txt-gray);
}

label.mortix_radio.checked {
    color: var(--wh);
    border-color: var(--act);
    background: var(--act);
}

label.mortix_radio.error_field {
    border-color: red;
    color: red;
}

label.mortix_radio svg {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1.6rem;
}

label.mortix_radio svg path {
    fill: var(--wh);
}

label.mortix_radio svg {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1.6rem;
}

label.mortix_radio svg path {
    fill: var(--wh);
}

label.mortix_check {
    padding-left: 3rem;
    position: relative;
    cursor: pointer;
}

label.mortix_check:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.2rem;
    width: 2rem;
    height: 2rem;
    border: 0.1rem solid var(--act);
    display: block;
    border-radius: 0.4rem;
}

label.mortix_check:after {
    content: '';
    width: 1rem;
    height: 1rem;
    position: absolute;
    transition: 0.3s;
    background: transparent;
    border-radius: 0.2rem;
    left: 0.5rem;
    top: 0.7rem;
}

label.mortix_check:hover:after {
    background: var(--txt-gray);
}

label.mortix_check.checked:after {
    background: var(--act);
}

.ui-widget.ui-widget-content {
    height: 0.3rem;
    border: none;
    background: var(--txt-gray);
    width: 100%;
    margin: 1rem 1rem 2rem;
}

.ui-slider-horizontal .ui-slider-range {
    background: var(--act);
}

.ui-state-default, .ui-widget-content .ui-state-default, 
.ui-widget-header .ui-state-default, 
.ui-button, html .ui-button.ui-state-disabled:hover, 
html .ui-button.ui-state-disabled:active {
    border-radius: 50%;
    border: none;
    background: var(--act);
    top: -6px;
    width: 15px;
    height: 15px;
    cursor: pointer;
}

span.ui-slider-handle.ui-corner-all.ui-state-default.ui-state-hover {
    background: var(--act);
}

.mortix_slider_wrap {
    display: flex;
    flex-wrap: wrap;
}

.mortix_slider_inputs {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.mortix_slider_inputs input {
    width: 7rem;
    text-align: center;
    border: 0.1rem solid var(--bl);
}

.pre_calc_wrap {
    padding: 3rem 0;
    display: flex;
    flex-wrap: wrap;
}

.pre_calc_tabs {
    margin-left: 4rem;
    order: 1;
    flex: 1;
    padding-top: 2rem;
}

.pre_calc_step {
    color: var(--bl);
    display: flex;
    align-items: center;
    position: relative;
    font-size: 2rem;
    margin-bottom: 7rem;
}

.pre_calc_step:after {
    content: '';
    display: block;
    position: absolute;
    width: 0.2rem;
    height: 5rem;
    background: var(--txt-gray);
    left: 2rem;
    top: calc(100% + 1rem);
}

.pre_calc_step:last-child:after {
    display: none;
}

.pre_calc_ok {
    display: none;
}

.pre_calc_num {
    margin-right: 1rem;
    width: 4rem;
    height: 4rem;
    text-align: center;
    border-radius: 50%;
    border: 0.2rem solid var(--act);
    display: flex;
    align-items: center;
    justify-content: center;
}

.pre_calc_step.step_active .pre_calc_num {
    background: var(--l-act);
    color: var(--wh);
    border-color: var(--l-act);
}

.pre_calc_step.ok_step {
    color: var(--act);
}

.pre_calc_step.ok_step .pre_calc_ok {
    display: block;
    position: relative;
    background: var(--act);
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    margin-right: 1rem;
}

.pre_calc_step.ok_step .pre_calc_ok svg {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
}

.pre_calc_step.ok_step .pre_calc_num {
    display: none;
}

.pre_calc_quiz {
    border: 0.1rem solid var(--txt-gray);
    border-radius: 2rem;
    padding: 2rem;
    display: none;
}

.pre_calc_quiz.step_active {
    display: block;
}

.pre_calc_title {
    font-size: 2rem;
    flex: 1;
    line-height: 110%;
    margin-bottom: 1rem;
}

.pre_calc_step .pre_calc_title {
    margin: 0;
}

.mortix_radio_row {
    display: flex;
    margin: 0 -1rem;
}

.pre_calc_row {
    margin-bottom: 2rem;
}

.pre_calc_txt_select {
    display: flex;
    align-items: center;
}

.pre_dacl_desc {
    color: var(--txt-gray);
    font-size: 1.4rem;
}

.pre_calc_txt_select select {
    width: max-content;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-left: none;
}

.pre_calc_txt_select input {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.pre_calc_attention {
    font-size: 1.4rem;
    color: red;
    display: none;
}

[type="password"].error_field, 
[type="text"].error_field, 
[type="tel"].error_field,
[type="email"].error_field, 
[type="number"].error_field, 
textarea.error_field,
select.error_field{
    border-color: red;
}

.pre_calc_workspace {
    width: 60%;
    order: 0;
}

.pre_calc_step_actions {
    display: flex;
    margin-top: 4rem;
}

.prev_step_btn {
    margin-right: 2rem;
}

.other_bank_wrap {
    margin-top: 2rem;
}

body .country-phone {
    display: flex;
    padding: 0;
    position: relative;
    border: none;
}

.country-phone-selector {
    position: absolute;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 1rem;
    border-right: 0.1rem solid var(--txt-gray);
}

body .country-phone-selected img {
    margin: 0.5rem 0.5rem 0.5rem 0;
}

input.get_phonecode {
    padding-left: 11rem;
}

.country-phone-selected span {
    position: relative;
    top: -0.6rem;
}

.property_yet_wrap,
.property_price_wrap,
.your_budget_wrap,
.how_much_loan_wrap,
.which_bank_wrap,
.other_bank_wrap,
.loan_interest_wrap{
	display: none;
}

.pre_calc_answer_1,
.pre_calc_answer_2,
.pre_calc_answer_3{
	display: none;
	color: var(--act);
	font-weight: 600;
}

input.slider_input::-webkit-outer-spin-button,
input.slider_input::-webkit-inner-spin-button{
	-webkit-appearance: none;
}
/*** END UI Kit ***/

/*** LOGIN REGISTER ***/
section.account_section {
    padding: 0;
}

.docode_loginpage_tabs {
    display: flex;
    margin-bottom: 2rem;
}

.docode_lk_enter_title {
    flex: 1;
    text-align: center;
    background: var(--gray);
    padding: 0.5rem;
    color: var(--txt-gray);
    font-weight: 600;
    transition: 0.3s;
    cursor: pointer;
}

.docode_lk_enter_title:hover {
    color: var(--bl);
}

.docode_lk_enter_title.active {
    color: var(--wh);
    background: var(--act);
}

.docode_lk_enter{
	display: none;
}
.docode_lk_enter.active{
	display: block;
}

.no_enents {
    background: var(--gray);
    color: var(--txt-gray);
    cursor: no-drop;
    pointer-events: none;
}

.mortix_loginpage {
    margin: 6rem 40rem 0;
}

.register_code_btn {
    margin-bottom: 2rem;
}

.register_btn {
    display: none;
}
/*** END LOGIN REGISTER ***/

/*** SIDEBAR ***/
.docode_lk_row {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
}

.docode_lk_sidebar {
    display: flex;
    flex-direction: column;
    padding: 2rem;
    position: sticky;
    top: 7rem;
    margin-right: 2rem;
    box-shadow: var(--d-shadow);
    border-radius: 1.6rem;
}

a.docode_lk_link {
    display: flex;
    align-items: center;
    margin: 0 0 0.5rem;
    padding: 1rem 4rem 1rem 2rem;
    border-radius: 1rem;
    overflow: hidden;
    position: relative;
    color: var(--bl);
    font-weight: 500;
    line-height: 1;
}

a.docode_lk_link:before {
    content: '';
    width: 0.5rem;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    transition: 0.3s;
    background: transparent;
}

a.docode_lk_link svg {
    width: 2rem;
    margin-right: 1rem;
}

a.docode_lk_link:hover {
    background: var(--gray);
}

a.docode_lk_link.active {
    background: var(--act-14);
    color: var(--act);
}

.docode_lk_container {
}

a.docode_lk_link.active:before {
    background: var(--act);
}

.logout_wrap {
    border-top: 0.2rem solid var(--gray);
    margin-top: 2rem;
    padding-top: 1.6rem;
}

.docode_lk_wrap {
    padding: 6rem 0;
}

/*** END SIDEBAR ***/

/*** WORKSPACE ***/
.docode_lk_work {
    padding: 3rem;
    flex: 1;
}

.account_title {
    font-size: 3rem;
    font-weight: 600;
    line-height: 1;
}

.account_desc {
    margin-top: 1rem;
    font-size: 2rem;
}

.account_tab_header {
    position: relative;
    margin-bottom: 6rem;
}

a.account_subtab {
    position: relative;
    margin-right: 2rem;
    color: var(--bl);
    display: block;
}

a.account_subtab:after {
    content: '';
    width: 0;
    background: var(--act);
    height: 0.2rem;
    position: absolute;
    bottom: -1rem;
    left: 0;
    transition: 0.3s;
}

.account_desc_tabs {
    display: flex;
    flex-wrap: wrap;
}

a.account_subtab.active {
    font-weight: 600;
}

a.account_subtab.active:after, a.account_subtab:hover:after {
    width: 100%;
}

.account_head_btn {
    border-radius: 1rem;
    color: var(--wh);
    background: var(--grad);
    padding: 1rem 3rem;
    display: flex;
    align-items: center;
    width: max-content;
    transition: 0.3s;
}

.account_head_btn svg {
    width: 2rem;
    margin-right: 1rem;
}

.account_head_btn:hover {
    opacity: 0.7;
}

.lk_to_settings {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}

/*** END WORKSPACE ***/

/*** Profile ***/
.account_user_maindata {
    display: flex;
    flex-wrap: wrap;
    margin: 0rem 0 6rem;
    align-items: center;
}

.account_user_icon {
    width: 9rem;
    height: 9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--act);
    color: var(--wh);
    font-size: 4rem;
    border-radius: 1rem;
    margin-right: 4rem;
    letter-spacing: 0.2rem;
}

.account_user_row {
    display: flex;
    flex-wrap: wrap;
}

.account_user_name {
    font-size: 4rem;
    font-weight: 600;
    margin-bottom: 2rem;
    line-height: 1;
}

.au_md_cell {
    display: flex;
    align-items: center;
    font-size: 1.4rem;
    margin-right: 2rem;
    padding: 0.2rem 1rem;
    background: var(--gray);
    border: 0.1rem solid;
    border-radius: 1rem;
}

.au_md_cell svg {
    width: 1.4rem;
    margin-right: 0.5rem;
}

.au_md_cell.au_md_time {
    color: var(--l-act);
    background: var(--ll-act);
    background: var(--act-14);
}

.au_md_cell.au_md_app {
    color: var(--ppl);
    background: var(--l-ppl);
}

.user_data_wrap {
    margin-bottom: 4rem;
    box-shadow: var(--d-shadow);
    border-radius: 1.6rem;
    padding: 3rem 1.6rem;
    overflow: hidden;
}

.user_data_title {
    font-size: 2rem;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.user_data_row {
    display: flex;
    border-top: 0.2rem solid var(--gray);
    padding-top: 3rem;
    margin-top: 3rem;
}

.user_data_cell {
    display: flex;
    margin: 0 1rem;
    width: calc(33.333% - 2rem);
    border-radius: 1.6rem;
    overflow: hidden;
    align-items: center;
    background: var(--gray);
}

.user_data_cell svg {
    color: var(--wh);
    width: 2.4rem;
}

.user_data_icon {
    background: var(--l-act);
    border-radius: 1.6rem;
    width: 5rem;
    height: 5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user_data_cell span {
    padding: 0 1rem;
    flex: 1;
}
/*** END PROFILE ***/

/*** SETTINGS ***/
.user_data_icon svg {
    color: var(--wh);
}

.user_data_icon.green_cell {
    background: var(--act);
}

.user_data_icon.blue_cell {
    background: var(--lk-l-blue);
}

.user_data_icon.red_cell {
    background: var(--lk-red);
}

.user_data_title .user_data_icon {
    margin-right: 1rem;
}

.user_settings_box {
    margin: 2rem -1rem;
    display: flex;
    flex-wrap: wrap;
}

.account_field_attention {
    font-size: 1.4rem;
    color: var(--txt-gray);
}

label.account_field_wrap {
    flex: 30%;
    margin: 0 1rem 2rem;
}

label.account_field_wrap span {
    display: block;
    margin-bottom: 0.5rem;
}

.edit_input {
    position: relative;
}

.edit_input:after {
    content: '';
    background: url(/wp-content/plugins/mortix-broker/img/edit.svg);
    position: absolute;
    width: 4rem;
    height: 4rem;
    right: 0;
    top: 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 40%;
}

.account_field_wrap [type="date"]::-webkit-calendar-picker-indicator {
    display: none;
    -webkit-appearance: none;
}

.open_reset_pass {
    margin: 3.2rem 1rem 0;
}

.f_100 {
    flex: 100% !important;
}

.user_settings_action {
    display: flex;
    margin: 0 1rem;
    flex-wrap: wrap;
}

.change_err, .change_confirm {
    display: block;
    width: 100%;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--lk-red);
}

.change_pass_ans,
.change_notify_ans{
    width: 100%;
}

.change_confirm {
    color: var(--l-act);
}

.cancel_pass_settings {
    margin-right: 2rem;
}

.user_settings_box:last-child {
    margin-bottom: 0;
}

.reset_pass_wrap {
    display: none;
}

.mortix_lk_row {
    display: flex;
    align-items: center;
    width: 100%;
    border-bottom: 0.2rem solid var(--gray);
    color: var(--bl);
    flex-wrap: wrap;
}

a.mortix_lk_row:hover {
    background: var(--gray);
}

.mortix_lk_cell {
    padding: 1rem;
    flex: 1;
    text-align: center;
    display: flex;
    justify-content: center;
}

.mortix_lk_cell.notify_cat {
    text-align: left;
    flex: 60%;
    display: block;
}

.mortix_lk_row.mortix_lk_thead {
    background: var(--act-14);
    color: var(--act);
    font-weight: 600;
}

.wrap_p_0 {
    padding: 0 !important;
}

label.mortix_btn_check {
    background: var(--txt-gray);
    border-radius: 5rem;
    width: 5rem;
    height: 3rem;
    display: block;
    color: transparent;
    position: relative;
    cursor: pointer;
}

label.mortix_btn_check:before {
    content: '';
    width: 2.4rem;
    height: 2.4rem;
    background: var(--wh);
    position: absolute;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    left: 0.4rem;
    transition: 0.3s;
}

label.mortix_btn_check.checked {
    background: var(--act);
}

label.mortix_btn_check.checked:before {
    left: auto;
    right: 0.4rem;
}

.user_notify_action {
    display: flex;
    flex-wrap: wrap;
    padding: 2rem 2rem;
}

button.btn_light.default_notify_settings {
    margin-right: 2rem;
}
/*** END SETTINGS ***/

/*** ORDERS ***/

.mortix_cell_logo {
    height: 5rem;
    width: 5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
    border-radius: 1rem;
    padding: 0.5rem;
    margin-right: 1rem;
}

.mortix_cell_row {
    display: flex;
    align-items: center;
}

.bank_cell_text {
    flex: 1;
    font-size: 1.4rem;
    line-height: 1;
}

.promo_mark {
    background: var(--act);
    color: var(--wh);
    padding: 0.5rem 1rem;
    border-radius: 3rem;
    margin-bottom: 0.5rem;
    width: max-content;
}

.banks_list_table {
    font-size: 1.4rem;
    line-height: 1;
}

.order_bank_list_cards {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -1rem 1rem;
}

.order_bank_list_card {
    margin: 0 1rem 2rem;
    flex: 1;
    border-radius: 1rem;
    background: var(--act);
    color: var(--wh);
    padding: 1.6rem;
}

.obl_head {
    display: flex;
    align-items: center;
    line-height: 1;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 3rem;
}

.obl_head_icon {
    position: relative;
    background: var(--wh-35);
    width: 4rem;
    height: 4rem;
    border-radius: 1rem;
    margin-right: 1rem;
}

.obl_head_icon svg {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 50%;
    height: auto;
}

.obl_money_field {
    font-size: 3.4rem;
    letter-spacing: 0.2rem;
}

.obl_footer {
    margin-top: 2rem;
    font-size: 1.4rem;
}

.order_bank_list_card.olb_light {
    background: var(--g-act);
}

.view_more_btn {
    background: var(--g-act);
    transform: rotate(90deg);
    width: 3rem;
    height: 3rem;
    border-radius: 1rem;
    position: relative;
    transition: 0.3s;
    cursor: pointer;
}

.view_more_btn svg {
    width: 30%;
    height: auto;
    transform: translate(-50%, -50%);
    left: 50%;
    top: 50%;
    position: absolute;
}

.view_more_btn svg path {
    fill: var(--wh);
    stroke: var(--wh);
}

.view_more_btn:hover {
    opacity: 0.7;
}

.mortix_lk_cell.blc_1 {
    width: 22rem;
    flex: unset;
    justify-content: start;
    text-align: left;
}

.mortix_lk_cell.blc_2 {
    width: 7rem;
    flex: unset;
}

.mortix_lk_cell.blc_3 {
}

.mortix_lk_cell.blc_4 {
    flex: unset;
    width: 9rem;
}

.mortix_lk_cell.blc_5 {
    flex: unset;
    width: 9rem;
}

.mortix_lk_cell.blc_6 {
    flex: unset;
    width: 8rem;
}

.mortix_lk_cell.blc_7 {
    flex: unset;
    width: 5rem;
}

.banks_list_title_text {
    font-size: 1.4rem;
}

.banks_list_title {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
    align-items: center;
}

.btn.compare_banks_btn {
    font-size: 1.4rem;
    padding: 0.5rem 2rem;
    height: auto;
}

.bank_info_more {
    padding: 1rem 1rem 3rem;
    display: none;
}

.bim_title {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.bim_desc {
    margin-bottom: 1rem;
}

.bim_table {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -2rem;
}

.bim_table_col {
    width: 50%;
    padding: 0 2rem;
}

.bim_parameter {
    display: flex;
    justify-content: space-between;
    margin-top: 0.5rem;
}

.open .bank_info_more {
    display: block;
}

.open .view_more_btn {
    transform: rotate(-90deg);
}
/*** END ORDERS ***/










/**** SCROLLBAR ***/
.bl-scroll::-webkit-scrollbar, 
.bl-scroll::-webkit-scrollbar-thumb, 
.bl-scroll::-webkit-scrollbar-track {
    width: 5px;
    border: none;
    background: 0 0;
}

.bl-scroll::-webkit-scrollbar-button, 
.bl-scroll::-webkit-scrollbar-track-piece, 
.bl-scroll::-webkit-scrollbar-corner, 
.bl-scroll::-webkit-resizer {
    display: none;
}

.bl-scroll::-webkit-scrollbar-button, 
.bl-scroll::-webkit-scrollbar-track-piece, 
.bl-scroll::-webkit-scrollbar-corner, 
.bl-scroll::-webkit-resizer {
    display: none;
}

.bl-scroll::-webkit-scrollbar, 
.bl-scroll::-webkit-scrollbar-thumb, 
.bl-scroll::-webkit-scrollbar-track {
    width: 5px;
    border: none;
    background: 0 0;
}

.bl-scroll::-webkit-scrollbar-track {
    background-repeat: repeat-y;
    background-size: contain;
}

.bl-scroll::-webkit-scrollbar, 
.bl-scroll::-webkit-scrollbar-thumb, 
.bl-scroll::-webkit-scrollbar-track {
    width: 5px;
    border-radius: 5px;
	height: 5px;
    border: none;
    background: 0 0;
}

.bl-scroll::-webkit-scrollbar-button,
.bl-scroll::-webkit-scrollbar-track-piece, 
.bl-scroll::-webkit-scrollbar-corner,
.bl-scroll::-webkit-resizer {
    display: none;
}

.bl-scroll::-webkit-scrollbar-thumb {
    background-color: var(--act);
}

.bl-scroll.bl-over:after {
    content: '';
    position: absolute;
    display: block;
    width: 1px;
    height: 100%;
    bottom: 30px;
    background: var(--act);
    right: 2px;
    top: 0;
}

.bl-scroll {
    overflow: auto;
    /* position: relative; */
    /*max-height: 60px;*/
}
/**** END SCROLLBAR *****/






@media(max-width: 700px){
	.pre_calc_workspace {
		width: 100%;
	}

	.pre_calc_tabs {
		order: 0;
		padding-top: 0;
		margin-left: 0;
	}

	.pre_calc_step {
		margin-bottom: 3rem;
	}

	.pre_calc_step:after {
		height: 1rem;
	}
	
	.prev_step_btn {
		margin: 2rem 0 0;
		width: 100%;
		order: 1;
	}
	
	.mortix_radio_row{
		flex-direction: column;
	}
	
	.mortix_loginpage {
		margin: 6rem 0rem 0;
	}
}





