﻿.itinerary p {
    margin-bottom: 0;
}

.g-bg-secondary {
    background-color: whitesmoke !important;
}

.shadow {
    box-shadow: 3px 0 3px 2px rgba(0, 0, 0, 0.50);
}

.bg-black-50 {
    background-color: rgba(0,0,0,.5);
}

#pre_register > p {
    align-items: center !important;
    text-align: center !important;
    font-weight: bold !important;
}

@media(min-width: 800px) {
    .navbar-brand img {
        height: 50px;
    }
}

/* Overlay class for 50% transparent black layer */
.overlay {
    position: relative;
}

.overlay::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 0;
}

.overlay .container {
    position: relative;
    z-index: 1;
}

/* Stepper styles for reservation form */
.ul-steps {
    list-style: none;
    margin: 0;
    padding: 0;
    position: relative;
    display: flex;
    justify-content: space-around;
    margin-bottom: 2rem;
}

.ul-steps:before {
    background-color: #efefef;
    content: " ";
    height: 5px;
    left: 0;
    position: absolute;
    top: 8px;
    width: 100%;
}

.ul-steps li {
    text-align: center;
}

.ul-steps li var {
    background-color: #efefef;
    border: 3px solid #fff;
    color: #efefef;
    font-size: 2px;
    height: 20px;
    position: relative;
    width: 20px;
    z-index: 12;
    display: inline-block;
    border-radius: 50%;
}

.ul-steps li b {
    display: block;
    margin-top: 5px;
}

.ul-steps li.selected var {
    background: #57c34c;
    box-shadow: 0 0 0 1px #57c34c;
    color: #57c34c;
    height: 20px;
    width: 20px;
}

.ul-steps li.selected b, .req {
    color: #57c34c;
}
.fa.fa-star.active {
    color: gold;
}