#btn-ghost {
	display: none;
}

#btn-whatsapp {
	width: 60px;
	height: 60px;
	display: flex;
	justify-content: center;
	align-items: center;
	position: fixed;
	bottom: 80px;
	right: 10px;
	z-index: 111111;
	padding: 8px;
	background-color: #32ba46;
	border-radius: 50%;
	transition: ease all 0.4s;
	box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14),
		0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
}
#btn-whatsapp:hover {
	box-shadow: 0 16px 24px 2px rgba(0, 0, 0, 0.14),
		0 6px 30px 5px rgba(0, 0, 0, 0.12), 0 8px 10px -7px rgba(0, 0, 0, 0.2);
	right: 20px;
	transform: scale(1.05, 1.05);
}

.topbar {
	width: 100%;
	height: 42px;
	padding: 0px 10px;
	background-color: #252947;
	display: flex;
	align-items: center;
	position: fixed;
	top: 0px;
	left: 0px;
	z-index: 100;
}
.topbar.in-chat {
	display: none !important;
}
@media screen and (min-width: 992px) {
	.topbar {
		display: none;
	}
}
.topbar button {
	background-color: unset;
	border: none;
	outline: none;
}

header {
	width: 100%;
	height: 70px;
	padding: 5px 10px;
	background: radial-gradient(circle, #252947 20%, #00e5e5 86%, #00e5b5 100%);
	box-shadow: 0 8px 17px 2px rgba(0, 0, 0, 0.14),
		0 3px 14px 2px rgba(0, 0, 0, 0.12), 0 5px 5px -3px rgba(0, 0, 0, 0.2);
	display: flex !important;
	flex-direction: row;
	justify-content: space-between;
	position: fixed;
	top: 42px;
	left: 0px;
	z-index: 100;
}
@media screen and (min-width: 992px) {
	header {
		background: radial-gradient(circle, #252947 67%, #00e5e5 91%, #00e5b5 100%);
		justify-content: space-evenly;
		top: 0px;
	}
}
header.in-chat {
	display: none !important;
}
header.extended {
	box-shadow: none;
}
header.extended .nav-container {
	width: 100%;
	height: 300px;
	padding: 10px 0px;
	margin-right: unset;
	background-color: #252947;
	box-shadow: 0 8px 17px 2px rgba(0, 0, 0, 0.14),
		0 3px 14px 2px rgba(0, 0, 0, 0.12), 0 5px 5px -3px rgba(0, 0, 0, 0.2);
	display: flex;
	flex-direction: column-reverse;
	position: absolute;
	top: 70px;
	left: 0px;
	z-index: 101;
}
@media screen and (min-width: 992px) {
	header.extended .nav-container {
		height: auto;
	}
}
header.extended .nav-container nav {
	width: 100%;
	background-color: unset !important;
	box-shadow: none !important;
}
header.extended .nav-container nav ul {
	width: 100%;
	padding: 10px 15px 5px;
	flex-direction: column;
}
header.extended .nav-container nav ul > li {
	width: 100%;
}
header.extended .nav-container nav ul > li:not(:last-child) {
	margin-right: unset;
	margin-bottom: 10px;
}
header.extended .nav-container nav ul > li > a {
	padding: 5px !important;
	color: #252947;
	background-color: #f5f5f5;
	border-radius: 4px;
	text-align: center;
	display: block;
	font-family: "Quicksand SemiBold", -apple-system, BlinkMacSystemFont,
		"Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue",
		Arial, sans-serif;
}
header.extended .nav-container .search-container {
	padding-bottom: 10px;
	border-bottom: 1px solid #00e5e5;
}
header .menu-btn-container {
	width: auto;
	height: 100%;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
}
@media screen and (min-width: 992px) {
	header .menu-btn-container {
		display: none;
	}
}
header .menu-btn-container #menu-btn {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
}
header .brand-container {
	height: 100%;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
}
header .brand-container a {
	width: auto;
	height: 100%;
}
header .brand-container a img {
	width: auto;
	height: 100%;
}
header .nav-container {
	height: 100%;
	display: none;
	flex-direction: row;
}
@media screen and (min-width: 992px) {
	header .nav-container {
		display: flex;
	}
}
header .nav-container nav {
	margin-right: 30px;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
}
header .nav-container nav ul {
	list-style-type: none;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
}
header .nav-container nav ul > li:not(:last-child) {
	margin-right: 10px;
}
header .nav-container nav ul > li > a {
	color: #ffffff;
	text-decoration: none;
	font-size: 14px;
	font-family: "Quicksand Semibold", -apple-system, BlinkMacSystemFont,
		"Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue",
		Arial, sans-serif;
}
header .nav-container .search-container {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
}
header .nav-container .search-container form {
	min-width: 270px;
	display: flex;
	flex-direction: row;
	align-items: center;
	position: relative;
}
header .nav-container .search-container form button {
	padding: 3px 5px 3px 3px;
	color: #252947;
	background-color: #00e5e5;
	box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12),
		0 2px 4px -1px rgba(0, 0, 0, 0.3);
	border-radius: 20px 0px 0px 20px;
	text-decoration: none;
	display: flex;
	flex-direction: row;
	align-items: center;
}
header .nav-container .search-container form button span:first-child {
	width: 24px;
	height: 24px;
	margin-right: 10px;
	padding: 2px;
	background-color: #252947;
	border-radius: 50%;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
}
header .nav-container .search-container form button span:last-child {
	font-size: 14px;
	font-family: "Quicksand Semibold", -apple-system, BlinkMacSystemFont,
		"Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue",
		Arial, sans-serif;
}
header .nav-container .search-container form input {
	width: 180px;
	height: 30px;
	padding: 7px;
	border: none;
	border-radius: 0px 20px 20px 0px;
	transition: ease all 0.2s;
	position: absolute;
	left: 87.14px;
	z-index: 2;
}
@media screen and (min-width: 992px) {
	header .nav-container .search-container form input:focus {
		width: 250px;
		outline: none;
	}
}
header .btn-login-container {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
}
header .btn-login-container a {
	padding: 3px;
	background-color: #00e5e5;
	border-radius: 20px;
	box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12),
		0 2px 4px -1px rgba(0, 0, 0, 0.3);
	text-decoration: none;
	display: flex;
	flex-direction: row;
	align-items: center;
}
@media screen and (min-width: 992px) {
	header .btn-login-container a {
		padding: 3px 5px 3px 3px;
	}
}
header .btn-login-container a span:first-child {
	width: 24px;
	height: 24px;
	padding: 2px;
	background-color: #252947;
	border-radius: 50%;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
}
header .btn-login-container a span:first-child img {
	width: 100%;
	height: 100%;
}
@media screen and (min-width: 992px) {
	header .btn-login-container a span:first-child {
		margin-right: 10px;
	}
}
header .btn-login-container a span:last-child {
	color: #252947;
	/* display: none; */
	font-size: 14px;
	font-family: "Quicksand Semibold", -apple-system, BlinkMacSystemFont,
		"Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue",
		Arial, sans-serif;
}
@media screen and (min-width: 992px) {
	header .btn-login-container a span:last-child {
		display: block;
	}
}
header .social-networks-container {
	display: none;
	flex-direction: row;
	align-items: center;
}
@media screen and (min-width: 992px) {
	header .social-networks-container {
		display: flex;
	}
}
header .social-networks-container a {
	width: 24px;
	height: 24px;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
}
header .social-networks-container a:not(:last-child) {
	margin-right: 10px;
}
header .social-networks-container a img {
	width: 100%;
	height: auto;
}

.new-conversation-modal {
	width: 100%;
	height: 100vh;
	background-color: rgba(0, 0, 0, 0.8);
	display: none;
	justify-content: center;
	align-items: center;
	position: fixed;
	top: 0px;
	left: 0px;
	z-index: 100;
}
.new-conversation-modal.active {
	display: flex;
}
.new-conversation-modal .ncm-content {
	width: 500px;
	padding: 40px 20px;
	background-color: #ffffff;
	border-radius: 8px;
	box-shadow: 0 3.2px 7.2px 0 rgba(0, 0, 0, 0.132),
		0 0.6px 1.8px 0 rgba(0, 0, 0, 0.108);
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
.new-conversation-modal .ncm-content h2 {
	width: 100%;
	margin-bottom: 20px;
	text-align: center;
}
.new-conversation-modal .ncm-content .ncm-actions {
	width: 100%;
	margin-top: 20px;
	display: flex;
	justify-content: space-evenly;
	align-items: center;
}
.new-conversation-modal .ncm-content .ncm-actions a {
	padding: 7px 20px;
	color: #ffffff;
	border-radius: 4px;
	text-decoration: none;
	box-shadow: 0 3.2px 7.2px 0 rgba(0, 0, 0, 0.132),
		0 0.6px 1.8px 0 rgba(0, 0, 0, 0.108);
}
.new-conversation-modal .ncm-content .ncm-actions a:first-child {
	background-color: #00e5e5;
}
.new-conversation-modal .ncm-content .ncm-actions a:last-child {
	background-color: red;
}
