/* STYLE CSS */
@font-face{
	font-family:'Open Sans';
	src:url('/fonts/OpenSans-Regular.ttf') format('truetype');
	font-weight:400;
	font-style:normal
}
@font-face{
	font-family:'Open Sans';
	src:url('/fonts/OpenSans-SemiBold.ttf') format('truetype');
	font-weight:600;
	font-style:normal
}
@font-face{
	font-family:'Open Sans';
	src:url('/fonts/OpenSans-Light.ttf') format('truetype');
	font-weight:300;
	font-style:normal
}
@font-face{
	font-family:'Open Sans';
	src:url('/fonts/OpenSans-Medium.ttf') format('truetype');
	font-weight:500;
	font-style:normal
}


:root{
    --dark:
    rgba(50, 47, 51, 1);
    --bl: #000;
    --wh: #fff;
    --l-grey:
    rgba(176, 171, 178, 1);
    --ll-grey:
    rgba(241, 240, 242, 1);
    --grey:
    rgba(151, 147, 153, 1);
    --d-grey:
    rgba(99, 94, 102, 1);
    --l-main:
    rgba(255, 215, 225, 1);
    --main:
    rgba(255, 48, 100, 1);
    --red: #B10000;
--pink:
    rgba(248, 241, 241, 1);
}

::placeholder {
    font-size: inherit;
    color: var(--l-grey);
}

input, select, textarea {
    font-size: inherit;
    font-family: inherit;
    font-weight: inherit;
    width: 100%;
}

input[type="text"], 
input[type="tel"], 
input[type="email"], 
input[type="password"], 
input[type="number"], 
input[type="date"], 
input[type="time"],
select, textarea{
    width: 100%;
    height: 56px;
    border: 1px solid var(--ll-grey);
    border-radius: 60px;
    padding: 10px 15px;
    background: transparent;
    -webkit-appearance: none;
    line-height: normal;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

body {
    font-family: 'Open Sans';
    height: 100vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    background: #ccc;
}

section {
    width: 100%;
    align-self: flex-start;
}

.error{
    color: var(--red);
    font-size: 14px;
}

.hidden_field {display: none !important;}

.d-block{
    display: block !important;
}

img, svg{
    max-width: 100%;
}

img.to_svg{
    display: none;
    width: 0;
}

a {
    color: var(--main);
}

a:hover {
    color: var(--l-main);
}

.docode_loader {
    position: fixed;
    z-index: 100;
    width: 50px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    /*display: none;*/
}

.container_app {
    width: 100%;
    max-width: 425px;
    margin: auto;
    background: var(--wh);
    height: 100vh;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    position: relative;
}

.std_btn{
    border: 1px solid var(--main);
    padding: 20px;
    cursor: pointer;
    transition: 0.3s;
    border-radius: 28px;
    background: var(--main);
    color: var(--wh);
    font-size: 16px;
    font-weight: 600;
    display: block;
    text-align: center;
}

.std_btn:hover{
    border: 1px solid var(--main);
    background: var(--wh);
    color: var(--main);
}

.light_std_btn{
    border: 1px solid var(--main);
    padding: 20px;
    cursor: pointer;
    transition: 0.3s;
    border-radius: 28px;
    background: var(--wh);
    color: var(--main);
    font-size: 16px;
    font-weight: 600;
    display: block;
    text-align: center;
}

.light_std_btn:hover{
    border: 1px solid var(--main);
    background: var(--main);
    color: var(--wh);
}

/**** SIGN FORM ****/
.login_privacy {
    width: 100%;
    font-weight: 400;
    font-size: 12px;
    line-height: 140%;
    text-align: center;
    color: var(--grey);
    max-width: 350px;
    margin: auto auto 20px;
    position: fixed;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
}

.set_login_wrap {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
}

.app_sign_title, .app_sign_response {
    width: 100%;
}

.app_sign_title > img {
    width: 190px;
    display: block;
    margin: 20px auto;
}

.app_hello_title {
    font-weight: 600;
    font-size: 20px;
    line-height: 24px;
    text-align: center;
    margin: 40px 0 16px;
}

.app_hello_txt {
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
    margin-bottom: 20px;
}

.app_sign_field {
    width: 100%;
    margin-bottom: 20px;
    position: relative;
}

.app_sign_field label {
    position: absolute;
    top: 20px;
    left: 11px;
    background: var(--wh);
    padding-right: 5px;
}

.app_sign_field input {
    padding-left: 35px;
}

.app_sign_count {
    width: 100%;
    font-weight: 600;
    font-size: 12px;
    line-height: 140%;
    text-align: center;
    margin-top: 24px;
}

.app_sign_field button, 
.app_sign_field [type="button"], 
.app_sign_field [type="submit"] {
    width: 100%;
}

.app_sign_btn_field {
    position: fixed;
    width: 425px;
    left: 50%;
    transform: translateX(-50%);
    padding: 20px;
    bottom: 0;
    max-width: 100%;
}

button:disabled, [type="button"]:disabled, [type="submit"]:disabled {
    background: var(--l-main);
    border-color: var(--l-main);
    color: var(--wh);
    cursor: no-drop;
}

.sign_answer {
    width: 100%;
}

.sign_answer span {
    display: block;
    width: 100%;
    padding: 5px;
    text-align: center;
}

.login_privacy a {
    font-weight: 600;
}

.clear_phone {
    position: absolute;
    top: 22px;
    right: 20px;
    display: none;
}

.main_screen_back {
    position: absolute;
    top: 45px;
    left: 30px;
    display: none;
    cursor: pointer;
}

.app_sign_response {
    display: none;
    justify-content: space-around;
}
.app_sign_response.open {
    display: flex;
}

.app_sign_response input {
    width: 56px;
    text-align: center;
    border-color: var(--ll-grey);
}

.app_sign_response input:focus {
    border-color: var(--l-grey);
}

input.error_input {
    border-color: var(--red);
}

span.re_sms {
    color: var(--main);
    font-weight: 600;
    padding-top: 20px;
    display: block;
}





/**** END SIGN FORM ****/

/**** MAIN APP *****/
.head_app_logo {
    width: 120px;
    margin-right: auto;
}

.head_app_name {
    align-self: center;
}

.head_name {
    font-weight: 600;
    font-size: 14px;
    text-align: right;
    margin-bottom: 4px;
}

.left_ear {
    position: absolute;
    top: 100%;
    left: 0;
}

.right_ear {
    position: absolute;
    top: 100%;
    right: 0;
    transform: scale(-1, 1);
}

.user_logout {
    width: 20px;
    margin-left: 20px;
    align-self: center;
    cursor: pointer;
}

.app_header {
    padding: 8px 15px;
    margin: 0 -20px;
    box-shadow: 0px 4px 40px rgba(0, 0, 0, 0.04);
    position: fixed;
    width: 425px;
    max-width: 100%;
    background: var(--wh);
    z-index: 100;
}

.app_footer {
    padding: 20px 20px;
    position: fixed;
    width: 100%;
    max-width: 425px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background: transparent !important;
    z-index: 2;
}

.app_footer_icon a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    align-items: center;
    color: var(--l-grey);
    font-weight: 600;
    font-size: 10px;
}

.app_footer_icon a svg {
    width: 20px;
    height: 20px;
    margin-bottom: 6px;
}

.app_footer_icon a svg path {
    fill: var(--l-grey);
}

.app_footer_icon a.active svg path {
    fill: var(--main);
}

.app_footer .row {
    box-shadow: 0px -4px 40px rgba(0, 0, 0, 0.04);
    border-radius: 24px;
    background: var(--wh);
}

.app_footer_icon {flex: 1;height: 56px;display: flex;}

.app_footer_icon a.active {color: var(--main);}

.app_body {
    flex: 1 0 auto;
    overflow: auto;
    height: calc(100vh - 76px - 91px);
    padding: 0 15px;
    margin: 0 -20px;
    display: flex;
    flex-direction: column;
}

.app_screen_title {
    font-weight: 600;
    font-size: 20px;
    color: var(--dark);
    text-align: center;
    padding: 30px 20px;
    margin-top: 60px;
}

.head_tarif {
    font-weight: 600;
    font-size: 14px;
    color: var(--main);
    text-align: right;
}

.app_services_wrap {
    /* overflow: auto; */
    /* height: calc(100vh - 220px); */
    padding-bottom: 160px;
}

.settings_field {
    position: relative;
    margin-bottom: 20px;
}

.settings_field label {
    position: absolute;
    top: 18px;
    left: 20px;
    padding: 2px;
    pointer-events: none;
    font-size: 16px;
    color: var(--l-grey);
    background: var(--wh);
    transition: 0.3s;
}

.settings_field label.focused {
    font-size: 14px;
    top: -9px;
}

.setting_bnt {
    position: absolute;
    top: 16px;
    right: 15px;
    width: 20px;
    height: 20px;
    cursor: pointer;
    display: block !important;
    pointer-events: none;
}

.bottom_setting_accept {
    margin-bottom: 20px;
    margin-top: 16px;
}

.display_darker.settings_darker {
    z-index: 100;
}

.bottom_setting_input_wrap.choose_date_wrap {
    z-index: 101;
}

.add_vin {
    display: flex;
    font-weight: 600;
    font-size: 16px;
    color: var(--main);
    padding: 20px 0;
    align-items: center;
    cursor: pointer;
    transition: 0.3s;
    width: max-content;
}

.get_tarif_btn {
    /* margin-top: 40px; */
    position: fixed;
    width: 425px;
    max-width: 100%;
    padding: 0 20px;
    left: 50%;
    transform: translateX(-50%);
    bottom: 100px;
}

.add_vin:hover {
    color: var(--dark);
}

.vin_repeater {
    position: relative;
    flex: 1 0 auto;
    display: flex;
    flex-direction: column;
    padding-bottom: 200px;
}

.vin_list {
    width: 100%;
    margin-bottom: 4px;
}

.settings_vin_field {
    margin-top: 24px;
    font-size: 16px;
    color: var(--dark);
    width: max-content;
}

.settings_vin_field input {
    display: none;
}

.settings_vin_field label {
    position: relative;
    padding: 5px 40px;
    display: block;
}

.settings_vin_field label:before {
    content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 1px solid var(--main);
    left: 0;
    top: 0;
}

.settings_vin_field label.checked:after {
    content: '';
    position: absolute;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--main);
    left: 4px;
    top: 4px;
}

.tarif_vin {
    margin: 20px 0 20px;
}

.add_img_wrap {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--main);
    position: relative;
    margin-right: 12px;
}

.add_img_wrap img, .add_img_wrap svg {
    position: absolute;
    top: 6px;
    left: 6px;
}

.light_title {
    font-weight: 400;
    font-size: 14px;
    color: var(--l-grey);
    padding: 0 20px;
}

.tarif_txt {
    display: flex;
    align-items: center;
    margin-top: 18px;
    margin-bottom: 40px;
}

.all_tarif_wrap {
    margin-bottom: 200px;
}

.info_icon {
    width: 20px;
    height: 20px;
    background: var(--dark);
    border-radius: 6px;
    margin-right: 14px;
    position: relative;
}

.info_icon img, .info_icon svg {
    position: absolute;
    left: 9px;
    top: 5px;
}

.vin_added {
    display: none;
}
/**** END MAIN APP *****/

/***** TARIFS APP ******/
.color_body {
    background: var(--ll-grey);
}

.tarif_title {
    position: relative;
    background: var(--wh);
    padding: 20px 40px;
    text-align: center;
    display: block;
    color: var(--dark);
    font-weight: 600;
    font-size: 16px;
}

.tarif_close .tarif_title {
    color: rgba(0,0,0,0.2);
}

.tarif_wrap {
    margin-bottom: 16px;
    display: block;
}

.tarif_wrap_hidder {
    border-radius: 32px;
    overflow: hidden;
}

.tarif_body {
    padding: 16px;
    background: var(--wh);
    display: none;
    font-size: 14px;
    color: var(--dark);
}

.tarif_info_wrap .tarif_body {
    display: block;
}

.tarif_title img, .tarif_title svg {
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
    transition: 0.3s;
    width: 15px;
    height: 15px;
}

.tarif_title svg path {
    fill: var(--dark);
}

.tarif_serv_link {
    cursor: pointer;
    width: 100%;
    color: var(--dark);
}

.tarif_serv_link:hover {
    background: var(--blue);
}

.tarif_any_serv_row.tarif_close a {
    color: rgba(0, 0, 0, 0.2);
}

.tarif_wrap.active .tarif_title img, .tarif_wrap.active .tarif_title svg {
    transform: rotate(180deg);
}

.tarif_description {
    margin-bottom: 24px;
    line-height: 20px;
}

.buy_tarif_btn {
    margin-top: 24px;
}

.tarif_serv_row {
    display: flex;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--wh);
    margin-bottom: 8px;
    flex-wrap: wrap;
}

.tarif_info_darker {
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(50, 47, 51, 0.2);
    z-index: 100;
    display: none;
    left: 0;
    top: 0;
    overflow: auto;
}

.tarif_info_popup {
    position: absolute;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
    width: 425px;
    max-width: 100%;
    padding: 20px 20px 100px;
    z-index: 100;
}

.tarif_info_wrap {
    background: var(--wh);
    padding: 16px;
    border-radius: 24px;
}

.tarif_info_title {
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    position: relative;
}

.closer_info {
    position: absolute;
    top: 6px;
    right: 5px;
}

.tarif_services_head {
    display: flex;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 16px;
}

.tarif_serv_row:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.tarif_serv_row.tarif_close {
    opacity: 0.3;
}

.tarif_serv_row:last-child {
    margin: 0;
}

.tarif_serv_name {
    flex: 1;
}

.tarif_serv_number {
    width: 100px;
    text-align: right;
}

.subtarif_serv_row {
    width: 100%;
    display: flex;
    align-items: baseline;
}

.tarif_subserv_name {
    flex: 1;
    color: var(--l-grey);
    margin-top: 8px;
}

.tarif_wrap.active .tarif_body {
    display: block;
}

.open_services_boby .tarif_services_list {
    background: var(--wh);
}

.open_services_boby .tarif_body {
    padding: 0;
}

.tarif_any_serv_row {
    display: flex;
    justify-content: center;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    padding: 14px;
    line-height: 20px;
    border-top: 1px solid var(--ll-grey);
}

.tarif_any_serv_row:last-child {
    margin-bottom: -10px;
}

.tarif_any_serv_row:first-child {
    margin-top: -16px;
}

.tarif_services_list {
    position: relative;
    background: var(--ll-grey);
    padding: 16px;
    border-radius: 20px;
}

/***** END TARIFS APP ******/

/***** POSTS APP ******/
.post_content {
    margin: 10px 0;
}

.post_back {
    margin-top: 40px;
}

h1 {
    font-size: 24px;
    margin-bottom: 10px;
}

h2 {
    font-size: 20px;
    margin-bottom: 10px;
}
/***** END POSTS APP ******/

/****** SERVICES APP *****/
.curr_service_head {
    display: flex;
    padding: 10px 0;
    position: relative;
    background: var(--wh);
    z-index: 1;
}

.curr_service_name {width: 100%;padding: 24px 35px;margin-top: 0;}

a.back_service {
    display: block;
    position: absolute;
    left: 0;
    top: 35px;
}

a.back_service.back_service_params {
    left: 20px;
}

.curr_service_count {
    position: absolute;
    right: 0;
    top: 37px;
}

.any_service_title {
    font-weight: 600;
    font-size: 16px;
    color: var(--dark);
    margin-bottom: 24px;
}

.service_point_wrap {
    display: flex;
    width: 100%;
    background: #F7F5F7;
    border-radius: 28px;
    height: 56px;
    margin-bottom: 8px;
    align-items: center;
    padding: 16px;
    cursor: pointer;
}

.point_txt {
    font-weight: 700;
    font-size: 20px;
    color: var(--grey);
    margin-right: 16px;
}

.point_addr {
    flex: 1;
    font-size: 16px;
    color: var(--grey);
}

.point_arrow {
    transform: rotate(180deg);
}

.point_arrow path {
    fill: var(--main);
}

.calendar_icon, .time_icon {
    margin-right: 16px;
}

.edit_icon path {
    fill: var(--main);
}

.service_places_wrap, .service_time_wrap {
    margin-bottom: 32px;
}

.service_radio_wrap {
    display: flex;
    flex-direction: column;
}

.any_service_notise {
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: var(--d-grey);
    margin-bottom: 75px;
}

.service_radio_wrap input {
    display: none;
}

.service_radio_wrap label {
    position: relative;
    padding: 5px 40px 5px 0;
    display: block;
    font-size: 16px;
    margin-bottom: 16px;
}

.service_radio_wrap label:before {
    content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 1px solid var(--main);
    right: 0;
    top: 0;
}

.service_radio_wrap label.checked:after {
    content: '';
    position: absolute;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--main);
    right: 4px;
    top: 4px;
}

.curr_service_action {
    margin-top: 35px;
    width: 100%;
    margin-bottom: 200px;
}

.curr_service_action input {
    width: 100%;
}

.curr_service_map {
    height: calc(100vh - 88px);
    position: relative;
    background: var(--pink);
}

div.marker {
    position: absolute;
    z-index: 10;
    left: -100;
    top: 50%;
    transform: translate(-50%, -50%);
}

div.marker img {
    width: 30px;
    height: 50px;
    transform: translateY(-50%);
}

.curr_service_order {
    display: block;
    text-align: center;
    padding: 10px;
    margin: 20px 0;
    background: var(--blue);
    border-radius: 6px;
    color: var(--wh);
}

.map_point_input_wrap > ymaps {
    top: 50px !important;
    font-size: 16px;
    width: calc(100% + 32px) !important;
    left: -17px !important;
}

.map_point_input_wrap {
    position: relative;
}

div#map_b {
    display: none;
}

.map_to_center {
    position: absolute;
    background: var(--wh);
    z-index: 10;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    bottom: 180px;
    right: 10px;
}

.map_to_center img {
    position: absolute;
    top: 8px;
    left: 6px;
}

.noservice_alert {
    position: fixed;
    z-index: 100;
    bottom: 100px;
    left: 50%;
    max-width: 100%;
    width: 425px;
    transform: translateX(-50%);
    padding: 0 20px;
    display: block;
    opacity: 0;
    pointer-events: none;
    transition: 1s;
}

.noservice_alert.noservice_show {
    transition: 0s;
    opacity: 1;
    pointer-events: all;
}

.noservice_alert_txt {
    color: var(--wh);
    background: var(--dark);
    padding: 16px;
    border-radius: 16px;
    font-size: 14px;
}

.noservice_alert_close {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    border: 1px solid var(--l-main);
    background: var(--l-main);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    display: none;
}

.service_map_a_container {
    display: none;
    position: relative;
    margin: 0 -15px;
}

.accept_point_addr input {
    width: 100%;
}

.accept_point_addr {
    position: fixed;
    width: 425px;
    bottom: 85px;
    padding: 0 20px;
    max-width: 100%;
    z-index: 1;
}

.curr_service_body {
    position: relative;
    /* height: calc(100vh - 190px); */
}

.curr_service_points {
    position: absolute;
    z-index: 12;
    width: 100%;
    background: var(--wh);
    border-bottom-left-radius: 24px;
    border-bottom-right-radius: 24px;
    padding: 0 16px 16px;
}

input.map_point_input {
    height: 44px;
    font-size: 16px;
    color: var(--dark);
}

.map_search_icon {
    position: absolute;
    top: 1px;
    background: var(--wh);
    right: 1px;
    height: 42px;
    width: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-top-right-radius: 60px;
    border-bottom-right-radius: 60px;
}

.map_input_icon {
    position: absolute;
    height: 42px;
    top: 1px;
    right: 1px;
    display: flex;
    align-items: center;
    background: var(--wh);
    border-top-right-radius: 60px;
    border-bottom-right-radius: 60px;
    display: none;
}

.map_to_icon {
    padding: 0 12px;
}

.map_cross_icon {
    padding: 8px 12px;
    border-right: 1px solid var(--l-grey);
}

.map_point_input_wrap .ymaps-2-1-79-search__suggest {
    border: none !important;
    font-size: 16px !important;
    box-shadow: none !important;
    padding: 20px;
    border-bottom-left-radius: 24px;
    border-bottom-right-radius: 24px;
}

.ymaps-2-1-79-search__suggest-item {
    margin-bottom: 20px;
    background: var(--wh) !important;
}

.app_footer.absolute_footer {
    position: fixed;
    width: 100%;
    bottom: 0;
    background: transparent;
    z-index: 1;
}

.curr_service_points.ya_search_open {
    /*padding-bottom: 170px;*/
}

.map_point_input_wrap > ymaps:before {
    content: '';
    display: block;
    background: var(--wh);
    width: 10px;
    height: 10px;
    position: absolute;
    top: -12px;
    left: 0;
    /* border: 1px solid; */
}

.map_point_input_wrap > ymaps:after {
    content: '';
    display: block;
    background: var(--wh);
    width: 10px;
    height: 10px;
    position: absolute;
    top: -13px;
    right: 0;
}

.display_darker {
    position: fixed;
    width: 100%;
    height: 100%;
    background: var(--dark);
    opacity: 0.2;
    z-index: 1;
    display: none;
    left: 0;
}

.choose_date_wrap, .choose_time_wrap {
    position: fixed;
    z-index: 3;
    bottom: 0;
    background: var(--wh);
    width: 425px;
    max-width: 100%;
    left: 50%;
    transform: translateX(-50%);
    padding: 32px 16px 16px;
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
    display: none;
    /* pointer-events: none; */
}

input#datepicker {
    opacity: 0;
    pointer-events: none;
}

.ui-widget.ui-widget-content {
    width: 100%;
    /* max-width: calc(100% - 32px); */
    /* bottom: 110px; */
    /* top: auto !important; */
    border: none !important;
    padding: 16px;
    background: rgba(247, 245, 247, 1);
    border-radius: 16px;
    /* left: 50% !important; */
    /* transform: translateX(-50%); */
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
}

.ui-datepicker .ui-datepicker-header {
    background: transparent;
    border: none;
}

.ui-datepicker .ui-datepicker-title {
    margin: 0 !important;
    text-align: left !important;
}

.ui-datepicker .ui-datepicker-prev {
    left: auto !important;
    right: 40px;
}

.ui-datepicker .ui-datepicker-prev span {
    background: url('/img/frontend/arrow_back.svg');
    background-repeat: no-repeat;
    background-position: center;
}

.ui-datepicker .ui-datepicker-next span {
    background: url(/img/frontend/arrow_back.svg);
    background-repeat: no-repeat;
    background-position: center;
    transform: rotate(180deg);
}

.ui-datepicker th {
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    text-transform: uppercase;
}

td.ui-datepicker-unselectable.ui-state-disabled {
    opacity: 1;
    color: var(--l-grey);
}

td.ui-datepicker-unselectable.ui-state-disabled span {
    color: var(--l-grey);
    border: none;
}

.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: none !important;
    text-align: center;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    margin: auto;
    font-weight: 600;
    border-radius: 50%;
}

.ui-state-hover,
.ui-widget-content .ui-state-hover,
.ui-widget-header .ui-state-hover,
.ui-state-focus,
.ui-widget-content .ui-state-focus,
.ui-widget-header .ui-state-focus,
.ui-button:hover,
.ui-button:focus {
	border: none !important;
	background: #ededed;
	font-weight: normal;
	color: #2b2b2b;
}

.ui-state-highlight, .ui-widget-content .ui-state-highlight, .ui-widget-header .ui-state-highlight {
    color: var(--dark) !important;
    background: transparent !important;
    border-radius: 50%;
    position: relative;
}

.choose_date_title {
    position: relative;
    text-align: center;
    margin-bottom: 24px;
}

.close_choose_date {
    position: absolute;
    left: 16px;
    top: 2px;
    pointer-events: all;
}

.choose_date_title:before {
    content: '';
    display: block;
    width: 48px;
    height: 2px;
    background: var(--ll-grey);
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
}

.choose_date_accept, .choose_time_accept {
    margin-top: 32px;
    width: 100%;
    /* padding: 0 20px; */
    left: 0;
    bottom: 20px;
    pointer-events: all;
    margin-bottom: 20px;
}

.ui-state-highlight, .ui-widget-content .ui-state-highlight, .ui-widget-header .ui-state-highlight {
    border: none;
}

.all_service_params_container .display_darker {
    z-index: 2;
}

.ui-state-active, .ui-widget-content .ui-state-active, .ui-widget-header .ui-state-active, a.ui-button:active, .ui-button:active, .ui-button.ui-state-active:hover {
    background: var(--main) !important;
}

.ui-widget-content .ui-state-highlight:before {
    content: '';
    display: block;
    width: 5px;
    height: 5px;
    background: var(--main);
    border-radius: 50%;
    position: absolute;
    top: 6px;
    right: 6px;
}

.service_order_placed {
    position: fixed;
    width: 425px;
    height: 100%;
    max-width: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--wh);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    text-align: center;
    top: 0;
    z-index: 10000;
    display: none;
}

.order_placed_title {
    font-weight: 600;
    font-size: 20px;
    line-height: 24px;
    text-align: center;
    margin: 16px 0;
}

.order_placed_txt {
    font-size: 14px;
    line-height: 20px;
    text-align: center;
}

.order_return_btn {
    position: absolute;
    width: 100%;
    left: 0;
    padding: 20px;
    bottom: 0;
}

.display_darker.no_service_available {
    display: block;
    z-index: 2;
    opacity: 1;
    background: rgba(0, 0, 0, 0.6);
}

.darker_alert {
    position: absolute;
    width: 425px;
    max-width: 100%;
    padding: 20px;
    left: 50%;
    top: 50%;
    color: var(--wh);
    transform: translate(-50%, -50%);
    font-weight: 600;
    font-size: 20px;
    text-align: center;
}
/****** END SERVICES APP *****/

/****** HISTORY *******/
.any_history_wrap {
    background: var(--wh);
    padding: 16px;
    margin-bottom: 8px;
    border-radius: 16px;
}

.any_history_head {
    display: flex;
    flex-wrap: wrap;
    position: relative;
}

.any_history_order {
    font-weight: 600;
    font-size: 12px;
    line-height: 140%;
    color: var(--grey);
    padding-right: 40px;
    width: 50%;
    margin-bottom: 12px;
}

.any_history_date {
    width: 50%;
    font-weight: 600;
    font-size: 12px;
    line-height: 140%;
    text-align: right;
    margin-bottom: 12px;
}

.any_history_service, .any_history_vin {
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    width: 100%;
    margin-bottom: 8px;
}

.any_history_row {
    display: flex;
}

.any_history_param {
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: var(--l-grey);
    width: 40%;
}

.any_history_value {
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
/* identical to box height, or 143% */
    text-align: right;
    padding-left: 12px;
    margin-bottom: 4px;
    flex: 1;
}

.any_history_body {
    padding-top: 16px;
    border-top: 1px solid var(--pink);
    margin-top: 16px;
    display: none;
}

.any_history_vin {
    margin-bottom: 0;
}

.open .any_history_body {
    display: block;
}

.history_opener {
    position: absolute;
    width: 16px;
    height: 16px;
    bottom: 0;
    right: 0;
    transition: 0.3s;
    /* border: 1px solid; */
}

.open .history_opener {
    transform: rotate(180deg);
}

.history_opener img, .history_opener svg {
    transform: rotate(-90deg) translate(0px, 3px);
}

.history_wrap {
    padding-bottom: 200px;
}

/***** END HISTORY *******/

.settings_field input {
    pointer-events: none;
}

/****** MARK *******/
.request_mark_wrap {
    position: fixed;
    bottom: 0;
    z-index: 1000;
    background: var(--wh);
    width: 425px;
    max-width: 100%;
    left: 50%;
    transform: translateX(-50%);
    padding: 32px 16px 16px;
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
}

.close_request_wrap {
    position: absolute;
    right: 3px;
    top: -14px;
}

.green_title {
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: #1FDC00;
}

.black_title {
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: var(--dark);
}

.request_stars {
    display: flex;
    margin-bottom: 32px;
    justify-content: center;
}

.request_star {
    margin: 0 8px;
}

.request_star.marked path {
    fill: #F2D230;
    stroke: #F2D230;
}

.request_input {
    margin-bottom: 32px;
}

.mark_darker {
    position: fixed;
    width: 100%;
    height: 100%;
    background: var(--dark);
    opacity: 0.2;
    z-index: 1;
}

/****** END MARK *******/














