/*  MICROTHEMER STYLES  */

/*= Animations ================ */

@-webkit-keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}


/*= General =================== */

/** General >> Link :hover **/
a:hover {
	-webkit-animation-name: pulse !important;
	animation-name: pulse !important;
	-webkit-animation-duration: 0.5s !important;
	animation-duration: 0.5s !important;
}

/** General >> Logo :hover (change id) **/
.fl-photo-content .wp-image-000:hover {
	-webkit-animation-name: pulse !important;
	animation-name: pulse !important;
	-webkit-animation-duration: 0.5s !important;
	animation-duration: 0.5s !important;
	display: inline-block !important;
}

/** General >> FL button :hover **/
.fl-button-width-auto .fl-button:hover {
	-webkit-animation-name: pulse !important;
	animation-name: pulse !important;
	-webkit-animation-duration: 0.5s !important;
	animation-duration: 0.5s !important;
}

/** General >> PP button :hover **/
.fl-module .pp-button:hover {
	-webkit-animation-name: pulse !important;
	animation-name: pulse !important;
	-webkit-animation-duration: 0.5s !important;
	animation-duration: 0.5s !important;
}

/** General >> WSF button **/
.wsf-button {
	font-weight: 500 !important;
	padding: 10px 20px 10px 20px !important;
	border-radius: 45px !important;
}

/** General >> WSF button :hover **/
.wsf-button:hover {
	-webkit-animation-name: pulse !important;
	animation-name: pulse !important;
	-webkit-animation-duration: 0.5s !important;
	animation-duration: 0.5s !important;
	-o-transition-property: background-color !important;
	-moz-transition-property: background-color !important;
	-webkit-transition-property: background-color !important;
	transition-property: background-color !important;
	-webkit-transition-timing-function: ease-in !important;
	transition-timing-function: ease-in !important;
}

/** General >> Bullets after Para **/
p + ul {
	margin-top: -10px !important;
}

/** General >> Bullets spacing **/
ul li {
	margin-bottom: 10px !important;
}
ol li {
	margin-bottom: 10px !important;
}

/** General >> Link **/
p a, 
li a, 
label a {
	color: rgb(255, 106, 84) !important;
	font-weight: 600 !important;
}
#wpadminbar a {
	color: inherit !important;
	font-weight: normal !important;
	text-decoration: none !important;
}

/** General >> Link (:hover) **/
p a:hover, 
li a:hover, 
label a:hover {
	color: rgb(255, 153, 135) !important;
}
#wpadminbar a:hover {
	color: inherit !important;
	text-decoration: none !important;
}

/** General >> WSF Sections H4 **/
.wsf-form h4 {
	font-weight: 200 !important;
	margin-top: 40px !important;
}

/** General >> WSF Horizontal rule **/
.wsf-form hr {
	background-color: rgb(191, 50, 47) !important;
	margin-top: 10px !important;
	margin-bottom: 20px !important;
}

/** General >> WSF alert **/
.wsf-alert {
	padding: 30px 20px 30px 20px !important;
	margin-top: 20px !important;
}

/** General >> Images in Posts **/
.fl-module-fl-post-content img {
	margin-top: 10px !important;
	margin-bottom: 30px !important;
	border-radius: 10px !important;
}

/** General >> Language button **/
.menu-item-object-language_switcher .pp-has-submenu-container {
	background-color: rgb(253, 238, 234) !important;
	margin-left: 10px !important;
	border: 1px solid rgb(255, 106, 84) !important;
	border-radius: 5px !important;
}

/** General >> Legend **/
.wsf-section legend {
	font-size: 1.792rem !important;
	font-weight: 600 !important;
}

/** General >> Code **/
.pp-accordion-content code {
	background-color: rgb(255, 254, 254) !important;
	padding: 2px 4px 2px 4px !important;
	border-radius: 5px !important;
}

