/* ================================================================================
	Pimsleur Free Lesson Widget Styles
   ================================================================================ */

.pimsleur_free_lesson figure {
	position: relative;
	display: inline-block;
}

.pimsleur_free_lesson figure figcaption {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items:flex-start;
	padding: 10px;
}

.pimsleur_free_lesson figure figcaption h2 {
	color: #1d2353 !important;
	font-size: 16px !important;
	font-weight: 600 !important;
	text-align: right;
	text-transform: none !important;
}

.pimsleur_free_lesson figure figcaption a {
	align-self: flex-end;
	margin-bottom: 50px;
	background: #e40001;
	padding: 5px 10px;
	color: #fff !important;
	font-weight: 600;
	text-align: center;
	border: 1px solid #e40001;
	border-radius: 25px;
	transition: background 0.35s ease-out, color 0.35s ease-out;
}

.pimsleur_free_lesson figure figcaption a:hover {
	background: #fff;
	color: #e40001 !important;
	text-decoration: none !important;
}



/* ================================================================================
	Pimsleur Inspiration Widget Styles
   ================================================================================ */

.pimsleur_inspiration figure {
	position: relative;
	display: inline-block;
}

.pimsleur_inspiration figure figcaption a {
	position: absolute;
	bottom: 12px;
	right: 15px;
	height: 32px !important;
	width: 32px !important;
	background-size: 32px 32px !important;
	opacity: 0;
	transition: opacity 0.35s ease-out;
}

.pimsleur_inspiration:hover figure figcaption a {
	opacity: 1;
}

/* Small and Medium Screens */
@media screen and (max-width: 63.9375em) {
	.pimsleur_inspiration figure figcaption a {
		opacity: 1;
	}
}



/* ================================================================================
	Pimsleur Inspiration Shortcode Styles
   ================================================================================ */

ul.pimsleur_inspirations li figure {
	position: relative;
}

ul.pimsleur_inspirations li figure figcaption a {
	position: absolute;
	bottom: 12px;
	right: 15px;
	height: 32px !important;
	width: 32px !important;
	background-size: 32px 32px !important;
	opacity: 0;
	transition: opacity 0.35s ease-out;
}

ul.pimsleur_inspirations li:hover figure figcaption a {
	opacity: 1;
}

/* Small and Medium Screens */
@media screen and (max-width: 63.9375em) {
	ul.pimsleur_inspirations li figure figcaption a {
		opacity: 1;
	}
}