/*
Theme Name:  Themedd - Child Theme
Theme URI:   https://themedd.com
Description: A child theme for Themedd
Author:      Easy Digital Downloads
Author URI:  https://easydigitaldownloads.com
Template:    themedd
Version:     1.0.5
License:     GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: themedd-child
*/

/**
 * Add your custom CSS styling below.
*/

body, h1, h2, h3, h4, h5, h6, p, a {
	font-family: 'Raleway', Verdana, sans-serif;
}

.full-width-content {
	min-width:60%;
}

/********************************/
/* My account menu (logged out) */
/********************************/

.sub-logged-out {
  display:block;
}

.sub-logged-in {
  display:none;
}

/*******************************/
/* My account menu (logged in) */
/*******************************/

body.logged-in .sub-logged-out {
  display:none;
}

body.logged-in .sub-logged-in {
  display:block;
}

/* Show/hide login box */

body.logged-in .my-account-page-login {
  display:none;
}

.register-page-login {
  display:none;
}

body.logged-in .register-page-login {
  display:block;
}

h1 {
	letter-spacing:-0.6px;
}

#masthead {
	background: -webkit-linear-gradient(10deg, #3c105d, #771787);
	background: -o-linear-gradient(10deg, #3c105d, #771787);
	background: linear-gradient(100deg, #3c105d, #771787);
}

article p {
	color:#444;
}

/* Page header */

.page-header {
	text-align:left;
	padding-top:4rem;
	padding-bottom:2rem;
}

.site-main {
	padding-top:0!important;
}

.entry-content a {
	display:inline-block;
	position:relative;
}

.entry-content a::after {
	content: "";
	height:1px;
	width:0;
	left:0;
	bottom:2px;
	position:absolute;
	display:block;
	background:#56146f;
	transition:			width 0.15s ease-in;
	-o-transition:		width 0.15s ease-in;
	-ms-transition:		width 0.15s ease-in;
	-moz-transition:	width 0.15s ease-in;
	-webkit-transition: width 0.15s ease-in;
}

.entry-content a:hover:after {
	width:100%;
}

.edd_downloads_list a {
	display:block;
}

.edd_downloads_list a::after {
	display:none;
}

.noScroll {
	overflow:hidden;
}

#page {
	max-width:none;
}

#custom-mobile-menu {
	display:none;
}

.site-title a {
	color:whitesmoke;
	letter-spacing: -1px;
}

.site-title a:hover {
	color:whitesmoke;
}

.site-branding > p,
.site-branding > a { 
	display:none; 
}

.site-branding .wpo-logo img { 
	height:30px;
}

#masthead .current-menu-item > a {
	border-bottom:1px solid whitesmoke;
	margin:1rem 1rem 0px 1rem;
	padding:0 0 6px 0;
}

#masthead .current-menu-item.menu-item-has-children > a {
	margin:1rem 2rem 0px 1rem;
	padding:0 0 6px 0;
}

#masthead .sub-menu .current-menu-item > a {
	border-bottom:none;
	padding: 0.375rem 1rem;
	margin:0;
}

#masthead .primary-menu > .menu-item:hover > a {
	border-bottom:1px solid #fff;
	margin:16px 16px 0px 16px;
	padding:0 0 6px 0;
}

#masthead .primary-menu > .menu-item-has-children:hover > a {
	border:none;
	padding-right:16px;
}

#masthead ul.sub-menu {
	box-shadow: 0 0 50px -40px #56146f;
}

#masthead ul.sub-menu li {
	padding:8px;
}

#masthead ul.sub-menu li a {
	color:#333;
}

#masthead ul.sub-menu li:hover {
	background-color:#239bb9;
}

#masthead ul.sub-menu li:hover > a {
	color:whitesmoke;
}

#masthead ul.sub-menu li:hover > a span {
	color:whitesmoke;
}

#masthead li.wpmenucart ul.sub-menu {
	right:0;
	left:auto;
	min-width:360px;
}

#masthead ul.sub-menu li:first-child {
	padding-top:4px;
}

#masthead ul.sub-menu li:last-child {
	padding-bottom:4px;
}

#masthead li.wpmenucart ul.sub-menu a {
	width:auto;
	padding:3px 16px;
	overflow:hidden;
	display:block;
}

.wpmenucart-thumbnail {
	width:50px;
	margin-right:15px;
	background-color:#eaeaea;
}

.wpmenucart-thumbnail img {
	width:100%!important;
	margin:0;
	padding:0;
}

.wpmenucart-order-item-info {
	width:80%;
}

.wpmenucart-product-name {
	white-space:normal!important;
	line-height:1.5em;
	font-size:0.9em;
	margin-bottom:4px;
}

.wpmenucart-product-quantity-price {
	font-size:0.85em;
	color:#444;
	font-family: sans-serif;
}

.stage__container {
	padding: 2rem;
	max-width: 1252px;
	margin: 0 auto;
	position: relative;
	z-index:1;
}

/* Custom mobile menu */

.custom-mobile-menu-open {
	display:none;
}

.mobile-menu-hamburger {
	display:block;
	color:whitesmoke;
	position:absolute;
	right:2rem;
	top:50%;
	padding:1em;
	-ms-transform: translate(0, -50%); /* IE 9 */
    -webkit-transform: translate(0, -50%); /* Safari */
    transform: translate(0, -50%);
}

.mobile-menu-hamburger::before {
	font-size:2em;
	position:absolute;
	right:0;
	top:50%;
	-ms-transform: translate(0, -50%); /* IE 9 */
    -webkit-transform: translate(0, -50%); /* Safari */
    transform: translate(0, -50%);
}

#custom-mobile-menu {
	padding:0;
	margin:0;
	z-index:99999;
	background-color:#fff;
	position: fixed;
	overflow-x: hidden;
	overflow-y: scroll;
	-webkit-overflow-scrolling: touch;
	top:0;
	bottom:0;
	right:0;	
	left:100%;
	display:block;
	transition:			left 0.4s ease-in-out;
	-o-transition:		left 0.4s ease-in-out;
	-ms-transition:		left 0.4s ease-in-out;
	-moz-transition:	left 0.4s ease-in-out;
	-webkit-transition: left 0.4s ease-in-out;
}

.custom-mobile-menu-close {
	width:100%;
	padding:50px;
	display:none;
	background: -webkit-linear-gradient(10deg, #3c105d, #771787);
	background: -o-linear-gradient(10deg, #3c105d, #771787);
	background: linear-gradient(100deg, #3c105d, #771787);
	color:whitesmoke;
	font-weight:bold;
	font-size:1.2em;
}

.mobile-menu-close {
	display:block;
	color:whitesmoke;
	float:right;
}

.mobile-menu-close::before {
	font-size:2em;
	display:block;
		height:30px;
	width:30px;
}

#custom-mobile-menu li {
	padding:15px 0;
	border-top:1px solid #eaeaea;
	width:100%;
}

#custom-mobile-menu li:last-child {
	padding-bottom:0;
}

#custom-mobile-menu li a {
	padding-left:2rem;
	color:#222;
	display:block;
	width:100%;
}

#custom-mobile-menu .sub-menu {
	margin-top:15px;
}

#custom-mobile-menu .sub-menu li {
	padding:12px;
	border-top:1px solid #eaeaea;
	font-size:0.75em;
	background-color:#fafafa
}

#custom-mobile-menu .sub-menu li:last-child {
	border-bottom:none;
}

#custom-mobile-menu li.wpmenucart .sub-menu li:last-child {
	border-bottom:none;
	background-color:#fff;
}

#custom-mobile-menu .menu-item-has-children {
	padding-bottom:0;
}

/* Home */

.home #page {
	overflow:hidden;
}

.home #primary {
	margin:0 -1rem!important;
}

.home #masthead {
	background:rgba(255,255,255,0.03);
}

#wpadminbar {
	background: #771787;
	background: -webkit-linear-gradient(10deg, #3c105d, #771787);
	background: -o-linear-gradient(10deg, #3c105d, #771787);
	background: linear-gradient(90deg, #3c105d, #771787);

}

#wpadminbar.mobile .quicklinks .hover .ab-icon:before,#wpadminbar.mobile .quicklinks .hover .ab-item:before,
#wpadminbar .quicklinks .ab-sub-wrapper .menupop.hover>a,#wpadminbar .quicklinks .menupop ul li a:focus,#wpadminbar .quicklinks .menupop ul li a:focus strong,#wpadminbar .quicklinks .menupop ul li a:hover,#wpadminbar .quicklinks .menupop ul li a:hover strong,#wpadminbar .quicklinks .menupop.hover ul li a:focus,#wpadminbar .quicklinks .menupop.hover ul li a:hover,#wpadminbar .quicklinks .menupop.hover ul li div[tabindex]:focus,#wpadminbar .quicklinks .menupop.hover ul li div[tabindex]:hover,#wpadminbar li #adminbarsearch.adminbar-focused:before,#wpadminbar li .ab-item:focus .ab-icon:before,#wpadminbar li .ab-item:focus:before,#wpadminbar li a:focus .ab-icon:before,#wpadminbar li.hover .ab-icon:before,#wpadminbar li.hover .ab-item:before,#wpadminbar li:hover #adminbarsearch:before,#wpadminbar li:hover .ab-icon:before,#wpadminbar li:hover .ab-item:before,#wpadminbar.nojs .quicklinks .menupop:hover ul li a:focus,#wpadminbar.nojs .quicklinks .menupop:hover ul li a:hover,
#wpadminbar .ab-top-menu>li.hover>.ab-item,#wpadminbar.nojq .quicklinks .ab-top-menu>li>.ab-item:focus,#wpadminbar:not(.mobile) .ab-top-menu>li:hover>.ab-item,#wpadminbar:not(.mobile) .ab-top-menu>li>.ab-item:focus,
#wpadminbar:not(.mobile)>#wp-toolbar a:focus span.ab-label,#wpadminbar:not(.mobile)>#wp-toolbar li:hover span.ab-label,#wpadminbar>#wp-toolbar li.hover span.ab-label {
    color: #df8fef;
}

.hero {
	background: #771787;
	background: -webkit-linear-gradient(10deg, #3c105d, #771787);
	background: -o-linear-gradient(10deg, #3c105d, #771787);
	background: linear-gradient(100deg, #3c105d, #771787);
	position:relative;
	display:block;
}

.hero .stage__container {
	position:relative;
	display:block;
	padding-bottom:100px;
	padding-top:50px;
}

.hero .stage__content {
	width: 30%;
	text-align: left;
	z-index:999;
	float:left;
}

.hero .stage__visual {
	width: 70%;
	float:right;
	margin-right:-2em;
}

.hero .stage__visual img {
	display:block;
	max-width: 100%;
	height: auto;
}

.hero .stage__container::before,.stage__container::after {
	content: " ";
	display: table;
}

.hero .stage__container::after {
	clear: both;
}

.hero .stage__title {
	color: #fff;
}

.hero .stage__subtitle {
	color: #cccccc;
	font-size:1.1em;
}
.hero .stage__subtitle strong {
	color: #ffffff;
}

.hero-break {
	position:absolute;
	bottom:-1px;
	left:0px;
	right:0px;
	overflow:hidden;
}

.hero-break img {
	max-width:101%;
	width:101%;
	margin:0 0 -1px -1px;
}

.hero .stage__button {
	display:inline-block;
	background:none;
	overflow:hidden;
	position:relative;
	border-width:3px;
	transition:			 0.1s ease-in;
	-o-transition:		 0.1s ease-in;
	-ms-transition:		 0.1s ease-in;
	-moz-transition:	 0.1s ease-in;
	-webkit-transition:  0.1s ease-in;
	box-shadow: 10px 10px #3c105d;
	z-index:1;
 }

 .hero .stage__button:hover {
	background:none;
	border-color:whitesmoke;
 }

.hero .stage__button:before {
	content: "";
	position: absolute;
	background: #239bb9;
	left: 0;
	top: 0;
	height:100%;
	width:0;
	z-index: -1;
	transition:			width 0.2s ease-in;
	-o-transition:		width 0.2s ease-in;
	-ms-transition:		width 0.2s ease-in;
	-moz-transition:	width 0.2s ease-in;
	-webkit-transition: width 0.2s ease-in;
}

.hero .stage__button:hover:before {
  width:100%;
}

.hero .stage__button:after {
  content: "";
  position: absolute;
  background: #1c6c8b;
  left: 0;
  top: 0;
  height:100%;
  width:100%;
  z-index: -2;
}

.home #main {
	padding-top:0px;
}

.home .home-title {
	padding-top:50px;
	padding-bottom:20px;
	text-align:left;
}

.home .home-title h1 {
	color:#56146f;
	display:inline-block;
	font-weight:700;
	font-size:2.6em;
}

/* Owl carousel */

.owl-stage {
	padding-left: 0 !important;
}
.owl-carousel::after {
	content: ' ';
	position: absolute;
	top: 0;
	right: -2px;
	width: 75px;
	height: 360px;
	background: -webkit-linear-gradient(90deg, rgba(255,255,255,0), rgba(255,255,255,255));
	background: -o-linear-gradient(90deg, rgba(255,255,255,0), rgba(255,255,255,255));
	background: linear-gradient(90deg, rgba(255,255,255,0), rgba(255,255,255,255));
}
.owl-carousel .owl-nav {
	font-size: 24pt;
	color: #56146f;
	text-align: right;
	margin-top: 10px;
}

.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev {
	border:2px solid #56146f!important;
	width: 50px;
	height: 50px;
}
.owl-carousel .owl-nav button.owl-prev {
	margin-right: 10px;
}
.owl-carousel .owl-nav button span {
	vertical-align: top;
	line-height: 19px;
}
.owl-carousel .owl-nav button:hover {
	color: white;
	background: #56146f;
}

.owl-carousel .owl-item > div {
	padding: 40px;
	box-shadow: 0px 0px 30px 10px #f5f5f5 inset;
	height: 360px;
	overflow: hidden;
}

.owl-carousel .owl-item img {
	width: 30%!important;
	float: right;
}

.owl-carousel .owl-item p {
	width: 65%;
}

.owl-carousel .owl-item img.carousel-mascot {
	width: 45%;
	position: absolute;
	right: 50px;
	z-index: -10;
}

.home .wpo-statistics {
	padding-top:20px;
	padding-bottom:0px;
	width:100%;
	z-index:999;
}

.home .wpo-statistic:first-child {
	border-left:2rem solid white;
	border-right:5px solid white;
}

.home .wpo-statistic:last-child {
	border-right:2rem solid white;
	border-left:5px solid white;
}

.home .wpo-statistic .statistic-card {
	background-color:#56146f;
	min-height:300px;
	text-align:center;
	box-shadow:-20px -20px 50px 10px #3c105d inset; 
}

.home .wpo-statistic .statistic-card h1 {
	color:whitesmoke;
	font-weight:300;
	font-size:2.4em;
	position:absolute;
	top:50%;
	left:50%;
	-ms-transform: translate(-50%, -50%); /* IE 9 */
    -webkit-transform: translate(-50%, -50%); /* Safari */
    transform: translate(-50%, -50%);
}

.home .wpo-statistic .statistic-card .trustpilot {
	width:60%;
	position:absolute;
	top:52%;
	left:50%;
	-ms-transform: translate(-50%, -50%); /* IE 9 */
    -webkit-transform: translate(-50%, -50%); /* Safari */
    transform: translate(-50%, -50%);
    color:whitesmoke;
}

.home .wpo-statistic .statistic-card .trustpilot-stars {
	margin:10px 0;
	width:50%;
}

.home .wpo-statistic .statistic-card .trustpilot p {
	font-family: 'Raleway', Verdana, sans-serif;
	padding-top:15px;
	font-size:1.2em;
	line-height: 1.4em;
}

.top-mascotte {
	width:180px;
	height:150px;
	position:absolute;
	top:-138px;
	left:20px;
	z-index:999;
}

.top-mascotte img {
	width:180px;
	height:150px;
}

.home article {
	margin:0;
	padding-right: 1rem;
	padding-left: 1rem;
}

.home .home-reviews .top-seller,
.home .home-reviews .entry-content > p {
	display:none;
}

.home .edd-review-body p {
	display:block;
}

.home .edd-review-body {
	width:calc(49.8% - 2rem);
	float:left;
	padding:20px;

	margin-bottom:2rem;
	box-sizing: border-box;
}	

.home .edd-review-body:nth-child(odd) {
	margin-left:2em;
}

.home .edd-review-body:nth-child(even) {
	margin-right:2rem;
}

.custom-footer {
	background: #535788;
	background: -webkit-linear-gradient(10deg, #3c105d, #771787);
	background: -o-linear-gradient(10deg, #3c105d, #771787);
	background: linear-gradient(100deg, #3c105d, #771787);
	position:relative;
	display:block;
	margin-top:200px;
}

.custom-footer a,
.custom-footer a:hover {
	color: rgb( 162, 162, 162);
}
.custom-footer .terms-conditions-privacy {
	font-size: 80%;
}

.footer-break {
	margin-top:-1px;
}

/* Plugins */

.edd-fes-vendor-page .edd_downloads_list {
	/*padding-top:6rem;*/
}
.plugins-spacer {
	height: 1rem;
}
.bundles-spacer {
	height: 4rem;
}

.edd-fes-vendor-page .edd_download {
	padding:1.5rem;
	flex-direction: column;
}

.edd-fes-vendor-page .edd_download_inner {
	padding:0;
	transition:			 0.15s ease-out;
	-o-transition:		 0.15s ease-out;
	-ms-transition:		 0.15s ease-out;
	-moz-transition:	 0.15s ease-out;
	-webkit-transition:  0.15s ease-out;
}

.edd-fes-vendor-page .edd_download_inner:hover {
	box-shadow: 0 0 50px -40px #444;
}

.edd-fes-vendor-page .edd_download_image {
	border-left:1px solid #eaeaea;
	border-right:1px solid #eaeaea;
	border-top:1px solid #eaeaea;
	margin-bottom:0;
	min-height:180px;
	background:#eaeaea;
	overflow:hidden;
}

.edd-fes-vendor-page .edd_download_image img {
	width:100%;
}

.edd-fes-vendor-page .edd_download_title {
	border-top:1px solid #eaeaea;
}

.edd-fes-vendor-page .edd_download_title,
.edd-fes-vendor-page .eddDownloadMeta,
.edd-fes-vendor-page .edd-reviews-rating,
.edd-fes-vendor-page .edd_download_excerpt {
	padding:24px;
	border-left:1px solid #eaeaea;
	border-right:1px solid #eaeaea;
	margin:0;
	background:#fff;
}

.edd-fes-vendor-page .eddDownloadMeta,
.edd-fes-vendor-page .edd-reviews-rating {
	border-bottom:1px solid #f4f4f4;
	padding:12px 24px;
}

.edd-fes-vendor-page .edd_download_title {
	border-bottom:1px solid #f4f4f4;
}

.edd-fes-vendor-page .edd_download_title a {
	color:#222;
	font-weight:700;
	font-size:0.8em;
	letter-spacing:-0.5px;
}

.edd-fes-vendor-page .edd_download_excerpt {
	padding-bottom:40px;
	font-family: sans-serif;
	color:#444;
	border-bottom:1px solid #f4f4f4;
}

.edd-fes-vendor-page .downloadFooter {
	padding:24px;
	border-left:1px solid #eaeaea;
	border-right:1px solid #eaeaea;
	border-bottom:1px solid #eaeaea;
	background:#fff;
	margin:0;
	color:#222;	
	font-family: sans-serif;
	box-shadow:0 10px 10px -12px #dadada inset;
	background:#fafafa;
	transition:			 0.15s ease-out;
	-o-transition:		 0.15s ease-out;
	-ms-transition:		 0.15s ease-out;
	-moz-transition:	 0.15s ease-out;
	-webkit-transition:  0.15s ease-out;
}

.edd-fes-vendor-page .edd_download_inner:hover > .downloadFooter {
	background:#fff;
	box-shadow:none;
}

.edd-fes-vendor-page .downloadFooter ul li {
	border-bottom:1px solid #eaeaea;
	padding-top:6px;
	padding-bottom:6px;
}

.edd-fes-vendor-page .downloadFooter ul li:last-child {
	border:none;
	padding-bottom:15px;
}

.edd-fes-vendor-page .edd_purchase_tax_rate {
	font-size:0.8em;
	color:#666;
}

.edd-fes-vendor-page .downloadFooter .edd_price {
	background:#239bb9;
	color:whitesmoke;
	padding:6px 10px;
	font-size:0.85em;
	display:none;
}

/* Sidebar */

.primary-sidebar {
	margin-right:2rem;
	background: #fcfcfc;
    border: 2px solid #f4f4f4;
}

/* Single download */

.single-download #primary {
	padding-right:4rem;
}

.single-download .page-header h1{
	display:none;
}

.single-download #main .page-header h1{
	display:block;
}

.single-download #main .page-header {
	padding-top:0;
	padding-left:0;
}

.single-download .site-main {
	padding-top:0!important;
}

.single-download .entry-content,
.single-download .comments-area {
	font-family: sans-serif;
	color:#333;
	width:100%;
	font-size:1rem;
	line-height:1.9rem;
}

.single-download .entry-content ul li {
	margin-bottom:6px;
}

.single-download .post-thumbnail {
	display:none;
}

.single-download .entry-content iframe {
	width:100%;
}

.single-download .primary-sidebar .widget_edd_product_details {
	background:white;
	border-bottom:1px solid #eaeaea;
	border-top:1px solid #eaeaea;
	padding:0!important;
	font-family: sans-serif;
}

.single-download .primary-sidebar .widget_edd_product_details h3 {
	display:none;
}

.single-download .primary-sidebar .widget_edd_product_details .edd_price_options ul {
	color:#222;
	padding-bottom:15px;
}

.single-download .primary-sidebar .widget_edd_product_details .edd_price_options ul li {
	border-bottom: 1px solid #eaeaea;
	padding-top: 6px;
	padding-bottom: 6px;
}

.single-download .primary-sidebar .widget_edd_product_details .edd_price_options ul li:last-child {
	border:none;
}

.single-download .primary-sidebar .widget_edd_product_details .edd_purchase_tax_rate {
	font-size: 0.8em;
	color: #666;
	padding-top:5px;
 }

.single-download .primary-sidebar .widget_edd_product_details h3 {
	padding:1.8rem 2rem;
	border-bottom:1px solid #eaeaea;
	margin:0;
	font-weight:300;
	font-size:2em;
}

.single-download .primary-sidebar .widget_edd_product_details span.edd_price {
	margin:2rem 10px 10px 2rem;
	color:whitesmoke;
	background: #239bb9;
	padding:6px 10px;
	font-size:0.85em;
	display:none;
}

.single-download .primary-sidebar .widget_edd_product_details form {
	padding:2rem;
	margin:0;
}

.single-download .primary-sidebar .textwidget div {
	padding:15px 15px 15px 20px!important;
	background-color:#fffae1!important;
	font-size:0.8em;
}

.single-download .primary-sidebar .widget_wpo_bundle_upsell_widget #bundle_container a {
	width:100%;
}

.edd_sl_changelog_widget {
	font-size:0.8em;
	font-family: sans-serif;
}

.edd_sl_changelog_widget p {
	margin-bottom:6px;
}

.edd_sl_changelog_widget ul {
	padding-bottom:20px;
	margin-bottom:20px;
	border-bottom:1px solid #f1f1f1;
	list-style:disc;
	margin-left:20px;
}

.edd_sl_changelog_widget ul:last-child {
	border:none;
}

.single-download .widget_edd_cart_widget {
	background:#fff;
	border-top:2px solid #f4f4f4;
}

.edd-reviews-area {
	padding-top:40px;
	margin-top:60px;
	border-top:2px solid #f4f4f4;
}

.edd_review {
	padding-top:40px;
	margin-top:60px;
	border-top:1px solid #f4f4f4;
}

.single-download .edd-reviews-not-allowed {
	margin:0;
}

.comments-area {
	margin-top:60px;
}

.comments-area ol {
	overflow:hidden;
	padding:0 2rem;
	background:#fcfcfc;
}

.comments-title {
	padding:2rem;
	font-size:1.4em;
	background:#fcfcfc;
	border-top:2px solid #f4f4f4;
	margin:0;
}

.comment {
	padding-bottom:0px;
	margin-bottom:0px;
	border-bottom:1px solid #f4f4f4;
}

.comment:last-child {
	border:none;
}

/* Bundle */

.edd-download-cat-bundles .edd_download_columns_3 {
	padding:3rem 0 0 1.5rem;
}

.edd-download-cat-bundles .edd_download_inner {
	border:1px solid #eaeaea;
	margin-right:2rem;
	margin-bottom:2rem;
	background:#fff;
	box-shadow: 0 0 50px -40px #666;
}

.edd-download-cat-bundles .edd_download {
	width:50%;
}

.edd-download-cat-bundles .edd_download .edd_download_image img {
	width:100%;
}

.edd-download-cat-bundles .edd_download .edd_download_title {
	border-bottom:1px solid #f4f4f4;
	padding:1rem 0;
	margin-bottom:1rem;
}

.edd-download-cat-bundles .edd_download .edd_download_excerpt {
	padding-bottom:1rem;
}

.edd-download-cat-bundles .edd_download .downloadFooter,
.edd-download-cat-bundles .edd_download .edd-reviews-rating,
.edd-download-cat-bundles .edd_download .eddDownloadMeta {
	display:none;
}

/* Checkout */

.edd-checkout main {
	margin-top:4rem;
}

#edd_sl_renewal_form,
#edd_purchase_form {
	max-width:60%;
}

#edd_purchase_form .edd-label {
	float:left;
}

#edd_purchase_form .edd-required-indicator {
	font-size:1rem!important;
}

#edd_purchase_form .edd-description {
	width:24px;
	height:24px;
	overflow:hidden;
	margin-left:10px;
	display:inline-block;
	float:left;
	transition:			width 0.15s ease-in;
	-o-transition:		width 0.15s ease-in;
	-ms-transition:		width 0.15s ease-in;
	-moz-transition:	width 0.15s ease-in;
	-webkit-transition: width 0.15s ease-in;
	font-size:0.75em;
	margin-top:3px;
}

#edd_register_account_fields label {
	display: inline-block;
    float: left;
}

#edd-card-address-2-wrap label,
#edd-card-address-2-wrap .edd-description {
	display:none !important;
}

#edd_purchase_form .show-info {
	width:auto!important;
	height:auto!important;
}

#edd_purchase_form .edd-description::before {
	content: "i";
	width:20px;
	height:20px;
	font-size:10px;
	padding:2px;
	font-weight:700;
	display:inline-block;
	line-height: 1.62;
	background:#cdcdcd;
	color:whitesmoke;
	text-align:center;
	border-radius:50%;
	margin-right:10px;
}

#edd_purchase_form .edd-description:hover::before {
	background:#666;
	cursor:pointer;
}

#edd_purchase_form .edd-description::after {
	content: "";
	clear:both;
}

#edd_purchase_form select {
	width:50%;
	margin-right:50%;
}

#edd_purchase_form #edd_cc_fields #edd-card-wrap label.edd-label {
	margin:0.7rem 0 0.5rem 1rem;
}

#edd_purchase_form #edd-stripe-card-errors p {
	color:#a94442;
}

#edd_purchase_form #card_exp_month,
#edd_purchase_form #card_exp_year {
	width:auto;
	margin-right:0;
}

#edd_purchase_form #card_exp_month {
	margin-left:15px;
}

#edd_vat_fields .edd-description {
	width:auto;
	padding:0;
	margin: 0 0 15px 0;
	clear:both;
}

#edd_vat_fields .edd-description::before {
	display:none;
}

#edd_vat_info_show {
	margin-bottom: 20px;
	padding: 2rem;
	border: 2px solid #f4f4f4;
	background: #fcfcfc;
	position: relative;
}

#vat_validate {
  margin:0px 10px 0 0;
}

#vat-number {
  margin-top:14px;
}

.vat_number_not_validated {
    margin: 10px 0 0 0;
}

.vat-validate,
.vat-reset,
.vat_number_validated,
.vat_number_not_validated {
	margin:15px 0 0 0!important;
	display:block;
	width:40%;
}

#vat_clear {
	margin-bottom:10px;
}

#edd_mailchimp {
	margin:30px 0 ;
}

#edd_mailchimp label {
	margin-left:10px;
}

#edd_final_total_wrap {
	border-top:2px solid #f4f4f4;
	padding-top:30px;
	margin-top:50px;
}

/* My account */

.page .entry-content table,
.page .entry-content table a,
.page .entry-content table input {
	font-family: sans-serif;
}

/* License Keys */

.edd_sl_license_row input {
	width: 100%;
}

span.edd-sl-active {
  background-color: #3c763d;
}
span.edd-sl-inactive {
  background-color: gray;
}
span.edd-sl-expired {
  background-color: #a94442;
}
span.edd-sl-active,
span.edd-sl-inactive,
span.edd-sl-expired {
	color:white;
	padding:4px 8px;
	border-radius:4px;
}

td.edd-sl-active,
td.edd-sl-inactive,
td.edd-sl-expired {
	font-weight: bold;
}

/* Contact form*/
div.wpcf7-mail-sent-ng,
div.wpcf7-aborted {
	background-color: #ffc2c2;
}

div.wpcf7-spam-blocked {
	background-color: #ffdb99;
}

div.wpcf7-validation-errors,
div.wpcf7-acceptance-missing {
	background-color: #fffbc2;
}

/* Checkout payment gateways */
.edd-gateway-option {
  display: block;
  vertical-align: middle;
}

#edd-payment-mode-wrap input{
    margin:0;padding:0;
    -webkit-appearance:none;
       -moz-appearance:none;
            appearance:none;
}

#edd-gateway-option-stripe input{background-image:url(images/gateways/creditcard.svg);}
#edd-gateway-option-paypalexpress input{background-image:url(images/gateways/paypal.svg);}
#edd-gateway-option-mollie_bancontact input{background-image:url(images/gateways/bancontact.svg);}
#edd-gateway-option-mollie_ideal input{background-image:url(images/gateways/ideal.svg);}
#edd-gateway-option-mollie_sofort input{background-image:url(images/gateways/sofort.svg);}
#edd-gateway-option-mollie_giropay input{background-image:url(images/gateways/giropay.svg);}
#edd-gateway-option-mollie_eps input{background-image:url(images/gateways/eps.svg);}
#edd-gateway-option-mollie_kbc input{background-image:url(images/gateways/kbc.svg);}
#edd-gateway-option-mollie_mybank input{background-image:url(images/gateways/mybank.svg);}
#edd-gateway-option-mollie_belfius input{background-image:url(images/gateways/belfius.svg);}
#edd-gateway-option-mollie_inghomepay input{background-image:url(images/gateways/inghomepay.svg);}

.edd-gateway-option input{
    cursor:hand;
    background-size:contain;
    background-repeat:no-repeat;
    display:inline-block;
    width:64px;height:50px;
    -webkit-transition: all 100ms ease-in;
       -moz-transition: all 100ms ease-in;
            transition: all 100ms ease-in;
    -webkit-filter: opacity(0.5);
       -moz-filter: opacity(0.5);
            filter:  opacity(0.5);
     border-radius: 10px
}
.edd-gateway-option input {
    margin-right: 10px !important;
}

.edd-gateway-option:hover input,
.edd-gateway-option input:checked {
  background-color: #56146f;
            border: 3px solid #56146f;
    -webkit-filter: none;
       -moz-filter: none;
            filter: none;
}

/* Smart Slider 3 */
.nextend-bullet-bar .n2-active {
	background-color: #239bb9 !important;
}