/*Reorder Step 3 Details on Bookly Form*/
.bookly-details-step {
    display: flex !important;
    flex-flow: column !important;
}
/*Custom fields first*/
.bookly-details-step .bookly-custom-fields-container .bookly-custom-field-row:first-child{
    order :1 !important;
}
/*First name and last name*/
.bookly-details-step .bookly-box:first-child{
    order : 2 !important;
}
/*Phone and Email*/
.bookly-details-step .bookly-box:nth-child(2){
    order : 3 !important;
}
/*Terms checkbox*/
body .bookly-details-step .bookly-box.bookly-box-term-checkbox-lt {
    order : 4 !important;
    padding: 20px 0;
}

 /*Make 2 columns some custom fields*/
.bookly-details-step .bookly-custom-fields-container .bookly-box {
    float: left;
    clear: both;
    width: 50%;
}
.bookly-details-step .bookly-custom-fields-container .bookly-box:nth-child(2),
.bookly-details-step .bookly-custom-fields-container .bookly-box:nth-child(4) {
    width: 50%;
}
.bookly-details-step .bookly-custom-fields-container .bookly-box:nth-child(3),
.bookly-details-step .bookly-custom-fields-container .bookly-box:nth-child(5) {
    width: 50%;
    clear: none;
}
.bookly-details-step .bookly-custom-fields-container .bookly-box:last-child {
    width: 100% !important;
}
@media screen and (max-width: 650px) {
    .bookly-details-step .bookly-custom-fields-container .bookly-box {
        width: 100%;
    }
    .bookly-details-step .bookly-custom-fields-container .bookly-box:nth-child(2),
    .bookly-details-step .bookly-custom-fields-container .bookly-box:nth-child(4) {
        width: 100%;
    }
    .bookly-details-step .bookly-custom-fields-container .bookly-box:nth-child(3),
    .bookly-details-step .bookly-custom-fields-container .bookly-box:nth-child(5) {
        width: 100%;
        clear: both;
    }
}
/*Reorder Step 3 Details on Bookly Form ENDS*/

/*Service icons on Step 1*/
.tl-bookly-template-2 .bookly-service-step .bookly-mobile-step-1 .bookly-form-group,
.tl-bookly-template-2 .bookly-service-step .bookly-mobile-step-1 .bookly-service-info {
    display: none !important;
}

body.tl-bookly-template-2 .is-layout-constrained > :where(:not(.alignleft):not(.alignright):not(.alignfull)) {
    max-width: 1140px;
}

.ltar-services-icon-holder {
    float: left;
    width: 75%;
}
.ltar-services-icon-holder .ltar-service-item {
    float: left;
    width: 20%;
    margin-bottom: 30px;
    padding: 0 15px;
}
.ltar-services-icon-holder .ltar-service-item:nth-child(5n+1) {
    clear: both;
}
.ltar-services-icon-holder .ltar-service-item-inner {
    border: 1px solid #ddd;
    height: 140px;
    background-position: center 30px;
    background-size: 40px;
    background-repeat: no-repeat;
    text-align: center;
    position: relative;
}
.ltar-services-icon-holder .ltar-service-item-inner:hover {
    cursor: pointer;
    box-shadow: 4px 5px 7px #888888;
}
.ltar-services-icon-holder .ltar-service-item-inner span {
    display: block;
    width: 100%;
    line-height: 1.3em;
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%)!important;
    -ms-transform: translateX(-50%)!important;
    -webkit-transform: translateX(-50%)!important;
    min-height: 28px;
}
.ltar-services-icon-holder .ltar-service-item-inner.active .checker {
    display: block !important;
    position: absolute;
    top: 17px;
    right: 5px;
    width: 23px;
    height: 23px;
    padding: 0;
    margin: -12px auto 0;
    border-radius: 50%;
    background: #f56530 url(../images/checkbox.png) 0 0 no-repeat;
    background-color: #1e73be !important;
}

@media (max-width: 599px) {
    .ltar-services-icon-holder {
        width: 100%;
    }
    .ltar-services-icon-holder .ltar-service-item {
        width: 50%;
    }
    .ltar-services-icon-holder .ltar-service-item:nth-child(2n+1) {
        clear: both;
    }
    .ltar-services-icon-holder .ltar-service-item:nth-child(5n+1) {
        clear: none;
    }
}
@media (min-width: 600px) and (max-width: 991px) {
    .ltar-services-icon-holder {
        width: 100%;
    }
    .ltar-services-icon-holder .ltar-service-item {
        width: 33.333333%;
    }
    .ltar-services-icon-holder .ltar-service-item:nth-child(3n+1) {
        clear: both;
    }
    .ltar-services-icon-holder .ltar-service-item:nth-child(5n+1) {
        clear: none;
    }
}
@media (min-width: 992px) and (max-width: 1279px) {
    .ltar-services-icon-holder {
        width: 100%;
    }
}
/*Service icons on Step 1 ENDS*/