@charset "utf-8";

.floating-button {
	width: max-content;
	min-width: 327px;
	position: fixed;
	bottom: 53px;
	right: 113px;
	z-index: 9999;
	transition: all 0.3s ease-in;
	opacity: 0;
}

.floating-button > a {
	color: #ffffff!important;
	background-color: #ea696c;
	border: 4px solid #ffffff;
	border-radius: 60px;
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 10px;
	position: relative;
	padding: 20px 20px 20px 28px;
	text-decoration: none;
	box-shadow: 0px 4px 4px #00000025, 2px -3px 4px #00000031 inset;
	font-size: 24px;
	font-weight: 800;
	text-align: center;
}

.yellow > a {
	background-color: #FFD700;
	color: #060606!important;
}

.floating-button > a:hover {
	opacity: 1;
	background-color: #ec3134;
}

.yellow > a:hover {
	background-color: #fcc300;
}

.floating-button > a::after {
	content: "";
	background-color: #ffffff;
	background-image: url("../../images/employer/common/icon_floating_arrow.svg");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	width: 45px;
	height: 45px;
	background-color: #ffffff;
	border-radius: 50%;
	overflow: hidden;
	flex: 0 1 auto;
}

@media screen and (max-width: 750px){
	.floating-button {
		min-width: calc((198 / 375) * 100vw);
		max-width: calc((240 / 375) * 100vw);
		bottom: calc((20 / 375) * 100vw);
		right: calc((20 / 375) * 100vw);
	}
	
	.floating-button > a {
		border-width: calc((4 / 375) * 100vw);
		border-radius: calc((40 / 375) * 100vw);
		gap: calc((10 / 375) * 100vw);
		padding: calc((10 / 375) * 100vw) calc((10 / 375) * 100vw);
		box-shadow: 0px 4px 4px #00000025, 2px -3px 4px #00000031 inset;
		font-size: calc((14 / 375) * 100vw);
	}
	
	.floating-button > a::after {
		width: calc((30 / 375) * 100vw);
		height: calc((30 / 375) * 100vw);
	}
}