/*
Theme Name:     Divi Child Theme
Theme URI:      https://www.elegantthemes.com/gallery/divi/
Description:    Papilio Communication Customization
Author:         Mymy
Author URI:     https://papilio.agency
Template:       Divi
Version:        23.01.21
*/
 
/* Theme customization starts here */



/* Links decoration white */
.ppo-link a {
	position: relative;
	color: #ffffff;
	text-decoration: none;
}
.ppo-link a::before {
	content: "";
	position: absolute;
	display: block;
	width: 100%;
	height: 2px;
	bottom: 0;
	left: 0;
	background-color: #ffffff;
	transform: scaleX(0);
	transition: transform 0.3s ease;
}
.ppo-link a:hover::before {
	transform: scaleX(1);
}
.ppo-link a:hover {
	color: #ffffff !important;
}



/* Links decoration grey */
.ppo-link-grey a {
	position: relative;
	color: #757575;
	text-decoration: none;
}
.ppo-link-grey a::before {
	content: "";
	position: absolute;
	display: block;
	width: 100%;
	height: 2px;
	bottom: 0;
	left: 0;
	background-color: #757575;
	transform: scaleX(0);
	transition: transform 0.3s ease;
}
.ppo-link-grey a:hover::before {
	transform: scaleX(1);
}
.ppo-link-grey a:hover {
	color: #757575 !important;
}



::selection {
  background-color: #bd102d;
  color: #ffffff;
}



/* Cookie Notice */
#cn-notice-text, #cn-accept-cookie, #cn-refuse-cookie, #cn-more-info {
	font-style: normal !important;
	font-size: 18px !important;
	font-weight: 400 !important;
	margin-top: 5px !important;
	margin-bottom: 5px !important;
}
#cn-notice-text {
	font-family: 'Roboto' !important;
}
#cn-accept-cookie, #cn-refuse-cookie, #cn-more-info {
	font-family: 'Outfit' !important;
	letter-spacing: 1px !important;
	border-radius: 1px !important;
	transition-duration: 300ms;
}
#cn-accept-cookie:hover, #cn-refuse-cookie:hover, #cn-more-info:hover {
	background-color:#d46376 !important;
}