.fab-container {
	position: fixed;
	bottom: 15px;
	right: 15px;
	z-index: 999;
	cursor: pointer;
}

.new-container {
	position: fixed;
	bottom: 70px;
	right: 10px;
	z-index: 999;
	cursor: pointer;
	padding: 10px;
}

.new-flash{
	width: 50px;
	height: 25px;
	text-align: center;
	color: #fff;
	background-color: #2CA089;
	border-radius: 5px;
	text-decoration: none;
	cursor: pointer;
	box-shadow: 0 0 0 0 rgba(44, 160, 137, 1);
	transform: scale(1);
	animation: pulse 2s infinite;
}

.fab-icon-holder {
	width: 50px;
	height: 50px;
	border-radius: 100%;
	background: #0B5345;
/*	box-shadow: 0 6px 1px rgba(0,0,0,0.2);*/
}

@media (max-width: 768px) and (orientation: landscape) {
	.fab-icon-holder {
		width: 40px;
		height: 40px;
		i{
			font-size: 14px;
		}
	}
}

.fab-icon-holder:hover{
	opacity: 1;
}

.fab-icon-holder i {
	display: flex;
	align-items: center;
	justify-content: center;

	height: 100%;
	font-size: 20px;
	padding: 5px;
	color: #fff;
}

.fab {
	width: 60px;
	height: 60px;
	background: #333;
}

.fab-options {
	list-style-type: none;
	margin: 0;

	position: fixed;
	bottom: 90px;
	right: 15px;

	opacity: 0;

	transition: all 0.3s ease;
	transform: scale(0);
	transform-origin: 85% bottom;
}

.fab.active + .fab-options{
	opacity: 1;
	transform: scale(1);
}

/*.fab:hover + .fab-options, .fab-options:hover {
	opacity: 1;
	transform: scale(1);
}*/

.fab-options li {
	display: flex;
	justify-content: flex-end;
	padding: 5px;
	@media (max-width: 768px) and (orientation: landscape) {
		padding: 0;
	}
}

.fab-label {
	text-decoration: none;
	padding: 5px 20px 5px 10px ;
	align-self: center;
	user-select: none;
	white-space: nowrap;
	border-radius: 10px 0 0 10px;
	font-size: 16px;
	background: #333;
	color: #ffffff;
	/*box-shadow: 0 6px 20px rgba(0,0,0,0.2);*/
	margin-right: -15px;
}

.fab-label:hover{
	background: #333;
	color: #fff;
}

.men-ico {
    color:#fff;
    font-weight: 900;
    font-size:25px;
}

/*.men-ico:before {
    color:#fff;
    content: '\f0c9';
    font-family: "Font Awesome 5 Free";
    font-style: normal;
    font-weight: normal;
    font-weight: 900;
    font-size:25px;
}*/

/*.fab-container:hover .men-ico:before , .men-ico:hover:before {
    color:#fff;
    content: '\f057';
    font-family: "Font Awesome 5 Free";
    font-style: normal;
    font-weight: normal;
    font-weight: 900;
    font-size:25px;
}*/

@keyframes pulse {
	0% {
		transform: scale(0.95);
		box-shadow: 0 0 0 0 rgba(44, 160, 137, 0.7);
	}

	70% {
		transform: scale(1);
		box-shadow: 0 0 0 10px rgba(44, 160, 137, 0);
	}

	100% {
		transform: scale(0.95);
		box-shadow: 0 0 0 0 rgba(44, 160, 137, 0);
	}
}