.locations {
    background-color: white;
    padding: 4rem 0;
}
.location .info {
    padding-top: 40px;
    padding-bottom: 40px;
}
.location h2 {
    color: #222222;
    font-weight: bold;
    font-size: 30px;
}

.badge {
    color: #fff;
    background-color: #f4a93d;
    font-family: "Open Sans", sans-serif;
    font-size: 10px;
    line-height: 1.5;
    margin-left: 10px;
    vertical-align: middle;
    font-weight: 600;
    border-radius: 2px;
    padding: 0.2rem 0.6rem;
}
.badge-danger {
    background-color: #c9252c;
}
.location p {
    color: #888888;
}
.location .order-online {
    border-radius: 4px;
    border-width: 2px;
    border-style: solid;
    color: #222222;
    width: 150px;
    text-align: center;
    padding: 8px 10px;
}
.location-mid {
    display: flex;
    flex-direction: row-reverse;
}
.location-img {
    height: 500px;
}

.open-time-section {
    display: flex;
    flex-direction: row;
}
@media (max-width: 767px) {
    .open-time-section {
        display: flex;
        flex-direction: column;
    }
}

.location {
    display: flex;
    max-width: 960px;
    height: 300px;
    margin: 4rem auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    justify-content: space-between;
}

.location .info {
    width: 50%;
    padding: 2rem;
    align-items: flex-start;
    justify-content: space-between;
}

.location .img {
    width: 50%;
    height: 300px;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    overflow: hidden;
}

.location .img img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.location a {
    cursor: pointer;
}

.location a:hover {
    color: #222;
    text-decoration: none;
}

.location .dropdown-menu {
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
    border-width: 0px;
}

.location .day-hour {
    display: flex;
}

.dropdown-item.day-hour.selected {
    color: #c9252c;
    font-weight: 600;
}

.location .dropdown-item .day {
    width: 40px;
    margin-right: 1rem;
}

.location .basic-with-icon {
    color: #555555;
    font-size: 14px;
    display: flex;
    align-items: center;
    margin-top: 1rem;
}

.basic-with-icon .icon {
    width: 26px;
}

.lg-img {
    position: relative;
    overflow: hidden;
}

.lg-img .placeholder {
    position: relative;
    width: 100%;
    filter: blur(10px);
    transform: scale(1);
}

.lg-img .picture {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    width: 100%;
    height: 100%;
    transition: opacity 1s linear;
}

.lg-img .picture.loaded {
    opacity: 1;
}

@media (max-width: 900px) {
    .location {
        flex-direction: column-reverse;
        height: auto;
    }
    .location .img {
        width: 100%;
        height: 300px;
        border-radius: 0;
        border-top-right-radius: 20px;
        border-top-left-radius: 20px;
    }
    .location .info {
        width: 100%;
    }
    .location .btn-order {
        margin: 2rem auto auto auto;
    }
    .location .badge {
        display: block;
        width: 100px;
        margin-top: 10px;
        margin-left: 0px;
    }
}

@media (min-width: 768px) {
    .center-location {
        padding-left: 40px;
    }
}
