@charset "utf-8";

header .luxbar-navigation .btn {
  padding: 15px 0 0 0;
  font-size: 1.75rem;
  color: #33D6BA;
  letter-spacing: inherit;
  background: none;
  border: none;
  cursor: pointer;
	position:relative;
}
header .luxbar-navigation .btn::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background: #33D6BA;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .3s;
}
header .luxbar-navigation .btn:hover::after {
  transform: scaleX(1);
}
header .luxbar-navigation .btn i.fa-calendar {
  color: #33D6BA;
}
header .luxbar-navigation .btn i.fa-calendar {
  color: #33D6BA;
}
header .luxbar-navigation .btn :hover i.fa-calendar {
	transform: scale(.9);
  transition: transform .3s;
	cursor: pointer;
}
.open-modal-btn i {
	margin-right: 1rem;
}
#action .open-modal-btn {
	display: block;
	width: 400px;
	margin: 0 auto;
	background: rgba(26, 188, 156, 0.7);
	border: 1px solid rgba(255, 255, 255, 0.4);
	border-radius: 25px;
	-webkit-backdrop-filter: blur(20px);
	backdrop-filter: blur(20px);
	box-shadow: 0 5px 20px rgb(138 138 138);
	color: #fff;
	text-shadow: 0 2px 5px #004d33;
	font-size: 2rem;
	line-height: 50px;
	transition: all .5s ease;
	text-decoration: none;
  );
	border: none;
	box-shadow:
    0 0 0 6px rgba(255,255,255,.35),
    0 0 18px rgba(255,255,255,.25),
    0 10px 24px rgba(255,255,255,.08);
}
#action .open-modal-btn:hover {
	background: #555;
	transition: all .4s ease;
	text-shadow: 0 2px 5px #333;
	cursor: pointer;
}
#action .btn_wrap {
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: center;
	justify-content: center;
}
#action .btn_wrap .open-modal-btn {
	width: 80%;
	padding: 14px 32px;
}
.modal-overlay {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.78);
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 9999;
	padding: 40px 20px;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.4s ease, visibility 0.4s ease;
}
.modal-overlay.is-active {
	opacity: 1;
	visibility: visible;
}
.modal-box {
	position: relative;
	width: min(80vw, 1120px);
	background: #fff;
	padding: 70px 70px 80px;
	box-sizing: border-box;
}
.modal-close {
	position: fixed;
	top: 0;
	right: 0;
	width: 72px;
	height: 72px;
	background: #1c171b;
	color: #fff;
	border: none;
	font-size: 48px;
	line-height: 1;
	cursor: pointer;
	z-index: 10000;
}
.modal-title {
	text-align: center;
	font-size: 20px;
	font-weight: 500;
	margin: 0 0 40px;
	color: #000;
}
.clinic-list {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
}
.clinic-link {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 80px;
	position: relative;
	color: #fff;
	font-size: 20px;
	font-weight: 500;
	text-decoration: none;
	background: #b59a63;
	box-shadow:0 5px 20px rgba(0,0,0,.25);
	transition: .3s ease;
}
.clinic-list a.clinic-link {
	color: #fff;
}
.clinic-link::after {
	content: "▶";
	padding-left: 2px;
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
	width: 40px;
	height: 42px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(120, 85, 20, 0.9);
	color: #e4ded3;
	border-radius: 50%;
	font-size: 16px;
}
.clinic-link:hover {
	opacity: 0.85;
}
@media (max-width: 768px) {
header .luxbar-navigation .btn {
		position: fixed;
	  bottom: 0;
		left: 0;
		width: 100%;
    background: rgba(26, 188, 156, 0.9);
  	color: #fff;
  	text-shadow: 0 2px 5px #004d33;
  	font-size: 2.3rem;
    padding: 11px 9px 15px 0;
    height: 45px;
	}
  header .luxbar-navigation .btn i.fa-calendar {
    color: #fff;
  }
  header .open-modal-btn {
		box-shadow: none;
	}
	.open-modal-btn {
		width: 80%;
	}
	.modal-box {
		width: 92vw;
		padding: 48px 24px 56px;
	}
	#action .open-modal-btn {
		width: 85%;
		padding: 0;
		height: 50px;
		font-size: 2.5rem;
	}
	.modal-title {
		font-size: 15px;
		line-height: 1.6;
		margin-bottom: 28px;
	}
	.clinic-list {
		grid-template-columns: 1fr;
		gap: 15px;
	}
	.clinic-link {
		height: 60px;
		font-size: 20px;
	}
	.modal-close {
		width: 56px;
		height: 56px;
		font-size: 36px;
	}
}
