.sh-root .sh-info-container {
    display: flex;
    flex-wrap: nowrap;
    padding: 0;
	position: relative;
}

.sh-root .sh-info-left-container {
    flex-grow: 1;
    flex-shrink: 1; /* IE */
    width: 100%; /* IE */
}

.sh-root .sh-info-banner-container {
    flex-shrink: 0;
    padding-left: 1rem;
    box-sizing: border-box;
    position: relative;
	
	top: 10px;
	width: 400px;
}

.sh-root .sh-info-banner {
    display: block;
    padding: 0;
    box-sizing: border-box;
    background-color: white;
    border-radius: 0.25rem;
    border: 1px solid #d0d0d0;
    padding-right: 10rem;
    padding-bottom: 2rem;
    margin-top: 2rem;
    padding-top: 2rem;
    padding-left: 2rem;
    color: black;
    font-weight: 500;
}

    .sh-root .sh-info-banner span {
        color: #e5623e;
    }

    .sh-root .sh-info-banner:hover {
        border: 1px solid #e5623e;
        box-shadow: 0 0 10px -3px #e5623e;
    }

.sh-root .sh-restaurantname {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.sh-root .sh-address {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.sh-root .sh-address-link .sh-address-text {
    color: #4a4a4a;
    text-decoration: underline;
}

.sh-root .sh-address-link:hover .sh-address-text {
    text-decoration: none;
}

.sh-root .sh-rating {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.sh-root .sh-store-open-warning {
    font-size: 1rem;
    font-weight: bold;
    color: #ae3b1d;
    padding: 1rem 0;
}

.sh-root .sh-delivery-hover-handle-container {
    display: inline-block;
    position: relative;
}

.sh-root .sh-delivery-hover-handle-link:hover ~ .sh-deliveryinfo-hover-dialog {
    display: block;
}

.sh-root .sh-delivery-hover-handle-link-text {
    color: #e5623e;
    text-decoration: underline;
}

.sh-root .sh-delivery-hover-handle-link-icon {
    color: #e5623e;
    font-size: 1rem;
    vertical-align: top;
}

.sh-root .sh-deliveryinfo-hover-dialog {
    display: none;
    position: absolute;
    top: -1rem;
    left: calc(100% + 1rem);
    width: 400px;
    box-sizing: border-box;
    padding: 1rem;
    border: 1px solid #d0d0d0;
    border-radius: 0.25em;
    box-shadow: 2px 2px 6px rgba(0,0,0,0.2);
    background-color: white;
    z-index: 1;
}

.sh-root .sh-deliverysummary-link {
    display: none;
}

.sh-root .sh-deliverysummary-item {
    flex-grow: 1;
}

.sh-root .sh-deliverysummary-icon {
    font-size: 1.5rem;
    vertical-align: top;
}

.sh-root .sh-deliverysummary-item-header {
    font-size: 15px;
    margin-bottom: 0.25rem;
}

.sh-root .sh-deliverysummary-item-value {
    font-size: 15px;
    color: #e5623e;
}

.sh-root .sh-tab-container {
    display: flex;
    flex-wrap: nowrap;
    align-items: flex-end;
}

.sh-root .sh-tab {
    flex-shrink: 0;
    padding: 0.5rem 1rem;
    text-align: center;
    font-size: 1rem;
    color: #4a4a4a;
    border-bottom: 1px solid #4a4a4a;
    text-decoration: none;
    display: block;
}

    .sh-root .sh-tab:hover {
        background-color: white;
        border-top-left-radius: 0.5rem;
        border-top-right-radius: 0.5rem;
    }

    .sh-root .sh-tab[data-selected="true"] {
        color: #e5623e;
        border-top-left-radius: 0.5rem;
        border-top-right-radius: 0.5rem;
        border: 1px solid #4a4a4a;
        border-bottom: none;
    }

.sh-root .sh-tab-dummy {
    flex-grow: 1;
    flex-shrink: 1; /* IE */
    width: 100%; /* IE */
    height: 1px;
    border-bottom: 1px solid #4a4a4a;
}

.sh-root .sh-holidaybroadcastmessage-container {
    padding: 1rem;
    font-size: 0.9rem;
    font-weight: 500;
    background: #e5623e;
    color: white;
}

    .sh-root .sh-holidaybroadcastmessage-container[data-holiday-broadcast-type='winter'] {
        background: #DAF3FA;
        color: #246a7d;
        border: 1px solid;
    }

    .sh-root .sh-holidaybroadcastmessage-container[data-holiday-broadcast-type='valentines'] {
        background: #F8E2F1;
        color: #D10007;
        border: 1px solid;
    }

    .sh-root .sh-holidaybroadcastmessage-container[data-holiday-broadcast-type='emergency'] {
        background: #E71D31;
        color: white;
    }

.sh-root .sh-storemessage-container {
    padding: 1rem;
    font-size: 0.9rem;
    color: #4a4a4a;
    border: 1px solid #ae3b1d;
    background: #FFE9B0;
}

.sh-root .sh-deliveryinfo-popup-root {
    display: none;
}

.sh-root .sh-deliveryinfo-popup-background {
	position: fixed;
    max-width: 800px;
    width: auto;
    margin: auto;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0,0,0,0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    z-index: 999;
}

.sh-root .sh-deliveryinfo-popup-dialog {
    max-height: calc(100vh - 10rem);
    width: 100%;
    background-color: white;
    border-radius: 0.25rem;
    padding: 1rem;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

@media (max-width: 768px) {
    .sh-root .sh-info-container {
        padding: 0 1rem;
    }

    .sh-root .sh-info-banner-container {
	    position: relative;
	    width: 49vw;
	    left: 53vw;
	    bottom: 220px;
	    top: auto;
    }
	
	.sh-root .sh-info-banner-container img {
	    position: absolute;
	    width: 70%;
	    margin: 0 10px;
	    margin-top: 30px;
		max-width: 230px;
	}

    .sh-root .sh-restaurantname {
        font-size: 1.5rem;
    }

    .sh-root .sh-delivery-hover-handle-link {
        display: none;
    }

    .sh-root .sh-deliverysummary-link {
        display: flex;
        flex-wrap: nowrap;
        align-items: center;
        padding: 0.5rem 0;
    }

    .sh-root .sh-tab-container {
        padding: 0 1rem;
    }

    .sh-root .sh-tab {
        flex-grow: 1;
        padding: 0.5rem 0;
    }

    .sh-root .sh-tab-dummy {
        display: none;
    }

    .sh-root .sh-holidaybroadcastmessage-container[data-holiday-broadcast-type='winter'],
    .sh-root .sh-holidaybroadcastmessage-container[data-holiday-broadcast-type='valentines'] {
        border: none;
        border-bottom: 1px solid;
    }

    .sh-root .sh-storemessage-container {
        border: none;
        border-bottom: 1px solid #ae3b1d;
    }
}


/* TOP REVIEWS SECTION */

.sh-root .top-reviews {
    margin-bottom: 0.5rem;
    width: 350px;
}

.sh-root .top-review-header {
    display: block;
    color: #6f6f6f;
    font-size: 1em;
    font-weight: bold;
    margin-bottom: 1em;
    flex-grow: 1;
    height: 0.5rem;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.sh-root .top-review-list {
    height: 150px;
    margin-bottom: 1.5rem;
}

.sh-root .top-review-cell {
    padding: 1rem;
    background-color: white;
    border-radius: 0.3em;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    max-height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

    .sh-root .top-review-cell[data-selected='false'] {
        display: none;
    }

.sh-root .top-review-message {
    font-style: italic;
    -ms-overflow-style: none;
    overflow-y: scroll;
    max-height: 4.6rem;
}

    .sh-root .top-review-message::-webkit-scrollbar {
        display: none;
    }


.sh-root .top-review-user {
    margin-top: 1em;
    font-style: normal;
    font-weight: bold;
    text-align: right;
}

.sh-root .top-review-date {
    margin-top: 0.5em;
    font-style: normal;
    font-weight: normal;
    text-align: right;
    color: #767676;
    font-size: 0.85em;
}

.sh-root .top-review-tabs {
    display: flex;
}

.sh-root .top-review-tab {
    padding: 0.5rem;
    font-weight: bold;
    color: #e5623e;
    cursor: pointer;
    width: 1rem;
    height: 1rem;
    line-height: 1rem;
    text-align: center;
    border-radius: 100%;
}

    .sh-root .top-review-tab:hover {
        background-color: #ffffff;
    }

    .sh-root .top-review-tab[data-selected='false'] {
        color: #737373;
    }

    .sh-root .top-review-tab[data-selected='true'] {
        background-color: #ececec;
    }


@media (max-width: 768px) {
    .sh-root .sh-info-container {
        padding: 0 1rem;
        display: block;
    }

    .sh-root .top-reviews {
        width: 100%;
    }
}

.sh-store-notice {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ae3b1d;
    padding: 1rem 0;
}