.booking-wrapper .radio-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}
.booking-wrapper .radio {
    margin-bottom: 1rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    text-align: left;
    cursor: pointer;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.booking-wrapper .radio > input {
    position: absolute;
    z-index: -1;
    opacity: 0;
}
.booking-wrapper .radio > span {
    border-radius: 50%;
    background-color: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    height: 28px;
    width: 28px;
    border: 1px solid rgba(54, 80, 105, 0.5);
    margin-right: 0.75rem;
}
.booking-wrapper .radio > input:checked ~ span {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    background-color: #FF844F;
    border-color: #FF844F;
}
.booking-wrapper .radio > input:checked ~ span:after {
    display: block;
    position: relative;
}
.booking-wrapper .radio > span:after {
    font-family: "Font Awesome 5 Pro";
    content: "\f00c";
    font-weight: 400;
    display: none;
    position: absolute;
    color: #fff;
}

.booking-wrapper .elementor-button-wrapper {
    text-align: center;
    margin-top: 24px;
}
.booking-wrapper .elementor-button-wrapper .elementor-button {
    border-radius: 100px;
    background: #FF844F;
    padding: 18px 30px;
}
.booking-wrapper .elementor-button-wrapper .elementor-button:hover {
    background: #07253E;
}
#service-title {
    color: #FF844F;
    text-transform: capitalize;
}
#booking-result ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}
#booking-result ul li {
    display: flex;
    align-items: center;
    border-radius: 9px;
    background: #F4FBFE;
    padding: 10px;
    margin-bottom: 1rem;
}
#booking-result ul li .icon-address {
    width: 40px;
    text-align: center;
}
#booking-result ul li .icon-address:after {
    font-family: "Font Awesome 5 Pro";
    content: "\f3c5";
    font-weight: 600;
    color: #FF844F;
    font-size: 18px;
}
#booking-result ul li .name {
    color: #2C2C2C;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 30px;
    text-transform: uppercase;
    width: calc(100% - 200px);
}
#booking-result ul li .direction {
    width: 160px;
}
#booking-result ul li .direction a {
    display: block;
    color: #FFF9F9;
    text-transform: capitalize;
    font-weight: 600;
    border-radius: 100px;
    background: #FF844F;
    padding: 10px 30px;
    max-width: 160px;
    text-align: center;
}
#booking-result ul li .direction a:hover {
    background: #07253E;
}

@media screen and (max-width: 767px) {
    #booking-result ul li {
        flex-wrap: wrap;
    }
    #booking-result ul li .name {
        font-size: 16px;
        line-height: 24px;
        width: calc(100% - 40px);
    }
    #booking-result ul li .direction {
        width: 100%;
        margin-top: 10px;
    }
}