
.booking-widget {
	position: fixed;
	display: flex;
	bottom: 0;
	border-radius: 35px 3px 3px 35px;
	min-width: 200px;
	z-index: 99;
	align-items: center;
	visibility: hidden;
}

.show {
	visibility: visible;
	transition: all .5s ease-out;
	bottom: 20px;
}

.float-left {
	left: 20px;
}

.float-right {
	right: 20px;
}

.booking-widget-image {
	height: 64px;
	width: 64px;
	border-radius: 50%;
	border-width: 3px;
	border-style: solid;
}

@media (max-width: 1024px) {
	.booking-widget-image {
		height: 50px;
		width: 50px;
	}
}

.booking-widget-text {
	align-items: center;
	justify-content: left;
	font-family: var(--heading--font-family);
	font-size: 18px;
	padding: 13px;
}

@media (max-width: 1024px) {
	.booking-widget-text {
		padding: 8px;
	}
}

.booking-widget:hover .booking-widget-image {
	cursor: pointer;
}

.booking-widget:hover .booking-widget-text {
	cursor: pointer;
}

@media (max-width: 1023px) {
	.booking-widget {
		border-radius: 26px 3px 3px 26px;
		max-width: 270px;
	}
}
