/*
Theme Name: LearnPress Discovery
Template: learnpress
Theme URI: http://getlearnpress.com/
Author: LearnPress
Author URI: http://getlearnpress.com/
Description: A child theme for the LearnPress framework
Version: 1.2.8
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: translation-ready
Text Domain: learnpress-discovery
*/

/**
 * Repeatable Patterns
 * ===================
 */

body {
	font-family: "Source Sans Pro", sans-serif;
}
.has-js .hide-if-js {
	display: none;
}
.menu-toggle:after,
.featured-post:before,
.date a:before,
.entry-meta .author a:before,
.comments-link a:before,
.tags-links a:first-child:before,
.categories-links a:first-child:before,
.edit-link a:before,
.comment-awaiting-moderation:before,
.comment-reply-link:before,
.comment-reply-login:before,
.comment-reply-title small a:before,
.bypostauthor > .comment-body .fn:before,
.error404 .page-title:before {
	-webkit-font-smoothing: antialiased;
	display: inline-block;
	font-family: "FontAwesome";
	vertical-align: text-bottom;
	margin-right: 3px;
}

/* Clearing floats */
.clear:after,
.attachment .entry-header:after,
.site-footer .widget-area:after,
.entry-content:after,
.page-content:after,
.navigation:after,
.nav-links:after,
.gallery:after,
.comment-form-author:after,
.comment-form-email:after,
.comment-form-url:after,
.comment-body:after {
	clear: both;
}

.clear:before,
.clear:after,
.attachment .entry-header:before,
.attachment .entry-header:after,
.site-footer .widget-area:before,
.site-footer .widget-area:after,
.entry-content:before,
.entry-content:after,
.page-content:before,
.page-content:after,
.navigation:before,
.navigation:after,
.nav-links:before,
.nav-links:after,
.comment-form-author:before,
.comment-form-author:after,
.comment-form-email:before,
.comment-form-email:after,
.comment-form-url:before,
.comment-form-url:after,
.comment-body:before,
.comment-body:after {
	content: "";
	display: table;
}

/* Assistive text */
.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute !important;
}

.screen-reader-text:focus {
	background-color: #f1f1f1;
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	color: #21759b;
	display: block;
	font-size: 14px;
	font-weight: bold;
	height: auto;
	line-height: normal;
	padding: 15px 23px 14px;
	position: absolute;
	left: 5px;
	top: 5px;
	text-decoration: none;
	width: auto;
	z-index: 100000; /* Above WP toolbar */
}

/* Form fields, general styles first. */
button,
input,
textarea {
	border: 2px solid #d4d0ba;
	font-family: inherit;
	padding: 5px;
}

input,
textarea {
	color: #141412;
}

input:focus,
textarea:focus {
	border: 2px solid #c3c0ab;
	outline: 0;
}

/* Buttons */
button,
.button,
.secondary-button,
input[type="submit"],
input[type="button"],
input[type="reset"] {
	border: none;
	border-radius: 2px;
	display: inline-block;
	padding: 11px 24px 10px;
	cursor: pointer;
	font-weight: normal;
}
.secondary-button {
	background: #222;
	background: -webkit-linear-gradient(top, #212121 0%, #222222 100%);
	background: linear-gradient(to bottom, #212121 0%, #222222 100%);
	border-bottom: 3px solid #111;
	color: #ffffff;
	text-transform: uppercase;
	font-size: 14px;
	line-height: normal;
	height: 42px;
}
a.button, a.button:hover, a.secondary-button, a.secondary-button:hover {
	text-decoration: none !important;
}
.secondary-button:hover {
	color: #fff;
	background-color: #212121;
}
.button:disabled,
.button:disabled:hover {
	color: #fff;
	background: #ccc !important;
	border-bottom-color: #ccc !important;
	cursor: default;
}
.actions .update-cart-button, .coupon .button {
	background: #999;
	border-bottom: 3px solid #aaa;
}
.actions .update-cart-button:hover, .coupon .button:hover {
	background: #aaa;
}

/* Placeholder text color -- selectors need to be separate to work. */
::-webkit-input-placeholder {
	color: #7d7b6d;
}
:-moz-placeholder {
	color: #7d7b6d;
}

::-moz-placeholder {
	color: #7d7b6d;
}

:-ms-input-placeholder {
	color: #7d7b6d;
}

/*
 * Responsive images
 * =================
 */
.entry-content img,
.entry-summary img,
.comment-content img,
.widget img,
.wp-caption {
	max-width: 100%;
}

/* Make sure images with WordPress-added height and width attributes are scaled correctly. */
.entry-content img,
.entry-summary img,
.comment-content img[height],
img[class*="align"],
img[class*="wp-image-"],
img[class*="attachment-"] {
	height: auto;
}

img.size-full,
img.size-large,
img.wp-post-image {
	height: auto;
	max-width: 100%;
}

/* Make sure videos and embeds fit their containers. */
embed,
iframe,
object,
video {
	max-width: 100%;
}

/* Images */
.alignleft {
	float: left;
}
.floatleft {
	float: left;
	margin-right: 10px;
}

.alignright {
	float: right;
}

.aligncenter {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

img.alignleft {
	margin: 5px 20px 5px 0;
}

.wp-caption.alignleft {
	margin: 5px 10px 5px 0;
}

img.alignright {
	margin: 5px 0 5px 20px;
}

.wp-caption.alignright {
	margin: 5px 0 5px 10px;
}

img.aligncenter {
	margin: 5px auto;
}

img.alignnone {
	margin: 5px 0;
}

.wp-caption.alignleft + ul,
.wp-caption.alignleft + ol  {
	list-style-position: inside;
}

/**
 * Basic Structure
 * ===============
 */
.hidden {
	display: none !important;
}
.site {
	background-color: #f9f9f9;
	margin: 0 auto;
	width: 100%;
	min-height: 100%;
}
/* Flat layout */
.flat-page-layout .site-main, .home-main {
	position: relative;
	border-radius: 6px;
	width: 1210px;
	padding: 20px;
	margin: 40px auto 20px;
	overflow: hidden;
}
.home-main {
	background-color: #fff;
	margin-top: 0px;
	padding-bottom: 30px;
}
.boxed-page-layout .site-main {
	position: relative;
	width: 1210px;
	padding: 20px;
	margin: 5px auto 20px;
	overflow: hidden;
	box-shadow: 0 0 3px rgba(0,0,0,0.1);
}
.full-width-page-layout .site-main {
	position: relative;
	width: 1170px;
	margin: 25px auto 20px;
	overflow: hidden;
}
.site-main .sidebar-container {
	height: 0;
	position: absolute;
	top: 40px;
	width: 100%;
	z-index: 1;
}
.site-main .sidebar-inner {
	margin: 0 auto;
}
.container {
	margin: 0 auto;
	position: relative;
}
/*
.one-third {
	width: 34%;
	float: left;
}
.two-thirds, .sidebar-left, .sidebar-right {
	width: 62%;
	margin-right: 4%;
	float: left;
}*/
.sidebar-right {
	float: left;
}
.sidebar-left {
	float: right;
	margin-right: 0;
}
.sidebar-page {
	padding: 20px 20px 20px;
	border-radius: 4px;
}
.home-main .sidebar-page {
	margin-top: 0;
	background-color: #f9f9f9;
	border: 1px solid #f1f1f1;
	color: #424242;
	padding: 0 10px 10px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.sidebar-page a:hover {
	text-decoration: underline;
}
.sidebar-course {
	margin: 89px 0 24px;
}
.sidebar-navigation {
	margin: 0 0 24px;
}
.last-one {
	margin-right: 0;
}
@media (max-width: 991px) {
	.sidebar-navigation {
		margin-top: 15px;
	}
}

/**
 * Header
 * ======
 */
.site-header {
	position: relative;
	background: #2980b9;
	border-bottom: 1px solid rgba(255,255,255,0.2);
}
.site-title {
	font-size: 40px;
	font-weight: bold;
	line-height: 1;
	margin: 0;
	padding: 8px 0 8px;
}
.site-title img {
	width: auto;
	max-height: 60px;
}
.site-title.header-3, .site-title.header-4, .site-title.header-5 {
	width: 100%;
}
.logo-left .site-title, .logo-right .site-title {
	font-size: 40px;
	font-weight: bold;
	line-height: 1;
	margin: 0;
	padding: 16px 0 8px;
	float: left;
}
.logo-right .site-title {
	float: right;
}
.logo-center .site-title {
	text-align: center;
	width: 100%;
	float: none;
}
.center-logo-border {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
	height: 1px;
}
.site-title a {
	color: #fff;
}
.site-title a:hover {
	text-decoration: none;
}
.header-contact-bar {
	background-color: #3f3f3f;
	color: #fff;
	padding: 8px 0;
	text-align: right;
}

/**
 * Navigation
 * ==========
 */
#user-section {
	width: 100%;
	height: 24px;
	background-color: #5bc3be;
}
.main-navigation {
	clear: both;
	margin: 0 auto;
	max-width: 1170px;
	position: relative;
}
.logo-left .header-1 .main-navigation, .logo-right .header-1 .main-navigation {
	min-height: 45px;
}
.logo-center .main-navigation {
	min-height: 25px;
}
.logo-left .header-2 .main-navigation, .logo-right .header-2 .main-navigation, .logo-center .header-2 .main-navigation {
	min-height: 25px;
}
ul.nav-menu,
div.nav-menu > ul {
	margin: 0;
	padding: 0;
	border-right: none;
	border-left: none;
}
.nav-menu li {
	display: block;
	float: left;
	position: relative;
	margin: 0 !important;
}
.nav-menu li a {
	display: block;
	line-height: 1;
	border-right: 1px solid rgba(0, 0, 0, 0.1);
	border-left: 1px solid rgba(255, 255, 255, 0.1);
	text-decoration: none;
	background-color:#2980b9!important;
}
.nav-menu li a:hover {
    background-color:#2e8ac7!important;
}
.logo-left .nav-menu li a, .logo-right .nav-menu li a  {
	padding: 39px 19px 28px;
	height: 85px;
}
.logo-center .nav-menu li a {
	padding: 16px 30px 14px;
}
.logo-left .header-2 .nav-menu li a, .logo-right .header-2 .nav-menu li a, .logo-center .header-2 .nav-menu li a,
.logo-left .header-3 .nav-menu li a, .logo-right .header-3 .nav-menu li a, .logo-center .header-3 .nav-menu li a,
.logo-left .header-4 .nav-menu li a, .logo-right .header-4 .nav-menu li a, .logo-center .header-4 .nav-menu li a,
.logo-left .header-5 .nav-menu li a, .logo-right .header-5 .nav-menu li a, .logo-center .header-5 .nav-menu li a {
	padding: 12px 20px 10px;
}
.nav-menu .sub-menu {
	display: none;
	padding: 2px 0 0;
	position: absolute;
	z-index: 99999;
}
.nav-menu .sub-menu ul,
.nav-menu .children ul {
	border-left: 0;
	left: 100%;
}
.nav-menu .sub-menu li a,
.nav-menu ul ul a {
	margin: 0;
	min-width: 200px;
}
ul.nav-menu ul a:hover,
.nav-menu ul ul a:hover {
	display: block;
}
ul.nav-menu li:hover > ul,
.nav-menu ul li:hover > ul {
	display: block;
}
.menu-toggle {
	display: none;
}
/* Navbar */
.navbar {
	float: right;
}
.logo-right .header-1 .navbar, .header-3 .navbar, .header-5 .navbar {
	float: left;
}
.logo-center .header-1 .navbar {
	display: table;
	float: none;
	margin: 0 auto;
}

/**
 * Social
 * ======
 */
ul#social-icons {
	margin: 0;
	padding: 0;
	list-style: none;
}
.header-3 ul#social-icons, .header-5 ul#social-icons {
	float: right;
}
ul#social-icons li {
	float: left;
	margin: 8px 7px 0 0;
}

/**
 * Content
 * =======
 */
.hentry {
	padding: 20px 0;
}
.entry-header,
.entry-content,
.entry-summary,
.entry-meta {
	margin: 0 auto;
	width: 100%;
}

.archive-header {
	margin: 20px 0 20px;
}

/**
 * Homepage
 * ========
 */
#learnpress-feature-image {
	width: 100%;
	position: relative;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	height: auto !important;
}
/* http://coding.smashingmagazine.com/2013/08/09/absolute-horizontal-vertical-centering-css/ */
.learnpress-feature-content {
	max-width: 1170px;
	overflow: hidden;
	margin: auto;
	padding: 3em 0;
	position: relative;
}
.learnpress-feature-content h1 {
	font-size: 1em;
	margin: 0;
	font-weight: normal;
}
.learnpress-feature-content .left-side {
	float: left;
	width: 50%;
}
.learnpress-feature-content .right-side {
	width: 48%;
	position: absolute;
	right: 0;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}
.learnpress-key-message {
	margin-bottom: 30px;
}
.learnpress-cart-form {
	text-align: center;
}
.learnpress-sign-up {
	color: #222;
	text-align: center;
	padding: 1em 3em;
	background: #fff;
	background: rgba(255,255,255,0.8);
	border-radius: 15px;
	border: 3px solid #2980b9;
}
.learnpress-sign-up form.cart {
	margin: 0 auto;
}
.learnpress-sign-up h2 {
	margin: 0 0 12px 0;
}
#learnpress-testimonials-slider {
	overflow: hidden;
}
#learnpress-testimonials-slider ul {
	list-style: none;
	margin: 0;
}
.learnpress-testimonial-meat {
	font-size: 140%;
	font-style: italic;
}
.learnpress-testimonial-giver {
	font-size: 140%;
	line-height: 2;
}
#learnpress_homepage_widgets {
	padding: 50px 0 0;
	overflow: hidden;
	background-color: #f1f1f1;
}
.learnpress-homepage-widget {
	float: left;
	margin-bottom: 40px;
}
.learnpress-widget-icon {
	float: left;
	width: 80px;
	max-width: 18%;
}
.learnpress-widget-content {
	float: left;
	width: 80%;
}
.learnpress-widget-content h3 {
	margin-top: 0;
}
#learnpress_homepage_shortcode {
	padding: 30px 0 45px;
}
#learnpress_homepage_slider {
	padding: 30px 0;
}
#learnpress-testimonials-slider .flexslider, #learnpress_homepage_slider .flexslider {
	margin: 0;
	background: none;
	border: none;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	-o-border-radius: 0;
	border-radius: 0;
	box-shadow: 0 0 0 rgba(0,0,0,0);
	-webkit-box-shadow: 0 0 0 rgba(0,0,0,0);
	-moz-box-shadow: 0 0 0 rgba(0,0,0,0);
	-o-box-shadow: 0 0 0 rgba(0,0,0,0);
	padding: 20px 80px;
}
#learnpress_homepage_slider .slides li {
	width: 65%;
	margin: 10px auto;
	text-align: center;
}
#learnpress-testimonials-slider {
	border-bottom: 3px solid #bbb;
}
#learnpress-testimonials-slider .slides li {
	width: 100%;
	margin: 10px auto;
	text-align: center;
}
#learnpress_homepage_content, #learnpress_homepage_blog {
	margin: 0;
	overflow: hidden;
	background-color: #fff;
}
#learnpress_homepage_content .home-main {
	max-width: 800px;
}
#learnpress_homepage_content .container {
	max-width: 100%;
}
#learnpress_homepage_content h2 {
	margin: 32px 0 10px;
}
#learnpress_homepage_content h3 {
	margin: 18px 0 10px;
}
#learnpress_homepage_blog h1 {
	font-size: 36px;
}
#learnpress-log-in {
	position: relative;
	border-top: 1px solid #E7E6E6;
	border-right: 1px solid #E7E6E6;
	border-left: 1px solid #E7E6E6;
	border-bottom: 1px solid #CFCFCF;
	background: #f1f1f1;
	border-radius: 6px;
	width: 540px;
	padding: 20px;
	margin: 40px auto 20px;
}
#learnpress-log-in h3 {
	text-align: center;
}
.learnpress-log-in-form {
	text-align: center;
	margin-top: 30px;
}
.learnpress-log-in-form input[type='text'], .learnpress-log-in-form input[type='password'] {
	width: 60%;
	margin: 10px auto 20px;
	display: block;
}
.learnpress-log-in-form label {
	display: none;
}
.ie .learnpress-log-in-form label {
	display: block;
}
#learnpress_homepage_blog_recent_posts {
	padding: 3em 0;
}

/**
 * Entry Header
 * ============
 */
.sidebar .entry-header .entry-meta {
	padding: 0;
}
.entry-thumbnail img {
	display: block;
	margin: 0 auto 10px;
}
.entry-header {
	margin-bottom: 30px;
}
.entry-title {
	font-weight: normal;
	margin: 0 0 5px;
}

/**
 * Entry Meta
 * ==========
 */
.entry-meta {
	clear: both;
	font-size: 14px;
}
.entry-meta > span {
	margin-right: 20px;
}
.entry-meta > span:last-child {
	margin-right: 0;
}
/*
.entry-meta .date a:before {
	content: "\f073";
}
.comments-link a:before {
	content: "\f086";
	margin-right: 2px;
	position: relative;
}
.entry-meta .author a:before {
	content: "\f007";
	position: relative;
}
.categories-links a:first-child:before {
	content: "\f03a";
}
.tags-links a:first-child:before {
	content: "\f02c";
	position: relative;
}
.edit-link a:before {
	content: "\f040";
	position: relative;
}
/*
/**
 * Entry Content
 * =============
 */
.entry-content {
	word-wrap: break-word;
}
.entry-content blockquote cite,
.entry-content blockquote small {
	font-size: 16px;
}
footer.entry-meta {
	margin-top: 24px;
}

.blog-block {
	padding: 0;
	margin-bottom: 30px;
}

/**
 * Post/Paging Navigation
 * ======================
 */
.paging-navigation {
	clear: both;
	width: auto;
	margin: 20px auto;
}
.nav-links {
	display: table;
	margin: 0 auto;
	width: auto;
}
.page-numbers li {
	float: left;
	margin: 0 2px;
	text-align: center;
}
.page-numbers li a, .page-numbers li span.current, .page-numbers li span.dots {
	display: block;
	background-color: #f9f9f9;
	border: 1px solid #f1f1f1;
	border-radius: 2px;
	padding: 8px;
	text-align: center;
}
.page-numbers {
	display: table-cell;
}
.page-numbers li a:hover, .page-numbers li span.current {
	text-decoration: none;
	background-color: #f1f1f1;
}
.page-numbers li span.dots {
	background-color: transparent;
	border: none;
}

/**
 * Sidebar
 * =======
 */




/**
 * Widgets
 * =======
 */


 

/**
 * Courses page
 * ============
 */
.course-excerpt {
	width: 32%;
	float: left;
	padding: 10px;
	margin: 0 2% 20px 0;
	background-color: #fff;
	box-shadow: 0 0 3px rgba(0,0,0,0.1);
	border-radius: 2px;
}
.course-excerpt h2 {
	font-size: 20px;
	margin-bottom: 10px;
}
.course-excerpt .entry-header {
	margin-bottom: 10px;
}
.course-1 {
	clear: left;
}
.course-excerpt.last-one {
	margin-right: 0;
}
.course-meta {
	border-top: 1px solid #f9f9f9;
}
.course-meta-item {	
	border-bottom: 1px solid #f9f9f9;
	font-size: 90%;
	width: 100%;
	padding: 4px 0;
	overflow: hidden;
}
.course-meta-heading {
	font-weight: bold;
	float: left;
	width: 39%;
	margin-right: 1%;
}
.course-meta-value {
	float: left;
	width: 60%;
}
.view-course {
	width: 100%;
	text-align: center;
	margin: 20px auto 0;
}
.course-input {
	margin: 10px 0;
	width: 95%;
}
#learnpress-freebie-response, #learnpress-freebie-fail {
	display: none;
}
#learnpress-freebie-button .fa-spinner {
	display: none;
}

/**
 * Footer
 * ======
 */
.site-footer {
	color: #f9f9f9;
	font-size: 90%;
	padding: 30px 0;
}
.home .site-footer {
	margin-top: 0;
}
.site-footer .widget-area,
.sidebar .site-footer {
	text-align: left;
}
.site-footer a {
	color: #fff;
}
.site-footer a:hover {
	text-decoration: underline;
}
.site-footer ul, .site-footer ol {
	padding: 0;
	margin: 0;
	list-style: none;
}
.span-4 input[type="search"] {
	width: 170px;
}
.powered-by-credits {
	clear: left;
	margin-top: 40px;
	float: right;
}

/**
 * The Course
 * ==========
 */
.single-unit #content {
	animation: fadein 0.5s;
    -moz-animation: fadein 0.5s; /* Firefox */
    -webkit-animation: fadein 0.5s; /* Safari and Chrome */
    -o-animation: fadein 0.5s; /* Opera */
}
.user-name {
	float: right;
	margin-top: 35px;
	color: #fff;
}
#check-user-name form {
	margin: 30px 0;
}
#check-user-name ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
#check-user-name li {
	margin-bottom: 20px;
}
#check-user-name li.warning {
	padding: 20px;
}
#check-user-name label {
	display: block;
}
#check-user-name input[type="text"], #check-user-name input[type="email"] {
	width: 300px;
}
#course-navigation {
	float: none;
	width: 100%;
	margin: 22px 0 2em 0;
}
.unit-template-single-unit-revision #course-navigation {
	display: none !important;
}
#course-navigation a {
	display: inline-block;
	padding: 5px 14px;
	background-color: #404040;
	color: #fff;
	border-radius: 2px;
	text-decoration: none;
	font-size: 90%;
	width: 49%;
}
a.next-link {
	text-align: right;
	float: right;
}
#course-navigation i {
	font-size: 70%;
}
#course-navigation a:hover {
	text-decoration: none;
	background-color: #333;
}
#course-navigation a.disabled {
	text-decoration: none;
	opacity: 0.5;
	background-color: #555;
	cursor: default;
	pointer-events: auto;
}

/* SoundCloud */
#audio-wrapper {
	background: #464646;
	height: 30px;
}
.no-audio {
	color: #fff;
	line-height: 1.9;
}
.learnpress-audio-player {
	width: 60%;
	float:left;
}
.sc-player.playing .sc-controls a.sc-play {
    display: block;
}
@media (max-width: 991px) {
	#audio-wrapper {
		height: 70px;
	}
	.learnpress-audio-player {
		/*	display: none; */
		width: 100%;
	}
	.sc-player {
		width: 100%;
		height: 30px;
	}
	.sc-player .sc-controls a {
	    color: #fff;
	    display: block;
	    width: 30px;
	    height: 30px;
	}
	.sc-player.playing .sc-controls a.sc-play {
		display: block;
	}
	.sc-scrubber {
		width: auto;
	}
	.sc-scrubber .sc-time-span {
		display: none
	}
}
.top-nav-tab {
	border-left: 1px solid rgba(0,0,0,0.1);
	border-right: 1px solid rgba(255,255,255,0.05);
	color: #fff;
	height: 30px;
	line-height: 1.9;
	padding: 0 20px;
	float: right;
	cursor: pointer;
}
.sidebar-navigation table td:last-child {
	padding-right: 0;
}
.sidebar-navigation a {
	text-decoration: none;
}
.sidebar-navigation a:hover {
	text-decoration: underline;
}
.course-progress-title {
	float: left;
}
.page-count {
	margin-top: 14px;
	float: right;
	font-size: 90%;
	background-color: #464646;
	border-radius: 4px;
	padding: 2px 9px;
}
.learnpress-question {
	margin: 10px 0 20px;
}
.learnpress-question label {
	margin-left: 10px;
}
.question-feedback, .final-feedback, .quiz-status {
	background-color: #f9f9f9;
	border: 1px solid #e9e9e9;
	border-radius: 4px;
	padding: 20px 10px;
	display: none;
}
.quiz-status {
	display: block;
}
.module-content div {
	position: relative;
}
.module-content div:hover {
	cursor: help;
	position: relative;
}
.module-content span {
	display: none;
}
.module-content:hover span {
	display: block;
	position: absolute;
	top:20px;
	left: -275px;
	background: #fff;
	border-radius: 4px;
	color: #464646;
	z-index: 9988;
	padding: 8px;
	font-size: 80%;
	line-height: 1.2;
	box-shadow: 1px 1px 1px rgba(0,0,0,0.1);
}
.module-content ul {
	margin: 4px 0 8px;
	padding: 0 0 0 20px;
}
#retrieving-button {
	display: none;
}
/* Drag and drop */
.draganddrop {
	padding: 0;
	margin-bottom: 30px;
	overflow: auto;
}
.draganddrop li {
	list-style: none;
	margin: 5px 0;
	padding: 4px 12px;
	background: #f1f1f1;
	border: 1px solid #eee;
	cursor: move;
}

/* 
 * Shortcode styles
 * ================
 */
.sc-one-third {
	float: left;
	width: 32%;
	margin-right: 1%;
}
.sc-two-thirds {
	float: left;
	width: 65%;
	margin-right: 1%;
}
.sc-one-half {
	float: left;
	width: 49%;
	margin-right: 1%;
}
.sc-one-fourth {
	float: left;
	width: 24%;
	margin-right: 1%;
}
.sc-one-fifth {
	float: left;
	width: 19%;
	margin-right: 1%;
}
.emphasis {
	background-color: #f9f9f9;
	border: 1px solid #e9e9e9;
	border-radius: 4px;
	padding: 20px 10px;
	margin: 20px 0;
}
.correct {
	background-color: #C8FFD7;
	border: 1px solid #97C899;
}
.incorrect {
	background-color: #FFDFE0;
	border: 1px solid #C89797;
}
.warning {
	background-color: #fffdf3;
	border: 1px solid #f2dfa4;
}
.info {
	background-color:  #e9f7fe;
	border: 1px solid #b6d7e8;
}
.learnpress-table {
	line-height: 1.5;
}
.table-fixed {
	table-layout: fixed;
}
.learnpress-table .odd {
	background-color: #f9f9f9;
}
.learnpress-table .even {
	background-color: #f1f1f1;
}
.learnpress-table td, .learnpress-table th {
	padding: 6px 7px;
	vertical-align: top;
}
.learnpress-interaction-wrapper {
	clear: left;
	margin: 10px 0 30px;
}
.learnpress-toggle {
	margin-bottom: 5px;
}
.learnpress-theme-toggle {
	font-size: 100%;
	padding: 6px 12px;
	background-color: #f9f9f9;
	border: 1px solid #f1f1f1;
	cursor: pointer;
	margin-bottom: 0;
	font-weight: normal;
	-webkit-border-top-left-radius: 4px;
	-webkit-border-top-right-radius: 4px;
	-moz-border-radius-topleft: 4px;
	-moz-border-radius-topright: 4px;
	border-top-left-radius: 4px;
	border-top-right-radius: 4px;
}
.learnpress-theme-toggle.inactive:before {
	content: "\f0da\00a0";
	font-family: FontAwesome;
	font-weight: normal;
	font-style: normal;
	text-decoration: inherit;
	-webkit-font-smoothing: antialiased;
	*margin-right: .3em;
	text-decoration: inherit;
	display: inline-block;
	speak: none;
}
.learnpress-theme-toggle.active:before {
	content: "\f0d7\00a0";
	font-family: FontAwesome;
	font-weight: normal;
	font-style: normal;
	text-decoration: inherit;
	-webkit-font-smoothing: antialiased;
	*margin-right: .3em;
	text-decoration: inherit;
	display: inline-block;
	speak: none;
}
.learnpress-toggle-container {
	display: none;
	background: #fefefe;
	padding: 16px 10px;
	border-left: 1px solid #f1f1f1;
	border-right: 1px solid #f1f1f1;
	border-bottom: 1px solid #f1f1f1;
	-webkit-border-bottom-left-radius: 4px;
	-webkit-border-bottom-right-radius: 4px;
	-moz-border-radius-bottomleft: 4px;
	-moz-border-radius-bottomright: 4px;
	border-bottom-left-radius: 4px;
	border-bottom-right-radius: 4px;
	overflow: hidden;
}
.learnpress-toggle-container .thumb {
	float: left;
}
.learnpress-toggle-container .thumb img {
	border: 4px solid #f1f1f1;
}
.learnpress-toggle-container .module-excerpt {
	float: left;
	margin-left: 15px;
}
.learnpress-pricing-table {
	text-align: center;
}
.learnpress-pricing-table {
	margin-top: 20px;
	border-radius: 4px;
	border: 1px solid #ddd;
}
.learnpress-pricing-header {
	background-color: #f9f9f9;
	border-bottom: 1px solid #ddd;
	border-top-left-radius: 4px;
	border-top-right-radius: 4px;
	font-size: 110%;
	line-height: 1.2;
	font-weight: bold;
	padding: 8px 18px;
}
.learnpress-pricing-cost {
	background-color: #f1f1f1;
	border-bottom: 1px solid #ddd;
	padding: 4px 18px 8px;
}
.learnpress-pricing-cost h2 {
	margin: 1px 0 -7px;
	font-size: 275%;
}
.learnpress-pricing-table ul {
	padding: 0;
	margin: 0;
}
.learnpress-pricing-table li {
	font-size: 90%;
	margin: 0;
	background-color: #fcfcfc;
	border-bottom: 1px solid #ddd;
	padding: 8px 18px;
	list-style: none;
}
.learnpress-pricing-table li:nth-child(2n+2) {
	background-color: #f9f9f9;
}
.learnpress-pricing-button {
	padding: 8px 18px;
	border-bottom-left-radius: 4px;
	border-bottom-right-radius: 4px;
}
/* 
 * Flexslider
 * ==========
 */
.flexslider-loading {
	font-family: FontAwesome;
	width: 100%;
	font-size: 150%;
	text-align: center;
	margin: 50px 0;
	-moz-animation: spin 1s infinite linear;
	-o-animation: spin 1s infinite linear;
	-webkit-animation: spin 1s infinite linear;
	animation: spin 1s infinite linear;
}
.flexslider-loading:before {
	text-decoration: inherit;
    display: inline;
    speak: none;
    content: "\f110";
}
.flexslider .slides > li {
	position: relative;
}
.flexslider .slides img {
	border-radius: 4px;
	max-width: 100%;
	height: auto;
}
.flex-direction-nav a {
  	font-family: FontAwesome;
    font-weight: normal;
    font-style: normal;
    text-decoration: inherit;
    -webkit-font-smoothing: antialiased;
    *margin-right: .3em;
    width: 40px;
	height: 40px;
    padding: 10px 15px;
    background-color: #111;
	background-image: none;
    color: #fff;
  	text-indent: 0;
  	border-radius: 4px;
  	-webkit-transition: all 0.15s linear;
  	transition: all 0.15s linear;
}
.flex-direction-nav .flex-next {
	right: 5px;
	opacity: 0.9;
}
.flex-direction-nav .flex-prev {
	left: 5px;
	opacity: 0.9;
}
.flex-direction-nav .flex-prev:before {
	text-decoration: inherit;
    display: inline;
    speak: none;
    content: "\f053";
}
.flex-direction-nav .flex-next:before {
	text-decoration: inherit;
    display: inline;
    speak: none;
    content: "\f054";
}
.slider-caption {
	padding: 10px 2% 5px;
	width: 100%;
	position: absolute;
	left: 0;
	bottom: 0;
	background: #fff;
	background: rgba(255,255,255,0.8);
}
#learnpress_homepage_slider .slider-caption {
	font-size: 130%;
}
.slider-caption p {
	margin: 0 0 12px;
}

/* 
 * Modal window
 * ============
 */
#learnpress-modal-window {
	position: fixed;
    top: 50%;
    left: 50%;
	margin-top: -10%;
    width: 50%;
    max-width: 630px;
    min-width: 320px;
    height: auto;
    z-index: 2000;
	visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translate(-50%,-25%);
	transform: translate(-50%,-25%);
}
#learnpress-modal-background {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0px;
	left: 0px;
	z-index: 1000;
	opacity: 0;
	visibility: hidden;
	background: rgba(255, 255, 255, 0.8);
	transition: all 0.3s;
	-webkit-transition: all 0.3s;
}
#learnpress-modal-background.learnpress-modal-showbg {
	opacity: 1;
	visibility: visible;
}
#learnpress-modal-window.learnpress-show-modal {
	visibility: visible;
}
#learnpress-modal-window .modal-content {
	transform: scale(0.7);
	-webkit-transform: scale(0.7);
	opacity: 0;
	transition: all 0.3s;
	-webkit-transition: all 0.3s;
	box-shadow: 0 0 10px 10px rgba(0,0,0,0.1);
	border-radius: 4px;
	background-color: #f9f9f9;
	border: 1px solid #f1f1f1;
}
#learnpress-modal-window.learnpress-show-modal .modal-content {
	transform: scale(1);
	-webkit-transform: scale(1);
	opacity: 1;
}
.modal-header {
	background: #eee;
	width: 100%;
	padding: 20px 20px 10px;
	position: relative;
}
.modal-header h3 {
	margin-top: 0;
}
#modal-close {
	position: absolute;
	top: 10px;
	right: 10px;
	cursor: pointer;
}
.modal-body {
	padding: 20px;
}
#modal-body table p {
    margin: 0 0 4px;
}
#modal-footer {
	margin: 40px auto 20px;
	text-align: center;
}
#learnpress-time-allowed {
	display: none;
	opacity: 0.9;
	position: fixed;
	right: 10px;
	bottom: 10px;
	background-color: #2980B9;
	color: #fff;
	border-radius: 4px;
	font-size: 150%;
	padding: 10px 20px;
}
#learnpress-time-left {
	font-weight: bold;
}
.single-unit .site-footer {
	display: none;
}

/* 
 * Ratings
 * ===========
 */
ul.user-ratings {
	list-style: none;
	padding: 0;
	margin: 0;
}
ul.user-ratings li {
	margin-bottom: 30px;
}
.page-template-page-testimonials-php ul.user-ratings li {
	margin: 30px 0 0;
}
ul.user-ratings li .quote {
	background-color: #f1f1f1;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	padding: 8px 12px 0;
}
ul.user-ratings li .quote p {
	margin-bottom: 0;
}
ul.user-ratings li .quote:after {
	display: block;
	content: "";
	width: 0;
	height: 0;
	border-left: 14px solid #f1f1f1;
	border-bottom: 18px solid transparent;
	position: relative;
	top: 16px;
	left: 16px;
}
ul.user-ratings li .by {
	margin-top: 12px;
}
span.star {
	font-family: FontAwesome;
	font-weight: normal;
	font-style: normal;
	display: inline-block;
	font-size: 1.25em;
}
span.star:before {
	content: "\f005";
	padding-right: 5px;
	color: #ccc;
}
span.star.filled:before {
	color: #e3cf7a;
}
#overall-rating {
	margin: 0 0 20px;
	font-size: 1.5em;
	font-weight: 300;
}
.overall {
	font-weight: bold;
}
#learnpress-ratings {
	padding: 0 0 10px;
	overflow: hidden;
}
#learnpress-ratings h2 {
	margin: 18px 0;
}
/* 
 * Tracking
 * ===========
 */
#tracking-results table {
	table-layout: fixed;
}
/* 
 * WooCommerce
 * ===========
 */
.learnpress-feature-content .amount {
	display: none;
}
.learnpress-feature-content .cart {
	width: 190px;
}
p.product {
	border: none !important;
	float: left;
	font-size: 120%;
	padding: 6px 10px 0 0 !important;
}
table.cart th.product-price,
table.cart td.product-price,
table.cart th.product-quantity,
table.cart td.product-quantity,
table.cart th.product-subtotal,
table.cart td.product-subtotal {
	text-align: right;
	padding-right: 0;
}
.woocommerce .quantity, .woocommerce #content .quantity, .woocommerce-page .quantity, .woocommerce-page #content .quantity {
	margin: 0 auto;
	overflow: hidden;
	position: relative;
	width: 60px;
	float: right;
	margin: 7px 0 0 0;
}
.woocommerce .quantity input.qty,
.woocommerce #content .quantity input.qty, .woocommerce-page .quantity input.qty, .woocommerce-page #content .quantity input.qty {
	-moz-border-bottom-colors: none;
	-moz-border-left-colors: none;
	-moz-border-right-colors: none;
	-moz-border-top-colors: none;
	border-color: #C7C0C7 -moz-use-text-color #C7C0C7 #C7C0C7;
	border-image: none;
	border-radius: 2px 0 0 2px;
	border-style: solid none solid solid;
	border-width: 1px 0 1px 1px;
	box-shadow: 0 0 2px 0 #F7F6F7 inset;
	float: left;
	font-weight: bold;
	height: 28px;
	padding: 0;
	text-align: center;
	width: 40px;
}
.woocommerce .quantity .plus,
.woocommerce .quantity .minus,
.woocommerce #content .quantity .plus,
.woocommerce #content .quantity .minus,
.woocommerce-page .quantity .plus,
.woocommerce-page .quantity .minus,
.woocommerce-page #content .quantity .plus,
.woocommerce-page #content .quantity .minus {
	background: -moz-linear-gradient(center top , #F7F6F7 0%, #DFDBDF 100%) repeat scroll 0 0 transparent;
	background: -webkit-linear-gradient( top , #F7F6F7 0%, #DFDBDF 100%) repeat scroll 0 0 transparent;
	border: 1px solid #C7C0C7;
	border-radius: 2px 2px 2px 2px;
	box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.075) inset, 0 1px 0 rgba(255, 255, 255, 0.3) inset, 0 1px 2px rgba(0, 0, 0, 0.1);
	color: #5E5E5E;
	cursor: pointer;
	display: block;
	font-size: 12px;
	font-weight: bold;
	height: 15px;
	line-height: 13px;
	margin: 0;
	overflow: visible;
	padding: 0;
	position: absolute;
	text-align: center;
	text-decoration: none;
	text-shadow: 0 0 0 rgba(255, 255, 255, 0);
	vertical-align: text-top;
	width: 20px;
}

.woocommerce .quantity .plus,
.woocommerce .quantity .minus,
.woocommerce #content .quantity .plus,
.woocommerce #content .quantity .minus,
.woocommerce-page .quantity .plus,
.woocommerce-page .quantity .minus,
.woocommerce-page #content .quantity .plus,
.woocommerce-page #content .quantity .minus {
	height: 15px;
	line-height: 13px;
	width: 20px;
}

.woocommerce .quantity .plus:hover,
.woocommerce .quantity .minus:hover,
.woocommerce #content .quantity .plus:hover,
.woocommerce #content .quantity .minus:hover,
.woocommerce-page .quantity .plus:hover, .woocommerce-page .quantity .minus:hover, .woocommerce-page #content .quantity .plus:hover, .woocommerce-page #content .quantity .minus:hover {
	background: -moz-linear-gradient(center top , #F7F6F7 0%, #D3CED3 100%) repeat scroll 0 0 transparent;
	background: -webkit-linear-gradient( top , #F7F6F7 0%, #D3CED3 100%) repeat scroll 0 0 transparent;
}
.woocommerce .quantity .plus,
.woocommerce #content .quantity .plus,
.woocommerce-page .quantity .plus,
.woocommerce-page #content .quantity .plus {
	border-bottom: 0 none;
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
	right: 0;
	top: 0;
}
.woocommerce .quantity .minus, .woocommerce #content .quantity .minus, .woocommerce-page .quantity .minus, .woocommerce-page #content .quantity .minus {
	border-top-left-radius: 0;
	border-top-right-radius: 0;
	bottom: 0;
	right: 0;
}
@media (max-width: 768px) {
	.learnpress-feature-content .cart {
		width: 220px;
	}
	.woocommerce .quantity,
	.woocommerce #content .quantity,
	.woocommerce-page .quantity,
	.woocommerce-page #content .quantity {
		margin: 0 auto;
		overflow: hidden;
		position: relative;
		width: 100px;
		float: right;
		margin: 7px 0 0 0;
	}
	.woocommerce .quantity .plus,
	.woocommerce .quantity .minus,
	.woocommerce #content .quantity .plus,
	.woocommerce #content .quantity .minus,
	.woocommerce-page .quantity .plus,
	.woocommerce-page .quantity .minus,
	.woocommerce-page #content .quantity .plus,
	.woocommerce-page #content .quantity .minus {
		height: 28px;
		line-height: 26px;
		width: 30px;
	}
	.woocommerce .quantity .plus,
	.woocommerce #content .quantity .plus,
	.woocommerce-page .quantity .plus,
	.woocommerce-page #content .quantity .plus {
		right: 30px;
	}
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    /* display: none; <- Crashes Chrome on hover */
    -webkit-appearance: none;
    margin: 0; /* <-- Apparently some margin are still there even though it's hidden */
}
.sidebar-page .cart {
	margin-top: 20px;
}
.sidebar-page .buttons_added {
	display: none;
}
/* Hide the Continue Shopping button in the Cart */
.woocommerce-message {
	padding-bottom: 12px;
}
.woocommerce-cart .woocommerce-message a {
	display: none;
}
.update-cart-button {
	margin-left: 600px;
}
.checkout-button {
	float: right;
}
.woocommerce-cart .entry-content {
	width: 80%;
	margin: 0 auto;
}
.woocommerce-cart .coupon {
	display: none;
}
.woocommerce-cart .actions .button,
.woocommerce-cart .actions input[type="submit"] {
	background: #aaa;
	border-color: #999;
	padding: 8px 18px 7px;
	float: right;
}
.cart-collaterals h2,
.cart-collaterals table {
	display: none;
}
input#billing_email {
	margin-left: 20px;
	width: 300px;
}
.woocommerce-error, .woocommerce-invalid {
	background-color: #fffdf3;
	border: 1px solid #f2dfa4;
	padding: 20px;
}
/* Checkout page */
.woocommerce-checkout .entry-content {
	width: 80%;
	margin: 0 auto;
}
.woocommerce-checkout .woocommerce-info {
	background-color: #f9f9f9;
	padding: 8px;
	border: 1px solid #f1f1f1;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
}
.checkout_coupon {
	margin-top: 10px;
}
.checkout_coupon .form-row-first {
	width: 300px;
	float: left;
}
.checkout_coupon .form-row-first input {
	width: 95%;
	margin-top: 4px;
}
.checkout_coupon .form-row-last {
	float: left;
}
.woocommerce-checkout #customer_details, .woocommerce-checkout .woocommerce-shipping-fields {
	margin-top: 20px;
	padding-top: 10px;
	border-top: 1px solid #ededed;
	margin-top: 20px;
	overflow: hidden;
	clear: left;
}
.woocommerce-checkout .woocommerce-shipping-fields h3 {
	display: none;
}
.woocommerce #payment, .woocommerce-page #payment {
	background: #f7f6f7;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	padding: 1em;
}
ul.payment_methods  {
	text-align: left;
	padding: 1em;
	border-bottom: 1px solid #e0dadf;
	margin: 0 0 1.5em;
	list-style: none;
}
ul.payment_methods fieldset {
	border: none;
}
.woocommerce form .form-row input.input-text.wc-credit-card-form-card-number {
	width: 97%;
}
.payment_method_paypal img {
	width: 150px;
	margin-left: 20px;
}
.payment_method_stripe img {
	margin-left: 20px;
}
.woocommerce #payment div.payment_box, .woocommerce-page #payment div.payment_box {
	position: relative;
	width: 96%;
	padding: 1em 2%;
	margin: 1em 0;
	font-size: .92em;
	-webkit-border-radius: 2px;
	border-radius: 2px;
	line-height: 1.5em;
	background: #ebe8eb;
	background: -webkit-gradient(linear,left top,left bottom,from(#ebe8eb),to(#e0dadf));
	background: -webkit-linear-gradient(#ebe8eb,#e0dadf);
	background: -moz-linear-gradient(center top,#ebe8eb 0,#e0dadf 100%);
	background: -moz-gradient(center top,#ebe8eb 0,#e0dadf 100%);
	box-shadow: 0 1px 2px 0 rgba(0,0,0,.25);
	-webkit-box-shadow: 0 1px 2px 0 rgba(0,0,0,.25);
	color: #5e5e5e;
	text-shadow: 0 1px 0 rgba(255,255,255,.8);
}
.woocommerce form .form-row-first, .woocommerce form .form-row-last, .woocommerce-page form .form-row-first, .woocommerce-page form .form-row-last {
	float: left;
	width: 47%;
	overflow: visible;
	margin-right: 3%;
}
.woocommerce form .form-row input.input-text, .woocommerce form .form-row textarea, .woocommerce-page form .form-row input.input-text, .woocommerce-page form .form-row textarea {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	width: 100%;
	margin: 0;
	outline: 0;
	line-height: 1.5em;
	padding: 8px;
}
.about_paypal {
	margin-left: 20px;
}
.payment_method_stripe .form-row-wide label {
	display: block;
}
.demo-course {
	text-align: left;
}
.free-licence-email {
	width: 300px;
}
.woocommerce form .form-row input.input-text.wc-credit-card-form-card-cvc,
.woocommerce-page form .form-row input.input-text.wc-credit-card-form-card-cvc {
	width: 100% !important;
}
/*
 * Media elements
 * ==============
 */
.mejs-mediaelement,
.mejs-container .mejs-controls {
	background: #464646 !important;
}

.mejs-controls .mejs-time-rail .mejs-time-loaded,
.mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-current {
	background: #fff !important;
}

.mejs-controls .mejs-time-rail .mejs-time-current {
	background: #3498db !important;
}

.mejs-controls .mejs-time-rail .mejs-time-total,
.mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-total {
	background: #595959 !important;
}

.mejs-controls .mejs-time-rail span,
.mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-total,
.mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-current {
	border-radius: 0 !important;
}


/**
 * Alpha
 * =================
 */
body.page-template-page-alpha {
	background: #f9f9f9;
}
.page-template-page-alpha .header-contact-bar,
.page-template-page-alpha .site-header,
.page-template-page-alpha .site-footer {
	display: none;
}
.page-template-page-alpha .site-main {
	margin-top: 50px;
}
.page-template-page-alpha .entry-header {
	margin-top: 50px;
}

 
/**
 * Media Queries
 * =================
 */

@media (max-width: 1599px) {
}

@media (max-width: 1169px) {
	.flat-page-layout .site-main, .home-main {
		width: 1010px;
		padding: 10px;
	}
	.learnpress-feature-content {
		width: 980px;
		min-width: 0;
	}
	.learnpress-feature-content .left-side {
		width: 55%;
	}
	.learnpress-feature-content .right-side {
		width: 38%;
	}
	.logo-left .nav-menu li a, .logo-right .nav-menu li a {
		padding: 39px 15px 28px;
	}
	.update-cart-button {
		margin-left: 450px;
	}
}

@media (max-width: 999px) {
	.container,
	.flat-page-layout .site-main,
	.home-main {
		width: 95%;
	}
	.learnpress-feature-content {
		max-width: 95%;
	}
	.learnpress-feature-content .right-side {
		float: right;
		position: relative;
		top: auto;
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
	#learnpress-testimonials-slider .flexslider, #learnpress_homepage_slider .flexslider {
		padding: 20px 10px;
	}
	.woocommerce-cart .entry-content,
	.woocommerce-checkout .entry-content {
		width: 100%;
	}
	.woocommerce #payment,
	.woocommerce-page #payment {
		padding: 0;
	}
	.woocommerce #payment div.payment_box,
	.woocommerce-page #payment div.payment_box {
		padding: 1em 5px;
	}
	ul.payment_methods fieldset {
		padding: 0.5em 0;
	}
}

/* Collapse oversized image and pulled images after iPad breakpoint. */
@media (max-width: 992px) {
	.logo-left .site-title, .logo-right .site-title {
		max-width: 60%;
	}
	.logo-left .site-title img, .logo-right .site-title img {
		max-width: 100%;
	}
	.learnpress-feature-content {
		width: 95%;
	}
	.learnpress-key-message .secondary-message {
		line-height: 1.5 !important;
	}
	
	.learnpress-pricing-table, .learnpress-homepage-widget {
		width: 100% !important;
		margin-right: 0;
		float: none;
	}
	.flat-page-layout .site-main, .home-main {
		width: 100%;
	}
	.menu-toggle {
		display: block;
		position: absolute;
		top: 20px;
		right: 0;
		color: #fff;
		cursor: pointer;
	}
	#site-navigation .nav-menu {
		display: none;
	}
	#site-navigation .nav-menu.toggled-on {
		display: block;
	}
	.navbar {
		float: none;
	}
	.nav-menu li {
		display: block;
		float: none;
		width: 100%;
	}
	.logo-left .header-1 .main-navigation, .logo-right .header-1 .main-navigation {
		min-height: 0;
	}
	
	.logo-left .nav-menu li a, .logo-right .nav-menu li a {
		padding: 19px 15px 18px;
		height: auto;
	}
	.nav-menu li a {
		border-right: none;
		border-left: none;
		border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	}
	#learnpress-log-in {
		width: 95%;
	}
	input#billing_email {
		margin-left: 0;
		width: 100%;
	}
	.woocommerce form .form-row-first, .woocommerce form .form-row-last, .woocommerce-page form .form-row-first, .woocommerce-page form .form-row-last {
		float: none;
		width: 100%;
		margin-right: 0;
	}
	.woocommerce-cart td.product-thumbnail img {
		display: none;
	}
}

@media (max-width: 768px) {
	.learnpress-feature-content .left-side {
		width: 100%;
		float: none;
	}
	.learnpress-feature-content .right-side {
		width: 100%;
		float: none;
	}
}

/* Images on slideshow */
ul.slides {
	list-style: none;
	margin: 0;
	padding: 0;
}
ul.slides li {
	margin-bottom: 1.5em;
}
ul.slides li img {
	width: 100%;
}

/* Mobile devices */
@media (max-width: 379px) {
	#learnpress-feature-image {
		
	}
}

@keyframes fadein {
    from {
        opacity:0;
    }
    to {
        opacity:1;
    }
}
@-moz-keyframes fadein { /* Firefox */
    from {
        opacity:0;
    }
    to {
        opacity:1;
    }
}
@-webkit-keyframes fadein { /* Safari and Chrome */
    from {
        opacity:0;
    }
    to {
        opacity:1;
    }
}
@-o-keyframes fadein { /* Opera */
     from {
        opacity:0;
    }
    to {
        opacity:1;
    }
}​