.booking-form-wrapper{
    max-width: 100%;
    width: 600px;
    border: 1px solid #aaaaaa;
    min-height: 300px;
    padding: 10px;
}
.m-price-details{
    display: none;
    position: fixed;
    left: 0;
    top: 100px;
    background: #fff;
    height: 100px;
    width: 120px;
    overflow: hidden;
    z-index: 99999;
}
.counter-controls{
    max-width: 150px;
}

.counter-controls .btn-minus{
    background: #aaa;
    border-color: #aaa;
    font-size: large;
    border-bottom-right-radius: 0;
    border-top-right-radius: 0;
    color: #fff;
    padding: 2px 6px;
}
.counter-controls input{
    border-radius: 0;
    border-color: #aaa;
}
.counter-controls .btn-plus {
    background: #aaa;
    border-color: #aaa;
    font-size: large;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    color: #fff;
    padding: 2px 6px;
}
.person-count-container img{
    width: 100%;
    border-radius: 10px;
    margin: 5px 0;
}
.justify-item-right{
    justify-items: right;
}
.justify-item-left{
    justify-items: left;
}
@media (max-width: 512px) {
    .m-price-details{
        display: block;
    }
}