/* top calculator wrapper */

:root {
    --main-color: #3E8C79;
    --width-block: 80%;
    --input-width: 350px;
    --input-color: #A7A7A7;
}
.sulf {
    color: var(--input-color)!important;
    background: #F3F3F3!important;
}
.carBody,
.nrCertificatului {
    display: none!important;
}
/* popup  */

.body_disabled {
    overflow: hidden;
    width: 100%;
}

.overlay {
    position: fixed;
    background-color: black;
    width: 100%;
    height: 100%;
    z-index: 9999;
    top: 0;
    opacity: .6;
    display: none;
    left: 0;
    right: 0;
}

.overlay_active {
    display: block;
}

.restore_active {
    display: flex !important;
}

.popup_restore {
    position: fixed;
    right: 0;
    left: 0;
    width: fit-content;
    top: 300px;
    display: none;
    z-index: 999999;
    margin: auto;
    top: 0;
    bottom: 0;
    align-items: center;
    justify-content: center;
}

.popup_restore_block {
    width: 500px;
    height: 138px;
    background: #FFFFFF;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.restore_btns {
    display: flex;
    justify-content: center;
    margin-top: 9px;
}

.restore_agree {
    cursor: pointer;
    background: #79B5BE;
    border-radius: 4px;
    padding: 4px 11px;
    color: white;
    font-weight: bold;
    margin-right: 4px;
}

.restore_disagree {
    cursor: pointer;
    background: #3E8C79;
    border-radius: 4px;
    padding: 4px 11px;
    font-weight: bold;
    color: white;
}

.restore_title {
    font-size: 16px;
    line-height: 22px;
    text-align: center;
}

/* main block styling */

.garant_block {
    display: none;
}

.active_garant_block {
    display: block;
}

.wrapper_calculator {
    background-color: white;
    margin-bottom: 10px;
    padding: 60px 0px;
    display: flex;
    flex-direction: column;
    max-width: 1200px;
}

.title_wrapper_calculator {
    font-style: normal;
    font-weight: 400;
    font-size: 32px;
    line-height: 44px;
    text-align: center;
    display: block;
}

.title_color {
    color: var(--main-color);
}

.calculator_steps_container {
    display: flex;
    width: var(--width-block);
    margin: auto;
    align-items: center;
    margin-top: 20px;
    margin-bottom: 36px;
}

.calculator_steps_info {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
}

.calculator_steps_in {
    background-color: #F5F5F6;
    border-radius: 26px;
    padding: 12px 32px;
}

.steps_count_title {
    font-weight: 600;
    font-size: 41px;
    line-height: 56px;
    color: #707071;
}

.calculator_steps_description_block {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-top: 30px;
}

.calculator_steps_description {
    display: flex;
    justify-content: center;
    text-align: center;
    padding: 0px 16px;
    font-size: 18px;
}

.calculator_steps_block {
    flex: auto;
}

.calculator_steps_block_in {
    align-items: center;
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.step-connector-left, .step-connector-right {
    flex: auto;
}

.step-line {
    background-color: #F5F5F6;
    height: 1px;
    width: calc(100% - 30px);
}

.step-connector-right {
    display: flex;
    justify-content: flex-end;
}

.step-connector-left {
    display: flex;
    justify-content: flex-start;
}

/* complete block */

.complete_info_container {
    background-color: #79B5BE;
    padding: 17px 10px;
    text-align: center;
}

#complete_title {
    font-weight: bold;
    font-size: 24px;
    line-height: 33px;
    text-transform: uppercase;
    color: white;
}

/* option input styling */

.input_options_container {
    width: calc(100% - 421px - 63px);
    margin: 44px auto 0 auto;
}

.input_option_block {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 26px;
}

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

.bottom_input_options_container {
    margin-top: 83px;
}

.type_auto {
    border: 1px solid #E4E4E4;
    box-sizing: border-box;
    border-radius: 3px;
    padding: 7px 10px;
    font-size: 16px;
    width: var(--input-width);
    background: white;
}

.error_input {
    background-color: #ffc5c1!important;
    border: 1px solid #d57878!important;
}

.error_card_block {
    -webkit-box-shadow: -2px -1px 9px 2px rgba(255,0,0,0.64)!important;
    box-shadow: -2px -1px 9px 2px rgba(255,0,0,0.64)!important;
}

.input_phone_number, .input_valuation {
    border: 1px solid #E4E4E4;
    box-sizing: border-box;
    border-radius: 3px;
    padding: 7px 10px;
    font-size: 16px;
    width: 240px;
}

.type_auto::placeholder, .input_phone_number::placeholder, .input_valuation::placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: var(--input-color);
    opacity: 1;
    font-size: 16px;
    /* Firefox */
}

.active_input_option::placeholder {
    color: rgba(0, 0, 0, 0.7);
    opacity: 1;
    font-size: 16px;
}

.type_auto:-ms-input-placeholder, .input_phone_number:-ms-input-placeholder, .input_valuation:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: var(--input-color);
    font-size: 16px;
}

.type_auto::-ms-input-placeholder, .input_phone_number::-ms-input-placeholder, .input_valuation::-ms-input-placeholder {
    /* Microsoft Edge */
    color: var(--input-color);
    font-size: 16px;
}

.active_select_option {
    color: rgba(0, 0, 0, 0.7)
}

.input_option_block_select {
    border: 1px solid #E4E4E4;
    box-sizing: border-box;
    border-radius: 3px;
    padding: 7px 10px;
    font-size: 16px;
    width: var(--input-width);
    color: var(--input-color);
    -webkit-user-select: none;
    /* Safari */
    -ms-user-select: none;
    /* IE 10 and IE 11 */
    user-select: none;
    display: flex;
    justify-content: space-between;
    cursor: pointer;
}

.phone_select, .currency_change_input {
    width: 88px;
}

.input_option_block_text {
    position: relative;
    display: flex;
    align-items: center;
    color: rgba(0, 0, 0, 0.7);
}

.input_option_block_icon {
    margin-left: 4px;
    cursor: pointer;
}

.bottom_inputs_container {
    display: flex;
    justify-content: space-between;
    width: var(--input-width);
    position: relative;
}

.bottom_inputs_description {
    color: var(--input-color);
    width: var(--input-width);
    margin: -15px 0 0 auto;
}

.calculator_input_arrow {
    width: 11px;
}

/* info block */

.info_drop_down {
    position: absolute;
    background-color: white;
    border: 1px solid #DBDBDB;
    padding: 2px 6px;
    width: 156px;
    top: 30px;
    z-index: 9;
    display: none;
}

.active_drop_down {
    display: block;
}

.info_text {
    font-size: 12px;
    display: flex;
}

/* end block  */

.calculator_end_block {
    width: calc(100% - 368px - 14px);
    margin: 60px auto 40px auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.calculator_checkbox_input {
    font-size: 18px;
    display: flex;
    align-items: center;
    width: 100%;
}
/*.range_calculator_checkbox .calculator_checkbox_input:last-child {*/
/*    margin-left: -7px;*/
/*}*/
.calculator_text_info {
    width: 365px;
}

.calculator_checkbox_input input[type="checkbox"] {
    width: 0px;
    opacity: 0;
}

.calculator_custom_checkbox {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border: 1px solid silver;
    border-radius: 4px;
}

.bottom_checkbox {
    width: 30px;
    height: 30px;
    margin-right: 10px;
    cursor: pointer;
}

.calculator_custom_checkbox .calculator_tick_checkbox {
    opacity: 0;
    width: 22px;
    height: 22px;
}

.calculator_checkbox_input input[type="checkbox"]:checked~.calculator_custom_checkbox,
.calculator_checkbox_input input[type="radio"]:checked~.calculator_custom_checkbox
{
    background-color: var(--main-color);
    border-color: white;
}

.calculator_checkbox_input input[type="checkbox"]:checked~.calculator_custom_checkbox .calculator_tick_checkbox,
.calculator_checkbox_input input[type="radio"]:checked~.calculator_custom_checkbox .calculator_tick_checkbox
{
    opacity: 1;
}

.calculator_end_button {
    background-color: var(--main-color);
    padding: 9px 54px;
    color: white;
    border-radius: 4px;
    font-size: 18px;
    border: none;
    transition: .3s ease;
}

.input_drop_down_text_block {
    position: relative;
}

.input_currency {
    margin-right: 22px;
}

.calculator_drop_down_calculator {
    border: 1px solid #E4E4E4;
    background-color: white;
    width: calc(var(--input-width) - 2px);
    border-radius: 0px 0px 4px 4px;
    position: absolute;
    border-top: none;
    position: absolute;
    display: none;
    max-height: 300px;
    overflow: auto;
    z-index: 9;
}

.year_drop_down {
    width: 86px;
}

.input_drop_down_active {
    border-radius: 3px 3px 0 0;
}

.drop_down_block {
    padding: 10px;
    cursor: pointer;
}

[data-index="1"] {
    background-color: #79B5BE;
    color: white;
    transition: 0.1s;
}

.drop_down_block:hover {
    background-color: #79B5BE;
    color: white;
    transition: 0.1s;
}

.drop_down_active {
    display: block;
}

/* =============== second garant block =============== */

.top_second_garant_container {
    margin-top: 57px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.title_second_block {
    font-weight: bold;
    font-size: 18px;
    color: rgba(0, 0, 0, 0.68);
}

.slider_selected_block {
    display: flex;
    margin-left: 27px;
}

.slider_day_selected {
    font-weight: bold;
    width: 29px;
    border: none;
    text-align: center;
    padding: 5px 5px !important;
}

.block_slider_text {
    background: #F5F5F6;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
    font-size: 14px;
    padding: 4px 12px;
}

.block_slider_text:last-child {
    margin-right: 0;
}

/* range slider  */

.range_slider {
    width: 1093px;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    margin: 75px auto 0 auto;
    position: relative;
}

.range_slider_input {
    -webkit-appearance: none;
    width: 100%;
    height: 15px;
    background: #324B4F;
    outline: none;
    padding: 0;
    margin: 0;
}

.range_slider_input::-webkit-slider-runnable-track {
    -webkit-appearance: none;
    width: 100%;
    height: 15px;
    background: #324B4F;
    outline: none;
    padding: 0;
    margin: 0;
}

.range_slider_input::-moz-range-track {
    -webkit-appearance: none;
    width: 100%;
    height: 15px;
    background: #324B4F;
    outline: none;
    padding: 0;
    margin: 0;
}

.range_slider_input::-webkit-slider-thumb {
    appearance: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #FFFFFF;
    border: 1px solid #5697E4;
    box-sizing: border-box;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    cursor: pointer;
    margin-top: -18px;
}

.range_slider_input::-moz-range-thumb {
    appearance: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #FFFFFF;
    border: 1px solid #5697E4;
    box-sizing: border-box;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    cursor: pointer;
}

.range_slider_input::-ms-thumb {
    appearance: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #FFFFFF;
    border: 1px solid #5697E4;
    box-sizing: border-box;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    cursor: pointer;
}

::-moz-range-track {
    background: #d7dcdf;
    border: 0;
}

input::-moz-focus-inner, input::-moz-focus-outer {
    border: 0;
}

.range_content {
    display: flex;
    justify-content: space-between;
    margin-top: 18px;
}

.range_content span {
    font-weight: bold;
    font-size: 14px;
    line-height: 19px;
    margin-left: 10px;
}

/* checkboxes after range */

.range_checkbox_section {
    width: calc(100% - 370px - 39px);
    margin: auto;
}

.range_calculator_checkbox {
    margin-top: 95px;
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
}

.range_custom_checkbox {
    width: 19px;
    height: 19px;
    min-width: 19px;
    max-width: 19px;
    margin-right: 10px;
    cursor: pointer;
}

.calculator_tick_checkbox_range {
    width: 11px;
    height: 11px;
}

.checkbox_range_text {
    display: flex;
    align-items: center;
    text-transform: uppercase;
    font-size: 12px;
    line-height: 16px;
}

.drop_down_img_info {
    position: relative;
    display: flex;
}

.info_drop_down_left {
    left: -68px;
    z-index: 99;
}

.range_calculator_checkbox label {
    margin-top: 9px;
    width: calc(100% / 2);
}

.range_calculator_checkbox label:nth-child(2n) {
    display: flex;
    justify-content: flex-end;
}

.range_calculator_checkbox label:first-child {
    margin-top: 0;
}

/* card section */

.card_container {
    margin-top: 44px;
    padding-top: 80px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.card_section {
    position: relative;
}

.card_overlay {
    position: absolute;
    background: rgba(238, 252, 254, 0.6);
    filter: blur(50px);
    width: 100%;
    height: 100%;
}

.card_block {
    background: #FFFFFF;
    border: 1px solid rgba(121, 181, 190, 0.5);
    box-sizing: border-box;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 10px;
    width: 317px;
    margin-right: 77px;
    margin-bottom: 40px;
    z-index: 9;
    transition: .05s;
}

.card_block_green:hover {
    box-shadow: 0px 0px 0px 4px rgb(112 166 97 / 50%);
}

.card_block_red:hover {
    box-shadow: 0px 0px 0px 4px rgb(163 41 0 / 50%);
}

.card_block_yellow:hover {
    box-shadow: 0px 0px 0px 4px rgb(175 161 0 / 50%);
}

.card_block_green[data-active="1"] {
    box-shadow: 0px 0px 0px 4px rgb(112 166 97 / 50%);
}

.card_block_red[data-active="1"] {
    box-shadow: 0px 0px 0px 4px rgb(163 41 0 / 50%);
}

.card_block_yellow[data-active="1"] {
    box-shadow: 0px 0px 0px 4px rgb(175 161 0 / 50%);
}

.card_block:last-child {
    margin-right: 0;
}

.card_block_top {
    background-repeat: no-repeat;
    width: 100%;
    height: 240px;
    position: relative;
    display: flex;
    flex-direction: column;
}

.card_image_0 {
    background-image: url("../../img/Rectangle_0.png");
    background-size: cover;
    background-position: top;
    border-radius: 6px 6px 0px 0;
}

.card_image_1 {
    background-image: url("../../img/Rectangle_1.png");
    background-size: cover;
    background-position: top;
    border-radius: 6px 6px 0px 0;
}

.card_image_2 {
    background-image: url("../../img/Rectangle_2.png");
    background-size: cover;
    background-position: top;
    border-radius: 6px 6px 0px 0;
}

.card_image {
    width: fit-content;
    height: 140px;
    width: 200px;
}

.card_top_button {
    border: 1px solid #FFFFFF;
    box-sizing: border-box;
    border-radius: 10px;
    font-weight: bold;
    font-size: 26px;
    line-height: 41px;
    padding: 6px 60px;
    position: absolute;
    top: 58px;
    right: 39px;
    color: white;
}

.card_top_btn_green {
    background-color: #70A661;
}

.card_top_btn_red {
    background-color: #A32900;
}

.card_top_btn_yellow {
    background-color: #AFA100;
}

.card_btn_green {
    border: 1px solid #70A661 !important;
    background-color: white;
    color: #70A661;
}

.card_btn_red {
    border: 1px solid #A32900 !important;
    background-color: white;
    color: #A32900;
}

.card_btn_yellow {
    border: 1px solid #AFA100 !important;
    background-color: white;
    color: #AFA100;
}

[data-active="1"] .card_btn_green, .card_btn_green:hover {
    background-color: #70A661;
    color: white;
}

[data-active="1"] .card_btn_red, .card_btn_red:hover {
    background-color: #A32900;
    color: white;
}

[data-active="1"] .card_btn_yellow, .card_btn_yellow:hover {
    background-color: #AFA100;
    color: white;
}

.card_price {
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    font-weight: 600;
    font-size: 52px;
    line-height: 87px;
    text-align: center;
    position: absolute;
    top: 160px;
    right: 0;
    left: 0;
}

.discount {
    font-size: 36px;
    line-height: 49px;
    font-weight: bold;
    padding: 20px 7px;
    background: linear-gradient(
            180deg
            , #79B5BE 0%, rgba(121, 181, 190, 0.6) 97.78%);
    width: fit-content;
    color: white;
    border-radius: 50px;
    position: absolute;
    top: 120px;
    right: 46px;
}

.card_description {
    font-size: 14px;
    line-height: 19px;
    text-align: center;
    margin-top: 20px;
    font-weight: 600;
}

.card_end_block {
    padding: 0 30px;
    margin-top: 22px;
}

.card_end_button {
    display: flex;
    font-size: 16px;
    line-height: 22px;
    border-radius: 100px;
    padding: 12px 32px;
    width: fit-content;
    margin: 20px auto 20px auto;
    cursor: pointer;
    border: none;
}

.attention_text {
    font-weight: 600;
    font-size: 12px;
    line-height: 16px;
    color: #A32900;
    display: flex;
    justify-content: center;
    margin-bottom: 14px;
}

/* registration number container  */

.registration_number_container {
    margin-top: calc(115px - 40px);
    text-align: center;
    display: none;
}

.registration_number_title {
    font-weight: bold;
    font-size: 18px;
    line-height: 25px;
}

.register_input {
    background: #FFFFFF;
    border: 1px solid #E4E4E4;
    box-sizing: border-box;
    border-radius: 3px;
    color: #A7A7A7;
    font-weight: bold;
    font-size: 16px;
    line-height: 22px;
    width: calc(134px - 26px);
    text-align: center;
    color: black;
}

.register_car {
    text-transform: uppercase;
}

.car_body {
    text-transform: inherit;
}

.register_info {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 40px;
    background: #2D3585;
    border-radius: 3px 0px 0px 3px;
}

.register_info img {
    width: 26px;
    height: 15px;
}

.register_info span {
    font-weight: bold;
    font-size: 12px;
    line-height: 16px;
    color: white;
}

.register_input::placeholder {
    color: #A7A7A7;
    font-weight: bold;
    font-size: 16px;
    line-height: 22px;
    text-align: center;
}

.registration_number_input {
    display: flex;
    width: 134px;
    margin: 21px auto 0 auto;
}

.notice_block {
    display: none;
    align-items: center;
    border: 1px solid #852600;
    box-sizing: border-box;
    width: 411px;
    font-size: 12px;
    line-height: 16px;
    color: #852600;
    padding: 18px 17px 18px 5px;
    margin: 31px auto 0 auto;
    max-width: 100%;
}

.active_notice_block {
    display: flex;
}

.notice_block img {
    margin-right: 5px;
}

.back_text {
    font-size: 18px;
    line-height: 25px;
    color: rgba(0, 0, 0, 0.7);
    cursor: pointer;
}

.calculator_continue_button {
    background-color: var(--main-color);
    padding: 18px 55px;
    color: white;
    border-radius: 4px;
    cursor: pointer;
    font-weight: normal;
    font-size: 24px;
    line-height: 33px;
    border: none;
    transition: .3s ease;
}
.calculator_end_button:hover,
.calculator_continue_button:hover,
#comanda:hover {
    box-shadow: 0 5px 10px 0 #307766;
    transition: .3s ease;
}
/* =============== third garant block =============== */

.title_contract {
    font-weight: bold;
    font-size: 24px;
    line-height: 33px;
    text-transform: uppercase;
    display: flex;
    justify-content: center;
}

.contract_block {
    margin-top: 28px;
}

.green_line {
    border-bottom: 4px solid #79B5BE;
    width: 1200px;
    margin: 71px auto 0 auto;
    max-width: 100%;
}

.sub_contract_block {
    display: flex;
    justify-content: center;
    align-items: end;
}

.contact_image {
    margin-right: 140px;
}

.inputs_contract_block {
    width: calc(100% - 421px - 63px);
    margin-top: 45px;
}

.calendar_image {
    background-image: url("../img/calendar.png");
    width: 30px;
    padding-right: 10px;
    background-size: auto;
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
    border: 1px solid #E4E4E4;
    background-color: white;
    border-left: none;    
}

.calendar_input {
    border-radius: 3px 0 0 3px !important;
    border-right: none !important;
}

.drop_down_calendar {
    display: none;
    position: absolute;
    top: 36px;
}

.drop_down_calendar_active {
    display: block;
    border-radius: 0px 0px var(--vanilla-calendar-border-radius) var(--vanilla-calendar-border-radius) !important;
}

.none_image {
    width: 300px;
    height: 0px;
}

.inputs_choose_date {
    margin-top: 0px;
    margin-bottom: 48px;
}

/* fourth block styling */

.checkboxes_type_delivery {
    width: var(--input-width);
    margin-left: auto;
}

.checkboxes_type_delivery_block {
    width: 90%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.checkbox_delivery {
    width: fit-content;
}


/*######################## Start Step 4 ########################*/
/*Adresa Oficiu*/
 .adresa-oficiu {
    margin-top: 20px;
    display: none;
}
 .botCheck__block {
    box-shadow: 0 0 2px 0 #79b5be;
}
.botCheck__block:hover {
    box-shadow: 0 0 8px 0 #79b5be;
}
 .botCheck__label {
    background: var(--main-color);
    color: #fff;
    font-family: 'Open Sans', sans-serif;
}
 .botCheck__label:hover {
    box-shadow: 0 0 14px 0 #000 !important;
}
 .livrare-destination:checked + .botCheck__label {
    background: #fff;
    color: var(--main-color);
    border: 1px solid var(--main-color)!important;
}
 .botCheck__textBox {
    font-family: 'Open Sans', sans-serif;
}
/*Livrare*/
 .delivery_selected_container {
    display: none;
    margin-top: 20px;
}
/*Sector*/

/*Ziua livrarii*/
.d_flex {
    display: flex!important;
}
 .ziua-livrarii_items {
    width: 49%;
    display: flex;
    justify-content: space-between;
}
.livrare_azi,
.livrare_mine,
.livrare_ziua {
    display: none;
}
/*Sub item livrare*/
 #sub_item_livrare input{
    border: 1px solid #E4E4E4;
    box-sizing: border-box;
    border-radius: 3px;
    padding: 7px 10px;
    font-size: 16px;
    background: white;
}
 #sub_item_livrare .livrare_ziua .item_1,
 #sub_item_livrare .livrare_ziua .item_2 {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}
 #sub_item_livrare  #timepicker_livrare_zi_1,
 #sub_item_livrare  #timepicker_livrare_zi_2,
 #sub_item_livrare  #timepicker_livrare_mine_1,
 #sub_item_livrare  #timepicker_livrare_mine_2,
 #sub_item_livrare  #timepicker_livrare_alg_ziua_1,
 #sub_item_livrare  #timepicker_livrare_alg_ziua_2
{
    max-width: 42px;
    width: 42px;
    min-width: 42px;
}
 #sub_item_livrare .livrare_azi .d_flex,
 #sub_item_livrare .livrare_mine .d_flex,
 #sub_item_livrare .livrare_ziua .item_1 .bottom_inputs_container,
 #sub_item_livrare .livrare_ziua .item_2 .d_flex
{
    width: 50%;
}
 #sub_item_livrare .item_livrare_zi,
 #sub_item_livrare .item_livrare_mine
{
    margin-right: 20px;
}
#myCalendar2 {
    z-index: 99999;
}
/*Observatii livrare*/
#observatii-livrare {
    border: 1px solid #E4E4E4;
}

/*Payment methode*/
/*Payment methode*/
#payment-method-table {
    display: none;
    flex-direction: column;
    height: 100%;
    justify-content: center;
}
#payment-method-table .tip_payment_method {
    display: flex;
}
#payment-method-table .tip_payment_method .payment-method {
    border: 1px solid var(--main-color);
    border-radius: 5px;
    margin: 10px;
    width: 100%;
    padding: 10px 0;
    cursor: pointer;
    transition: .3s ease;
    display: none;
}
#payment-method-table .tip_payment_method .payment-method:hover {
    box-shadow: 0 0px 14px #aee7ef, 0 10px 10px #b8e0e6;
    border: 1px solid #79B5BE;
}
#payment-method-table .tip_payment_method .payment-label,
#payment-method-table .tip_payment_method .payment-bg {
    display: block!important;
    cursor: pointer;
}
#payment-method-table .tip_payment_method .payment-icon [class^="flaticon-"]:before,
#payment-method-table .tip_payment_method .payment-icon [class*=" flaticon-"]:before {
    font-size: 60px;
    color: #79B5BE;
}
#payment-method-table .tip_payment_method .calculator_custom_checkbox {
    display: block;
    margin: 10px auto 0 auto;
}
#btn_back {
    cursor: pointer;
}
#comanda {
    background-color: var(--main-color);
    padding: 10px 25px;
    color: white;
    border-radius: 5px;
    cursor: pointer;
    font-weight: normal;
    font-size: 17px;
    display: inline-block;
    border: none;
    margin: 20px 10px 10px;
}

/*######################## End Step 4 ########################*/

/*Timepicker*/
#ui-timepicker-div {
    background: #79b5be;
}
#ui-timepicker-div .ui-timepicker-table td {
    color: #fff;
}
#ui-timepicker-div .ui-timepicker-table td a {
    padding: 3px 6px;
    text-align: center;
}
#ui-timepicker-div .ui-timepicker-table td a,
#ui-timepicker-div .ui-timepicker-table td span {
    border: 1px solid #fff;
}
#ui-timepicker-div .ui-state-default.ui-state-disabled {
    border: 1px solid transparent;
    opacity: 0.2;
    color: #000;
}
#ui-timepicker-div .ui-state-default.ui-state-active {
    color: #79b5be;
    background: #fff;
}


/*Btns*/
.btns_end {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-around;
}
/*footer*/
.heightVh{
    height: 70vh;
}

/* media queries */

@media screen and (max-width: 1400px) {
    .calculator_continue_button {
        padding: 16px 50px;
        font-size: 23px;
    }
    .contact_image {
        margin-right: 90px;
    }
}

@media screen and (max-width: 1200px) {
    .title_wrapper_calculator {
        font-size: 29px;
    }
    .card_block {
        margin-right: 20px;
    }
    .inputs_contract_block {
        width: 60%;
    }
    .range_checkbox_section {
        width: 70%;
    }
    .calculator_end_block {
        width: 65%;
    }
    .bottom_checkbox {
        width: 28px;
        height: 28px;
    }
    .calculator_custom_checkbox .calculator_tick_checkbox {
        width: 20px;
        height: 20px;
    }
    .calculator_checkbox_input {
        font-size: 17px;
    }
    .calculator_end_button {
        padding: 9px 48px;
    }
    :root {
        --width-block: 100%;
    }
}

@media screen and (max-width: 1100px) {
    .heightVh {
        height: inherit;
    }
    .input_options_container {
        width: 70%;
    }
    .calculator_end_block {
        width: 75%;
    }
    .range_checkbox_section {
        width: 80%;
    }
    .title_wrapper_calculator {
        font-size: 27px;
    }
    #complete_title {
        font-size: 23px;
    }
    .contact_image {
        margin-right: 60px;
    }
    .calculator_continue_button {
        padding: 14px 46px;
        font-size: 22px;
    }
    .title_contract {
        font-size: 23px;
    }
    #payment-method-table .tip_payment_method {
        display: block;
        text-align: center;
    }
    #payment-method-table .tip_payment_method .payment-method.show {
        width: 47%;
        display: inline-block!important;
    }
}

@media screen and (max-width: 1070px) {
    .range_container {
        padding: 10px;
    }
}

@media screen and (max-width: 1000px) {
    .contact_image {
        margin-left: -20px;
        width: 250px;
    }
    .inputs_contract_block {
        width: 65%;
    }
    .card_block:nth-child(2) {
        margin-right: 0;
    }
}

@media screen and (max-width: 960px) {
    .contact_image {
        margin-right: 40px;
    }
    .range_checkbox_section {
        width: 90%;
    }
}

@media screen and (max-width: 900px) {
    .input_options_container {
        width: 80%;
    }
    .calculator_end_block {
        width: 85%;
    }
    .input_option_block_text span {
        margin-right: 10px;
    }
    #payment-method-table .tip_payment_method .payment-method {
        width: 48%;
        margin: 5px;
    }
     .input_option_block_text {
        width: 33%;
    }
}

@media screen and (max-width: 800px) {
    .card_container {
        margin-top: 0!important;
        padding-top: 20px;
    }
    .range_calculator_checkbox .calculator_checkbox_input:last-child {
        margin-left: 0!important;
    }
    .calculator_continue_button {
        padding: 12px 42px;
        font-size: 20px;
    }
    .input_options_container {
        width: 90%;
    }
    .calculator_end_block {
        width: 95%;
    }
    .sub_contract_block {
        flex-direction: column;
    }
    .inputs_contract_block {
        width: 84%;
        margin: 45px auto 0 auto;
    }
    .contact_image {
        margin: auto;
    }
    .range_checkbox_section {
        width: 95%;
    }
    .range_calculator_checkbox label {
        width: 100%;
    }
    .range_calculator_checkbox label:nth-child( 2n) {
        justify-content: end;
    }
     .input_option_block_text {
        width: inherit;
    }
}

@media screen and (max-width: 768px) {
    .calculator_steps_container {
        margin-top: 53px;
        margin-bottom: 70px;
    }
    .calculator_steps_description {
        font-size: 16px;
    }
    .top_second_garant_container {
        margin-top: 44px;
    }
    .range_slider {
        margin-top: 22px;
    }
    .range_calculator_checkbox {
        margin-top: 32px;
    }
    /* card block design */
    .card_block {
        margin-right: 0;
    }
    .contact_image {
        margin: auto;
        display: none;
    }
    .green_line {
        width: 90%;
        margin: 40px auto;
    }
    .card_container {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }
    .card_image {
        display: none;
    }
    .card_description_block {
        height: auto !important;
    }
    .card_block_top {
        background: none;
        height: auto;
        display: flex;
        flex-direction: row-reverse;
        justify-content: space-between;
    }
    .card_btn_green {
        color: #70A661;
    }
    .card_btn_red {
        color: #A32900;
    }
    .card_btn_yellow {
        color: #AFA100;
    }

    [data-active="1"] .card_btn_green {
        background-color: white;
        color: #70A661;
    }
    .card_btn_green:hover {
        background-color: #70A661 !important;
        color: white;
    }
    [data-active="1"] .card_btn_red {
        background-color: white;
        color: #A32900;
    }
    [data-active="1"] .card_btn_yellow {
        background-color: white;
        color: #AFA100;
    }
    .card_end_block {
        padding: 0 43px;
        margin-top: 20px;
        text-align: center;
    }
    .card_block {
        box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
        width: 90%;
        margin-bottom: 25px;
    }
    .card_block_green {
        background: #70A661;
        border: 1px solid rgba(112, 166, 97, 0.5);
    }
    .card_block_red {
        background: #A32900;
        border: 1px solid rgba(163, 41, 0, 0.5);
    }
    .card_block_yellow {
        background: #AFA100;
        border: 1px solid rgba(175, 161, 0, 0.5);
    }
    .card_top_btn_green {
        color: #70A661;
    }
    .card_top_btn_red {
        color: #A32900;
    }
    .card_top_btn_yellow {
        color: #AFA100;
    }
    .attention_text {
        margin-bottom: 8px;
        font-size: 12px;
        line-height: 28px;
        color: white;
        margin-top: -17px;
    }
    .discount {
        display: none;
    }
    .calculator_second {
        margin-top: 99px;
    }
    .card_block:nth-child(3) {
        margin-bottom: 0px;
    }
    /* price cards  */
    .card_block {
        background-color: white;
        box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    }
    .card_block_green[data-active="1"] {
        box-shadow: 0px 0px 0px 1px rgb(112 166 97 / 50%);
    }
    .card_block_red[data-active="1"] {
        box-shadow: 0px 0px 0px 1px rgb(163 41 0 / 50%);
    }
    .card_block_yellow[data-active="1"] {
        box-shadow: 0px 0px 0px 1px rgb(175 161 0 / 50%);
    }
    .card_image_0 {
        background: linear-gradient(359.17deg, #2F8458 -43.74%, #FFFFFF 217.22%);
        border: 1px solid rgba(47, 132, 88, 0.5);
        width: auto;
    }
    .card_image_1 {
        background: linear-gradient(359.88deg, #A81D21 -44.79%, #FFFFFF 214.68%);
        border: 1px solid rgba(168, 29, 33, 0.5);
        width: auto;
    }
    .card_image_2 {
        background: linear-gradient(1.19deg, #DFCD3B -42.87%, #FFFFFF 265.65%);
        border: 1px solid rgba(223, 205, 59, 0.5);
        width: auto;
    }
    .card_description {
        color: black;
        font-size: 16px;
        line-height: 19px;
        display: flex;
        margin: 20px 0;
        font-weight: bold;
    }
    .card_end_button {
        margin: 5px auto 15px auto;
        font-size: 18px;
        line-height: 19px;
        padding: 5px 13px;
    }
    .card_end_block {
        margin-top: 0;
    }
    .attention_text {
        margin-top: -14px;
        font-size: 10px;
        line-height: 23px;
        color: #A32900;
        margin-bottom: 4px;
    }
    .card_price {
        font-size: 45px;
        line-height: 44px;
        margin-top: 7px;
        margin-left: 7px;
        position: relative;
        top: 0;
        color: white;
        display: block;
    }
    .card_top_btn_green {
        background: #70A661;
        border: 1px solid #FFFFFF;
        color: white;
    }
    .card_top_btn_red {
        background: #A32900;
        border: 1px solid #FFFFFF;
        color: white;
    }
    .card_top_btn_yellow {
        background: #AFA100;
        border: 1px solid #FFFFFF;
        color: white;
    }
    .card_top_button {
        padding: 5px 23px;
        margin-top: 9px;
        z-index: 9;
        margin-right: 4px;
        position: static;
        width: fit-content;
        font-size: 25px;
        line-height: 25px;
        display: flex;
        align-items: center;
        height: fit-content;
    }
    .card_image {
        display: block;
        width: 143px;
        height: 68px;
        position: absolute;
    }
    .card_block_top {
        height: 68px;
    }
    .card_container {
        margin-top: 33px;
    }
    .registration_number_container {
        margin-top: 77px;
    }
    .registration_number_title {
        font-size: 16px;
    }
    [data-active="1"] .card_btn_green {
        background-color: #70A661;
        color: white;
    }
    [data-active="1"] .card_btn_red {
        background-color: #A32900;
        color: white;
    }
    [data-active="1"] .card_btn_yellow {
        background-color: #AFA100;
        color: white;
    }
}

@media screen and (max-width: 710px) {
    .inputs_contract_block {
        width: 95%;
        margin: 45px auto 0 auto;
    }
    .input_options_container {
        width: 95%;
    }
    .calculator_steps_in {
        padding: 8px 28px;
    }
    .calculator_steps_description {
        font-size: 17px;
    }
    .title_wrapper_calculator {
        font-size: 25px;
    }
    .card_block {
        margin-right: 0px;
        max-width: 100%;
    }
    #payment-method-table .tip_payment_method .payment-method.show {
        width: initial;
        display: inherit!important;
    }
}

@media screen and (max-width: 636px) {
    .calculator_end_block {
        display: flex;
        flex-direction: column;
    }
    .calculator_continue {
        flex-direction: row;
    }
    .calculator_checkbox {
        margin-bottom: 20px;
    }
    .top_second_garant_container {
        padding: 0 10px 0 10px;
        flex-direction: column;
    }
    .title_second_block {
        margin-bottom: 15px;
    }
    .range_slider_input {
        height: 12px;
    }
    .range_slider_input::-webkit-slider-runnable-track {
        height: 12px;
    }
    .range_slider_input::-moz-range-track {
        height: 12px;
    }
    .range_slider_input::-webkit-slider-thumb {
        width: 40px;
        height: 40px;
        margin-top: -14px;
    }
    .range_slider_input::-moz-range-thumb {
        width: 40px;
        height: 40px;
        margin-top: -14px;
    }
    .range_slider_input::-ms-thumb {
        width: 40px;
        height: 40px;
        margin-top: -14px;
    }
}

@media screen and (max-width: 588px) {
    #observatii-livrare {
        width: 100%!important;
    }
    .title_contract {
        font-size: 22px;
    }
    .calculator_checkbox_input {
        font-size: 16px;
    }
    .bottom_checkbox {
        width: 26px;
        height: 26px;
    }
    .calculator_custom_checkbox .calculator_tick_checkbox {
        width: 18px;
        height: 18px;
    }
    .calculator_end_button {
        padding: 8px 40px;
        font-size: 17px;
    }
    .input_option_block {
        flex-direction: column;
        align-items: center;
    }
    .calculator_drop_down_calculator {
        top: 38px;
        width: calc(100% - 2px);
    }
    .type_auto, .input_option_block_select, .checkboxes_type_delivery {
        width: 100%;
    }
    .input_drop_down_phone {
        width: 86px !important;
        margin-right: 17px;
    }
    .bottom_inputs_container {
        justify-content: end;
        width: 100%;
    }
    .input_phone_number {
        width: 140px;
    }
    .input_option_block_text {
        margin-bottom: 10px;
        margin-right: auto;
    }
    :root {
        --input-width: 95%;
    }
    .input_drop_down_text_block {
        width: 100%;
        display: flex;
        justify-content: normal;
    }
    .year_drop_down {
        width: 100%;
    }
    .phone_select {
        width: 86px;
    }
    .bottom_inputs_description {
        margin: -15px 0 0 0;
    }
    #complete_title {
        font-size: 21px;
    }
    .steps_count_title {
        font-size: 30px;
    }
    .calculator_steps_in {
        padding: 6px 26px;
    }
    .calculator_steps_description {
        font-size: 16px;
    }
    .calculator_steps_container {
        align-items: baseline;
    }
    .calculator_steps_block {
        width: calc(100% / 3);
    }
    .title_wrapper_calculator {
        font-size: 23px;
    }
    .input_currency {
        width: 30%;
    }
    .calculator_continue_button {
        padding: 10px 38px;
    }
}

@media screen and (max-width: 526px) {
    .popup_restore {
        width: 100%;
    }
    .popup_restore_block {
        width: 95%;
        margin: auto;
    }
}

@media screen and (max-width: 500px) {
    .livrare_ziua.input_option_block.d_flex .item_1{
        display: block !important;
    }
    .livrare_ziua.input_option_block.d_flex .item_1 .bottom_inputs_container.input_icon_block,
     #sub_item_livrare .livrare_azi .d_flex {
        width: 100% !important;
    }
     .ziua-livrarii_items {
        width: 100%;
    }
    .card_top_button {
        padding: 4px 15px;
        font-size: 18px;
    }
    .card_price {
        font-size: 35px;
    }
    .card_description {
        font-size: 14px;
        margin: 10px 0;
    }
    .card_end_button {
        font-size: 16px;
    }
    .attention_text {
        font-size: 8px;
    }
    .calculator_text_info {
        width: auto;
    }
    .bottom_input_options_container {
        margin-top: 29px;
    }
    #complete_title {
        font-size: 20px;
        line-height: 27px;
    }
    .title_wrapper_calculator {
        font-size: 22px;
        padding: 0 50px;
        line-height: 30px;
    }
    :root {
        --input-width: 99%;
    }
    .calculator_steps_container {
        flex-wrap: wrap;
        margin-top: 33px;
        margin-bottom: 15px;
    }
    .complete_info_container {
        padding: 6px 10px;
    }
    .calculator_steps_description {
        font-size: 18px;
    }
    .bottom_checkbox {
        width: 22px;
        height: 22px;
    }
    .calculator_checkbox_input {
        font-size: 14px;
    }
    .calculator_checkbox {
        display: flex;
        width: 100%;
    }
    .calculator_end_block {
        margin: 23px auto 34px auto;
    }
    .calculator_steps_block {
        width: 100%;
        margin-bottom: 30px;
        display: flex;
        align-items: center;
        margin-bottom: 10px;
        margin-left: 16px;
    }
    .calculator_steps_in {
        padding: 0px 16px;
    }
    .steps_count_title {
        font-size: 32px;
        line-height: 44px;
    }
    .calculator_steps_block_in {
        margin-bottom: 0px;
    }
    .step-connector-right .step-line {
        height: 0;
    }
    .calculator_steps_block:last-child {
        margin-bottom: 0;
    }
    .step-connector-left .step-line {
        height: 0;
    }
    .bottom_inputs_description {
        font-size: 14px;
        margin: -7px 0 0 0;
    }
    .calculator_custom_checkbox .calculator_tick_checkbox {
        width: 15px;
        height: 15px;
    }
    .title_second_block {
        margin-bottom: 10px;
        text-align: center;
        font-size: 16px;
    }
    .block_slider_text {
        font-size: 18px;
        margin-right: 6px;
        padding: 5px 15px;
    }
    .slider_selected_block {
        display: flex;
        margin-left: 0;
    }
    .calculator_continue {
        display: flex;
        flex-direction: row;
        margin-top: 43px;
    }
    .calculator_continue_button {
        padding: 10px 22px;
    }
    .range_container {
        padding: 15px;
    }
    .active_notice_block {
        display: flex;
        flex-direction: column;
        padding: 2px 15px 10px 15px;
        margin: 17px auto 0 auto;
    }
    .registration_number_input {
        display: flex;
        width: 141px;
        margin: 20px auto 0 auto;
    }
    .range_slider {
        margin: 5px auto 0 auto;
    }
    .range_slider_input {
        height: 10px;
    }
    .range_slider_input::-webkit-slider-runnable-track {
        height: 10px;
    }
    .range_slider_input::-moz-range-track {
        height: 10px;
    }
    .range_slider_input::-webkit-slider-thumb {
        width: 35px;
        height: 35px;
        margin-top: -14px;
    }
    .range_slider_input::-moz-range-thumb {
        width: 35px;
        height: 35px;
        margin-top: -14px;
    }
    .range_slider_input::-ms-thumb {
        width: 35px;
        height: 35px;
        margin-top: -14px;
    }
    .range_content span {
        display: none;
    }
    .range_content span:first-child, .range_content span:last-child {
        display: block;
    }
    .range_calculator_checkbox {
        margin-top: 50px;
    }
    .input_option_block_text {
        margin-bottom: 6px;
    }
    .title_contract {
        font-size: 20px;
        margin: 20px 0 0 0;
    }
    .green_line {
        margin: 40px auto 10px auto;
    }
    .input_valuation {
        width: 100%;
    }
    .input_currency {
        margin-right: 13px;
    }
    .input_option_block:last-child {
        margin-bottom: 0px;
    }
    .input_option_block {
        margin-bottom: 14px;
    }
    .registration_number_container {
        margin-top: 22px;
    }
    .input_options_container {
        margin: 22px auto 0 auto;
    }
    .top_second_garant_container {
        margin-top: 20px;
    }
    .contract_block {
        margin-top: 0px;
    }
    .slider_day_selected {
        width: 33px;
        padding: 5px 10px;
    }
    .info_drop_down_left {
        left: -129px;
    }

    .btns_end {
        text-align: center;
    }
    #comanda {
        display: table;
    }
}
@media screen and (max-width: 440px) {
        .card_price {
            font-size: 30px;
            margin-left: 30px;
            margin-top: 0px;
        }
        .card_top_button {
            padding: 5px 15px;
            font-size: 16px;
        }
        .card_end_block {
            padding: 0 10px;
        }
    }
@media screen and (max-width: 400px) {
    .card_price {
        font-size: 25px;
        margin-left: 10px;
        margin-top: 5px;
    }
    .card_description {
        font-size: 12px;
    }
    .card_end_button {
        font-size: 14px;
    }
    .title_wrapper_calculator {
        font-size: 21px;
    }
    #btn_back {
        display: table;
        margin: 10px auto;
    }
    .range_container {
        padding: 10px;
    }

}

@media screen and (max-width: 375px) {
    .card_block {
        width: 262px;
    }
}

#services_info {
    justify-content: center;
}
