#reservation {
    position: relative;
    background: #fff;
    padding: 20px;
    top: 5px;
    z-index: 98;
    border-radius: 5px;
    border: solid 1px #dedede;
}

#reservation label {
    font-weight: bolder;
    margin-bottom: 10px;
}

.custom-btn {
   
    padding: 15px 50px;
    color: #fff;
    background-color: #8b2b4a;
    box-shadow: 0 2px 15px #000;
    border-radius: 100px;
    font-size: 15px;
    text-transform: uppercase;
    -webkit-transition: all ease .3s;
    transition: all ease .3s;
}

.custom-btn:hover {
    background-color: #000;
    box-shadow: 0 2px 15px #000;
    color: #fff;
}

.form-select,
.form-control {
    border-radius: 30px;
}

.form-select:focus,
.form-control:focus {
    border-color: #8b2b4a;
    box-shadow: 0 0 0 0.25rem rgba(139, 43, 74, 0.25);
}

@media screen and (min-width: 768px) and (max-width: 1025px) {
    .navigation .navbar-nav li a {
        color: #fff; 
    }
}

.custom-content {
    padding: 50px 0 70px 0 !important;
}

.custom-details {
    position: relative;
    width: 100%;
    height: auto;
    background-color: #fffdfd;
    padding: 20px 30px;
    box-shadow: 0 5px 50px rgba(0, 0, 0, 0.10);
    margin-bottom: 20px;
}

.car-item {
    position: relative;
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    box-shadow: 0 5px 40px rgba(0, 0, 0, 0.07);
    background-color: #fff;
    margin-bottom: 60px;
    padding: 20px;
}

.car-image {
    position: relative;
    max-width: 350px;
    width: 100%;
    border: solid 2px #8b2b4a;
    overflow: hidden;
    padding: 10px;
    border-radius: 10px;
}

.car-image img {
    display: block;
    width: 100%;
}

.car-detail {
    position: relative;
    text-align: right;
}

.car-title h4 {
    font-size: 16px;
    font-weight: bolder;
}

.car-desc p {
    font-size: 14px;
}

.car-inputs label {
    font-weight: bolder;
    font-size: 16px;
    color: #8b2b4a;
}

.line-through {
    text-decoration: line-through;
    color: gray;
}

.car-inputs input[type="radio"] {
    margin-left: 10px;
}

.car-inputs .form-group {
    padding: 5px 0;
    border-bottom: solid 1px #8b2b4a;
}

.custom-details h4 {
    font-size: 16px;
    font-weight: bolder;
}
.custom-details ul{
    list-style: none;
    padding: 0;
    margin: 0; 
}
.custom-details ul li{
    position: relative;
    padding: 20px;
    display: flex;
    justify-content: space-between;
}
.custom-details ul li span{ 
    font-size: 14px;
    color: #787878;
}
.custom-details ul li span:last-child{
    color: #8b2b4a;
    font-weight: bolder;
}
.custom-details ul li::after{
    position: absolute;
    content: '';
    width: 95%;
    height: 1px;
    background-color: #ededed;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}
@media screen and (min-width:0px) and (max-width:992px) {
    .car-item {
        flex-direction: column;
        align-items: center;
    }

    .car-image {
        margin-bottom: 15px;
    }
}

.detail-form .form-group{
    margin-bottom: 10px;
}
.detail-form label {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 5px;
}