.page {
	position: relative;
	/*border-top: 2px solid #CCE5E2;*/
	box-sizing: border-box;
	padding-top: 55px;
	margin-top: -55px;
	background-color: #FFFDF3;
	position: relative;
	z-index: 4;
}
.page.bg {
	background-color: #CCE5E2;
}
#intro-page + .page {
	margin-top: 0;
}
.page.category > div {
	width: 100%;
/*	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);*/
}
.page .text {
	width: 360px;
	text-align: left;
	font-size: 16px;
	/*min-height: 540px;*/
}
.page.category > div > div {
	display: inline-block;
	vertical-align:top;
}

@media screen and (max-width: 384px){
	.messages, .page .text {
		width: 93vw;
		font-size: 4vw;
	}
}


.description {
	width: 90%;
	max-width: 600px;
	font-size: 24px;
	padding: 0 5%;
	display: inline-block;
/*	position: absolute;
	top: 33%;
	left: 50%;
	transform: translate(-50%,-50%);*/
}
@media screen and (max-width: 400px){
	.description {
		font-size: 6vw;
	}
}
.description h3 {
	color: #D35E00;
}
.buttons {
	transition: opacity 1s;
	font-size: 24px;
  	text-align: center;
	/*position: absolute;*/
	box-sizing: border-box;
	/*top: 66%;*/
	/*margin-top: -50px;*/
	padding: 0 20px;
	width: 100%;
	color: #555451; /*gray*/
}
.buttons > div {
	font-size: 75%;
	margin-bottom: 20px;
}
.description-page table {
	width: 100%;
	height: 100%;
	text-align: center;
	box-sizing: border-box;
	padding-bottom: 60px;
}



.chat {
    padding-bottom: 20px;
}
.messages {
	width: 100%;
	position: relative;
}
#overlay.moved + #content .messages:hover > p {
	opacity: 1;
}
.messagesWrapper {
	/*margin-right: 10px;*/
}
.messages .more {
	color: #555451;
	position: absolute;
	right: 5px;
	bottom: 5px;
}
.chat-row {
	font-size: 16px;
	display: flex;
	flex-flow: column;
}
.chat-row > * {
	/*display: inline-block;*/
	max-width: 360px;
	width: 95vw;
}
.chat-row > div {
	background-color: #FFFDF3;
	margin-bottom: 10px; 
	border: 2px solid #D35E00;
	order: 2;
}
.chat-row > p {
	order: 1;
}
@media screen and (min-width: 750px){
	.message:last-child > div {
		margin-bottom: 0;
	}
	.chat-row {
		display: block;
	}
	.chat-row > * {
		width: 360px;
	    display: table-cell;
	}
	.chat-row > p {
	    vertical-align: middle;
	    padding-left: 20px;
	    text-align: center;
	}
	.messages {
		padding-right: 10px;
		border-top-right-radius: 10px;
		border-bottom-right-radius: 10px;
		border-right: 4px solid #555451;
	}
	.chat-row > div {
		border-top-width: 0; 
		border-bottom-width: 0; 
		margin-bottom: 0;
		margin-right: 10px;
		padding-bottom: 5px;
	}
	.chat-row:first-child  > div {
		border-top-width: 2px;
	}
	.chat-row:last-child  > div {
		border-bottom-width: 2px;
	}
}
.message > div {
	padding: 10px;
	margin: 5px 0;
	box-sizing: border-box;
	border-radius: 5px;
	display: inline-block;
}
.message.left {
	padding: 0 20px;
	text-align: left;
}
.message.right {
	padding: 0 20px;
	text-align: right;
}
.message .time {
	font-size: 8pt;
	color: #333333;
}
.triangle {
	width: 0; 
	height: 0; 
	position: absolute;
	bottom: 0;
}
.message.right .triangle {
	border-bottom: 15px solid #CCE5E2;
	border-right: 15px solid transparent;
	left: 100%;
}
.message.left .triangle {
	border-bottom: 15px solid #D35E00;
	border-left: 15px solid transparent;
	right: 100%;
}
.message.left > div {
	position: relative;
	background-color: #D35E00;
	color: #FFFDF3;
	border-bottom-left-radius: 0;
}
.message.right > div {
	background-color: #CCE5E2; /*green*/
	border-bottom-right-radius: 0;
	color: #555451;
	position: relative;
}

.about, .faq {
	max-width: 800px;
    display: inline-block;
    padding: 0 25px;
}
.about h3 {
	color: #D35E00;
}
.about p {
	font-size: 18px;
	margin: 32px 10px;
}
.about img {
	height: 125px;
	padding: 0 10px;
	white-space: nowrap;
}
@media screen and (max-width: 500px) {
	.about img {
		height: 25vw;
		padding: 0 2vw;
	}	
}
.about img:first-of-type {
	border-right: 1px solid #555451;
}
.faq p {
	font-size: 18px;
	text-align: left;
}
.faq h3 {
	color: #D35E00;
}
.faq .question {
	color: #D35E00;
}
.faq .qa {
    background-color: #FFFDF3;
    padding: 1px 20px;
    border-radius: 10px;
}