.box-mess {
	max-width: 400px; min-height: 100px;
	padding: 10px;
	position: fixed;
	top: 0; 
	z-index: 101;
}


.none {
	display: none;
}

.message {
	background: #F5F5F5;
	max-width: inherit; min-height: 100px;
	margin-bottom: 10px;
	padding: 10px;
	border: 1px solid lightgray;
	border-bottom: 3px solid lightgray;
	border-radius: 3px;
	display: flex;
	justify-content: center;
}


.message .st1 {
	height: inherit; width: 100px;
}

.message .st1 span {
	color: #4D88FF;
	border: 2px solid #4D88FF;
	padding: 3px 14px;
	font-size: 24px;
	border-radius: 50%;
	font-weight: 600;
}

.message .st2 {
	display: block;
}

.message .st2 h6 {
	display: block;
	border-bottom: 1px solid #F09917;
	margin: 2px;
	font-size: 16px;
	color: #257370;
}

.message .st2 #message_text {
	margin: 2px;
}

.message .st2 #status {
	display: block;
	color: #257370;
	font-weight: 600;
	float: right;
	margin: 2px;
}

.fx-messIn {
	animation-name: fadeMessIn;
	-webkit-animation-name: fadeMessIn;	
	animation-duration: .6s;	
	-webkit-animation-duration: .6s;
	animation-timing-function: ease-in-out;	
	-webkit-animation-timing-function: ease-in-out;
}	

	@keyframes fadeMessIn {
		0% {
			transform: translateY(-100%);
			opacity: 0;
		}

		30% {
			transform: translateY(20%);
			opacity: 1;
		}

		100% {
			transform: translateY(0%);
		}
	}


@media screen and (max-width: 768px) {

	.box-mess {
    	width: 96%;
   		padding: 1%;
    	max-width: none;
	}

	.message .st2 {
		display: block;
	}
	
	.message .st2 h6 {
		display: block;
		border-bottom: 1px solid #F09917;
		text-align: left;
		margin: 2px;
		font-size: 16px;
		color: #257370;
	}
	
	.message .st2 #message_text {
		margin: 2px;
		text-align: left;
	}
	
	.message .st2 #status {
		display: block;
		color: #257370;
		font-weight: 600;
		float: right;
		margin: 2px;
	}

}
