/*================ BOOKING SECTION =================*/

.booking-section {
    padding: 80px 0;
}

/* Heading */

.booking-title {
    font-size: 70px;
    font-weight: 300;
    color: #222;
    margin-bottom: 10px;
}

.booking-title span {
    color: #53be72;
    font-weight: 700;
}

.booking-subtitle {
    color: #666;
    font-size: 18px;
}

/* Left Card */

.booking-card {
    background: #eef8ef;
    border-radius: 22px;
    padding: 35px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, .08);
}

.section-title {
    color: #53be72;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 25px;
}

/* Inputs */

.custom-input {
    height: 52px;
    border: 1px solid #53be72;
    border-radius: 12px;
    box-shadow: none !important;
    font-size: 15px;
}

.custom-input:focus {
    border-color: #53be72;
    box-shadow: none;
}

/* Quantity */

.qty-box {
    height: 52px;
    border: 1px solid #53be72;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
    background: #fff;
}

.qty-box button {
    width: 50px;
    height: 50px;
    border: none;
    background: none;
    color: #53be72;
    font-size: 24px;
    font-weight: bold;
}

.qty-box input {
    border: none;
    width: 100%;
    text-align: center;
    outline: none;
    color: #999;
    font-size: 15px;
    background: transparent;
}

/* Buttons */

.btn-success {
    background: #53be72;
    border-color: #53be72;
    border-radius: 14px;
    padding: 14px 35px;
}

.btn-success:hover {
    background: #45ab63;
    border-color: #45ab63;
}

.btn-outline-success {
    border: 2px solid #53be72;
    color: #53be72;
    border-radius: 14px;
    padding: 14px 35px;
}

.btn-outline-success:hover {
    background: #53be72;
    color: #fff;
}

/* Right Card */

.summary-card {
    background: #53be72;
    color: #fff;
    border-radius: 22px;
    padding: 35px;
    height: 100%;
}

.summary-card h2 {
    font-size: 34px;
    font-weight: 700;
}

.summary-card h3 {
    font-size: 34px;
    font-weight: 700;
}

.summary-card h3 span {
    font-weight: 700;
}

.summary-card h5 {
    font-size: 24px;
}

.summary-card hr {
    opacity: .25;
    margin: 22px 0;
}

.summary-card small {
    opacity: .9;
}

.summary-card .btn-light {
    border-radius: 10px;
    color: #53be72;
    font-weight: 600;
}

/* Notes */

.booking-note {
    background: #fff;
    border-radius: 25px;
    padding: 35px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
}

.booking-note ul {
    margin: 0;
    padding-left: 20px;
}

.booking-note li {
    margin-bottom: 18px;
    color: #555;
    line-height: 1.8;
}

/* Responsive */

@media(max-width:991px) {

    .booking-title {
        font-size: 48px;
    }

    .booking-card {
        margin-bottom: 30px;
    }

    .summary-card {
        margin-top: 20px;
    }

}

@media(max-width:767px) {

    .booking-title {
        font-size: 38px;
    }

    .booking-card,
    .summary-card,
    .booking-note {
        padding: 25px;
    }

    .booking-section {
        padding: 50px 0;
    }

    .summary-card h2 {
        font-size: 28px;
    }

    .summary-card h3 {
        font-size: 28px;
    }

}