.eh-booking.user {
    display: flex;
    flex-flow: row wrap;
    color: #BDBCBC;
    font-size: 15px;
    line-height: 1.3em;
}

.eh-booking.user > div {
    padding: 0 8px 0 8px;
    border-right: 1px solid #FFFFFF2B;
}

.eh-booking.user > div:last-child {
    border-right: none;
}

.eh-booking.user span {
    color: #FF4600;
}

.eh-booking.user a {
    color: #BDBCBC;
    transition: color 0.3s;
}

.eh-booking.user a:hover {
    color: #FFFFFF;
}

.eh-booking.user i {
    color: #FF4600;
    font-size: 15px;
}

.eh-booking.user > .login a {
    margin-left: 5px;
}

.ehb-notification {
    display: -ms-flexbox;
    display: -ms-flex;
    display: flex;
    -ms-flex-flow: column nowrap;
    flex-flow: column nowrap;
    -ms-flex-pack: center;
    -ms-justify-content: center;
    justify-content: center;
    box-shadow: 0px 10px 40px 0px rgba(0,0,0,0.3);
    border: none;
    position: fixed;
    top: 50%;
    left: 100%;
    width: 400px;
    max-height: 500px;
    margin: 0 !important;
    padding: 15px 40px 15px 65px;
    z-index: 9999;
    overflow: hidden;
    transform: translate3d(200px,-50%,0);
    animation: ehb-slide-in-message, ehb-slide-out-message;
    animation-duration: 1.2s, 1.1s;
    animation-delay: .4s, 9s;
    animation-fill-mode: forwards;
    animation-timing-function: ease;
    color: #FFF;
    box-sizing: border-box;
    background-color: #FF4600;
}

body.eh-booking-review-active {
    overflow: hidden !important;
}

.eh-booking.review .booking-review {
    position: fixed;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 400px;
    top: 0;
    right: -400px;
    bottom: 0;
    color: #000;
    background-color: #FFFFFF;
    z-index: 999999;
    transition: 0.5s ease-out;
}

.eh-booking.review .booking-review-container.active .booking-review {
    right: 0;
}

.eh-booking.review .booking-review .booking-review-toggle {
    position: fixed;
    display: flex;
    width: 60px;
    height: 60px;
    bottom: 12px;
    right: 0px;
    margin: 10px;
    background-color: #FFFFFF;
    color: #000000;
    box-shadow: 0px 0px 15px 2px #0000001a;
    border-radius: 50%;
    z-index: 9999997;
    cursor: pointer;
    transition: 0.5s ease-out;
    align-items: center;
    justify-content: center;
}

.eh-booking.review .booking-review .booking-review-toggle.has-order {
    background-color: #FF4600;
    color: #FFFFFF;
    animation: ehb-wiggle 2.5s infinite;
}

.eh-booking.review .booking-review-container.active .booking-review .booking-review-toggle {
    right: 400px;
}

.eh-booking.review .booking-review .booking-review-toggle .booking-review-toggle-alert {
    display: none;
    border-radius: 50%;
    position: absolute;
    top: -10px;
    left: -10px;
    font-size: 13px;
    width: 28px;
    height: 28px;
    line-height: 28px;
    text-align: center;
    overflow: hidden;
    color: yellow;
    background-color: red;
}

.eh-booking.review .booking-review .booking-review-toggle.has-order .booking-review-toggle-alert {
    display: block;
}

.eh-booking.review .booking-review .booking-review-header {
    display: flex;
    padding: 15px;
    justify-content: center;
    background-color: #FF4600;
}

.eh-booking.review .booking-review .booking-review-header-title {
    color: #FFFFFF;
    font-weight: bold;
    text-transform: uppercase;
}

.eh-booking.review .booking-review .booking-review-header-close {
    position: absolute;
    right: 20px;
    color: #FFFFFF;
    cursor: pointer;
}

.eh-booking.review .booking-review .booking-review-body {  
    flex-grow: 1;
    padding: 15px;
    overflow-y: auto;
    overflow-x: hidden;
    background-color: #F8F9FA;
}

.eh-booking.review .booking-review .booking-review-content {
	display: flex;
	flex-direction: column;
	color: #000;
	font-size: 15px;
}

.eh-booking.review .booking-review .room-thumbnail {
    width: 30%;
	margin-right: 30px;
    line-height: 1;
}

.eh-booking.review .booking-review .room-thumbnail img {
    max-width: 100%;
    height: auto;
}

.eh-booking.review .booking-review .room-meta {
    display: flex;
    flex-direction: column;
    width: 70%;
}

.eh-booking.review .booking-review .room-info {
	display: flex;
	flex-direction: row;
}

.eh-booking.review .booking-review .room-info p {
	text-align: center;
	font-size: 14px;
	margin-bottom: 20px;
}

.eh-booking.review .booking-review .room-name {
	color: #FF4600;
	text-transform: uppercase;
	margin-bottom: 0;
}

.eh-booking.review .booking-review .room-num-participants {
    display: flex;
    flex-direction: row;
    align-items: center;
    font-size: 16px;
}

.eh-booking.review .booking-review .room-num-participants span {
    margin-left: 10px;
}

.eh-booking.review .booking-review .room-num-participants select {
    width: 100%;
    margin: 0;
}

.eh-booking.review .booking-review .room-expiration {
    display: flex;
    flex-direction: column;
    margin-top: 10px;
    line-height: 1.5;
}

.eh-booking.review .booking-review .room-expiration span {
    font-weight: bold;
}

.eh-booking.review .booking-review .review-table {
	display: flex;
	flex-direction: column;
    margin-top: 10px;
}

.eh-booking.review .booking-review .review-table-row {
	display: flex;
	flex-direction: row;
	border-top: 1px solid #CCCCCC;
}

.eh-booking.review .booking-review .review-table-row .review-table-cell {
	display: flex;
    flex-direction: column;
	flex-grow: 1;
	flex-wrap: wrap;
	padding: 10px 20px;
}

.eh-booking.review .booking-review .review-table-row .review-table-cell-title {
	font-weight: bold;
}

.eh-booking.review .booking-review .review-table-row.table-row-1 .review-table-cell {
	border-right: 1px solid #CCCCCC;
}

.eh-booking.review .booking-review .review-table-row.table-row-1 .review-table-cell:last-child {
	border-right: none;
}

.eh-booking.review .booking-review .review-table-row.table-row-2 .review-table-cell.coupon .coupon-code {
	font-weight: bold;
}

.eh-booking.review .booking-review .review-table-row.table-row-2 .review-table-cell {
    line-height: 1.5;
}

.eh-booking.review .booking-review .review-table-row.table-row-2 .review-table-cell.total {
	align-items: end;
	font-weight: bold;
}

.eh-booking.review .booking-review .review-table-row.table-row-2 .review-table-cell.total small {
	font-weight: normal;
}

.eh-booking.review .booking-review .booking-review-footer {
    display: flex;
    flex-direction: column;
    padding: 15px;
    background-color: #FFFFFF;
}

.eh-booking.review .booking-review .booking-review-footer .btn-clear {
    padding: 10px 24px 10px 24px;
    margin-bottom: 10px;
    color: #FF4600;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    text-transform: uppercase;
    text-decoration: none;
    border: 2px solid #FF4600;
    background-color: transparent;
    transition: 0.5s ease-out;
}

.eh-booking.review .booking-review .booking-review-footer .btn-clear:hover {
    color: #FFFFFF;
    background-color: #FF4600;
}

.eh-booking.review .booking-review .booking-review-footer .btn-checkout {
    padding: 10px 24px 10px 24px;
    color: #FFFFFF;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    text-transform: uppercase;
    text-decoration: none;
    border: 2px solid #FF4600;
    background-color: #FF4600;
    transition: 0.5s ease-out;
}

.eh-booking.review .booking-review .booking-review-footer .btn-checkout:hover {
    color: #FF4600;
    background-color: transparent;
}

.eh-booking.review .booking-review-container .booking-review-overlay {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    background-color: #000;
    z-index: 999996;
    opacity: 0;
    height: 0;
    width: 100%;
    transition: height 0s 0.4s, opacity 0.4s 0s;
}

.eh-booking.review .booking-review-container.active .booking-review-overlay {
    height: 100%;
    opacity: 0.8;
    transition: height 0s 0s, opacity 0.4s;
}

.eh-booking.review .booking-review .booking-review-empty {
	display: flex;
	flex-direction: column;
    align-items: center;
	color: #000;
	font-size: 15px;
}

.eh-booking.review .booking-review .booking-review-empty i {
    font-size: 60px;
    color: #CCCCCC;
}

.eh-booking.review .booking-review .booking-review-empty p {
    font-weight: lighter;
    margin: 10px 0 0 0;
}

.eh-booking.review .loading {
    display: inline-block;
    width: 80px;
    height: 80px;
}

.eh-booking.review .loading:after {
    content: " ";
    display: block;
    width: 64px;
    height: 64px;
    margin: 8px;
    border-radius: 50%;
    border: 6px solid #FF4600;
    border-color: #FF4600 transparent #FF4600 transparent;
    animation: ehb-loading 1.2s linear infinite;
}

@keyframes ehb-loading {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes ehb-wiggle {
    0% { transform: rotate(0deg); }
   80% { transform: rotate(0deg); }
   85% { transform: rotate(5deg); }
   95% { transform: rotate(-5deg); }
  100% { transform: rotate(0deg); }
}

@keyframes ehb-slide-in-message {
	0% {
		opacity: 0;
		transform: translate3d(600px, -50%, 0);

	}
	50% {
		opacity: 0;
		transform: translate3d(-200px, -50%, 0);
	}

	100% {
		opacity: 1;
		transform: translate3d(-400px, -50%, 0);
	}

}

@keyframes ehb-slide-out-message {
	0% {
		opacity: 1;
		transform: translate3d(-400px, -50%, 0);
	}
	50% {
		opacity: 0;
		transform: translate3d(-100px, -50%, 0);
	}
	100% {
		opacity: 0;
		transform: translate3d(800px, -50%, 0);
	}

}