.snackbar-container {
	transition: all 500ms ease;
	transition-property: top, right, bottom, left, opacity;
	font-family: Roboto, sans-serif;
	font-size: 16px !important;
	min-height: 14px;
	background-color: #070b0e;
	position: fixed;
	display: flex;
	justify-content: space-between;
	align-items: center;
	color: white;
	line-height: 22px;
	padding: 15px 20px;
	bottom: 0;
	top: 0;
	opacity: 0;
	z-index: 9999; 
}

.snackbar-container p {
	margin: 0 auto !important;
}

.snackbar-container .action {
	font-size: 18px !important;
	background: inherit;
	display: inline-block;
	border: none;
	font-size: inherit;
	text-transform: uppercase;
	color: #4caf50;
	margin: 0 0 0 24px;
	padding: 0;
	min-width: min-content;
	cursor: pointer;
    border: none;
    outline: none;
	position: absolute;
	right: 20px;
	top: 14px;
}

@media (min-width: 320px) {
	.snackbar-container {
		/*min-width: 288px;*/
		/*max-width: 568px;*/
		display: inline-flex;
		border-radius: 2px;
		margin: 24px;
		bottom: -100px;
	}
}

@media (max-width: 640px) {
	.snackbar-container {
		min-width: 320px;
		margin: 12px 0;
	}
}

.snackbar-pos.bottom-center {
	top: auto !important;
	bottom: 0;
	left: 50%;
	transform: translate(-50%, -50%);
 }

.snackbar-pos.bottom-left {
	top: auto !important;
	bottom: 0;
	left: 0;
 }

.snackbar-pos.bottom-right {
	top: auto !important;
	bottom: 0;
	right: 0;
}

.snackbar-pos.top-left {
	bottom: auto !important;
	top: 0;
	left: 0;
}

.snackbar-pos.top-center {
	bottom: auto !important;
	top: 0;
	left: 50%;
	transform: translate(-50%, -50%);
}

.snackbar-pos.top-right {
	bottom: auto !important;
	top: 0;
	right: 0;
}

/* Job application style */
.job-apply-msg {
	border: 2px solid #5cc666;
	padding-left: 42px !important;
	-webkit-box-shadow: 0px 2px 4px 0px rgba(0,0,0,0.3);
	-moz-box-shadow: 0px 2px 4px 0px rgba(0,0,0,0.3);
	box-shadow: 0px 2px 4px 0px rgba(0,0,0,0.3);
}

.jd .job-apply-msg {
	margin-bottom: 75px;
}

.jd .job-apply-msg p .fa {
	font-size: 24px;
	color: #5cc666;
	position: absolute;
	left: 12px;
	top: 12px;
}

.job-apply-msg p {
	font-size: 15px !important;
	font-weight: 400 !important;
	line-height: 1.5 !important;
}


@media only screen and (max-width: 480px) {
	.jd .job-apply-msg {
		margin-bottom: 48px !important;
	}
}