@charset "utf-8";
/* CSS Document */

/*Align the coupon button on the checkout*/
body.woocommerce-checkout > section .woocommerce form.checkout_coupon {  
	align-items: center;
}
body.page-id-423 > section:first-of-type .container form [type="submit"] {
	height: 40px;
	margin-top: 0;
	transform: translateY(0px);
}
body.page-id-423 > section:first-of-type .container form {
	margin-bottom: 16px;
}
@media screen and (max-width: 768px) {
	body.woocommerce-checkout .form-row:not(:last-of-type) {
		margin-right: 15px;
		margin-bottom: 0;
	}
}

/*Alignment of the quantity in the cart*/
body.woocommerce-cart > section .container .woocommerce form table.shop_table tbody .cart_item td.product-quantity {
	padding-top: 42px;
}
@media screen and (max-width: 768px) {
	body.woocommerce-cart > section .container .woocommerce form table.shop_table tbody .cart_item td.product-quantity {
		padding-top: 35px;
	}
}
/* Notes on checkout page textarea*/
body.woocommerce-checkout > section .woocommerce form.checkout section.bottom .order-notes {
	flex: 0 1 100%; 
}
body.woocommerce-checkout > section .woocommerce form.checkout section.bottom .order-notes textarea {
	max-width: 100% !important;
	width: 100% !important;
}


/*Box Width terms and conditions */
body .container {
	box-sizing: border-box;
}

/*Single Product Terms and Conditions*/
.terms-condition {
	margin: 0 0 30px;
}
.terms-condition.simple-product {
	margin: 28px 0 30px;
}
.terms-condition a, .terms-condition span.terms-condition-text {
	font-family: 'Founders Grotesk Medium';
	font-size: 12px;
	line-height: 18px;
	letter-spacing: 1.5px;
	color: #928E8A;
	text-transform: uppercase;
}
.terms-condition a {
	text-decoration: underline;
}
.terms-condition a:hover {
	color: #928E8A;
	opacity: 0.5;
}
.terms-condition .form-group {
	margin-left: 10px;
}
.terms-condition .form-group input {
	display: none;
	height: auto;
    width: auto;
    padding: 0;
    margin-bottom: 0;
    cursor: pointer;
}
.terms-condition .form-group label {
    position: relative;
    cursor: pointer;
}
.terms-condition .form-group label:before {
    content: '';
    -webkit-appearance: none;
    background-color: transparent;
    border: 1px solid #c6c5c4;
	border-radius: 4px;
    width: 14px;
	height: 15px;
    display: inline-block;
    position: relative;
    vertical-align: middle;
    cursor: pointer;
	top: 0px;
}
.terms-condition .form-group input:checked + label:after {
    content: '';
    display: block;
    position: absolute;
    top: 0px;
    left: 6px;
    width: 3px;
    height: 10px;
    border: solid #928E8A;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}
@media (max-width: 550px) {
	/*.terms-condition a {
		font-size: 15px;
		letter-spacing: 1.2px;
	}
	.terms-condition .form-group label::before {
		width: 18px;
		height: 16px;
		top: 0px;
	}
	.terms-condition .form-group input:checked + label::after {
		top: -2px;
		width: 4px;
		height: 12px;
	}*/
}

/*Banner Small*/
body.page-template-podcasts .header-static-wrapper {
	border-bottom: none;
}
.section.section--banner-small {
	display: flex;	
	width: 100%;	
	height: 100%;
}
.banner-small {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	max-height: 500px;
	min-height: 500px;
}
.banner-small__bg-image {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	display: flex;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	z-index: 1;
}
.subscribe-box-holder {
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	max-width: 980px;
	height: 100%;
	width: 100%;
	margin: 0 auto;
	padding: 0 60px;
	z-index: 2;
}
.banner-small .subscribe-box {
	display: flex;
	flex-direction: column;
	padding: 44px 44px 22px;
	background-color: rgba(58, 54, 52, 0.75);
	border-radius: 4px;
}
.banner-small .subscribe-box h2 {
	font-family: 'Tiempos Headline Bold';
	font-size: 36px;
	line-height: 43px;
    color: #FFFFFF;
	text-align: center;
	margin-bottom: 32px;
}
.banner-small .subscribe-box .buttons {
    display: flex;
	flex-flow: row wrap;
	justify-content: center;
}
.banner-small .subscribe-box .buttons .button { 
	font-family: 'Founders Grotesk Medium';
	font-size: 18px;
	line-height: 22px;
	font-weight: normal;
	display: flex;
	justify-content: center;
	align-items: center; 
	width: auto;
	height: auto;
	min-width: 160px;
	min-height: 60px;
	box-sizing: border-box;
	background-color: #D1232A;
	color: #FFFFFF;
	margin-bottom: 22px;
	padding: 6px 10px 0;  
	transition: all 0.25s ease;
	margin-right: 20px;
	text-align: center;
}
.banner-small .subscribe-box .buttons .button:last-child {
	margin-right: 0;
}
@media screen and (max-width: 1150px) {
	.section.section--banner-small {
		padding-top: 28px;
	}
	body.page-template-podcasts {
		padding-top: 0px;
	}
}
@media screen and (max-width: 768px) {
	.section.section--banner-small {
		padding-top: 14px;
	}
	.banner-small {
		padding: 48px 0;
		max-height: 100%;
	}
	.subscribe-box-holder {
		padding: 0 20px;
	}
	.banner-small .subscribe-box .buttons .button {
		width: 100%;
		margin-right: 0;
		flex: 1 0 auto;
	}
}

/*Banner Small*/