/***** Garage Dashboard *****/
/*** Sidebar ***/
.garage-dashboard .sidebar .elementor-icon-list-item.active svg path {
    fill-opacity: 1;
}

.garage-dashboard .sidebar .elementor-icon-list-item {
    cursor: pointer;
    border-radius: 5px;
    padding: 7px 15px !important;
    line-height: 1;
}

.garage-dashboard .sidebar .elementor-icon-list-item.active,
.garage-dashboard .sidebar .elementor-icon-list-item:hover {
    background: rgba(255, 255, 255, 0.1);
}

.garage-dashboard .sidebar .elementor-icon-list-item.active .elementor-icon-list-text,
.garage-dashboard .sidebar .elementor-icon-list-item:hover .elementor-icon-list-text {
    color: #ED4237;
}

.garage-dashboard .sidebar .elementor-icon-list-item.active svg path,
.garage-dashboard .sidebar .elementor-icon-list-item:hover svg path {
    fill-opacity: 1;
}

/*** Breadcrumbs ***/
.breadcrumbs-page-name .elementor-heading-title .divider {
    margin: 0 5px;
}

/*** Dashboard Form ***/
.garage-dashboard .dashboard-form .elementor-form-fields-wrapper div.elementor-field-group {
    margin-bottom: 20px;
}
.garage-dashboard .dashboard-form .elementor-form-fields-wrapper .elementor-field-group label {
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 400;
    color: #596980;
}
.garage-dashboard .dashboard-form .elementor-form-fields-wrapper .elementor-field-group input,
.garage-dashboard .dashboard-form .elementor-form-fields-wrapper .elementor-field-group textarea {
    background-color: #ffffff;
    border-width: 0px 0px 0px 0px;
    border-radius: 10px 10px 10px 10px;
    font-size: 14px;
    font-weight: 400;
    font-style: italic;
    color: #0B0B0B;
}
.garage-dashboard .dashboard-form h2 {
    font-size: 26px;
    font-weight: 400;
}
.garage-dashboard .dashboard-form h3 {
    font-weight: 500;
    font-size: 16px;
}
.garage-dashboard .dashboard-form .hidden-field {
    opacity: 0;
    position: absolute;
    width: 0 !important;
    height: 0 !important;
    overflow: hidden;
}
.garage-dashboard .dashboard-form .elementor-field-type-checkbox input {
    opacity: 0;
    width: 0;
    height: 0;
    position: absolute;
    z-index: -1;
}
.garage-dashboard .dashboard-form .elementor-field-type-checkbox label {
    background: rgba(255, 255, 255, 0.6);
    border: 1px dashed #D1D1D1;
    border-radius: 10px;
    padding: 10px 15px;
    text-align: center;
    display: inline-block !important;
    cursor: pointer;
    width: 100%;
}
.garage-dashboard .dashboard-form .elementor-field-type-checkbox input:checked + label {
    background: #ED4237;
    border: 1px dashed #ED4237;
    color: #fff;
}

/* Upload Field */
.garage-dashboard .dashboard-form .elementor-field-type-upload {
    margin-top: 1rem;
}
    .garage-dashboard .dashboard-form .elementor-field-type-upload input {
    position: absolute;
    z-index: -1;
    opacity: 0;
    width: 0;
    height: 0;
}
    .garage-dashboard .dashboard-form .elementor-form-fields-wrapper .elementor-field-type-upload .upload-field {
        background: #FFFFFF;
        border-radius: 10px;
        width: 100%;
        font-style: italic;
        display: block;
        line-height: 1.7;
    }
        .garage-dashboard .dashboard-form .elementor-field-type-upload .upload-field .text,
        .garage-dashboard .dashboard-form .elementor-field-type-upload .upload-field .button {
            padding: 0.5rem 1rem;
            color: #596980;
            float: left;
        }
        .garage-dashboard .dashboard-form .elementor-field-type-upload .upload-field .button {
    float: right;
    font-style: normal;
    border-left: 1px solid #C2C2C2;
    color: #000000;
    cursor: pointer;
}

.garage-dashboard .dashboard-form #user-profile-picture img{
    border-radius: 50%;
}
.garage-dashboard .dashboard-form #vehicle_images {
    width: 100%;
}
.garage-dashboard .dashboard-form #vehicle_images span:not(.remove) {
    margin-right: 1rem;
    display: inline-block;
    width: 150px;
    height: 150px;
    overflow: hidden;
    position: relative;
}
.garage-dashboard .dashboard-form #vehicle_images .remove {
    position: absolute;
    width: 20px;
    height: 20px;
    display: inline-block;
    background: red;
    border-radius: 50%;
    line-height: 1;
    color: #fff;
    text-align: center;
    font-weight: 600;
    right: 5px;
    top: 5px;
    cursor: pointer;
    transition: all .3s;
}
.garage-dashboard .dashboard-form #vehicle_images .remove:hover {
    transform: scale(1.1);
}
.garage-dashboard .dashboard-form #vehicle_images img {
    max-width: 150px;
}

/* Responsive */
@media screen and (min-width: 993px){
    .garage-dashboard .dashboard-form .elementor-form-fields-wrapper div.elementor-field-group {
        display: flex;
        align-items: center;
    }
    .garage-dashboard .dashboard-form .elementor-form-fields-wrapper .elementor-column.elementor-col-50:nth-of-type(odd) {
        padding-right: 2rem;
    }

    .garage-dashboard .dashboard-form .elementor-form-fields-wrapper .elementor-field-group label {
        max-width: 145px;
        width: 100%;
        margin-bottom: 0;
    }
    .garage-dashboard .dashboard-form .elementor-form-fields-wrapper .elementor-field-group label + input,
    .garage-dashboard .dashboard-form .elementor-form-fields-wrapper .elementor-field-group label + textarea {
        max-width: calc(100% - 145px);
    }

    /* Checkbox */
    .garage-dashboard .dashboard-form .elementor-field-type-checkbox .elementor-field-option {
        margin-right: 10px;
        margin-bottom: 10px;
        flex-basis: auto;
    }
    .garage-dashboard .dashboard-form .elementor-field-type-checkbox .elementor-field-option label {
        max-width: none;
        white-space: nowrap;
        width: auto;
    }

    /* Upload */
    .garage-dashboard .dashboard-form .elementor-form-fields-wrapper .elementor-field-type-upload .upload-field {
        max-width: calc(100% - 145px);
    }

    /* Submit Button */
    .garage-dashboard .dashboard-form .elementor-field-type-submit {
        margin-top: 3rem;
    }
}

/*** Profile Form ***/
@media screen and (min-width: 993px){
    .garage-dashboard .dashboard-form.profile-form #form-field-phone,
    .garage-dashboard .dashboard-form.profile-form #form-field-email  {
        max-width: calc(50% - 172px);
        padding-right: 2rem;
    }
    .garage-dashboard .dashboard-form.profile-form .elementor-form-fields-wrapper .elementor-field-type-upload {
        padding-right: 2rem;
    }
    .garage-dashboard .dashboard-form.profile-form .elementor-form-fields-wrapper .elementor-field-type-password label {
        max-width: 200px;
    }
    .garage-dashboard .dashboard-form.profile-form .elementor-form-fields-wrapper .elementor-field-type-password input {
        max-width: calc(100% - 200px);
    }
    .garage-dashboard .dashboard-form.profile-form .elementor-column.elementor-field-group.elementor-field-type-password {
        padding-right: 0;
    }
    .garage-dashboard .dashboard-form.profile-form .elementor-form-fields-wrapper .elementor-field-type-upload .upload-field {
        max-width: calc(50% - 160px);
    }
    .garage-dashboard .dashboard-form.profile-form #user-profile-picture {
        margin-left: 140px;
        margin-top: 10px;
    }
}


/* Garage Location form */
@media screen and (min-width: 993px){
    .garage-dashboard .dashboard-form .elementor-field-group-garage__latitude {
        margin-left: auto;
        padding-right: calc( 10px/2 ) !important;
    }
    .dashboard-form.garage-location-form #uploaded-picture {
        max-width: 200px;
        margin-left: 140px;
        margin-top: 10px;
    }
}

/* Opening Hours Form */
.dashboard-form.opening-hours-form .elementor-form-fields-wrapper .elementor-field-group.elementor-field-type-time {
    max-width: 50%;
}
@media screen and (min-width: 993px) {
    .dashboard-form.opening-hours-form .elementor-form-fields-wrapper .elementor-field-group.elementor-field-type-time {
        max-width: calc(20% - 5px);
        padding-right: calc( 6px/2 );
        padding-left: calc( 6px/2 );
    }
    .dashboard-form.opening-hours-form .elementor-form-fields-wrapper .elementor-field-group.elementor-field-type-time:nth-of-type(5n+3) {
        margin-right: 20px;
    }
    .dashboard-form.opening-hours-form .elementor-form-fields-wrapper .elementor-field-group.elementor-field-type-time input {
        max-width: 100%;
    }
}

/* Preferences Form */
.dashboard-form.preferences-form .elementor-form-fields-wrapper .elementor-field-group.elementor-field-type-html {
    margin-bottom: 10px;
}
.dashboard-form.preferences-form h3 {
    margin-bottom: 0;
}

/* Vehicles Form */
@media screen and (min-width: 993px){
    .dashboard-form.vehicles-form #uploaded-picture {
        max-width: 200px;
        margin-left: 140px;
        margin-top: 10px;
    }
}

/*** SKINS ***/
.elementor-posts--skin-site-offers img,
.elementor-posts--skin-print-offers img {
    width: 100%;
}
.elementor-posts--skin-site-offers .action a,
.elementor-posts--skin-print-offers .action a {
    color: #000;
    font-size: 14px;
    text-decoration: underline;
}
.elementor-posts--skin-site-offers .action a:hover,
.elementor-posts--skin-print-offers .action a:hover {
    color: #ED4237;
}
