/*  Book Now Button */

.ht-book-now-button {
	background: #78ead3;
	position: fixed;
	right: 0px;
	top: 50%;
	z-index: 9999;
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px;
}

.ht-book-now-button:hover {
	opacity: 0.9;
	padding-top: 3px;
	padding-bottom: 3px;
}

.ht-book-now-button a {
	color: #fff;
	padding: 10px 30px;
	display: block;
	font-size: 16px;
	cursor: pointer !important;
}

/* Promo Bar */
.ht-promo-bar {
	background: #78ead3;
	text-align: center;
	padding: 10px 20px;
}

.ht-promo-bar-button {
	background: #fff;
	color: #78ead3;
	margin: 0 10px;
}

.ht-promo-bar-button:hover {
	opacity: 0.9;
	background: #fff;
	color: #78ead3;
}

.ht-promo-bar-content {
	margin: 0;
}

.ht-promo-bar-text {
	color: #fff;
	font-weight: 700;
}

/* Book now button */
@media (max-width: 1024px) {
	.ht-book-now-button {
		display: none;
	}
}

/* Call now button */
@media screen and (min-width: 1024px) {
	.ht-call-now-button {
		display: none;
	}
}

.ht-call-now-button {
	background: #78ead3;
	position: fixed;
	bottom: 3%;
	right: 10px;
	z-index: 100;
	text-align: center; /* Aligns the text/icon in the center */
}

.ht-call-now-button:hover {
	opacity: 0.9;
	padding-top: 3px;
	padding-bottom: 3px;
}

.ht-call-now-button a {
	color: #fff;
	padding: 10px 30px;
	display: flex;
	flex-direction: column;
	align-items: center;
	font-size: 16px;
	text-transform: uppercase;
}

.ht-call-now-button a span {
	font-size: 12px;
	margin-top: 5px;
	color: #fff;
}

.transition-animation {
	-moz-transition: all 0.3s;
	-o-transition: all 0.3s;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}

.book-now-animation {
	-moz-transform: rotate(90deg);
	-ms-transform: rotate(90deg);
	-o-transform: rotate(90deg);
	-webkit-transform: rotate(90deg);
	transform: rotate(90deg);

	transform-origin: right top;
	-webkit-transform-origin: right top;
	-ms-transform-origin: right top;
}

.is-hidden {
	display: none !important;
}

/* Stack both buttons at the bottom for mobile view */
@media (max-width: 768px) {
	.ht-call-now-button,
	.ht-book-now-button {
		width: 50%;
		display: inline-block;
		position: fixed;
		bottom: 0px;
		z-index: 100;
		border-radius: 0px;
		box-sizing: border-box;
		text-align: center;
	}

	.ht-call-now-button {
		left: 0;
		border-radius: 0px;
	}

	.ht-book-now-button {
		right: 0;
		top: auto;
		border-radius: 0px;
	}

	.ht-book-now-button a {
		padding: 17px 30px;
	}

	.ht-call-now-button,
	.ht-book-now-button {
		width: 50% !important;
	}

	.single-button {
		width: 100% !important;
	}

	.ht-book-now-button:hover,
	.ht-call-now-button:hover {
		padding: 0px;
		opacity: 1;
	}

	.ht-promo-bar-button:hover {
		opacity: 1;
	}
}
