/* latin-ext */
@font-face {
	font-family: 'Exo';
	font-style: normal;
	font-weight: 100 900;
	font-display: swap;
	src: url(/assets/fonts/exo-regular.woff2) format('woff2');
	unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
	font-family: 'Exo';
	font-style: normal;
	font-weight: 100 900;
	font-display: swap;
	src: url(/assets/fonts/exo-regular-ext.woff2) format('woff2');
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

body {
	background-color: #96c5c5;
}
#container {
	display: table;
	width: 100%;
}
#calendar {
	border-top: 1px solid #fff;
	border-bottom: 1px solid #fff;
	width: 50%;
	display: table-cell;
}
#chatbox {
	border: 1px solid #fff;
	width: 50%;
	height: 400px;
	display: table-cell;
	position: relative;
	background: #EFEFEF;
}

#chatbox-submit-btn {
	width: 100%;
	margin: 0 0 10px 0;
	display: none;
}

@media (max-width: 900px) {
	#calendar {
		display: block;
		width: 100%;
	}
	#chatbox {
		display: block;
		width: 100%;
		height: 250px;
	}
	#container {
		margin:0;
	}

	#container {
		height: 17%;
	}

	#chatbox-submit-btn {
		display: block;
	}
}

#messages {
	font-family: "Exo", sans-serif;
	width: 100%;
	/*border: 1px solid #000;*/
	height: 90%;
	box-sizing: border-box;
	position: absolute;
	top: 0;
	overflow-y: auto;
	font-size: 100%;
	padding: 1% 2%;
	z-index: 2;
	background: #f4f4f4;
	position: relative;
	top: -25px;
}
#prompt {
	width: 100%;
	box-sizing: border-box;
	position: absolute;
	bottom: 0;
	font-size: 16px;
	border: 1px solid #ccc;
	padding: 0 1%;
	height: 50px;
	z-index: 2;
}
input#prompt:focus {
	outline: none;
}
input#prompt::placeholder {
	color: #999;
	opacity: 1;
}
.loader {
	width: 88px;
	height: 12px;
	--_g: no-repeat radial-gradient(farthest-side,#000 94%,#0000);
	background:
	var(--_g) 25% 0,
	var(--_g) 75% 0;
	background-size: 12px 12px;
	position: relative;
	animation: l24-0 1s linear infinite;
}
.loader:before {
	content: "";
	position: absolute;
	height: 12px;
	aspect-ratio: 1;
	border-radius: 50%;
	background: #000;
	inset: 0;
	margin: auto;
	animation: l24-1 1s cubic-bezier(0.5,300,0.5,-300) infinite;
}
@keyframes l24-0 {
	0%,24%  {background-position: 25% 0,75% 0}
	40%     {background-position: 25% 0,85% 0}
	50%,72% {background-position: 25% 0,75% 0}
	90%     {background-position: 15% 0,75% 0}
	100%    {background-position: 25% 0,75% 0}
}
@keyframes l24-1 {
	100% {transform:translate(0.1px)}
}

