/*
	Theme Name: Vida
	Author: Vida

*/

/*------------------------------------*\
    MAIN
\*------------------------------------*/

/* global box-sizing */
*,
*:after,
*:before {
	-webkit-box-sizing:border-box;
	        box-sizing:border-box;
	-webkit-font-smoothing:antialiased;
	font-smoothing:antialiased;
	text-rendering:optimizeLegibility;
}
/* html element 62.5% font-size for REM use */
html {
	font-size:62.5%;
}
body {
	font-family: "Poppins", sans-serif;
	font-size: 13px;
	font-weight: 300;
	color:#2a2a2a;
}

p{
	font-size: 15px;
	line-height: 23px;
}

/* clear */
.clear:before,
.clear:after {
    content:' ';
    display:table;
}

.clear:after {
    clear:both;
}
.clear {
    *zoom:1;
}
img {
	max-width:100%;
	vertical-align:bottom;
}
a {
	color:#2a2a2a;
	text-decoration:none;
}
a:hover {
	color:#2a2a2a;
}
a:focus {
	outline:0;
}
a:hover,
a:active {
	outline:0;
}
input:focus {
	outline:0;
}
.flex {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.wrap {
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
}

.column {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
}

.center {
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}

.j-end {
	-webkit-box-pack: end;
	    -ms-flex-pack: end;
	        justify-content: flex-end;
}

.end {
	-webkit-box-align: end;
	    -ms-flex-align: end;
	        align-items: flex-end;
}

.baseline {
	-webkit-box-align: baseline;
	    -ms-flex-align: baseline;
	        align-items: baseline;
}

.j-center {
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
}

.between {
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
}

/*------------------------------------*\
    STRUCTURE
\*------------------------------------*/

/* wrapper */
#primary.content-area,
.wrapper {
	max-width:1200px;
	width:100%;
	margin:0 auto;
	padding: 0 10px;
	position:relative;
}
/* header */
body:not(.home) .header {
	-webkit-box-shadow: 2px 1px 14px rgb(41 44 61 / 10%);
	        box-shadow: 2px 1px 14px rgb(41 44 61 / 10%);
}

.header .wrapper{
	padding-top: 10px;
	padding-bottom: 10px;
}

.search-toogle svg{
	width: 25px;
}
.search-toogle {
    color: #000000;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    font-size: 15px;
    padding: 10px;
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.header .top-search-form {
	display: none;
	position: absolute;
	top: 100%;
	right: 0;
	left: 0;
	z-index: 999;
	padding: 16px;
	background: #bb9c95;
}

.header .top-search-form form {
	width: 100%;
	position: relative;
}

.header .top-search-form input {
	width: 100%;
	padding: 10px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	border: none;
	outline: none;
	padding-right: 70px;
}

.header .search-submit {
	position: absolute;
	top: 0;
	right: 0;
	right: 0;
	bottom: 0;
	border: none;
	outline: none;
	background: #000000;
	color: #fff;
}

.header #menu-item-116{
	display: none;
}

/* nav */
.nav{
	-webkit-box-flex: 1;
	    -ms-flex-positive: 1;
	        flex-grow: 1;
	margin: 0 5px;
}
.nav>ul {
    display: none;
}

.nav ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}
.nav ul li{
	position: relative;
} 

.nav>ul>li {
	display: inline-block;

}
.nav ul>li>a {
    color: #a4a4a4;
    font-size: 12px;
    display: block;
    padding: 10px 5px;
}

.nav ul ul {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	z-index: 9;
	text-align: left;
	white-space:nowrap
}

.nav ul li:hover> ul{
	display: block;
}

.nav ul ul ul {
	top: 0;
	left: 100%;
	width: 100%;
}

.nav ul ul li a {
    padding: 9px 10px;
    display: block;
	color: #fff;
    background: #bb9c95;
	-webkit-transition: .3s linear;
	-o-transition: .3s linear;
	transition: .3s linear;
}

.nav ul ul li a:hover{
	background: #000;
}

.button-main{
	display: inline-block;
	font-size: 12px;
	text-transform: uppercase;
	border-radius: 5px;
	background: #bb9c95;
	padding: 5px 10px;
	color: #fff!important;
	-webkit-transition: .3s linear;
	-o-transition: .3s linear;
	transition: .3s linear;
}

.button-main:hover{
	background: #000;
}

.button-main.black{
	background: #000;
}

.button-main.black:hover{
	background: #bb9c95;
}

.button-container .button-main{
	margin-left: 5px;
}

.socials a{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	width: 29px;
	height: 29px;
	border-radius: 50%;
	background: #b5b5b8;
	margin-left: 5px;
}


.socials a svg{
	width: 18px;
}

#mmenu_button{
	margin-left: 20px;
}

#mmenu_button>span {
    display: block;
    height: 2px;
    background: black;
    width: 30px;
    margin-bottom: 5px;
    border-radius: 5px;
}

#mmenu_button>span:last-child{
	margin-bottom: 0;
} 

.mm-menu_offcanvas {
    z-index: 9;
}

.is-hidden-mobile{
	display: none!important;
}

/* sidebar */
.banner{
	position: relative;
}

.banner-content{
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	    -ms-transform: translateY(-50%);
	        transform: translateY(-50%);
	left: 0;
	right: 0;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 10px;
}

.banner-content-wrapper{
	max-width: 300px;
	margin-left: auto;
}

.banner img {
	width: 100%;
	min-height: 200px;
	-o-object-fit: cover;
	   object-fit: cover;
}

.banner-title{
	font-family: "Playfair Display", serif;
	font-size: 19px;
	font-style: italic;
	margin: 0;
	color: #fff;
}

.banner-text p{
	font-size: 16px;
	font-weight: 500;
	font-style: italic;
	color: #fff;
}

.banner .button-main{
	padding: 9px 50px;
}

/* welcome */
.welcome{
	background: #eee9e8;
	text-align: center;
	padding: 45px 0;
}

.welcome h1{
	font-size: 20px;
	margin-top: 0;

}

.welcome p{
	max-width: 880px;
	margin-left: auto;
	margin-right: auto;
}
/* abonements */
.abonements-section{
	margin-bottom: 40px;
}
.abonements-section h2{
    font-size: 27px;
    line-height: 23px;
    text-align: center;
    margin: 50px 0;
}

.abonement-plan{
	width: 100%;
    max-width: 264px;
    padding: 0 25px;
    -webkit-box-sizing: content-box;
            box-sizing: content-box;
	margin-bottom: 40px;
}

.abonement-plan-wrapper{
	background: #eee9e8;
	padding: 25px 30px 35px 30px;
	border-bottom-left-radius: 50px;
	border-bottom-right-radius: 50px;
    height: 100%;
}

.abonement-plan h3{
    font-size: 36px;
	font-weight: 300;
    line-height: 23px;
    color: #fff;
    margin: 0;
    text-align: center;
    padding: 50px 10px 20px 10px;
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
}

.abonement-plan:nth-child(1) h3 {
    background-color: #bb9c95; 
}

.abonement-plan:nth-child(2) h3 {
    background-color: #c38967; 
}

.abonement-plan:nth-child(3) h3 {
    background-color: #7395a8; 
}

.abonement-price{
	font-size: 35px;
	font-weight: 500;
	text-align: center;
	margin-top: 0;
}

.abonement-price span{
	font-size: 22px;
}

.abonement-description ul{
	list-style: none;
	margin: 0 0 40px 0;
	padding: 0;
}

.abonement-description ul li{
	position: relative;
	font-size: 12px;
	line-height: 17px;
	font-weight: 500;
	padding-left: 15px;
	margin-bottom: 20px;
}

.abonement-description ul li:before{
    content: '✓';
    display: block;
    color: #44c97c;
    position: absolute;
    left: 0;
}

.abonement-plan .button-main{
	text-align: center;
	margin-top: auto;
}


.abonement-plan-outer-wrapper{
	height: 100%;
	border-radius: 50px;
	-webkit-box-shadow: 25px 18px 50px -31px rgba(3,3,3,0.52);
	        box-shadow: 25px 18px 50px -31px rgba(3,3,3,0.52);
}

/* bottom banner */
.bottom-banner{
	position: relative;
}

.bottom-banner img{
	min-height: 400px;
}

.bottom-banner .banner-content-wrapper{
	max-width: 345px;
}

.bottom-banner-text p{
	font-weight: 300;
}

/* klinik shop */
.custom-section{
	margin-top: 40px;
}
.section-headline{
	font-size: 21px;
	line-height: 36px;
	text-align: center;
	margin-bottom: 40px;
}

.section-item{
	width: 100%;
	margin-bottom: 40px;
}

.section-item img{
	margin-bottom: 20px;
}

.section-link{
	font-style: italic;
	font-weight: 400;
}

/* insta */
.instagram-section{
	background: #eee9e8;
	padding: 30px 0 80px 0;
}

.instagram-section svg{
	width: 40px;
	margin-bottom: 20px;
}

.instagram-title{
	margin-bottom: 40px;
}

.instagram-title span{
	font-size: 19px;
}

.widget-section p{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.widget-section p img{
    width: 20%;
    padding: 0 2px;
    margin: 0;
}

/* footer */
.footer {
    padding: 40px 0 20px 0;
	border-top: 1px solid #eee9e8;
}

.footer .wrapper>div {
	width: 100%;
	margin-bottom: 25px;
}

.footer ul {
	margin: 0;
	padding: 0;
	list-style-type: none;
}

.footer ul li ul {
	display: none;
}

.footer p,
.footer li,
.footer a {
	font-size: 13px;
	line-height: 19px;
	font-weight: 400;
	color: #000;
}

.footer a:hover {
	text-decoration: underline;
}

.footer p.h3 {
	font-size: 13px;
	font-weight: 700;
	color: #000;
	margin-top: 0;
	letter-spacing: 1px;
}

.footer-socials.socials a{
	background: #36363f;
}

.copyright{
	background: #bb9c95;
    text-align: center;
    padding: 25px 0 15px 0;
}

.copyright p{
	margin: 0;
	color: #fff;
	font-size: 12px;
	font-weight: 400;
}

/* payments */
.payments{
	text-align: center;
}

.payments img{
	margin: 0;
}

.cart{
	display: block;	
	position: relative;
}

.cart .fa{
	color: #bb9c95;
	font-size: 21px;
}

.cart-count{
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #36363f;
    position: absolute;
    top: -7px;
    right: -4px;
    font-size: 10px;
    text-align: center;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;	
}
/*------------------------------------*\
    PAGES
\*------------------------------------*/



/*------------------------------------*\
    IMAGES
\*------------------------------------*/



/*------------------------------------*\
	TYPOGRAPHY
\*------------------------------------*/

@font-face {
	font-family:'Font-Name';
	src:url('fonts/font-name.eot');
	src:url('fonts/font-name.eot?#iefix') format('embedded-opentype'),
		url('fonts/font-name.woff') format('woff'),
		url('fonts/font-name.ttf') format('truetype'),
		url('fonts/font-name.svg#font-name') format('svg');
    font-weight:normal;
    font-style:normal;
}

/*------------------------------------*\
    RESPONSIVE
\*------------------------------------*/

@media only screen and (max-width:767px) {
	.bottom-banner img{
		-o-object-position: 30%;
		   object-position: 30%;
	}
	.footer .wrapper>div.j-end{
		-webkit-box-pack: start;
		    -ms-flex-pack: start;
		        justify-content: flex-start;
	}
}
@media only screen and (min-width:480px) {
	.banner-content-wrapper{
		margin-left: 30%;
	}
}

@media only screen and (min-width:768px) {
	.banner-content-wrapper {
       max-width: 400px;
    }
	.bottom-banner .banner-content-wrapper{
		max-width: 425px;
		padding-bottom: 40px;
	}
	.banner-title {
		font-size: 24px;
	}
	.bottom-banner .banner-text p{
		font-size: 17px;
	}
	.banner-text p{
		font-size: 19px;
	}
	.bottom-banner:after{
		content: '';
		display: block;
		background: url(/wp-content/uploads/2024/09/vawe.png) no-repeat top/cover;
		position: absolute;
		bottom: -60px;
		left: 0;
		right: 0;
		width: 100%;
		height: 125px;
	}
	.bottom-banner:before{
		content: '';
		display: block;
		background: url(/wp-content/uploads/2024/09/line.png);
		background-repeat: no-repeat;
		background-size: cover;
		background-position: bottom;
		position: absolute;
		bottom: -30px;
		left: 0;
		right: 0;
		width: 100%;
		height: 118px;
		z-index: 1;
	}
	.section-item{
		width: 50%;
		padding: 0 20px;
	}
	.section-headline {
		position: absolute;
		left: 0;
		right: 0;
		max-width: 200px;
		margin: 0 auto;
		top: 10%;
		font-size: 27px;
		margin-bottom: 0;
	}
	.footer{
		padding: 60px 0;
	}
	.footer .wrapper>div {
        width: 25%;
	}
}

@media only screen and (min-width:960px) {
	body:not(.home) .header {
		margin-bottom: 40px;
	}
	.nav >ul {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
	}
	.is-hidden-mobile{
		display: block!important;
	}
	.is-hidden-desktop{
		display: none!important;
	}
	.socials{
		margin-bottom: 20px;
	}
	.button-container {
		padding-bottom: 20px;
	}
	#mmenu_button{
		display: none;
	}
	.header .wrapper{
		-webkit-box-align: end;
		    -ms-flex-align: end;
		        align-items: flex-end;
	}

	.logo {
		margin-bottom: -35px;
		z-index: 1;
	}
	.navigation{
		padding-bottom: 10px;
	}
	.banner-content-wrapper {
		max-width: 630px;
	 }
	 .bottom-banner .banner-content-wrapper{
		max-width: 650px;
	}

	.bottom-banner .banner-text p{
		max-width: 550px;
	}
	 .banner-title {
		 font-size: 40px;
	 }
	 .bottom-banner .banner-title{
		font-size:36px;
	 }
}
@media only screen and (min-width:1024px) {
	.nav ul>li>a{
		font-size: 13px;
	}
	.section-headline {
        max-width: 290px;
        top: 17%;
    }
	.custom-section{
		margin-top: 100px;
	}
	.footer .wrapper>div {
        width: 22%;
    }
	.footer .wrapper>div:last-child{
		width: 34%;
	}
	.bottom-banner .banner-content-wrapper{
		max-width: 690px;
	}
	.bottom-banner .banner-title {
        font-size: 40px;
    }

}
@media only screen and (min-width:1140px) {
	.nav ul>li>a{
		padding: 10px 13px;
	}
}
@media only screen and (min-width:1200px) {
	.logo{
		margin-left: 20px;
	}
}

@media only screen and (min-width:1200px) {
	.bottom-banner:before{
		bottom: -50px;
	}
}
@media only screen and (-webkit-min-device-pixel-ratio:1.5),
	   only screen and (-o-min-device-pixel-ratio:3/2),
	   only screen and (min-resolution:144dpi) {

}

@media only screen and (min-width:1600px) {
	.bottom-banner .banner-text{
		margin: 40px 0;
	}
}

/*------------------------------------*\
    MISC
\*------------------------------------*/

::-moz-selection {
	background:#04A4CC;
	color:#FFF;
	text-shadow:none;
}

::selection {
	background:#04A4CC;
	color:#FFF;
	text-shadow:none;
}
::-webkit-selection {
	background:#04A4CC;
	color:#FFF;
	text-shadow:none;
}
::-moz-selection {
	background:#04A4CC;
	color:#FFF;
	text-shadow:none;
}

/*------------------------------------*\
    WORDPRESS CORE
\*------------------------------------*/

.alignnone {
	margin:5px 20px 20px 0;
}
.aligncenter,
div.aligncenter {
	display:block;
	margin:5px auto 5px auto;
}
.alignright {
	float:right;
	margin:5px 0 20px 20px;
}
.alignleft {
	float:left;
	margin:5px 20px 20px 0;
}
a img.alignright {
	float:right;
	margin:5px 0 20px 20px;
}
a img.alignnone {
	margin:5px 20px 20px 0;
}
a img.alignleft {
	float:left;
	margin:5px 20px 20px 0;
}
a img.aligncenter {
	display:block;
	margin-left:auto;
	margin-right:auto;
}
.wp-caption {
	background:#FFF;
	border:1px solid #F0F0F0;
	max-width:96%;
	padding:5px 3px 10px;
	text-align:center;
}
.wp-caption.alignnone {
	margin:5px 20px 20px 0;
}
.wp-caption.alignleft {
	margin:5px 20px 20px 0;
}
.wp-caption.alignright {
	margin:5px 0 20px 20px;
}
.wp-caption img {
	border:0 none;
	height:auto;
	margin:0;
	max-width:98.5%;
	padding:0;
	width:auto;
}
.wp-caption .wp-caption-text,
.gallery-caption {
	font-size:11px;
	line-height:17px;
	margin:0;
	padding:0 4px 5px;
}
.sticky {

}
.bypostauthor {

}

/*------------------------------------*\
    PRINT
\*------------------------------------*/

@media print {
	* {
		background:transparent !important;
		color:#000 !important;
		-webkit-box-shadow:none !important;
		        box-shadow:none !important;
		text-shadow:none !important;
	}
	a,
	a:visited {
		text-decoration:underline;
	}
	a[href]:after {
		content:" (" attr(href) ")";
	}
	abbr[title]:after {
		content:" (" attr(title) ")";
	}
	.ir a:after,
	a[href^="javascript:"]:after,
	a[href^="#"]:after {
		content:"";
	}
	pre,blockquote {
		border:1px solid #999;
		page-break-inside:avoid;
	}
	thead {
		display:table-header-group;
	}
	tr,img {
		page-break-inside:avoid;
	}
	img {
		max-width:100% !important;
	}
	@page {
		margin:0.5cm;
	}
	p,
	h2,
	h3 {
		orphans:3;
		widows:3;
	}
	h2,
	h3 {
		page-break-after:avoid;
	}
}

/* CUSTOM */
body.single-vida-video .wp-video {
	margin:40px auto;
}
.no-img {
	display: block;
	background-size: contain;
	background-position: center;
	border:1px solid #aaa;
	box-sizing: content-box;
}
.no-img:after {
	content:'';
	display: block;
	padding-bottom:100%;
}
.vid-list > article {
	display: inline-block;
	width: calc(20% - 12px);
	margin-right:12px;
	text-align: center;
}
.vid-list h2 {
	min-height: 90px;
}
.vid-list > article:nth-child(5n+1) {
	margin-right:-5px;
}
@media all and (max-width:991px) {
	.vid-list > article:nth-child(5n+1) {
		margin-right:12px;
	}
	.vid-list > article:nth-child(3n+1) {
		margin-right:-5px;
	}
	.vid-list > article {
		width:calc(33.333% - 12px);
	}
}
@media all and (max-width:767px) {
	.vid-list > article:nth-child(3n+1),
	.vid-list > article:nth-child(5n+1) {
		margin-right:12px;
	}
	.vid-list > article:nth-child(2n+1) {
		margin-right:-5px;
	}
	.vid-list > article {
		width:calc(50% - 12px);
	}
}

.wc-block-checkout__terms a {
	text-decoration: underline;
}