/* FONT FACE */

@font-face {
    font-family: 'General Sans';
    src: url('../fonts/subset-GeneralSans-Bold.woff2') format('woff2'),
        url('../fonts/subset-GeneralSans-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'General Sans';
    src: url('../fonts/subset-GeneralSans-Italic.woff2') format('woff2'),
        url('../fonts/subset-GeneralSans-Italic.woff') format('woff');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

/*@font-face {
    font-family: 'General Sans';
    src: url('../fonts/subset-GeneralSans-Light.woff2') format('woff2'),
        url('../fonts/subset-GeneralSans-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}*/

@font-face {
    font-family: 'General Sans';
    src: url('../fonts/subset-GeneralSans-Regular.woff2') format('woff2'),
        url('../fonts/subset-GeneralSans-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'General Sans';
    src: url('../fonts/subset-GeneralSans-Semibold.woff2') format('woff2'),
        url('../fonts/subset-GeneralSans-Semibold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

/*@font-face {
    font-family: 'Freude';
    src: url('../fonts/subset-Freude-Normal.woff2') format('woff2'),
        url('../fonts/subset-Freude-Normal.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}*/


/* HAMBURGERS */

.hamburger {
	padding: 15px 15px;
	display: inline-block;
	cursor: pointer;
	transition-property: opacity, filter;
	transition-duration: 0.15s;
	transition-timing-function: linear;
	font: inherit;
	color: inherit;
	text-transform: none;
	background-color: transparent;
	border: 0;
	margin: 0;
	overflow: visible;
}
.hamburger:hover {
	opacity: 0.7;
}
.hamburger.is-active:hover {
	opacity: 0.7;
}
.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner::before,
.hamburger.is-active .hamburger-inner::after {
	/*background-color: #000; */
}
.hamburger-box {
	width: 40px;
	height: 24px;
	display: inline-block;
	position: relative; 
}
.hamburger-inner {
	display: block;
	top: 50%;
	margin-top: -2px;
}
.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
	width: 40px;
	height: 4px;
	background-color: #000;
	border-radius: 4px;
	position: absolute;
	transition-property: transform;
	transition-duration: 0.15s;
	transition-timing-function: ease; 
}
.hamburger-inner::before, .hamburger-inner::after {
	content: "";
	display: block; 
}
.hamburger-inner::before {
	top: -10px; 
}
.hamburger-inner::after {
	bottom: -10px; 
}
.hamburger--stand .hamburger-inner {
	transition: transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19), background-color 0s 0.075s linear; 
}
.hamburger--stand .hamburger-inner::before {
	transition: top 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19); 
}
.hamburger--stand .hamburger-inner::after {
	transition: bottom 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19); 
}

.hamburger--stand.is-active .hamburger-inner {
	transform: rotate(90deg);
	background-color: transparent !important;
	transition: transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1), background-color 0s 0.15s linear; 
}
.hamburger--stand.is-active .hamburger-inner::before {
	top: 0;
	transform: rotate(-45deg);
	transition: top 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1); 
}
.hamburger--stand.is-active .hamburger-inner::after {
	bottom: 0;
	transform: rotate(45deg);
	transition: bottom 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1); 
}

/* GLOBAL */

a, a:hover, a:active, a:focus, button, button:hover, button:active, button:focus, input:hover, input:active, input:focus, textarea:focus, a[href^=tel],div:active,div:focus {
	outline: 0;
	text-decoration: none;
	color: black;
}
html {
	font-size: 16px;
	overflow-x: hidden;
	max-width: 100vw;
}
body {
	font-size: 1rem;
	color: black;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
	max-width: 100vw;
	font-family: 'General Sans';
	font-weight: normal;
	font-style: normal;
	background: #dcdcdc;
	padding-top: 8rem;
}
h1 { font-size: 2.5rem; line-height: 1.2; }
h2 { font-size: 2rem; line-height: 1.3; }
h3 { font-size: 1.75rem; line-height: 1.3; }
h4 { font-size: 1.5rem; line-height: 1.4; }
h5 { font-size: 1.25rem; line-height: 1.5; }
h6 { font-size: 1rem; line-height: 1.6; }

p,a,ul,li {
	line-height: 1.5;
	font-size: 18px; 
}

.responsive-container {
	position: relative;
	padding-bottom: 56.25%; /* 16:9 */
	padding-top: 0px;
	height: 0;
	overflow: hidden;
}
.responsive-container iframe,
.responsive-container object,
.responsive-container embed,
.responsive-container video
{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.wp-block-embed__wrapper .responsive-container {
	padding: 0;
	position: static;
	height: auto;
}

.wp-embed-responsive .wp-block-embed-spotify .wp-block-embed__wrapper:before {
	padding-top: 0;
}

.wp-embed-responsive .wp-block-embed-spotify.wp-has-aspect-ratio iframe {
	position: static;
	height: revert-layer;
}

.section-anchor {
	position: relative;
	bottom: 6rem;
}
.container-main {
	max-width: 1500px;
	padding-left: 4rem;
	padding-right: 4rem;
}
.col-nopadding {
	padding-left: 0;
	padding-right: 0;
}

.mt0 {
	margin-top: 0;
}
.mt1 {
	margin-top: 1rem;
}
.mt2 {
	margin-top: 2rem;
}
.mt3 {
	margin-top: 3rem;
}
.mt4 {
	margin-top: 4rem;
}
.mb0 {
	margin-bottom: 0;
}
.mb1 {
	margin-bottom: 1rem;
}
.mb2 {
	margin-bottom: 2rem;
}
.mb3 {
	margin-bottom: 3rem;
}
.mb4 {
	margin-bottom: 4rem;
}
.mtb0 {
	margin-top: 0;
	margin-bottom: 0;
}
.mtb1 {
	margin-top: 1rem;
	margin-bottom: 1rem;
}
.mtb2 {
	margin-top: 2rem;
	margin-bottom: 2rem;
}
.mtb3 {
	margin-top: 3rem;
	margin-bottom: 3rem;
}
.mtb4 {
	margin-top: 4rem;
	margin-bottom: 4rem;
}
.m-center {
	margin-left: auto;
	margin-right: auto;
}

.pos-rel {
	position: relative;
}
.deco-abs {
	position: absolute;
	top: 0;
	left: 0;
}
.deco-center {
	left: 50%;
	transform: translateX(-50%);
}
.z99 {
	z-index: 99;
}
.radius1 {
	border-radius: 1rem;
}
.radius2 {
	border-radius: 2rem;
}

.disp-flex {
	display: flex;
}
.flex-just-center {
	justify-content: center;
}
.row-flex-center {
	display: flex;
	align-items: center;
}
.row-flex-bottom {
	display: flex;
	align-items: end;
}

.section-heading {
	font-size: 2rem;
	font-family: 'Freude';
	font-weight: normal;
	font-style: normal;
	line-height: 1.4;
}

.typo-bold {
	font-weight: bold;
}
.typo-semibold {
	font-weight: 600;
}
.typo-upper {
	text-transform: uppercase;
}
.typo-center {
	text-align: center;
}
.typo-black {
	color: black;
}
.typo-white {
	color: white;
}
.typo-gray {
	color: rgba(0, 0, 0, .4);
}
.typo-green {
	color: #87bc24;
}
.typo-crossed {
    text-decoration: line-through;
    text-decoration-thickness: 2px;
    text-decoration-color: rgba(255,10,10,.6);
}
.typo-size2 {
	font-size: 2rem;
}
.typo-size3 {
	font-size: 3rem;
}

.typo-freud { font-family: "freude",sans-serif; }
.typo-lucky { font-family: "filmotype-lucky",sans-serif; }
.typo-tripoli { font-family: "am-tripoli",sans-serif; }

.bgimg {
	background-size: cover;
	background-position: center;
}
.bgfixed {
	background-attachment: fixed; 
}
.img-full {
	display: block;
	width: 100%;
	height: auto;
}

.cta {
    display: inline-block;
    font-size: 20px;
    color: #fddd00;
    background: black;
    padding: 12px 26px 11px 26px;
    border-radius: 20rem;
    font-family: 'Freude';
    font-weight: normal;
    font-style: normal;
    line-height: 1.1;
}
.cta:hover,
.cta:focus,
.cta:active
{
	color: black;
	background: #99e115;
}
.cta-icon {
	padding-left: 4rem;
}
.cta .glyphicon {
    line-height: 1;
    margin-right: 1rem;
    font-size: 2rem;
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
}

.boxshadow {
	-webkit-box-shadow: 0px 8px 27px -10px rgba(66, 68, 90, 0.22);
	    -moz-box-shadow: 0px 8px 27px -10px rgba(66, 68, 90, 0.22);
	    box-shadow: 0px 8px 27px -10px rgba(66, 68, 90, 0.22);
}

#wpadminbar {
    z-index: 999999999999999999;
}

/* HEADER & NAV */

nav > ul {
	display: inline-block;
	vertical-align: top;
}
nav ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
	
}
nav > ul > li {
	display: inline-block;
	vertical-align: top;
}
nav li {	
	margin: 0;
	padding: 0;
}
nav li a {
	display: inline-block;
	padding: 8px 14px;
	font-family: 'Freude';
	font-weight: normal;
	font-style: normal;
	color: black;
}
nav li a:hover {
	text-decoration: none;
}
.top-header {
	background: rgba(220, 220, 220,.9);
	text-align: right;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 999999;
	backdrop-filter: blur(9px);
}
.top-header-inner {
	position: relative;
	height: 6rem;
	transition: all .3s;
}

.nav-logo {
    display: inline-block;
    position: absolute;
    left: 0;
    top: 48%;
    transform: translateY(-50%);
    max-width: 4rem;
    transition: all .3s;
}
.nav-logo img {
	width: 100%;
}

.main-navlist {
	display: inline-block;
}
.main-navlist {
	margin-top: 1rem;
	transition: all .3s;		
}

.main-navlist a {
	line-height: 3rem;
	font-family: 'Freude';
	font-weight: normal;
	font-style: normal;
	color: black;
	text-transform: uppercase;
}

.top-header-inner .hamburger {
	position: absolute;
	right: -20px;
	top: 50%;
	transform: translateY(-50%);
	padding: 15px 10px;
}
.hamburger-inner, 
.hamburger-inner::before, 
.hamburger-inner::after {
    width: 35px;
    height: 4px;
    border-radius: 0;
}
.hamburger-box {
	height: 25px;
	top: 2px;
	transform: scale(.7);
}

.mobile-submenu-switch {
    display: inline-block;
    vertical-align: top;
    padding: .6rem;
    background: rgba(255,255,255,.3);
    border-radius: 4rem;
    margin-top: .6rem;
    transform: rotate(0);
    transition: all .5s;
    margin-left: 0;
}
.mobile-submenu-switch.submenu-visible {
	transform: rotate(180deg);
}

.menu-item-has-children {
	position: relative;
}
.menu-item-has-children ul {
	display: none;
	position: absolute;
	left: -1rem;
	top: 2.8rem;
	width: 20rem;
	padding: 1.2rem 1rem 2rem 1rem;
	background: white;
	-webkit-box-shadow: 0px 13px 29px -28px rgba(66, 68, 90, 0.65);
	-moz-box-shadow: 0px 13px 29px -28px rgba(66, 68, 90, 0.65);
	box-shadow: 0px 13px 29px -28px rgba(66, 68, 90, 0.65);
}
.menu-item-has-children ul li {
	display: block;
}
.menu-item-has-children ul li a {
	display: block;
	line-height: 1.2;
	font-size: 1rem;
}

@media screen and (max-width: 992px)  {

	.main-navlist li {
	    margin-right: auto;
	    margin-left: auto;
	}

	.menu-item-has-children ul {
		position: static;
	    min-width: auto;
	    padding: .1rem .3rem .6rem .3rem;
	    background: none;
	    margin-top: 1rem;
	    width: auto;
	}
	.menu-item-has-children ul li a {
		font-size: 1.5rem;
		padding: 0.5rem 1rem;
		/*color: rgba(255,255,255,.8);*/
		margin-bottom: .1rem;
		white-space: normal; 
	}
	.main-navlist .menu-item-has-children ul li {
		margin-bottom: .5rem;
	}	
}

/* CAROUSEL */

.slick-arrow,
.slick-arrow:hover,
.slick-arrow:focus {
    width: 48px !important;
    height: 80px !important;
    padding: 1rem;
    z-index: 99999;
}
.slick-prev:before,
.slick-next:before {
    background: url('../img/strzalka_lewa.png') no-repeat center;
    content: " " !important;
    background-size: contain !important;
    width: 100%;
    height: 100%;
    display: block;
}
.slick-next:before {
	transform: rotate(180deg);
}
.slick-next {
    right: -30px !important;
}
.slick-prev {
    left: -30px !important;
}

/* HOME */

.landing-logo {
    width: 18rem;
    margin-top: 4rem;
    display: inline-block;
    max-width: 100%;
}
.cat-banners-section {
	margin-top: 3rem;
	padding: 3rem 0 3rem 0;
}
.cat-banner {
	display: block;
	margin-bottom: 1rem;
}

.distributors-section {
    padding: 10rem 0 9rem 0;
    background-image: url('../img/bg-dark.jpg');
    background-size: cover;
    background-position: center;
    clip-path: polygon(0 0, 100% 12%, 100% 100%, 0 88%);
}
.distributors-arrow {
    width: 32rem;
    height: auto;
    top: -4rem;
}
.distributors-logos {
	margin-top: 4rem;
}
.distributors-logos img {
    width: 7rem;
    height: 4rem;
    display: inline-block;
    object-fit: contain;
    object-position: center;
    margin: 1rem;
}

.home-recipes-banner {
	display: inline-block;
	max-width: 1700px;
}

.bestsellers-section {
	margin-top: 2rem;
}
.bestsellers-products {
	margin-top: 4rem;
}
.deco-bestsellers {
	width: 95vw;
}
.bestsellers-products .prodlink {
	position: relative;
	display: block;
	padding: 1rem;
}
.bestsellers-products .prod2 {
	position: relative;
	bottom: 2rem;
}
.bestsellers-products .prod4 {
	position: relative;
	bottom: 2rem;
} 
.bestsellers-prods-box {
	max-width: 1300px;
	margin: 0 auto;
}
.featprod-bgshape {
	transform: scale3d(1.001, 1.001, 1.001);
	transition: transform .6s;
}
.bestsellers-products .prodlink:hover .featprod-bgshape {
	transform: scale3d(.9, .9, .9);
}
.featprod-packshot {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%) scale3d(1.001, 1.001, 1.001);
	width: 60%;
	height: 60%;
	object-fit: contain;
	object-position: center;
	transition: transform .4s;
}
.bestsellers-products .prodlink:hover .featprod-packshot {
	transform: translate(-50%,-50%) scale3d(1.2, 1.2, 1.2) rotate(10deg);
}

.deco-reviews-cloud {
	width: 14rem;
}

.reviews-section {
    margin-top: 9rem;
    margin-bottom: 2rem;
}
.review-box {
	background: white;
	padding: 2rem;
	border-radius: 2rem;
	-webkit-box-shadow: 0px 8px 27px -10px rgba(66, 68, 90, 0.22);
	-moz-box-shadow: 0px 8px 27px -10px rgba(66, 68, 90, 0.22);
	box-shadow: 0px 8px 27px -10px rgba(66, 68, 90, 0.22);
	margin-bottom: 2rem;
}
.review-box-head {
	display: flex;
	justify-content: space-between;
}
.review-author {
	display: flex;
	align-items: center;
}
.review-author p {
    /*padding-left: 1rem;*/
    margin: 0;
}
.review-quote {
	width: 3rem;
	height: auto;
}
.review-stars {
    max-width: 6rem;
    height: auto;
    object-fit: contain;
    object-position: top;
}
.review-text {
    font-size: 16px;
    margin-top: 1rem;
    margin-bottom: 1rem;
    /*min-height: 9rem;*/
}
.review-photo {
	width: 4rem;
	border: 1px solid #cc59f6;
	padding: 2px;
	border-radius: 100px;
}
.review-photo img {
	display: block;
	border-radius: 100px;
	overflow: hidden;
} 


.runmag-banner-link {
	display: block;
	width: 100%;
}
.runmag-banner-link img {
	display: block;
	width: 100%;
	height: auto;
	margin: 0;
	padding: 0;
}

.runmageddon-banner-section .cta {
	position: absolute;
	top: 70%;
	left: 50%;
	transform: translate(-50%,-50%);
	border: 2px solid #99e115;
	color: white;
}
.home-end-section {
    margin-top: -6vw;
    margin-bottom: -2rem;
}
.home-end-section img {
	display: block;
	width: 100%;
	height: auto;
}

/* PROUCT */

.prod-headbox {
	display: flex;
	justify-content: space-between;
}
.prod-headbox p {
	margin: 0;
}
.prod-title {
    font-size: 2rem;
    max-width: 40rem;
}
.prod-shopbox {
	width: 10rem;
}
.prod-pricebox {
    display: inline-block;
    background: white;
    font-size: 2rem;
    padding: .5rem 2rem;
    border-radius: 1rem;
    border: 2px solid #cc59f6;
    margin-top: 1rem;
}
.tab-nav-item {
    display: block;
    background: white;
    line-height: 1.1;
    text-align: center;
    padding: .8rem 1rem .7rem 1rem;
    margin-bottom: .5rem;
    cursor: pointer;
    border-radius: 5rem;
    font-size: 1.1rem;

}
.tab-nav-item.active {
	background: #99e014;
}
.prod-tabbox {
	background: white;
	border-radius: 2rem;
	padding: 2rem;
	margin-bottom: 2rem;
} 

.prod-deco1 {
	width: 110%;
	top: -14rem;
}
.prod-tabs-boxes {
	min-height: 30rem;
}
.product-tile {
	display: block;
	background: white;
	border-radius: 2rem;
	padding: 1.5rem;
	margin-bottom: 2rem;
}

.prods-proposed {
	margin-top: 4rem;
	margin-bottom: 6rem;
}
.prod-car {
	margin-left: -1rem;
	margin-right: -1rem;
}
.prod-tile-slide {
	padding: 1rem .5rem;
} 
.prod-tile-price {
    font-size: 2.2rem;
}
.prod-tile-price-crossed {
	font-size: 1.2rem;
}
.prod-tile-wheybox p {
	line-height: 1.2;
	margin: 0;
}
.prod-tile-packshot {
	padding-top: 1rem;
	padding-right: .5rem;
}
.prod-tile-titlebox p {
	line-height: 1.2;
	margin: 0;
	margin-bottom: .5rem;
}

/* PROD CAT */

.prod-group-section {
	margin-top: 1rem;
	margin-bottom: 6rem;
}
.prodgroup-name {
	font-size: 3rem;
}
.prodgroup-packshot {
    max-height: 24rem;
    object-fit: contain;
    object-position: center;
    width: 100%;
}
.prodgroup-grid-row {
	margin-top: 1rem;
	margin-bottom: 1rem;
}

.prodgroup-deco {
	max-width: 44rem;
}
.prodgroup-desc {
	min-height: 8rem;
}
.prodgroup-descbox {
	background: white;
	padding: 2rem;
	border-radius: 2rem;
}

/* RUNMAGEDDON */

body.page-template-page-runmageddon {
	padding-top: 0;
}
body.page-template-page-runmageddon .nav-logo {
    max-width: 9rem;
    top: 66%;
}

body.page-template-page-runmageddon .top-header {
    background: rgba(0, 0, 0,.85);
    backdrop-filter: blur(20px);
}
body.page-template-page-runmageddon .main-navlist a {
    color: white;
}

body.page-template-page-runmageddon .hamburger-inner, 
body.page-template-page-runmageddon .hamburger-inner::before, 
body.page-template-page-runmageddon .hamburger-inner::after {
    background-color: white;
}
.rmg-intro-section {
    padding: 24vw 0 5rem 0;
}
.rmg-intro-logo {
    max-width: 80%;
    margin: 0 auto;
    width: 540px;
}

.rmg-section-heading {
	/*font-family: "am-tripoli",sans-serif;*/
	font-family: "freude",sans-serif;
	font-size: 3rem;
	line-height: 1.2;
}
.rmg-section-subheading {
    font-family: "filmotype-lucky",sans-serif;
    font-size: 5rem;
    color: #87bc24;
    line-height: 1;
}
.rmg-gallery-section {
	padding: 5rem 0 7rem 0;
}

.rmg-harmo-section {
	padding: 3rem 0 6rem 0;
}
.next-rmg-txt {
	padding-left: 2rem;
}
.harmo-next-event {
	padding: 0 3rem;
}
.harmo-map {
	padding: 0 3rem;
}
.harmo-col {
	border-left: 3px solid rgba(0,0,0,.6);
}
.harmo-event-box {
	padding-left: 3rem;
	margin-bottom: 2rem;
}
.event-city {
	position: relative;
}
.event-past .event-date,
.event-past .event-city {
	color: #87bc16;
}
.event-past .event-city:before {
    content: '';
    position: absolute;
    top: .4rem;
    left: -2.4rem;
    width: 2rem;
    height: 1.8rem;
    background-image: url('../img/ikona_check.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}
.event-pending .event-city:before {
    content: '';
    position: absolute;
    top: .4rem;
    left: -2.4rem;
    width: 2rem;
    height: 1.8rem;
    background-image: url('../img/ikona_strzalka.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}
.harmo-content {
	padding: 0 2rem;
}
.harmo-icons {
    max-width: 810px;
    margin: 3rem auto;
}
.harmo-icon-row {
	margin-bottom: 2rem;
}
.harmo-icon-row img {
	width: 6rem;
	object-fit: contain;
	object-position: top;
}
.harmo-icon-txtbox {
	padding-left: 2rem;
}
.harmo-icon-txtbox h3 {
	font-size: 2.3rem;
}
.harmo-icon-txtbox p {
	font-size: 22px;
}

.rmg-obstacle-section {
	padding: 3rem 0 7rem 0;
}
.obstacle-header1 {
	width: 660px;
	max-width: 80%;
}
.obstacle-header2 {
	margin-top: 25vw;
	width: 400px;
	max-width: 80%;
}

.rmg-contest-section {
	padding: 4rem 0 5rem 0;
}

.rmg-banner {
	position: relative;
	margin-top: -2rem;
}
.rmg-banner img {
	display: block;
	width: 100%;
	height: auto;
}
.rmg-social {
    display: block;
    position: absolute;
    width: 10%;
    height: 3%;
    transform: translate(-50%,-50%);
    /*background: rgba(255,255,25,.5);*/
}
.rmg-social img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
	transform: scale3d(1.001, 1.001, 1.001);
	transition: transform .2s;
}
.rmg-social:hover img {
	transform: scale3d(1.04, 1.04, 1.04);
}
.rmg-social.fb {
    top: 64%;
    left: 42%;
}
.rmg-social.insta {
    top: 64%;
    left: 57%;
}

.gallery-goon-logo {
	width: 600px;
	max-width: 80%;
}

/* TEXT */

.post-textbox {
	margin-top: 1rem;
	margin-bottom: 6rem;
}

/* RECIPES */

.recipes-list-section {
	margin-top: 1rem;
	margin-bottom: 6rem;
}
.recipe-tile {
	display: block;
}
.recipe-tile h2 {
    font-size: 1.5rem;
}
.recipe-tile img {
	border-radius: 1rem;
	overflow: hidden;
}

.page-bottomdeco img {
    max-width: 90%;
    margin: 0 auto -2vw auto;
}

/* CONTACT */

.contact-cable-deco {
    margin-left: auto;
    margin-right: 0;
    transform: translate(7rem,-1rem);
}
.cform-box {
	max-width: 30rem;
}
.contact-proposed {
	margin-bottom: -5rem;
}

/* GALLERY */

.gallery-item-box {
	padding: 1rem;
	cursor: pointer; 
}
.gallery-item-box img {
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	object-position: center;
	border-bottom: 10px solid #87bc24;
}
.article-gallery-slider .slick-prev {
	left: -20px !important;
}
.article-gallery-slider .slick-next {
	right: -20px !important;
}
.article-gallery-slider .slick-prev, .article-gallery-slider .slick-next {
    background: #87bc24;
    border-radius: 1rem;
    opacity: 1 !important;
    height: 64px !important;
} 

.article-gallery-slider .slick-prev:before,
.article-gallery-slider .slick-next:before {
    background: url('../img/strzalka_lewa_white.png') no-repeat center;
    opacity: 1 !important;
}

.lg-backdrop {
    z-index: 99999999999;
    background-color: rgba(0,0,0,0.9);
}
.lg-outer {
    z-index: 999999999999;
}

@media screen and (max-width: 768px) {

	.article-gallery-slider .slick-arrow, 
	.article-gallery-slider .slick-arrow:hover, 
	.article-gallery-slider .slick-arrow:focus {
		width: 42px !important;
		height: 64px !important;
	}
}

/* FOOTER */

.main-footer {
	background: black;
	color: white;
	padding: 5rem 0;
}
.footer-menu a {
	color: rgba(255,255,255,.8);
	display: block;
	margin: .3rem 0;
}
.footer-menu a:hover {
	color: white;
}
.footer-menu .divider {
	background: #87bc24;
	height: 2px;
}
.footer-logo {
    max-width: 14rem;
    padding-right: 2rem;
    width: 100%;
    display: block;
}
.footer-socials a {
    display: inline-block;
    max-width: 5rem;
    margin-right: 1rem;
}
.footer-eye {
    max-width: 80%;
    margin: 1rem auto 2rem auto;
    max-height: 13rem;
    object-fit: contain;
    object-position: center;
}

/* FORMS */

input[type="text"],
input[type="email"],
input[type="tel"],
textarea,
textarea:focus {
	display: block;
	width: 100%;
	padding: .8rem 1.3rem;
	margin-bottom: .7rem;
	border: 1px solid rgba(0, 0, 0, 0.11);
	border-radius: 20px;
	color: black;
	background: white;
	-webkit-box-shadow: 0px 8px 27px -10px rgba(66, 68, 90, 0.22);
	    -moz-box-shadow: 0px 8px 27px -10px rgba(66, 68, 90, 0.22);
	    box-shadow: 0px 8px 27px -10px rgba(66, 68, 90, 0.22);
}
.wpcf7-textarea {
    height: 8rem;
}
.wpcf7-submit {
	margin-top: 8px;
	font-size: 20px;
	line-height: 1;
	padding-top: 1rem;
	padding-bottom: 1rem;
	min-width: 8rem;
	text-align: center;
	-webkit-box-shadow: 0px 8px 27px -10px rgba(66, 68, 90, 0.22);
	    -moz-box-shadow: 0px 8px 27px -10px rgba(66, 68, 90, 0.22);
	    box-shadow: 0px 8px 27px -10px rgba(66, 68, 90, 0.22);
} 
.wpcf7-not-valid-tip {
    font-size: 13px;
    margin-top: -.7rem;
    margin-bottom: .5rem;
}
.wpcf7 form .wpcf7-response-output {
    margin: 1rem 0;
    padding: 2rem;
}
.wpcf7-acceptance .wpcf7-list-item, 
.wpcf7-acceptance .wpcf7-list-item a {
    margin: 0;
    font-size: 12px;
    font-weight: normal;
    line-height: 1.1;
}
.wpcf7-acceptance label {
	display: flex;
	align-items: flex-start; 
	cursor: pointer;
	font-weight: normal;
}
.wpcf7-acceptance .wpcf7-list-item-label {
	padding-left: 19px;
}
.wpcf7-acceptance .wpcf7-list-item-label,
.wpcf7-acceptance .wpcf7-list-item-label a
{   
    line-height: 1.2;
    display: inline-block;
}
.wpcf7-acceptance .wpcf7-list-item-label a {
	font-weight: bold;
}
.wpcf7-acceptance .wpcf7-list-item-label a:hover {
	text-decoration: underline;
}
.wpcf7-acceptance input[type="checkbox"] {
	margin-top: 0;
	transform: scale(1.7);
	transform-origin: 0 0;
	cursor: pointer;
}

/* MEDIA QUERIES */

/* bootstrap MD */
@media screen and (max-width: 1200px) {
   html {
   	font-size: 15px;
   }
}
/* bootstrap SM */
@media screen and (max-width: 992px) {
	html {
		font-size: 14px;
	}
	.container-main {
		padding-left: 2rem;
		padding-right: 2rem;
	}
	.main-navlist {
		position: fixed;
		top: 4rem;
		right: 0;
		background: white;
		padding: 1rem 2rem 2rem 4rem;
	}
	body.page-template-page-runmageddon .main-navlist {
		background: black;
	}

	.main-navlist {
		transform: translateX(105%);
	}
	.main-navlist.onscreen {
		transform: translateX(0);
	}
	.main-navlist ul li {
		display: block;
	}

	.mobile-nav-bg {
	    display: none;
	    content: '';
	    position: fixed;
	    top: 0;
	    left: 0;
	    width: 100vw;
	    height: 100vh;
	    background: rgba(0,0,0,0.7);
	    z-index: 9888;
	}
	.harmo-events {
	    display: block;
	    padding: 0 1rem;
	}
	.event-city {
	    position: relative;
	    font-size: 2.5rem;
	}
	.harmo-event-box {
		padding-bottom: 2rem;
		margin-bottom: 0;
		padding-left: 4rem;
	} 
	.event-pending .event-city:before,
	.event-past .event-city:before
	{
	    top: .7rem;
	    left: -3rem;
	}
	.harmo-icon-row img {
	    width: 5rem;
	}
}
/* bootstrap XS */
@media screen and (max-width: 768px) {
	html {
		font-size: 12px;
	}
	body {
		max-width: 100%;
		overflow-x: hidden;
	}
	.container-main {
		padding-left: 1rem;
		padding-right: 1rem;
	}
	[data-eqheight-mobile-auto] {
		height: auto !important;
	}

	.landing-logo {
	    width: 25rem;
	    margin-top: 2rem;
	    max-width: 90%;
	    margin-left: auto;
	    margin-right: auto;
	}

	.deco-bestsellers {
	    width: 176vw;
	    top: 2rem;
	}
	.reviews-section {
	    margin-top: 2rem;
	    margin-bottom: 2rem;
	}
	.deco-reviews-cloud {
	    width: 14rem;
	    top: -1rem;
	}
	.runmag-banner-link {
	    display: block;
	    margin-left: -75vw;
	    margin-right: -75vw;
	    width: calc(100% + 150vw);
	}
	.home-end-section img {
	    display: block;
	    height: auto;
	    margin-left: -10rem;
	    margin-right: -10rem;
	    width: calc(100% + 20rem);
	}

	.prod-deco1 {
	    width: 123%;
	    top: -2rem;
	}
	.prod-shopbox {
	    width: 18rem;
	}

	.rmg-social {
	    width: 25%;
	    height: 5%;
	}
	.rmg-social.fb {
	    top: 59.5%;
	    left: 34%;
	}
	.rmg-social.insta {
	    top: 60%;
	    left: 62%;
	    width: 28%; 
	}
	.rmg-intro-section {
	    padding: 78vw 0 5rem 0;
	}
	.obstacle-header2 {
	    margin-top: 90vw;
	}


	.footer-eye {
	    max-width: 60%;
	    margin: 2rem auto;
	}
	.footer-socials-ctatxt {
		max-width: 80%;
		margin: 1rem auto;
	}
}