/* Single Product Landing Page */
.pr-landing-page-template-default .mk-post-nav,
.pr-landing-page-template-default .bottom-corner-btns {
	display: none;
}

.pr-landing-page-top {
	display: flex;
	flex-flow: row;
	padding: 40px;
}

.pr-landing-page-top .left {
    margin: 0 20px 0 0;
}

.pr-landing-page-top .left {
	width: 50%;
	display: flex;
	flex-flow: column;
	align-items: center;
	justify-content: center;
}

.pr-landing-page-top .left .image {
    width: 100%;
    height: 100%;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.pr-landing-page .right {
	width: 50%;
	display: flex;
	flex-flow: column;
}

.pr-landing-page .right .title {
	text-align: left;
	text-transform: uppercase;
	font-size: 58px;
	margin: 0;
}

.pr-landing-page .right .copy h2,
.pr-landing-page .right .copy p {
	font-weight: normal;
}

.pr-landing-page .right .copy h2 {
	color: #9f0000;
	font-size: 1.4em;
}

.pr-landing-page .right .copy p {
	font-size: 14px;
}

.pr-landing-page .right .bottom {
	display: flex;
	flex-flow: row;
	justify-content: space-between;
	align-items: center;
}

.pr-landing-page .right .bottom .price .woocommerce-Price-amount.amount {
	font-weight: bold;
	font-size: 35px !important;
	font-family: Orbitron, sans-serif;
}

.pr-landing-page .right .bottom .link a {
	padding: 10px;
	background: #9f0000;
	color: white;
	box-shadow: 2px 2px 5px #777;
}
.pr-landing-page .right .bottom .link a:hover {
    box-shadow: none;
}

/* YouTube Video */
.pr-landing-page-youtube-vid-main {
	padding: 40px;
}

.embed-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    max-width: 100%;
}

.embed-container iframe,
.embed-container object,
.embed-container embed {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

@media screen and ( max-width: 900px ) {
	.pr-landing-page-top {
		flex-flow: column-reverse;
	}

	.pr-landing-page-top .right,
	.pr-landing-page-top .left {
		width: 100%;
		padding: 0;
	}

	.pr-landing-page-top .left {
		margin-top: 40px;
	}

	.pr-landing-page-top .left .image {
		height: 200px;
		background-position: left;
	}

	.pr-landing-page .right .title {
		font-size: 36px;
	}

	.pr-landing-page .right .bottom {
		flex-flow: column;
		align-items: flex-start;
	}

	.pr-landing-page .right .bottom .price {
		margin-bottom: 20px;
	}
}

/* Tabs */
.tabs {
    padding: 20px;
}

.tabs .tab {
	overflow: hidden;
	border: 1px solid #ccc;
	background-color: #f1f1f1;
}

.tabs .tab button {
	background-color: inherit;
	float: left;
	border: none;
	outline: none;
	cursor: pointer;
	padding: 14px 16px;
	transition: 0.3s;
}

.tabs .tab button .tab-title {
    padding-bottom: 5px;
}

.tabs .tab button:hover {
	background-color: #ddd;
}

.tabs .tab button.active {
	background-color: #ccc;
}

.tabs .tab button.active .tab-title {
    color: #9f0000;
    border-bottom: 2px solid #9f0000;
}

.tabs .tabcontent {
	display: none;
	border: 1px solid #ccc;
	border-top: none;
	animation: fadeEffect 1s;
    padding: 40px;
}

.tabs .tabcontent .tab-content-inner p {
    font-weight: normal;
}

.tabs .tabcontent .tab-content-inner strong {
    color: black;
}

.tabs .tabcontent.gallery .tab-content-inner .gallery-images .gallery-image {
	float: left;
	margin-right: 20px;
	margin-bottom: 20px;
	cursor: pointer;
	border: 4px solid #cecece;
	padding: 10px;
}

.tabs .tabcontent.gallery .tab-content-inner .gallery-images .gallery-image:last-of-type {
	margin-right: 0;
	margin-bottom: 0;
}

/* Animations */
@keyframes fadeEffect {
	from { opacity: 0; }
	to { opacity: 1; }
}