.callback-btn {
	position: fixed;
	background-color: #fff;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
	border-radius: 50%;
	cursor: pointer;
	right: 25px;
	bottom: 25px;
	display: flex;
	align-items: center;
	z-index: 999
}

.callback-btn__circle {
	background-color: #d60000;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 23px;
	position: relative
}

.callback-btn__circle::before {
	content: '';
	display: block;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	position: absolute;
	z-index: -1;
	background-color: inherit;
	border-radius: 50%;
	opacity: .1;
	animation: 1s linear infinite callback-btn-scale
}

.callback-btn__icon {
	animation: 2s ease-in-out infinite alternate callback-btn-rotate;
	transform: rotate(-15deg)
}

.callback-btn__text {
	margin-left: 15px;
	margin-right: 18px;
	font-size: 12px;
	color: #000;
	display: none
}

.contact-text {
    font-size: 14px;
    color: #6c6c6c;
    margin-bottom: 5px;
}

.work_email_required {
    display: none !important;
}

#callbackModal {
    max-width: 500px;
}

.form-control {
    height: auto;
    padding: 15px 20px;
    font-size: 12px;
    background-color: #f2f2f2;
    border: 1px solid #f2f2f2;
    display: block;
    width: 100%;
    margin-top: 15px;
    margin-bottom: 15px;
}

@keyframes callback-btn-rotate {
	0% {
		transform: rotate(-15deg)
	}
	100% {
		transform: rotate(15deg)
	}
}

@keyframes callback-btn-scale {
	0% {
		opacity: .1;
		transform: scale(1)
	}
	50% {
		opacity: .1;
		transform: scale(1.5)
	}
	100% {
		opacity: 0;
		transform: scale(2)
	}
}

@media (min-width: 768px) {
	.callback-btn {
		border-radius: 35px;
		padding: 10px 12px
	}
	.callback-btn__circle {
		width: 50px;
		height: 50px
	}
	.callback-btn__text {
		display: block
	}
}

.callback-btn__circle .icon {
	display: inline-block;
	width: 1em;
	height: 1em;
	stroke-width: 0;
	stroke: currentColor;
	fill: currentColor;
}