/* Fixed Whatsapp. */
.fixed-whatsapp {
	position: fixed;
	right: 20px;
	bottom: 20px;
}

.fixed-whatsapp a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	background-color: #25D366;
	border-radius: 50%;
	transition: all 250ms ease;
	box-shadow: 0px 0px 10px rgb(0 0 0 / 30%);
}

.fixed-whatsapp a:hover {
	transform: scale(0.9);
}

.fixed-whatsapp svg {
	width: 32px;
	height: 32px;
	color: #FFFFFF;
}

/* fixed call */
.cookie .fixed-call { right: 5px; }
.fixed-call {
	position: fixed;
	top: 20%;
	right: -100%;
	transition: right .35s;
	-webkit-transition: right .35s;
	-moz-transition: right .35s;
}
.fixed-call .close {
	height: 20px;
	width: 20px;
	display: block;
	position: absolute;
	top: -10px;
	left: -10px;
	cursor: pointer;
	text-align: center;
}
.fixed-call .close:before {
	content: '\f00d';
	color: #b0b0b0;
	font-size: 14px;
	display: block;
	margin-top: -3px;
}
.fixed-call .desktop { display: none; }
.fixed-call .mobile li { margin: 0; }
.fixed-call .mobile li:before { content: none; }
.fixed-call .mobile li a {
	color: #d10606;
	display: block;
	height: 59px;
	width: 59px;
	text-align: center;
}
.fixed-call .mobile li a:before {
	content: '\f10b';
	background-color: #d10606;
	height: 59px;
	width: 59px;
	display: block;
	position: absolute;
	right: 0;
	top: 0;
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	color: #FFFFFF;
	text-align: center;
	font-size: 48px;
	padding-top: 14px;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	border: 1px solid #FFFFFF;
	pointer-events: none;
	box-shadow: 0px 0px 6px rgba(0, 0, 0, .27);
}

	/* media specific styles */
	@media( min-width: 768px ){
		.fixed-call .mobile { display: none; }
		.fixed-call .desktop {
			display: block;
			background-color: #d10606;
			border-radius: 40px;
			height: 62px;
			border: 1px solid #FFFFFF;
			width: 240px;
			box-shadow: 0px 0px 6px rgba(0, 0, 0, .27);
		}
		.fixed-call .desktop:before {
			content: '';
			display: block;
			background: url('../../images/contact.png') no-repeat;
			background-size: cover;
			border-radius: 50%;
			-webkit-border-radius: 50%;
			-moz-border-radius: 50%;
			height: 60px;
			width: 60px;
			float: left;
			border: 1px solid #d10606;
			margin: 0;
			margin-right: 10px;
		}
		.fixed-call .desktop li {
			margin: 0;
			font-size: 15px;
			color: #FFFFFF;
			line-height: 20px;
		}
		.fixed-call .desktop li a { line-height: 20px; color: #FFFFFF; text-decoration: none; }
		.fixed-call .desktop li:first-child { margin-top: 10px; }
		.fixed-call .desktop li:last-child { font-family: Black Ops One; font-size: 20px; }
		.fixed-call .desktop li:last-child a { font-family: Black Ops One; font-size: 20px; }
		.fixed-call .desktop li:before { content: none; }
	}
	@media(min-width: 1024px){
		.fixed-call { top: 40%; }
	}