.contact-widget,
.contact-widget * {
	box-sizing: border-box;
}

.contact-widget {
	position: fixed;
	right: 10px;
	bottom: 0;
	z-index: 1000;
	width: min(280px, calc(100vw - 20px));
	color: #1b1b1b;
	font-family: "Foco", "Lato", Arial, Helvetica, sans-serif;
	font-size: 9px;
	line-height: 1.3;
}

@media (min-width: 769px) and (max-width: 1400px) {
	.contact-widget {
		right: 40px;
	}
}

@media (min-width: 1401px) and (max-width: 1680px) {
	.contact-widget {
		right: calc((100vw - 1280px) / 2);
	}
}

@media (min-width: 1681px) {
	.contact-widget {
		right: calc((100vw - 1360px) / 2);
	}
}

.contact-widget.is-open {
	display: flex;
	max-height: calc(100vh - 8px);
	flex-direction: column;
	box-shadow: 0 0 18px rgba(0, 0, 0, .22);
}

.contact-widget-toggle {
	display: flex;
	width: 100%;
	height: 52px;
	flex: 0 0 52px;
	align-items: center;
	justify-content: space-between;
	margin: 0;
	padding: 0 18px;
	border: 0;
	border-radius: 0;
	background: #2467af;
	color: #fff;
	font: inherit;
	cursor: pointer;
	appearance: none;
}

.contact-widget-toggle:focus-visible,
.contact-widget a:focus-visible {
	outline: 2px solid #fff;
	outline-offset: -3px;
}

.contact-widget-title {
	font-size: 16px;
	font-weight: 700;
}

.contact-widget-icon {
	position: relative;
	display: block;
	width: 15px;
	height: 15px;
	flex: 0 0 15px;
	margin-left: 12px;
}

.contact-widget-icon::before,
.contact-widget-icon::after {
	position: absolute;
	top: 50%;
	left: 0;
	width: 15px;
	height: 2px;
	background: #fff;
	content: "";
	transform: translateY(-50%);
	transition: transform .2s ease;
}

.contact-widget-icon::after {
	transform: translateY(-50%) rotate(90deg);
}

.contact-widget.is-open .contact-widget-icon::before {
	transform: translateY(-50%) rotate(45deg);
}

.contact-widget.is-open .contact-widget-icon::after {
	transform: translateY(-50%) rotate(-45deg);
}

.contact-widget-content {
	min-height: 0;
	overflow-y: auto;
	background: #fff;
	overscroll-behavior: contain;
}

.contact-widget-content[hidden] {
	display: none;
}

.contact-widget-section {
	margin: 0;
	padding-right: 18px;
	padding-left: 18px;
}

.contact-widget-section h2 {
	margin: 0;
	padding: 0;
	color: #1b1b1b;
	font: 700 15px/1.2 "Foco", "Lato", Arial, Helvetica, sans-serif;
	text-align: left;
	text-transform: none;
}

.contact-widget-booking {
	padding-top: 21px;
	padding-bottom: 28px;
}

.contact-widget-action {
	display: flex;
	width: 100%;
	height: 42px;
	align-items: center;
	justify-content: center;
	margin-top: 12px;
	padding: 6px 10px;
	background: #2467af;
	color: #fff;
	font-size: 15.5px;
	font-weight: 700;
	line-height: 1.15;
	text-align: center;
	text-decoration: none;
	transition: background-color .2s ease;
}

.contact-widget-action:hover {
	background: #1d568f;
	color: #fff;
}

.contact-widget-separator {
	position: relative;
	height: 1px;
	background: #c9c9c9;
	text-align: center;
}

.contact-widget-separator span {
	position: relative;
	top: -8.5px;
	display: inline-block;
	padding: 0 6.5px;
	background: #fff;
	color: #c9c9c9;
	font-size: 14px;
	line-height: 17px;
}

.contact-widget-phone {
	padding-top: 19px;
	padding-bottom: 27.5px;
}

.contact-widget-phone a {
	display: inline-block;
	margin-top: 11px;
	color: #333;
	font-size: 17.5px;
	font-weight: 400;
	text-decoration: none;
}

.contact-widget-mail {
	padding-top: 19px;
	padding-bottom: 39.5px;
}

.contact-widget-mail .contact-widget-action {
	height: 45px;
	margin-top: 28px;
}

@media (max-width: 320px) {
	.contact-widget {
		right: 6px;
		width: min(280px, calc(100vw - 12px));
	}

	.contact-widget.is-open {
		max-height: calc(100vh - 6px);
	}

	.contact-widget-toggle {
		height: 39px;
		flex-basis: 39px;
		padding: 0 12px;
	}

	.contact-widget-title {
		font-size: 12.5px;
	}

	.contact-widget-icon,
	.contact-widget-icon::before,
	.contact-widget-icon::after {
		width: 12px;
	}

	.contact-widget-icon {
		height: 12px;
		flex-basis: 12px;
	}

	.contact-widget-section {
		padding-right: 12px;
		padding-left: 12px;
	}

	.contact-widget-section h2 {
		font-size: 12px;
	}

	.contact-widget-booking,
	.contact-widget-phone,
	.contact-widget-mail {
		padding-top: 14px;
		padding-bottom: 16px;
	}

	.contact-widget-action,
	.contact-widget-mail .contact-widget-action {
		height: 34px;
		margin-top: 10px;
		font-size: 12px;
	}

	.contact-widget-phone a {
		margin-top: 8px;
		font-size: 14.5px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.contact-widget-icon::before,
	.contact-widget-icon::after,
	.contact-widget-action {
		transition: none;
	}
}
