.page-chat .breadcrumbs {
	display: none;
}
.page-chat .main {
	height: 100%;
	min-height: auto;
	padding-top: 46px;
}
.page-chat .main .container {
	padding-left: 0;
	padding-right: 0;
	padding-bottom: 0;
	background-color: #fff;
	height: 100%;
}
.page-chat .header {
	margin-bottom: 0;
}
.menu-position-bottom.page-chat .main {
	height: calc(100% - 46px - 46px);
	padding-top: 0;
}
#chat-room,
#chat-login {
	display: none;
}

#chat-room.show,
#chat-login.show {
	display: block;
}
.chat {
	height: 100%;
}
.chat__inner {
	display: grid;
	height: 100%;
	grid-template-columns: 1fr;
	grid-template-rows: auto 60px;
	position: relative;
}
.chat__messages {
	overflow-y: scroll;
	padding: 20px;

}
.chat__frame {
	display: flex;
	flex-direction: column;
	min-height: 100%;
	justify-content: end;
}
.chat__message {
	margin-bottom: 2.8rem;
	display: grid;
	font-size: 1.6rem;
	position: relative;
}
.chat__message--personal {
}
.chat__message--info {
	text-align: center;
	margin-bottom: 1.2rem;
	font-size: 1.2rem;
}
.chat__bubble {
	background-color: #f2f2f2;
	border-radius: 12px;
	max-width: 55%;
	padding: 8px 10px;
	position: relative;
}
.chat__nickname {
	color: #fc5c51;
	font-size: 1.4rem;
	font-weight: bold;
	line-height: 1.1em;
}
.chat__text {
	line-height: 1.2em;
	word-wrap: break-word;
}
.chat__message--personal .chat__bubble {
	background-color: #e9f5ea;
	justify-self: end;
}
.chat__message--personal .chat__nickname {
	color: #4fae4e;
}
.chat__form {
	display: grid;
	grid-template-columns: auto 28px;
	grid-gap: 20px;
	border-top: 1px solid #D9D9D9;
	align-items: center;
	padding: 16px 20px;
}
.chat__input {
	border: 0;
	line-height: inherit;
	height: 28px;
	color: #7CA3DC;
	padding: 0;
}
.chat__input:focus {
	outline: none;
}
.chat-overlay {
	height: 100%;
}
.chat-overlay--hidden {
	display: none;
}
.chat-overlay__content {
	display: grid;
	align-items: center;
	padding: 20px;
	justify-content: center;
	text-align: center;
	position: relative;
	top: 50%;
	transform: translateY(-50%);
}
.chat-overlay__title {
	font-size: 3.2rem;
	margin-bottom: 30px;
	margin-top: 0;
}
.chat-overlay__text {
	text-align: center;
	margin-bottom: 12px;
}
.chat-overlay__button {
	display: block;
	width: 100%;
}

@media (min-width: 992px) {
	.page-chat .main {
		padding-top: 82px;
	}
	.menu-position-bottom.page-chat .main {
		height: calc(100% - 82px - 46px);
		padding-top: 0;
	}
}
