* {
	scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans HK", serif !important;
	background-color: whitesmoke !important;
}

.fs-12 {
	font-size: 12px !important;
}

.fs-14 {
	font-size: 14px !important;
}

#form_header {
	background-color: rgb(200, 238, 255);
	background-image: linear-gradient(rgba(200, 238, 255, 0.2), rgba(200, 238, 255, 1.0)), url('pic/header.png');
	background-size: contain;
	background-repeat: no-repeat;
	background-position: bottom right;
	padding: 30px 0 60px;
}

.form_section:first-child {
	margin-top: -40px;
}

.form_section:not(:last-child) {
	margin-bottom: 20px;
}

.number_with_circle {
	width: 28px;
	height: 28px;
	min-width: 28px;
	min-height: 28px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: bold;
	border-radius: 50%;
	background-color: #c8eeff;
}

.available_time {
	position: relative;
	padding: 1px 0 5px 0;
	padding-left: 15px;
	margin-top: 1rem;
	border-left: 4px solid #81d4fa;
}

.available_time:first-child {
	margin-top: 0;
}

.available_time .remove_btn {
	position: absolute;
	left: -25px;
	top: 0;
}

.flatpickr-prev-month, .flatpickr-next-month {
	display: flex !important;
	margin-top: 2px;
}

.ss-main {
	min-height: 31px !important;
  box-shadow: none;
  transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out !important;
}

.ss-main:focus {
  outline: 0;
  border-color: #86b7fe;
  box-shadow: 0 0 0 .25rem rgba(13,110,253,.25) !important;
  transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out !important;
}

.ss-main, .ss-list {
	font-size: 14px !important;
}

.ss-content {
	transition: all 0.2s !important;
}

.ss-content .ss-search input {
	padding: 3px 10px !important;
	font-size: 14px !important;
}

.ss-list .ss-selectall {
	align-items: center;
}

.ss-list .ss-selectall span {
	font-size: 12px !important;
}

.ss-list .ss-option:not(.ss-selected):hover {
	color: black !important;
	background-color: whitesmoke !important;
}

.swal2-title {
	font-size: 1.5rem !important;
}

.swal2-html-container {
	font-size: 1rem !important;
}

.swal2-actions button {
	padding: 6px 20px !important;
}

.loading {
  display: flex;
  align-items: center;
}

button .loading {
	justify-content: center;
}

.loading span {
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #9c9c9c;
  margin: 0 1px;
  opacity: 0;
  animation: dot 1.3s infinite;
}

.loading span:nth-child(2) {
  animation-delay: 0.2s;
}

.loading span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes dot {
  0% {
    opacity: 0;
    transform: scale(0);
  }
  50% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(0);
  }
}

@media only screen and (max-width : 767px) {
	#form_header {
		background-size: cover;
		background-position: center;
		padding: 30px 20px 60px 20px;
	}

	.form_section:not(:last-child) {
		margin-bottom: 15px;
	}

	#submit_btn {
		width: 100%;
	}
}