/*
Theme Name: GoGoD Theme
Author: Aaron Summers
Description: 
Version: 1.0.0
Text Domain: gogod
*/

/* ANCHOR Defaults */
strong {
	font-weight: 700;
}
html {
	/* 1rem = 1rem */
	font-size: 62.5%;
}

body {
	font-size: 1.6rem;
	line-height: 1.8;
	margin: 0;
	overflow-x:hidden;
}

*,
*:before,
*:after {
	box-sizing: border-box;
}

a {
	color: rgb(36, 119, 208);
}

h2 {
	font-size: 2.9rem;
	margin-top: 5rem;
}

h1,
h2,
h3,
h4,
h5,
h6,
.railway,
.button,
.edd-submit,
.pricing-item,
.book-details table tr:first-child td span {
	font-family: 'Ruda', sans-serif;
	font-weight: 300;
}

.blog {
	font-family: 'Roboto Slab', serif;
}

@font-face {
	font-family: "gogod-icons";
src: url('/wp-content/themes/gogod/assets/fonts/icons/gogod.woff2') format("woff2"),
	url('/wp-content/themes/gogod/assets/fonts/icons/gogod.woff') format("woff"),
	/* WOFF tried second */
	url('/wp-content/themes/gogod/assets/fonts/icons/gogod.ttf') format("opentype");
/* TTF tried if others not supported. */
font-weight: normal;
font-style: normal;
}

[class^="gogod-"]:before,
[class*=" gogod-"]:before {
	font-family: "gogod-icons";
	font-style: normal;
	font-weight: normal;
	display: inline-block;
	text-decoration: inherit;
	width: 1em;
	margin-right: .2em;
	text-align: center;
	font-variant: normal;
	text-transform: none;
	line-height: 1em;
	margin-left: .2em;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.gogod-price:before {
	content: '\e800';
}

.gogod-author:before {
	content: '\e801';
}

.gogod-close:before {
	content: '\e802';
}

.gogod-date:before {
	content: '\e803';
}

.gogod-type:before {
	content: '\e804';
}

.gogod-publisher:before {
	content: '\e805';
}

.gogod-right:before {
	content: '\f006';
}

.gogod-arrow-left:before {
	content: '\f0a8';
}

.gogod-arrow-right:before {
	content: '\f0a9';
}

.gogod-ok:before {
	content: '\e806';
}

/* ANCHOR shared styles */

.underline {
	display: inline-block;
	position: relative;
}

.underline:after {
	content: "";
	position: absolute;
	left: 0;
	width: 100%;
	bottom: -.3rem;
	border-bottom: solid 1px #000;
}

.edd-submit,
.button {
	font-size: 1.6rem;
	display: inline-block;
	padding: .4rem 1.2rem;
	border-radius: 1.8rem;
	text-decoration: none;
	cursor: pointer;
}

.wrapper {
	max-width: 96rem;
	margin-left: auto;
	margin-right: auto;
	padding: 0 1rem;
}

.text-center {
	text-align: center;
}

.screenreader {
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	width: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
}

.top-spacing {
	margin-top: 3rem;
}

/* ANCHOR flex */

.flex {
	display: flex;
}

.flex-column {
	flex-direction: column;
}

.flex-row {
	flex-flow: row wrap;
}

.flex-flow-row {
	flex-flow: row wrap;
}

.flex-grow {
	flex-grow: 1;
}

.flex-shrink {
	flex-shrink: 1;
}

.flex-horizontal-center {
	justify-content: center;
}

/* ANCHOR Header */
.gogod-header {
	background: #111;
}

.site-logo img {
	display: block;
	max-width: 136px;
	height: auto;
}

.gogod-header a {
	color: #fff;
}

.gogod-header ul {
	position: relative;
	list-style: none;
	margin-top: 0;
	margin-bottom: 0;
	width: 100%;
	padding-left: 1.5rem;
}

.gogod-header li a {
	padding: 1rem;
	display: block;
	text-decoration: none;
	position: relative;
}

.gogod-header li:before {
	content: "";
	position: absolute;
	width: 100%;
	height: 0;
	bottom: 0;
	background-color: rgb(36, 119, 208);
	transition: height ease-in-out .15s;
}

.gogod-header li.current-menu-item:before,
.gogod-header li:hover:before {
	height: 100%;
}

.gogod-header li {
	margin-right: .8rem;
	position: relative;
}
@media (min-width: 728px) {
	.gogod-header li.purchase-history {
		position: absolute;
		right: 0;
		margin-right: 0;
	}
}

.gogod-header li.purchase-history {
	background-color: rgb(36, 119, 208);
}

.gogod-header li.purchase-history:before {
	background-color: rgb(30, 103, 181);
}

.gogod-menu {
	width: 100%;
	position: relative;
}
.gogod-menu.active {
	position: fixed;
	left: 0;
	top: 0;
	height: 100%;
	background: rgba(0,0,0,.9);
	z-index: 9999;
	padding-top: 5rem;
}


.gogod-menu.active ul {
	display: flex;
	flex-direction: column;
  }

.hamburger {
	display: none;
	width: 45px;
	height: 45px;
	position: absolute;
	transform: rotate(0deg);
	transition: .5s ease-in-out;
	cursor: pointer;
	background: none;
	border: 0;
	top: 3px;
	right: 5px;
}
@media (max-width: 728px) {
	.hamburger {
		display: block;
	}
	.gogod-menu ul {
		display: none;
	}
}
.hamburger span {
	display: block;
	position: absolute;
	height: 4px;
	width: 100%;
	background: #fff;
	border-radius: 9px;
	opacity: 1;
	left: 0;
	transform: rotate(0deg);
	transition: .25s ease-in-out;
  }

.hamburger span:nth-child(1) {
	top: 8px;
  }
  
  .hamburger span:nth-child(2),.hamburger span:nth-child(3) {
	top: 50%;
	margin-top: -4px;
  }
  
  .hamburger span:nth-child(4) {
	top: 29px;
  }
  
  .hamburger.open span:nth-child(1) {
	top: 18px;
	width: 0%;
	left: 50%;
  }
  
  .hamburger.open span:nth-child(2) {
	transform: rotate(45deg);
  }
  
  .hamburger.open span:nth-child(3) {
	transform: rotate(-45deg);
  }
  
  .hamburger.open span:nth-child(4) {
	top: 18px;
	width: 0%;
	left: 50%;
  }
/* ANCHOR About */

.about-content {
	max-height: 23em;
	overflow: hidden;
}

.about-column {
	margin-bottom: 6rem;
}

#about-gogod {
	margin-top: 9rem;
}

/* ANCHOR Books */

.author {
	color: #858585;
	font-size: 90%;
}

@media (min-width: 600px) {
	.book-container {
		padding: 0 3rem;
	}
}


.book-image {
	box-shadow: 0 0 13px rgba(0, 0, 0, .3);
	margin-top: 2.6rem;
}

.book-image img {
	max-width: 100%;
	display: block;
	height: auto;
}

.book-column {
	width: 100%;
}



.book-column:last-child {
	padding: 0 3%;
}

.book-link,
.pricing-action,
.edd-submit {
	background: #d11818;
	color: #fff;
	border: 0;
}

.book-link~.book-link {
	margin-top: .8rem;
}

.book-details table tr:first-child td i {
	font-size: 1.8rem;
}

.book-details table tr:first-child td span {
	color: #999;
}

.book-details table td {
	vertical-align: top;
	white-space: nowrap;
	padding-right: .8rem;
}

.book-details table tr td {
	font-size: 1.4rem;
	font-weight: 700;
}

.book-details table {
	table-layout: fixed;
}

.book-description .book-title h2 {
	font-size: 2.4rem;
	margin-bottom: 0;
	line-height: 1.2;
	width: 100%;
}

.book-description .book-title p {
	margin-top: .6rem;
}

.book-description h2,
.book-description h3 {
	font-size: 2rem;
}

.h5 {
	font-size: 1.3rem;
	white-space: nowrap;
	margin-bottom: 0;
}

.book-links {
	margin: 1.2rem 0;
}

.product-details {
	white-space: nowrap;
}

.book-details {
	overflow-x: auto;
	margin-top: 2.8rem;
}
@media (max-width: 600px) {
	.product-details {
		flex-wrap: wrap;
	}
	.product-details table {
		flex: 1 1 45%;
	}
	.product-details,
	.book-details table td {
		white-space: wrap;
	}
}
.product-details table {
	margin-right: 1rem;
}

#books .title-header {
	margin-bottom: 0;
}

/* ANCHOR Books Homepage */
@media (min-width: 425px ) and (max-width: 600px) {
	.home .book-image {
		max-width: 200px;
	}
}
@media (max-width: 601px) {
	.home .book-description .book-title h2 {
		margin-top: 1rem
	}
	.home .book-image img {
		width: 100%;
	}
}
.home .book {
	position: relative;
	padding: 0 8px 5%;
}

.home .book {
	width: 100%;
}
@media(min-width: 600px) {
	.home .book {
		padding: 0 5% 5% 5%;
	}
	.home .book-title {
		min-height: 10em;
	}
	.home .book {
		width: 60rem;
	}
	.home .book-column:first-child {
		max-width: 17.4rem;
	}
	
	.home .book-column:last-child {
		width: calc(100% - 18rem);
		padding-left: 3%;
	}
}
.view-description.homepage {
	border: solid 1px #000;
	border-radius: 12px;
	background: #fff;
	padding: 4px 8px;
}

.books-carousel>.slick-list>.slick-track>.slick-slide {
	opacity: 0.4;
	transition: opacity .3s ease-in-out;
	pointer-events: none;
}

.books-carousel>.slick-list>.slick-track>.slick-slide.slick-current,
.books-carousel>.slick-list>.slick-track>.slick-slide.slick-active {
	opacity: 1;
	pointer-events: initial;
}

.home .book-container .book-description-inner .underline {
	border-bottom: 1px solid #fff;
}

/* ANCHOR Book desciptions popup - homepage */

.home .book-container .book-description-inner {
	display: none;
	padding: 5%;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: rgba(0, 0, 0, .85);
	color: #fff;
	position: absolute;
}

button.close {
	position: absolute;
	top: .5rem;
	right: .9rem;
	color: #fff;
	background: #666;
	border-radius: .5rem;
	border: 0;
	font-size: 1.4rem;
	cursor: pointer;
}

.book-description-scroll {
	overflow-y: auto;
	height: 100%;
}

.home .book-description-scroll h2 {
	margin-top: 0;
}
/* ANCHOR Books archive */

.archive .book-description .book-title h2 {
	margin-top: 2.1rem;
}
.archive .book-column.image-column {
	display: none;
}
.archive .book-description h2 {
	margin: 1rem 0;
}
@media (min-width: 720px) {
	.archive .book-column.image-column {
		display: block;
	}
	.archive .book-column:first-child {
		max-width: 17.4rem;
	}
	
	.archive .book-column:last-child {
		width: calc(100% - 18rem);
		padding-left: 3%;
	}
}

/* ANCHOR Books gridder */

.gridder {
	margin: 0px;
	padding: 0px;
	list-style-type: none;
	font-size: 0;
}

.gridder .gridder-list {
	display: inline-block;
	cursor: pointer;
	position: relative;
	margin: 0 .5rem 1rem;
	background: #333;
	width: calc(50% - 1rem);
}
.gridder .gridder-list .book-image-wrapper {
	height: 0;
	overflow: hidden;
	padding-bottom: 128.8%;
}
@media (min-width: 420px) {
	.gridder .gridder-list {
		width: calc(33.3% - 1rem);
	}
	.gridder .gridder-list .book-image-wrapper {
		padding-bottom: 129.1%;
	}
}
@media (min-width: 600px) {
	.gridder .gridder-list {
		width: calc(25% - 1rem);
	}
	.gridder .gridder-list .book-image-wrapper {
		padding-bottom: 129.2%;
	}
}
@media (min-width: 800px) {
	.gridder .gridder-list {
		width: calc(20% - 1rem);
	}
	.gridder .gridder-list .book-image-wrapper {
		padding-bottom: 129.5%;
	}
}


.gridder .gridder-list img {
	width: 100%;
}


.gridder .overlay {
	position: absolute;
	left: 10%;
	top: 10%;
	color: #FFF;
	line-height: 130%;
	text-align: left;
}

.gridder .overlay .title {
	font-weight: 800;
	font-size: 16px;
	color: #FFF;
}

.gridder .overlay .description {
	font-weight: 300;
	font-size: 14px;
	color: #FFF;
}

.gridder .gridder-list,
.gridder .gridder-show {
	font-size: 12px;
}

.gridder .selectedItem:after {
	content: ' ';
	display: block;
	border-bottom: 10px solid #222;
	border-left: 10px solid transparent;
	border-right: 10px solid transparent;
	height: 0%;
	position: absolute;
	top: 101%;
	width: 0;
	left: 43%;
	margin-bottom: -4px;
}

.gridder.hasSelectedItem .gridder-list:not(.selectedItem) {
	opacity: .2;
}

.gridder-show {
	padding: 4%;
	background: #222;
	position: relative;
	display: block;
	float: left;
	width: 100%;
	margin-bottom: 0.5%;
	text-align: left;
	color: #CCC;
}

.gridder-show img {
	width: 100%;
	box-shadow: 0px 0px 20px 5px rgba(0, 0, 0, 0.2);
}

.gridder-content {
	display: none;
}

.gridder-navigation .gridder-nav {
	height: 77px;
	padding: 0;
	position: absolute;
	width: 32px;
	z-index: 1;
	background-color: #454545;
	background-image: linear-gradient(top, #3e3e3e, #333);
	border: 1px solid #141414;
	border-radius: 2px;
	box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06), 1px 1px 0 rgba(255, 255, 255, 0.03), -1px -1px 0 rgba(0, 0, 0, 0.02), inset 1px 1px 0 rgba(255, 255, 255, 0.05);
	color: #aaa !important;
	cursor: pointer !important;
	display: inline-block;
	font-size: 11px;
	font-weight: bold;
	margin: 0 5px;
	outline: 0;
	text-align: center;
	text-decoration: none !important;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.5);
	-webkit-user-select: none;
	user-select: none;
	vertical-align: middle;
	white-space: normal;
	word-wrap: normal;
	top: 50%;
	margin-top: -40px;
	overflow: hidden;
}

.gridder-navigation .gridder-nav span {
	display: block;
	bottom: 0;
	height: 23px;
	left: 0;
	margin: auto;
	position: absolute;
	right: 0;
	top: 0;
	width: 14px;
}

.gridder-navigation .gridder-nav.prev {
	left: -6px;
}

.gridder-navigation .gridder-nav.prev span {
	background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA4AAAAXBAMAAADJv2OxAAAAMFBMVEX///+ZmZmZmZmZmZmZmZmZmZmZmZmZmZmZmZmZmZmZmZmZmZmZmZmZmZmZmZmZmZnHHh8xAAAAD3RSTlMAESIzRFVmd4iZqrvM3e5GKvWZAAAAdElEQVQI12NgAAH2v2CKsf83mJb8vxBEMe3/KQCitf83gLn3n4Flff8FgCjW90/A3Pw/BiBK4v0lMHf+bwUw/R/CZVj/SwBq5kaIQD1UAfv7yxCBuH8OYJrl/VWIgM3/AjDNdP45REDq/0SI+9b/gghw/AUAn68l+4HFkZUAAAAASUVORK5CYII=) center no-repeat;
}

.gridder-navigation .gridder-nav.next {
	right: -6px;
	-webkit-transform: scaleX(-1);
	transform: scaleX(-1);
}

.gridder-navigation .gridder-nav.next span {
	background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA4AAAAXBAMAAADJv2OxAAAAMFBMVEX///+ZmZmZmZmZmZmZmZmZmZmZmZmZmZmZmZmZmZmZmZmZmZmZmZmZmZmZmZmZmZnHHh8xAAAAD3RSTlMAESIzRFVmd4iZqrvM3e5GKvWZAAAAdElEQVQI12NgAAH2v2CKsf83mJb8vxBEMe3/KQCitf83gLn3n4Flff8FgCjW90/A3Pw/BiBK4v0lMHf+bwUw/R/CZVj/SwBq5kaIQD1UAfv7yxCBuH8OYJrl/VWIgM3/AjDNdP45REDq/0SI+9b/gghw/AUAn68l+4HFkZUAAAAASUVORK5CYII=) center no-repeat;
}

.gridder-navigation .gridder-nav:hover {
	background: #3d3d3d;
}

.gridder-navigation .gridder-close {
	background: url(data:image/gif;base64,R0lGODlhFAAUAJEAAE1NTf///////wAAACH5BAEHAAIALAAAAAAUABQAAAIzBISpK+YMm5Enpodw1HlCfnkKOIqU1VXk55goVb2hi7Y0q95lfG70uurNaqLgTviyyUoFADs=) no-repeat center center;
	cursor: pointer;
	height: 30px;
	padding: 7px;
	position: absolute;
	right: 10px;
	top: 10px;
	width: 30px;
	z-index: 2;
}

.gridder-navigation .gridder-close:hover {
	color: #3d3d3d;
}

/* ANCHOR slick */

#books .slick-dots li button::before {
	font-size: 17px;
}

#books .slick-prev {
	left: 0;
}

#books .slick-next {
	right: 0;
}

#books .slick-prev::before,
#books .slick-next::before {
	font-size: 30px;
	opacity: .75;
	color: #111;
}

#books .slick-arrow {
	z-index: 5;
}

#books .slick-dots li {
	background-color: #ddd;
	border-radius: 50%;
	width: 26px;
	height: 26px;
}

.slick-dots a {
	line-height: 26px;
	color: #111;
	transition: all ease-in-out .3s;
}

#books .slick-dots li:hover,
#books .slick-dots .slick-active {
	background-color: black;
	color: #fff;
	line-height: 1.2;
	border-radius: 50%;
}

#books .slick-dots li:hover a,
#books .slick-dots .slick-active a {
	color: #fff;
	font-family: Arial;
	font-weight: 700;
}

.slider-controls {
	position: relative;
	display: flex;
	width: 300px;
	margin: 0 auto 4rem;
	justify-content: space-between;
}

ul.slick-dots {
	bottom: 0;
	top: 0;
	left: 0;
}

.slide-m-dots {
	height: 30px;
}

/* ANCHOR hero */

.gogod-hero.responsive_bg {
	background-size: cover;
	background-repeat: no-repeat;
	background-position: 50% 50%;
}

.gogod-hero {
	min-height: 30rem;
	padding: 3% 2rem;
}

.hero-inner {
	background: rgba(255, 255, 255, .85);
	margin: auto;
	max-width: 66rem;
	padding: 1% 3%;
}

.hero-inner .column {
	padding: 1.3%;
	text-align: center;
}

.title-header {
	margin: 2em 0;
}

.hero-inner {
	line-height: 1.4;
	font-size: 1.8rem;
}

.hero-inner p {
	margin: 0 0 0.4em;
	line-height: 1.4;
	font-size: 1.8rem;
}


/* ANCHOR products */

section#pricing {
	background: #eee;
	color: #7a90ff;
	padding: 2em 0;
	position: relative;
	-webkit-font-smoothing: antialiased;
}

.pricing {
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-justify-content: center;
	justify-content: center;
	width: 100%;
	margin: 3rem auto;
}

.pricing-item {
	position: relative;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-direction: column;
	flex-direction: column;
	-webkit-align-items: stretch;
	align-items: stretch;
	text-align: center;
	-webkit-flex: 0 1 330px;
	flex: 0 1 330px;
}

.pricing-action {
	color: inherit;
}

.pricing-action:focus {
	outline: none;
}

.pricing-feature-list {
	text-align: left;
}

.pricing-palden .pricing-item {
	font-family: 'Andada Pro', serif;
	cursor: default;
	color: #84697c;
	background: #fff;
	box-shadow: 0 0 10px rgba(46, 59, 125, 0.23);
	border-radius: 20px 20px 10px 10px;
	margin: 1em;
}

@media screen and (min-width: 66.25em) {
	.pricing-palden .pricing-item {
		margin: 1em -0.5em;
	}

	.pricing-palden .pricing__item--featured {
		margin: 0;
		z-index: 10;
		box-shadow: 0 0 20px rgba(71, 71, 71, 0.781);
	}
}

.pricing-palden .pricing__item--featured:before {
	content: "BUNDLE";
	position: absolute;
	left: 50%;
	top: 0;
	display: inline-block;
	transform: translate(-50%, -50%);
	background: #fff;
	padding: .1rem .5rem;
	z-index: 2;
}

.pricing-palden .pricing-deco {
	background: rgba(000, 000, 000, 0.8);
	padding: 3em 0;
	position: relative;
}

.pricing-palden .pricing-title {
	font-size: 0.75em;
	margin: 0;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: #fff;
}

.pricing-palden .deco-layer {
	-webkit-transition: -webkit-transform 0.5s;
	transition: transform 0.5s;
}

.pricing-palden .pricing-item:hover .deco-layer--1 {
	-webkit-transform: translate3d(15px, 0, 0);
	transform: translate3d(15px, 0, 0);
}

.pricing-palden .pricing-item:hover .deco-layer--2 {
	-webkit-transform: translate3d(-15px, 0, 0);
	transform: translate3d(-15px, 0, 0);
}

.pricing-palden .icon {
	font-size: 2.5em;
}

.pricing-palden .pricing-price {
	font-size: 5em;
	font-weight: bold;
	padding: 0;
	color: #fff;
	margin: 0 0 0.25em 0;
	line-height: 0.75;
}

.pricing-palden .pricing-currency {
	font-size: 0.15em;
	vertical-align: top;
}

.pricing-palden .pricing-period {
	font-size: 0.5em;
	padding: 0 0 0 0.5em;
	font-style: italic;
}

.pricing-palden .pricing__sentence {
	font-weight: bold;
	margin: 0 0 1em 0;
	padding: 0 0 0.5em;
}

ul.feature-list,
.pricing-palden .pricing-feature-list {
	margin: 0;
	padding: 0.25em 1em 2.5em 1.6em;
	list-style: none;
}

li.ticks,
.pricing-palden .pricing-feature-list li {
	position: relative;
	padding: .3em 1.275em;
}

li.ticks:before,
.pricing-palden .pricing-feature-list li::before {
	font-family: 'gogod-icons';
	content: '\e806';
	position: absolute;
	left: 0;
	font-size: 1rem;
	transform: translateY(0.4rem);
	color: rgb(36, 119, 208);
}

.pricing-palden .pricing-action {
	color: #fff;
	margin: auto 3em 2em 3em;
	-webkit-transition: background-color 0.3s;
	transition: background-color 0.3s;
}

.pricing-palden .pricing-item--featured .pricing-deco {
	padding: 5em 0 8.885em 0;
}

.button.unavailable {
	background: #ddd;
	cursor: not-allowed;
}

.slick-total {
	margin-top: -30px;
	margin-left: auto;
	margin-right: auto;
}

button {
	cursor: pointer;
}

/* ANCHOR about section */
.ticks.columns {
	column-count: 2;
	column-gap: 4rem;
	padding: 0 2rem;
}

/* ANCHOR FAQ */
#faqs .details {
	display: none;
}

#faqs .open+.details {
	display: block;
}

#faqs dt {
	padding: 1.5rem 2rem 0rem;
	position: relative;
}

#faqs dt:before {
	content: '\f006';
	font-family: 'gogod-icons';
	position: absolute;
	left: 0;
	color: rgb(36, 119, 208);
	transition: transform .2s ease-in-out;
}

#faqs dt.open::before {
	transform: rotate(90deg);
}

#popup {
	display: none;
	position: fixed;
	height: 100%;
	width: 100%;
	background: rgba(0, 0, 0, .75);
	top: 0;
	left: 0;
	z-index: 999999;
}

#popup .wrapper {
	background: #fff;
	padding: 2rem;
	position: absolute;
	top: 50%;
	width: 100%;
	max-height: 768px;
	left: 50%;
	transform: translate(-50%, -50%);
}

.popup-overflow {
	overflow: auto;
	max-height: calc(768px - 50px);
	margin-top: 10px;
}

#popup h2 {
	margin: 0;
}

.all {
	padding: 0 2rem 3rem;
}

ul.feature-list {
	padding-bottom: 0;
}

.blog-footer {
	margin-top: 8rem;
	background: #111;
	padding: 30px 0 20px;
}
.blog-footer a {
	color: #fff;
	text-decoration: none;
	padding: 1rem 2rem;
	display: block;
}
.blog-footer ul {
	justify-content: space-around;
	padding: 0;
	flex-flow: row wrap;
}
.copyright {
	text-align: center;
	color: #fff;
	padding: 60px 0 0;
}
.wp-block-image {
	background: #eee;
	text-align: center;
}

figcaption {
	padding: 0.9rem;
	margin: 0 !important;
	font-style: italic;
	font-size: 1.2rem;
}

img {
	display: block;
	max-width: 100%;
	height: auto;
}

.page-template-default .gogod-hero {
	margin-bottom: 3rem;
}




.edd-page table, .page-purchase-history table { border: 1px solid #aaa; table-layout: unset; width: 100%; }
.edd-page table tfoot, .page-purchase-history table tfoot { background: #eee; min-height: 100px; }
.edd-page table th, .page-purchase-history table th { border-bottom: 1px solid #aaa; font-weight: 700; text-transform: uppercase; }
.edd-page table tfoot th, .page-purchase-history table tfoot th { border-bottom: none; }
.edd-page table th, .edd-page table td, .page-purchase-history table th, .page-purchase-history table td { border-right: 1px solid #aaa; }
.edd-page table th:last-child, .edd-page table td:last-child, .page-purchase-history table th:last-child, .page-purchase-history table td:last-child { border-right: none; }
.edd-page table tbody, .page-purchase-history table tbody { border-collapse: inherit; padding: 1em; }
.edd-page .edd_download_file, .edd-page .edd_cart_amount, .edd-page .edd_checkout_cart_item_title, .page-purchase-history .edd_download_file, .page-purchase-history .edd_cart_amount, .page-purchase-history .edd_checkout_cart_item_title { display: inline-block; margin: 1em 0; }
.edd-page #edd_checkout_form_wrap, .page-purchase-history #edd_checkout_form_wrap { margin: 3em 0; }
.edd-page #edd_purchase_form fieldset#edd_checkout_user_info, .edd-page #edd_purchase_form fieldset#edd_register_account_fields, .edd-page #edd_purchase_form fieldset#edd_login_fields, .edd-page #edd_checkout_login_register fieldset#edd_checkout_user_info, .edd-page #edd_checkout_login_register fieldset#edd_register_account_fields, .edd-page #edd_checkout_login_register fieldset#edd_login_fields, .edd-page #edd_login_form fieldset#edd_checkout_user_info, .edd-page #edd_login_form fieldset#edd_register_account_fields, .edd-page #edd_login_form fieldset#edd_login_fields, .page-purchase-history #edd_purchase_form fieldset#edd_checkout_user_info, .page-purchase-history #edd_purchase_form fieldset#edd_register_account_fields, .page-purchase-history #edd_purchase_form fieldset#edd_login_fields, .page-purchase-history #edd_checkout_login_register fieldset#edd_checkout_user_info, .page-purchase-history #edd_checkout_login_register fieldset#edd_register_account_fields, .page-purchase-history #edd_checkout_login_register fieldset#edd_login_fields, .page-purchase-history #edd_login_form fieldset#edd_checkout_user_info, .page-purchase-history #edd_login_form fieldset#edd_register_account_fields, .page-purchase-history #edd_login_form fieldset#edd_login_fields { -webkit-align-content: center; -ms-flex-line-pack: center; align-content: center; border-bottom: 1px solid #aaa; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-flex-wrap: wrap; -ms-flex-wrap: wrap; flex-wrap: wrap; -webkit-box-pack: justify; -webkit-justify-content: space-between; -ms-flex-pack: justify; justify-content: space-between; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; text-align: left; }
.edd-page #edd_purchase_form fieldset#edd_checkout_user_info p, .edd-page #edd_purchase_form fieldset#edd_register_account_fields p, .edd-page #edd_purchase_form fieldset#edd_login_fields p, .edd-page #edd_checkout_login_register fieldset#edd_checkout_user_info p, .edd-page #edd_checkout_login_register fieldset#edd_register_account_fields p, .edd-page #edd_checkout_login_register fieldset#edd_login_fields p, .edd-page #edd_login_form fieldset#edd_checkout_user_info p, .edd-page #edd_login_form fieldset#edd_register_account_fields p, .edd-page #edd_login_form fieldset#edd_login_fields p, .page-purchase-history #edd_purchase_form fieldset#edd_checkout_user_info p, .page-purchase-history #edd_purchase_form fieldset#edd_register_account_fields p, .page-purchase-history #edd_purchase_form fieldset#edd_login_fields p, .page-purchase-history #edd_checkout_login_register fieldset#edd_checkout_user_info p, .page-purchase-history #edd_checkout_login_register fieldset#edd_register_account_fields p, .page-purchase-history #edd_checkout_login_register fieldset#edd_login_fields p, .page-purchase-history #edd_login_form fieldset#edd_checkout_user_info p, .page-purchase-history #edd_login_form fieldset#edd_register_account_fields p, .page-purchase-history #edd_login_form fieldset#edd_login_fields p { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-box-flex: 3; -webkit-flex: 3 1 0; -ms-flex: 3 1 0; flex: 3 1 0; -webkit-flex-flow: column nowrap; -ms-flex-flow: column nowrap; flex-flow: column nowrap; margin: 2em; }
.edd-page #edd_purchase_form fieldset#edd_checkout_user_info > span, .edd-page #edd_purchase_form fieldset#edd_register_account_fields > span, .edd-page #edd_purchase_form fieldset#edd_login_fields > span, .edd-page #edd_checkout_login_register fieldset#edd_checkout_user_info > span, .edd-page #edd_checkout_login_register fieldset#edd_register_account_fields > span, .edd-page #edd_checkout_login_register fieldset#edd_login_fields > span, .edd-page #edd_login_form fieldset#edd_checkout_user_info > span, .edd-page #edd_login_form fieldset#edd_register_account_fields > span, .edd-page #edd_login_form fieldset#edd_login_fields > span, .page-purchase-history #edd_purchase_form fieldset#edd_checkout_user_info > span, .page-purchase-history #edd_purchase_form fieldset#edd_register_account_fields > span, .page-purchase-history #edd_purchase_form fieldset#edd_login_fields > span, .page-purchase-history #edd_checkout_login_register fieldset#edd_checkout_user_info > span, .page-purchase-history #edd_checkout_login_register fieldset#edd_register_account_fields > span, .page-purchase-history #edd_checkout_login_register fieldset#edd_login_fields > span, .page-purchase-history #edd_login_form fieldset#edd_checkout_user_info > span, .page-purchase-history #edd_login_form fieldset#edd_register_account_fields > span, .page-purchase-history #edd_login_form fieldset#edd_login_fields > span { border-bottom: 1px solid #aaa; -webkit-box-flex: 0; -webkit-flex: 0 1 100%; -ms-flex: 0 1 100%; flex: 0 1 100%; font-weight: 700; text-align: center; }
.edd-page #edd_purchase_form fieldset#edd_checkout_user_info .edd-input, .edd-page #edd_purchase_form fieldset#edd_checkout_user_info .edd-submit, .edd-page #edd_purchase_form fieldset#edd_register_account_fields .edd-input, .edd-page #edd_purchase_form fieldset#edd_register_account_fields .edd-submit, .edd-page #edd_purchase_form fieldset#edd_login_fields .edd-input, .edd-page #edd_purchase_form fieldset#edd_login_fields .edd-submit, .edd-page #edd_checkout_login_register fieldset#edd_checkout_user_info .edd-input, .edd-page #edd_checkout_login_register fieldset#edd_checkout_user_info .edd-submit, .edd-page #edd_checkout_login_register fieldset#edd_register_account_fields .edd-input, .edd-page #edd_checkout_login_register fieldset#edd_register_account_fields .edd-submit, .edd-page #edd_checkout_login_register fieldset#edd_login_fields .edd-input, .edd-page #edd_checkout_login_register fieldset#edd_login_fields .edd-submit, .edd-page #edd_login_form fieldset#edd_checkout_user_info .edd-input, .edd-page #edd_login_form fieldset#edd_checkout_user_info .edd-submit, .edd-page #edd_login_form fieldset#edd_register_account_fields .edd-input, .edd-page #edd_login_form fieldset#edd_register_account_fields .edd-submit, .edd-page #edd_login_form fieldset#edd_login_fields .edd-input, .edd-page #edd_login_form fieldset#edd_login_fields .edd-submit, .page-purchase-history #edd_purchase_form fieldset#edd_checkout_user_info .edd-input, .page-purchase-history #edd_purchase_form fieldset#edd_checkout_user_info .edd-submit, .page-purchase-history #edd_purchase_form fieldset#edd_register_account_fields .edd-input, .page-purchase-history #edd_purchase_form fieldset#edd_register_account_fields .edd-submit, .page-purchase-history #edd_purchase_form fieldset#edd_login_fields .edd-input, .page-purchase-history #edd_purchase_form fieldset#edd_login_fields .edd-submit, .page-purchase-history #edd_checkout_login_register fieldset#edd_checkout_user_info .edd-input, .page-purchase-history #edd_checkout_login_register fieldset#edd_checkout_user_info .edd-submit, .page-purchase-history #edd_checkout_login_register fieldset#edd_register_account_fields .edd-input, .page-purchase-history #edd_checkout_login_register fieldset#edd_register_account_fields .edd-submit, .page-purchase-history #edd_checkout_login_register fieldset#edd_login_fields .edd-input, .page-purchase-history #edd_checkout_login_register fieldset#edd_login_fields .edd-submit, .page-purchase-history #edd_login_form fieldset#edd_checkout_user_info .edd-input, .page-purchase-history #edd_login_form fieldset#edd_checkout_user_info .edd-submit, .page-purchase-history #edd_login_form fieldset#edd_register_account_fields .edd-input, .page-purchase-history #edd_login_form fieldset#edd_register_account_fields .edd-submit, .page-purchase-history #edd_login_form fieldset#edd_login_fields .edd-input, .page-purchase-history #edd_login_form fieldset#edd_login_fields .edd-submit { font-size: 15px; margin: 0.8em 0; padding: 0.5em; }
.edd-page #edd_purchase_form fieldset#edd_checkout_user_info label, .edd-page #edd_purchase_form fieldset#edd_register_account_fields label, .edd-page #edd_purchase_form fieldset#edd_login_fields label, .edd-page #edd_checkout_login_register fieldset#edd_checkout_user_info label, .edd-page #edd_checkout_login_register fieldset#edd_register_account_fields label, .edd-page #edd_checkout_login_register fieldset#edd_login_fields label, .edd-page #edd_login_form fieldset#edd_checkout_user_info label, .edd-page #edd_login_form fieldset#edd_register_account_fields label, .edd-page #edd_login_form fieldset#edd_login_fields label, .page-purchase-history #edd_purchase_form fieldset#edd_checkout_user_info label, .page-purchase-history #edd_purchase_form fieldset#edd_register_account_fields label, .page-purchase-history #edd_purchase_form fieldset#edd_login_fields label, .page-purchase-history #edd_checkout_login_register fieldset#edd_checkout_user_info label, .page-purchase-history #edd_checkout_login_register fieldset#edd_register_account_fields label, .page-purchase-history #edd_checkout_login_register fieldset#edd_login_fields label, .page-purchase-history #edd_login_form fieldset#edd_checkout_user_info label, .page-purchase-history #edd_login_form fieldset#edd_register_account_fields label, .page-purchase-history #edd_login_form fieldset#edd_login_fields label { text-transform: uppercase; }
.edd-page #edd_purchase_form fieldset#edd_checkout_user_info .edd-description, .edd-page #edd_purchase_form fieldset#edd_register_account_fields .edd-description, .edd-page #edd_purchase_form fieldset#edd_login_fields .edd-description, .edd-page #edd_checkout_login_register fieldset#edd_checkout_user_info .edd-description, .edd-page #edd_checkout_login_register fieldset#edd_register_account_fields .edd-description, .edd-page #edd_checkout_login_register fieldset#edd_login_fields .edd-description, .edd-page #edd_login_form fieldset#edd_checkout_user_info .edd-description, .edd-page #edd_login_form fieldset#edd_register_account_fields .edd-description, .edd-page #edd_login_form fieldset#edd_login_fields .edd-description, .page-purchase-history #edd_purchase_form fieldset#edd_checkout_user_info .edd-description, .page-purchase-history #edd_purchase_form fieldset#edd_register_account_fields .edd-description, .page-purchase-history #edd_purchase_form fieldset#edd_login_fields .edd-description, .page-purchase-history #edd_checkout_login_register fieldset#edd_checkout_user_info .edd-description, .page-purchase-history #edd_checkout_login_register fieldset#edd_register_account_fields .edd-description, .page-purchase-history #edd_checkout_login_register fieldset#edd_login_fields .edd-description, .page-purchase-history #edd_login_form fieldset#edd_checkout_user_info .edd-description, .page-purchase-history #edd_login_form fieldset#edd_register_account_fields .edd-description, .page-purchase-history #edd_login_form fieldset#edd_login_fields .edd-description { font-size: 14px; }
.edd-page #edd_purchase_submit, .page-purchase-history #edd_purchase_submit { margin-top: 3em; }
.edd-page #edd-purchase-button, .page-purchase-history #edd-purchase-button, .edd-apply-discount { font-size: 16px; }
.edd-page #edd_login_form fieldset, .page-purchase-history #edd_login_form fieldset { -webkit-align-content: center; -ms-flex-line-pack: center; align-content: center; border-bottom: 1px solid #aaa; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-flex-wrap: wrap; -ms-flex-wrap: wrap; flex-wrap: wrap; -webkit-box-pack: justify; -webkit-justify-content: space-between; -ms-flex-pack: justify; justify-content: space-between; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; text-align: left; }
.edd-page #edd_login_form fieldset p, .page-purchase-history #edd_login_form fieldset p { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-box-flex: 3; -webkit-flex: 3 1 0; -ms-flex: 3 1 0; flex: 3 1 0; -webkit-flex-flow: column nowrap; -ms-flex-flow: column nowrap; flex-flow: column nowrap; margin: 2em; }
.edd-page #edd_login_form fieldset > span, .page-purchase-history #edd_login_form fieldset > span { border-bottom: 1px solid #aaa; -webkit-box-flex: 0; -webkit-flex: 0 1 100%; -ms-flex: 0 1 100%; flex: 0 1 100%; font-weight: 700; text-align: center; }
.edd-page #edd_login_form fieldset .edd-input, .edd-page #edd_login_form fieldset #edd_login_submit, .page-purchase-history #edd_login_form fieldset .edd-input, .page-purchase-history #edd_login_form fieldset #edd_login_submit, #edd-discount { font-size: 15px; margin: 0.8em 0; padding: 0.5em; }
.edd-page #edd_login_form fieldset label, .page-purchase-history #edd_login_form fieldset label { text-transform: uppercase; }
.edd-page #edd_login_form fieldset .edd-description, .page-purchase-history #edd_login_form fieldset .edd-description { font-size: 14px; }
