* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
    list-style: none;
    text-decoration: none;
}

body {
    background-color: white;
}

.container {
    padding: 0 15px !important;
}

ul {
    padding: 0;
    margin: 0;
}

.booking-banner {
    background-image: url(../images/banner-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 0;
}

.booking-banner h1 {
    font-size: 50px;
    margin: 0;
    color: white;
    font-weight: 600;
}

.services {
    color: black;
    padding: 60px 0;
}
.services-head ul {
    display: flex;
    flex-wrap: wrap;
}
.services-head ul li {
    display: flex;
    align-items: baseline;
    margin-bottom: 25px;
    width: 50%;
}

.services-head ul li i {
    margin-right: 10px;
    color: black;
}

.services-head ul li:last-child {
    margin: 0;
    column-gap: 50px;
    row-gap: 20px;
    justify-content: space-between;
    width: 100%;
    flex-wrap: wrap;
    
}
.services-head .services-head-left {
    background: #edfff7;
    padding: 40px;
    border: 2px solid #00b56b;
    border-radius: 15px;
    max-width: 800px;
    margin: auto;
    width: 100%;
    box-shadow: 0px 5px 30px #00000017;
}
.services-head a {
    display: block;
    font-size: 14px;
    text-decoration: none;
    color: #45b587;
}
.services-head-left h3 {
    text-transform: uppercase;
    font-size: 24px;
    font-weight: 700;
}
.services-head .services-icon-box {
    display: flex;
    align-items: baseline;
}

.services-head ul li p {
    margin: 0;
}

.services-head ul li span {
    font-size: 11px;
}

.services-head ul li:nth-child(2) p {
    border-width: 0 0 1px 0;
    border-bottom: 1px dashed black;
}

.booking-img-slider img {
    height: 270px;
    object-fit: cover;
    width: 100%;
}

.booking-img-slider {
    border-radius: 20px;
    overflow: hidden;
}

.booking-img-slider .swiper-button-next,
.booking-img-slider .swiper-button-prev {
    margin: 0;
    transform: translateY(-50%);
    height: auto;
    width: auto;
}

.booking-img-slider .swiper-button-next::after,
.booking-img-slider .swiper-button-prev::after {
    font-size: 25px;
    font-weight: 600;
    color: white;
}

.booking-img-slider .swiper-pagination span {
    height: 10px;
    width: 10px;
    background-color: white;
    opacity: 1;
    transition: 0.3s;
}

.booking-img-slider .swiper-pagination .swiper-pagination-bullet-active {
    background-color: #b1f1d7;
}

.services-main {
    margin-top: 70px;
}

.services-main nav ul li a {
    text-decoration: none;
    color: rgb(255, 255, 255);
    padding: 15px 0 15px 15px;
    display: block;
    position: relative;
    transition: .3s ease-in-out;
    border: 1px solid #ffffffa3;
}

/* .services-main nav ul li a::before {
    content: " ";
    position: absolute;
    right: -1px;
    top: 0;
    height: 100%;
    width: 3px;
    background-color: #b1f1d7;
    transition: transform .3s ease-in-out;
    transform: scaleY(0);
    transform-origin: bottom;
} */

.services-main nav ul li a.active-section::before {
    transform: scaleY(1);
    transform-origin: top;
}

.services-main nav ul li a.active-section {
    color: #000000;
    background: #00bd70;
    color: #fff;
}
.services-main nav {
    background: #000000;
    color: #fff;
    border: 1px solid #000000;
    margin-right: 10px;
}

.services-main-content .content-section label {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    cursor: pointer;
    padding: 10px 15px;
}

.services-main-content .content-section {
    margin-bottom: 20px;
    border: 3px solid #00bd70;
    border-radius: 10px;
}

.services-main-content .content-section:last-child {
    margin: 0;
}

input[type="checkbox"] {
    height: 35px;
    width: 35px;
    min-height: 35px;
    min-width: 35px;
    border-radius: 8px !important;
    -webkit-appearance: none;
    background-color: white;
    box-shadow: none !important;
    margin: 0;
    border: solid 1px black !important;
}

input[type="checkbox"]:checked {
    border-color: transparent !important;
}

input[type="checkbox"]:checked,
.select-staff input[type="radio"]:checked,
.service-date label p:hover,
.service-date input[type="radio"]:checked+p,
.service-time label p:hover,
.service-time input[type="radio"]:checked+p {
    background-color: #11bb75;
    background-size: 28px;
}

.service-date label p:hover,
.service-date input[type="radio"]:checked+p,
.service-time label p:hover,
.service-time input[type="radio"]:checked+p {
    color: #ffffff;
    background-color: #00bd70;
}
.services-main-content .content-section label div {
    margin-right: auto;
    margin-left: 30px;
}
.services-main-content .content-section label h6 {
    margin: 0;
    font-size: 18px;
}
.services-main-content .content-section label span {
    font-size: 13px;
    opacity: .6;
}
.services-main-content .content-section span.short-decript {
    display: block;
    padding-top: 10px;
}
.services-main-content .content-section label p {
    margin: 0;
    font-size: 17px;
    font-weight: 700;
}
.services-main-content h3 {
    font-size: 16px;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-weight: 700;
    background: #00bd70;
    padding: 10px;
    color: #fff;
    text-align: center;
}
.services-main-content {
    margin-top: 0;
}

.services-main-cart-empty p {
    margin: 0;
    border: solid 1px black;
    padding: 20px;
    display: flex;
    flex-direction: column;
    text-align: center;
    row-gap: 20px;
    font-size: 14px;
}

.services-main-cart-empty p i {
    font-size: 30px;
}
.cart-box {
    border: 1px solid #ccc;
    padding: 0px 0px;
    margin-left: 40px;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0px 5px 30px #00000033;
}
.services-main-cart .services-main-cart-head p {
    font-size: 13px;
    margin: 0;
    color: #fff;
}
.footer span {
    display: inline-block;
    padding: 0 20px;
    margin-bottom: 30px;
    font-weight: 700;
}

.services-main-cart-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #00bd70;
    padding: 8px 15px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}
.services-main-cart ul li {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 20px 20px;
    border-bottom: solid 1px black;
}

.services-main-cart ul li h6 {
    margin-right: 15px;
    font-size: 15px;
}

.services-main-cart ul li a {
    display: inline-block;
    color: #ff0000;
    font-size: 15px;
    line-height: 15px;
}
.services-main-cart-head h3 {
    font-size: 22px;
    color: #fff;
}
.services-main-cart ul li p {
    margin: 0;
}

.services-main-cart ul li span {
    font-size: 13px;
    display: inline-block;
    opacity: .6;
}

.services-main-cart ul li .services-main-cart-delete {
    display: flex;
    align-items: flex-start;
    justify-content: end;
}

.services-main-cart ul li div {
    width: 50%;
}

.services-main-cart-total {
    margin-top: 20px;
}

.services-main-cart-total .services-main-cart-tax,
.services-main-cart-total .services-main-cart-total-price,
.services-main-cart-total .services-main-net-total {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 0 20px;
}

.services-main-cart-total h5 {
    font-size: 16px;
    margin: 0;
}

.services-main-cart-total p {
    margin: 0;
}

.services-main-cart-tax h5,
.services-main-cart-tax p,
.services-main-net-total h5,
.services-main-net-total p {
    font-size: 14px;
    opacity: .6;
}

.common-btn {
    text-decoration: none;
    background-color: #000000;
    border: solid 1px #000000;
    color: rgb(255, 255, 255);
    text-align: center;
    padding: 15px 20px;
    display: block;
    margin: 40px 0 0;
    transition: .5s;
    border-radius: 10px;
    width: 100%;
}

.common-btn:hover {
    background-color: #00bd70;
    border: solid 1px #00bd70;
    color: rgb(255 255 255);
}

.select-staff input[type="radio"] {
    height: 20px;
    width: 20px;
    min-height: 20px;
    min-width: 20px;
    margin-right: 15px;
    -webkit-appearance: none;
    background-color: white;
    border-radius: 50px;
    transition: .3s;
    border: solid 1px #000000;
}

.select-staff label {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.select-staff ul {
    row-gap: 20px;
    display: flex;
    flex-wrap: wrap;
}

.select-staff ul li {
    width: 33.33%;
}

.service-date input[type="radio"],
.service-time input[type="radio"] {
    display: none;
    -webkit-appearance: none;
}

.service-time label p {
    padding: 10px 20px !important;
    font-size: 14px;
    text-align: center;
}

.service-date label p,
.service-time label p {
    margin: 0;
    border: solid 1px #000000;
    padding: 10px 20px 10px 10px;
    border-radius: 10px;
    cursor: pointer;
    transition: .5s;
}

.service-date ul {
    display: flex;
    flex-wrap: wrap;
    margin: -10px;
}

.service-date ul li {
    width: calc(14.28% - 20px);
    margin: 10px;
    display: none;
}

.service-date ul li:nth-child(-n+7) {
    display: list-item;
}

.service-date ul li label {
    display: block;
}

.service-date label p span {
    display: block;
    font-size: 13px;
    opacity: .6;
}

.service-date input[type="radio"]:checked+p span,
.service-date label p:hover span {
    opacity: 1;
}

.show-more-dates {
    text-align: center;
    margin: 30px auto 0;
    cursor: pointer;
    width: max-content;
    display: flex;
    align-items: center;
    border-bottom: solid 1px black;
}

.service-date {
    border-bottom: solid 1px black;
    padding-bottom: 30px;
    margin-bottom: 30px;
}

.service-time ul {
    display: flex;
    flex-wrap: wrap;
    margin: -10px;
}

.service-time ul li {
    width: calc(33.33% - 20px);
    margin: 10px;
}

.service-time ul li label {
    display: block;
}

.service-time .col-lg-6:first-child {
    padding-right: 30px;
}

.service-time .col-lg-6:last-child {
    padding-left: 30px;
}

.add-more-services {
    text-align: end;
    padding: 0 20px 10px 20px;
    margin-top: 10px;
    border-top: solid 1px white;
    border-bottom: solid 1px black;
}
.services-head-left li.location-time {
    justify-content: end;
}
.services-main-cart-total .date-time {
    padding: 0 20px 0px 20px;
}
.add-more-services a {
    color: #48d099;
    font-size: 14px;
    text-decoration: none;
    text-transform: capitalize;
    padding-bottom: 10px;
    display: block;
}
.services-main-cart-total-price * {
    font-weight: 700;
}
.date-time p {
    opacity: .6;
    font-size: 14px;
}

.booking-form .btn-close {
    height: 30px;
    width: 30px;
    box-shadow: none !important;
}

.booking-form .offcanvas-title {
    font-size: 18px;
    font-weight: 600;
}

.booking-form {
    padding: 30px;
}

.booking-form input,
.booking-form textarea {
    border: 0;
    border-radius: 0;
    box-shadow: unset !important;
    border-bottom: solid 1px #00000033;
    color: black;
}

.booking-form input:focus,
.booking-form textarea:focus {
    border-color: #b1f1d7 !important;
}

.booking-form label {
    color: black;
    opacity: .6;
}

.booking-form label span {
    color: red;
    display: inline-block;
    font-size: 26px;
    line-height: normal;
    height: 15px;
}

.booking-form .common-btn {
    margin-top: 30px;
}

.booking-form a {
    color: #48d099;
    text-decoration: none;
    margin-top: 30px;
    display: inline-block;
    transition: .3s;
    border-bottom: solid 1px transparent;
}

.booking-form a:hover {
    border-color: #b1f1d7;
}
.booking-form .offcanvas-header {
    display: flex !important;
    flex-direction: row-reverse;
}
.booking-form .form-group {
    margin-bottom: 20px;
}

.booking-form .form-group:last-child {
    margin: 0;
}

.service-tabs .nav-tabs button {
    padding: 10px 20px;
    color: #fff;
    font-weight: 500;
    font-size: 22px;
    border-radius: 0;
    margin: 0 0px;
    background: #000;
    width: 220px;
}

.service-tabs ul {
    border: 0;
    justify-content: center;
}

.service-tabs .nav-tabs button.active,
.service-tabs .nav-tabs button:hover {
    color: #ffffff !important;
    border-color: #b1f1d7 !important;
    background: #00bd70;
}

.no-gift-found p {
    margin: 20px 0 0;
}

.no-gift-found i {
    font-size: 100px;
}

.no-gift-found {
    text-align: center;
    width: fit-content;
    opacity: 0.3;
}

.service-tabs .tab-content {
    margin-top: 50px;
}

.service-tabs {
    margin-top: 70px;
}

.service-tabs .services-main {
    margin-top: 0;
}

.price-box div {
    display: flex;
    align-items: center;
    margin: 0 !important;
    justify-content: end;
}

.price-box .original-price {
    text-decoration: line-through;
    font-size: 13px !important;
    margin-right: 10px !important;
    opacity: .6;
}

.price-box {
    margin-right: 0 !important;
    min-width: 125px;
    margin-left: 10px !important;
    text-align: end;
}

.on-offer {
    background: #00bd70;
    color: #fff;
    font-size: 10px !important;
    padding: 2px 25px 2px 6px;
    position: relative;
    display: inline-block;
    opacity: 1 !important;
}

.on-offer::before {
    right: 0;
    top: 50%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    border-right-color: #ffffff;
    border-width: 15px;
    margin-top: -15px;
}

.booking-form textarea {
    height: 90px !important;
}
.footer p {
    font-size: 24px;
    text-align: center;
}
.footer p a {
    color: #000;
    padding: 0 20px;
}
.footer {
    padding: 150px 0 60px 0;
}
.cart-box .common-btn {
    width: 92%;
    margin: auto;
    margin-top: 20px;
    margin-bottom: 10px;
}
.services-main.staff-booking h3 {
    font-size: 16px;
    margin-bottom: 0;
    text-transform: uppercase;
    font-weight: 700;
    background: #00bd70;
    padding: 10px;
    color: #fff;
    text-align: center;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}
.left-slot-booking .select-staff, .left-slot-booking  .service-date , .left-slot-booking .service-time {
    margin-bottom: 20px;
    border: 3px solid #00bd70;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    padding: 0;
    border-radius: 18px;
}
.left-slot-booking .service-date ul,
.left-slot-booking .service-time ul,
.services-main.staff-booking ul{
    padding: 10px;
}
.services-main.staff-booking  .show-more-dates {
    margin-bottom: 20px;
}
.left-slot-booking .select-staff {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}
.services-main.staff-booking .services-main-cart-head h3 {
    padding: 0;
}

/* Responisve-media-device */
@media(max-width: 1200px) {

    .service-date label p {
        padding: 10px 10px 10px 10px;
    }

    .service-time ul li {
        width: calc(50% - 20px);
    }

    .service-date ul li:nth-child(-n+5) {
        display: list-item;
    }

    .service-date ul li {
        width: calc(20% - 20px);
    }

    .booking-banner {
        padding: 100px 0;
    }

    .booking-banner h1 {
        font-size: 40px;
    }

    .services-main nav {
        margin-right: 30px;
    }

    .services-main {
        margin-top: 60px;
    }

    input[type="checkbox"] {
        height: 35px;
        width: 35px;
        min-height: 35px;
        min-width: 35px;
    }
}


@media(max-width: 991px) {

    .service-time .col-lg-6:first-child {
        padding: 0 15px;
    }

    .service-time .col-lg-6:last-child {
        padding: 0 15px;
        margin-top: 40px;
    }

    .services-main-content .content-section {
        margin-bottom: 50px;
    }

    .services-main-content .content-section label h6 {
        font-size: 16px;
    }

    .booking-img-slider {
        margin-top: 50px;
    }

    .booking-img-slider {
        height: auto !important;
    }
    .cart-box {
        border: none;
        margin: 0;
        margin-top: 40px;
    }

}

@media(max-width: 768px) {

    .service-tabs .nav-tabs button {
        font-size: 16px;
    }

    .service-tabs {
        margin-top: 40px;
    }

    input[type="checkbox"] {
        height: 30px;
        width: 30px;
        min-height: 30px;
        min-width: 30px;
    }

    .services-head ul li:last-child {
        flex-wrap: wrap;
    }

    .booking-img-slider img {
        height: 250px;
    }
    .footer {
        padding: 70px 0 70px 0;
    }
}

@media(max-width: 767px) {
    .services-main nav {
        margin-right: 0;
    }

    .services-main-content {
        margin-top: 40px;
    }

    .service-date ul li {
        width: calc(25% - 20px);
    }

    .service-date ul li:nth-child(-n+4) {
        display: list-item;
    }
    .services-head .services-head-left {
        padding: 30px 20px;
    }
}

@media(max-width: 577px) {

    .select-staff ul li {
        width: 50%;
    }

    .service-date ul li {
        width: calc(33.33% - 20px);
    }

    .service-date ul li:nth-child(-n+3) {
        display: list-item;
    }
    .footer p {
        font-size: 18px;
        text-align: center;
    }
    .footer span {
        padding: 0 10px;
        margin-bottom: 20px;
    }
    .service-tabs .nav-tabs button {
        width: 160px;
        margin: auto;
    }
    .service-tabs ul {
        border: 0;
        justify-content: center;
    }
    .no-gift-found {
        text-align: center;
        width: auto;
        opacity: 0.3;
    }
}