@-webkit-keyframes mdp-float-aura {
	from {
		box-shadow: 0 0 0 -1px var(--hmp-color-75), 0 0 0 -1px var(--hmp-color-50), 0 0 0 -1px var(--hmp-color-25);
	}

	to {
		box-shadow: 0 0 0 15px rgba(255, 255, 255, 0), 0 0 0 30px rgba(255, 255, 255, 0), 0 0 0 45px rgba(255, 255, 255, 0);
	}
}

@keyframes mdp-float-aura {
	from {
		box-shadow: 0 0 0 -1px var(--hmp-color-75), 0 0 0 -1px var(--hmp-color-50), 0 0 0 -1px var(--hmp-color-25);
	}

	to {
		box-shadow: 0 0 0 15px rgba(255, 255, 255, 0), 0 0 0 30px rgba(255, 255, 255, 0), 0 0 0 45px rgba(255, 255, 255, 0);
	}
}

@-webkit-keyframes mdp-float-init {
	0% {
		opacity: 0;
		transform: scale(0.25);
	}

	50% {
		opacity: 0;
	}

	80% {
		transform: scale(1);
		opacity: 1;
	}

	90% {
		transform: scale(1.2);
	}

	100% {
		transform: scale(1);
	}
}

@keyframes mdp-float-init {
	0% {
		opacity: 0;
		transform: scale(0.25);
	}

	50% {
		opacity: 0;
	}

	80% {
		transform: scale(1);
		opacity: 1;
	}

	90% {
		transform: scale(1.2);
	}

	100% {
		transform: scale(1);
	}
}

@-webkit-keyframes mdp-popup-init {
	from {
		transform: scale(0);
		opacity: 0;
	}

	to {
		transform: scale(1);
		opacity: 1;
	}
}

@keyframes mdp-popup-init {
	from {
		transform: scale(0);
		opacity: 0;
	}

	to {
		transform: scale(1);
		opacity: 1;
	}
}

@-webkit-keyframes mdp-popup-content-fade {
	from {
		opacity: 0;
		transform: translateX(-25px);
	}

	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes mdp-popup-content-fade {
	from {
		opacity: 0;
		transform: translateX(-25px);
	}

	to {
		opacity: 1;
		transform: translateX(0);
	}
}

.mdp-float {
    display: none;
	--hmp-color: rgb(35, 87, 132);
	--hmp-color-75: rgba(35, 87, 132, 0.75);
	--hmp-color-50: rgba(35, 87, 132, 0.5);
	--hmp-color-25: rgba(35, 87, 132, 0.25);
	--hmp-color-5: rgba(35, 87, 132, 0.05);
	position: absolute;
	z-index: 1000000;
	border-radius: 50%;
	top: 50px;
	right: 50px;
	width: 50px;
	height: 50px;
	transition: 0.75s;
	transition-timing-function: ease-out;
}

.mdp-float:hover {
	-webkit-animation: mdp-float-aura infinite;
	animation: mdp-float-aura infinite;
	-webkit-animation-duration: 2s;
	animation-duration: 2s;
}

.mdp-float.mdp-float-inertia {
	transition: 0.25s;
}

.mdp-float.mdp-float-slow {
	transition-delay: 0.5s;
	transition: 5s;
}

.mdp-float.mdp-float-init {
	-webkit-animation: mdp-float-init 1s;
	animation: mdp-float-init 1s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
}

.mdp-float-btn {
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	width: 50px;
	height: 50px;
	text-shadow: 1px 0 0 var(--hmp-color);
	background-image: linear-gradient(210deg, var(--hmp-color-5) 0, var(--hmp-color-25) 100%);
	background-color: #fff;
	transition: 0.25s;
	box-shadow: 0 7px 13px -3px var(--hmp-color-25), 0 2px 4px 0 var(--hmp-color-50), inset 0 0 0 0 var(--hmp-color);
	position: relative;
	z-index: 1;
}

.mdp-float-btn:before {
	content: "";
	position: absolute;
	z-index: 1;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: var(--hmp-color);
	border-radius: 50%;
	transform: scale(0);
	transition-property: transform;
	transition-duration: 0.25s;
	transition-timing-function: ease-out;
}

.mdp-float-btn svg {
	width: 16.66667px;
	height: 16.66667px;
	fill: var(--hmp-color);
	z-index: 2;
}

.mdp-float-btn:focus {
	outline: 0;
}

.mdp-float-btn:hover {
	transition: 0.25s;
	transition-delay: 125ms;
	box-shadow: 0 7px 26px -3px var(--hmp-color-25), 0 2px 8px 0 var(--hmp-color-50);
	border: none;
}

.mdp-float-btn:hover:before {
	transform: scale(1);
}

.mdp-float-btn:hover svg {
	transform: scale(1.1);
	fill: #fff;
}

.mdp-float-btn:active {
	transform: scale(0.75);
}

@media (max-width: 720px) {
	.mdp-float {
		top: 25px;
		right: 25px;
	}
}

.mdp-float-popup {
	position: absolute;
	bottom: -33.33333px;
	right: -33.33333px;
	border-radius: 25px;
	min-width: 320px;
	background: #fff;
	box-shadow: 0 0 4em -1em rgba(0, 0, 0, 0.2);
	-webkit-animation: mdp-popup-init 0.6s;
	animation: mdp-popup-init 0.6s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	transform-origin: bottom right;
}

.mdp-float-popup> :nth-child(1) {
	-webkit-animation: mdp-popup-content-fade 0.6s;
	animation: mdp-popup-content-fade 0.6s;
	-webkit-animation-delay: 0.25s;
	animation-delay: 0.25s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
}

.mdp-float-popup> :nth-child(2) {
	-webkit-animation: mdp-popup-content-fade 0.6s;
	animation: mdp-popup-content-fade 0.6s;
	-webkit-animation-delay: 0.5s;
	animation-delay: 0.5s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
}

.mdp-float-popup> :nth-child(3) {
	-webkit-animation: mdp-popup-content-fade 0.6s;
	animation: mdp-popup-content-fade 0.6s;
	-webkit-animation-delay: 0.75s;
	animation-delay: 0.75s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
}

.mdp-float-h {
	padding: 0 0 33.33333px 0;
	margin: 40px 33.33333px 0 33.33333px;
	border-bottom: 1px solid #eee;
}

.mdp-float-msg {
	padding: 25px 33.33333px 0 33.33333px;
	margin: 0 !important;
	border: 0 !important;
}

.mdp-float-action {
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 25px;
	height: 50px;
	white-space: nowrap;
	text-shadow: 1px 0 0 var(--hmp-color);
	background-image: linear-gradient(210deg, var(--hmp-color-5) 0, var(--hmp-color-25) 100%);
	background-color: #fff;
	transition: 0.25s;
	box-shadow: 0 7px 13px -3px var(--hmp-color-25), 0 2px 4px 0 var(--hmp-color-50), inset 0 0 0 0 var(--hmp-color);
	position: relative;
	margin: 33.33333px 100px 33.33333px 33.33333px;
	text-decoration: none;
	color: var(--hmp-color-25);
	cursor: pointer;
	padding-left: 25px;
	padding-right: 25px;
}

.mdp-float-action:before {
	content: "";
	position: absolute;
	z-index: 1;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: var(--hmp-color);
	border-radius: 25px;
	transform: scale(0);
	transition-property: transform;
	transition-duration: 0.25s;
	transition-timing-function: ease-out;
}

.mdp-float-action:focus {
	outline: 0;
}

.mdp-float-action:hover {
	transition: 0.16667s;
	transition-delay: 125ms;
	box-shadow: 0 7px 26px -3px var(--hmp-color-25), 0 2px 8px 0 var(--hmp-color-50);
	border: none;
	color: #fff;
}

.mdp-float-action:hover:before {
	transform: scale(1);
}

.mdp-float-action span {
	font-family: sans-serif;
	font-size: 20px;
	z-index: 1;
}

@media (max-width: 420px) {
	.mdp-float-popup {
		min-width: 100%;
		max-width: 100%;
		width: 100%;
		background: #235784;
	}
}