:root {
	--bg-color-main: #fff;
	--bg-color-alt: #f4f4f4;
	--dark-color: #172b43;
	--dark-color-lighter: #a7adb5;
	--medium-color: #396ba8;
	--base-text-color: rgba(21,22,23,1);
	--light-grey-color: rgba(201,201,201,1);
	--light-grey-color-darker: rgba(105,105,105,1);
	--very-light-grey-color: #f6f6f6;


	--nav-font-color-primary: #000;
	--nav-font-color-primary-hover: #000;

	--metamenu-bg-color: linear-gradient(131deg, rgba(0,207,255,0) 32%, rgba(0,207,255,1) 68%);
	--metamenu-bg-color: linear-gradient(131deg, rgba(255,22,85,0) 32%, rgba(255,22,85,1) 68%);
	--metamenu-bg-color: linear-gradient(131deg, rgba(201,201,201,0) 32%, rgba(201,201,201,1) 68%);
	--metamenu-text-color: var(--light-grey-color);
	--metamenu-link-color: var(--light-grey-color);
	--metamenu-link-color-hover: var(--light-grey-color-darker);

	--footer-bg-color: #d9ca4a;
	--footer-bg-color: #B3DBC0;
	--footer-text-color: rgba(0,0,0,0.5);
	--footer-link-color: rgba(0,0,0,0.5);
	--footer-link-color-hover: rgba(0,0,0,1);

	--pre-footer-bg-color: rgba(49,118,116,0.29);
	--pre-footer-text-color: rgba(49,118,116,1);
	--pre-footer-link-color: rgba(49,118,116,1);
	--pre-footer-link-color-hover: rgba(0,0,0,1);


	--primary-color: #00cfff;
	--primary-color: #FF1655;

	--primary-color-darker: #00bde8;
	--primary-color-darker: #ed0946;

	--secondary-color: #d9ca4a;
	--tertiary-color: #F1FCBF;
	--tertiary-color: #fcf5bf;

	--error-color: #ee0000;
	--error-color-darker: #c10000;
	--input-border-color: #d5d9dd;
	--input-border-color-focus: #b3bac1;

	--primary-link-color: var(--primary-color);
	--primary-link-color-hover: var(--primary-color-darker);

	--secondary-text-color: #B3DBC0;
	--tertiary-text-color: #DA4167; 

	--primary-button-bg-color: var(--primary-color);;
	--primary-button-bg-color-hover: var(--primary-color-darker);;
	--primary-button-text-color: #fff;
	--primary-button-text-color-hover: #fff;

	--secondary-button-bg-color: #d9ca4a;
	--secondary-button-bg-color-hover: #cebe48;
	--secondary-button-text-color: #fff;
	--secondary-button-text-color-hover: #fff;

	--tertiary-button-bg-color: #B0C3B9;
	--tertiary-button-bg-color-hover: #8f9c95;
	--tertiary-button-text-color: #fff;
	--tertiary-button-text-color-hover: #fff;
	
	
}








/*
 *
 * Theme main styles
 */
* {	box-sizing: border-box; }

* { scroll-padding-top: 160px; }

html,
body {
	min-height: 100vh;
	margin: 0;
	padding: 0;
	border: 0;
	background: #fff;
	scroll-behavior: smooth;
}
body {
	height: auto;
/*	overflow-x: hidden;*/
	font-family: 'Soleil', sans-serif;
	font-size: 16px;
	color: var(--base-text-color);
    display: flex;
    flex-direction: column;
	justify-content: space-between;
/*	background: #f5ebdc url("../img/index/bg.jpg") repeat center center / 400px auto;*/
}
#primary {
    flex: auto;
	flex: 1;
}
footer {
    height: 25px;
}



/*
 * Text
 * ======================================================== */

p a:hover,
a.uline:hover {
	text-decoration: underline;
}
a.no-underline {
	text-decoration: none !important;
}
a.no-underline span.underline {
	text-decoration: underline !important;
}
@media only screen and (max-width: 600px) {

}
@media only screen and (min-width: 1000px) {

}
h1,
h2,
h3,
button,
.button,
nav {
	font-family: 'Soleil', sans-serif;
}
h1,
h2,
h3,
h4 {
	word-wrap: break-word;
	letter-spacing: 1px;
	white-space: normal;
}
h1 {}
h2 {
	font-size: 21px;
	font-weight: 540;
}
h4 {
    font-size: 1.4rem;
	font-weight: 600;
}

h1,
h2,
h3 {
	letter-spacing: .05rem;
}
strong {
	font-weight: 600;
}

.main ul,
.main ol {
	list-style-position: outside;
}
.main u {
	text-decoration: var(--primary-color) wavy underline;
	color: var(--primary-color);
	font-weight: 550;
}

::-moz-selection { /* for Firefox */
	color: #000;
	background: yellow;
}
::selection {
	color: #000;
	background: yellow;
}


/*
 * Layout
 * ======================================================== */

.main > .container,
.main > article {
	padding-top: 40px;
}
.main article {
	padding-bottom: 40px;
}
section {
	padding: 80px 0;
}
section.app-features {
	padding: 40px 0;
}
.home section#main {
	padding-bottom: 40px;	
}
section.prefooter {
	padding-bottom: 40px;
}
@media only screen and (max-width: 480px) {
	section.app-features {
		padding: 60px 0;
	}
}








.header {
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 1001;
	transition: all 250ms ease-in-out;
	background: #fff;
/*	box-shadow: 0 0 10px 0 rgba(0,0,0,0.15);*/
}
.header.sticky {
	background: #fff;
	box-shadow: 0 0 10px 0 rgba(0,0,0,0.15);
}
.home .header {
/*	background: rgba(0,0,0,0);*/
}

.header .menu-bar,
.footer .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-top: 10px;
	padding-bottom: 10px;
}
.meta-bar {
    padding: 0;
	max-height: 100px;
	transition: all 250ms ease-in-out;
	background: var(--metamenu-bg-color);
	border-bottom: 1px solid rgba(0,0,0,0);
	color: var(--metamenu-text-color);
}
.meta-bar > .container {
	padding-top: 6px;
	padding-bottom: 5px;
	margin-bottom: 0px;
	background: #fff;
}
.header.sticky .meta-bar {
	padding: 0;
	border-bottom: 1px solid rgba(0,0,0,0);
	max-height: 0;
	overflow: hidden;
}

.header a.logo {
	display: block;
	width: 170px;
	height: 50px;
}
.header a.logo span {
	display: none;
}
.logo img {
	width: 170px;
	height: auto;
	overflow: visible !important;
	transition: transform 250ms ease-in-out;
	transform: scale(1.45) translateY(-7px);
}
.header.sticky .logo img {
	transform: scale(1.3) translateY(10px);
}




/*
 * Grids
 * ======================================================== */

.grid .item {
	color: var(--base-text-color);
	display: block;
	position: relative;
	box-shadow: 0 10px 30px rgba(0,0,0,0.1);
	transition: box-shadow 250ms ease-in-out;
	text-decoration: none;
	padding-bottom: 40px;
}
.item:hover {
	box-shadow: 0 20px 30px rgba(0,0,0,0.15);
}
.grid a.item {
	cursor: pointer;
}
.grid .item h2 {
	font-size: 30px;
	font-weight: 700;
	color: var(--main-color-one);
	word-break: break-word;
}
.grid .item h3,
.grid .item h2.h3 {
	font-size: 21px;
	line-height: 30px;
	font-weight: 600;
	color: var(--base-text-color);
}
.item .inner {
	padding: 30px;
	position: relative;
}
.item .image-box {
	position: relative;
	overflow: hidden;
	min-height: 209px;
	max-height: 209px;
	width: 100%;
}
.item img {
	display: block;
	width: auto;
	height: auto;
	transform: scale(1.1);
	transition: transform 250ms ease-in-out;
}
.item:hover .image-box img {
	transform: scale(1.135);
}
.image-box .image-overlay {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(131deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,.05) 100%);
	background: linear-gradient(131deg, #469c7c 0%, #469c7c05 100%);
	mix-blend-mode: overlay;
}
.item .status-label {
	display: inline-block;
	position: absolute;
	left: -10px;
	top: 10px;
	padding: 4px 20px;
	font-size: 12px;
	letter-spacing: 1px;
	text-transform: uppercase;
	background: var(--main-color-three);
	color: #fff;
}
.item .video-icon {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	display: flex;
	justify-content: center;
	flex-direction: column;
	text-align: center;
	color: #fff;
	font-size: 70px;
	transition: font-size 250ms ease-in-out;
}
.item .no-box {
	height: 20px;
	width: 100%;
	margin-bottom: 30px;
	background: #E3E3E3;
}
.item .icon-nav {
	position: absolute;
	color: #F0F0F0;
	pointer-events: none;
	font-size: 28px;
	line-height: 28px;
	height: 28px;
	width: 28px;
	right: 10px;
	bottom: 20px;
	transition: color 250ms ease-in-out;
}
.item:hover .icon-nav {
	color: #e0e0e0;
}
.item-overlay {
	position: absolute;
	width: 100%;
	height: 100%;
	padding: 16px;
	background: rgba(0,0,0,0.4);
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	opacity: 0;
	text-align: center;
	transition: opacity 200ms ease-in-out;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
.item:hover .item-overlay {
	opacity: 1;
}
.item-overlay h3 {
	color: #fff;
	font-weight: 400;
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 2px;
}
.item-overlay .text {
	color: #fff;
	font-size: 14px;
}

.item .meta {
	position: absolute;
	left: 0;
	bottom: 0;
	padding: 0 30px 24px 30px;
	color: var(--main-color-one);
	font-size: 13px;
	font-weight: 600;
	display: flex;
	justify-content: flex-start;
}
.item .meta > * {
	margin-right: 24px;
}
.item .meta .text {
	opacity: 0.4;
	padding-left: 3px;
}
.item .meta .related {
	display: flex;
	justify-content: flex-start;
	align-content: center;
	align-items: center;
}
.item .meta .related .text {
	opacity: 0.4;
	padding-left: 0;
	font-size: 15px;
	font-weight: 500;
}
.item .meta .count {
	opacity: 1;
	padding-left: 8px;
	font-size: 24px;
}




.readmore-box{
	padding: 40px 0;
	text-align: right;
}
.readmore-box a {
	color: var(--primary-button-bg-color);
	text-decoration: none;
	font-size: 16px;
	font-weight: 500;
}
.readmore-box a:hover {
	color: var(--primary-button-bg-color-hover);
	text-decoration: none;
}
.readmore-box a span,
.readmore-box a:hover span {
	text-decoration: underline;
}
.readmore-box a i {
	text-decoration: none;
	font-size: 11px;
	font-weight: 300;
	padding-left:10px;
}















/*
 * Hero
 * ======================================================== */

.hero {
	background-color: var(--pre-footer-bg-color);
	height: 600px;
	background-size: cover;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
	padding: 20px 0;
	position: relative;
}/*
.hero::before {
	content: "";
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(131deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,.1) 100%)
}*/
.hero .container,
.hero .container-inner {
	height: 100%;
	display: flex;
	justify-content: space-between;
}

.hero .container-inner.hero-inner-flex {
	justify-content: center;
	flex-direction: column;
}



.hero .container-inner {
	width: 100%;
}
.hero .container-inner > .right {
	height: 100%;
	flex: 1;
}
.hero .container-inner > .left {
	height: 100%;
	flex: 2;
}
.hero .container-inner > .left .panel,
.hero .container-inner > .right {
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	
}
.tagline {
	font-size: 33px;
	line-height: 40px;
	font-weight: 600;
	width: 90%;
}
.home .tagline {
	font-family: 'Newake';
	font-size: 80px;
	line-height: 1.1;
	font-weight: 400;
	letter-spacing: 3px;
}




@media (max-width: 900px) {
	.hero.has-fixed-message .container-inner .tagline {
		font-size: 26px;
		line-height: 32px;
	}
}
@media (max-width: 800px) {
	.hero.has-fixed-message {
		height: 585px;
	}
	.hero .container-inner {
		flex-direction: column;
	}
	.hero.has-fixed-message .container-inner .tagline {
		text-align: center;
	}
	.home .tagline {
		font-size: 36px;
		line-height: 48px;
		width: 60%;
	}
}
@media only screen and (max-width: 480px) {
	.tagline {
		font-size: 26px;
		line-height: 32px;
		font-weight: 600;
		width: 100%;
	}
	.hero.has-fixed-message {
		height: auto;
	}
}






/*
 * Home page
 * ======================================================== */
section.branding {
	padding-top: 0;
}
section.branding .left,
section.branding .right {
	width: 49%;
}
.branding .branding-image {
	display: block;
	margin: 0 auto;
	width: 400px;
	height: auto;
	z-index: 2;
	position: relative;
/*	transform: translateY(-30px);*/
	overflow: hidden;
}
.branding img.branding-image {
	width: 95%;
}


.branding .branding-tagline {
/*	transform: translateY(-50px);*/
	padding-bottom: 50px;
}
.branding .branding-tagline h1 {
	font-family: 'Newake';
	font-size: 74px;
	line-height: 1.167;
	font-weight: 400;
	letter-spacing: 3px;
/*	color: var(--primary-color);*/
}
.branding .branding-tagline h2 {
	font-size: 34px;
	line-height: 1.1;
	font-weight: 550;
	letter-spacing: 1px;
	color: #adadad;
}
@media only screen and (max-width: 1100px) {
	.branding .branding-tagline {
		padding-bottom: 34px;
	}
	.branding .branding-tagline h1 {
		font-size: 64px;
	}
	.branding .branding-tagline h2 {
		font-size: 28px;
	}
}
@media only screen and (max-width: 960px) {
	.branding .branding-tagline {
		padding-bottom: 24px;
	}
	.branding .branding-tagline h1 {
		font-size: 54px;
	}
	.branding .branding-tagline h2 {
		font-size: 24px;
	}
}
@media only screen and (max-width: 840px) {
	.branding .branding-tagline {
		padding-bottom: 16px;
	}
	.branding .branding-tagline h1 {
		font-size: 50px;
	}
	.branding .branding-tagline h2 {
		font-size: 21px;
	}
}
@media only screen and (max-width: 760px) {
	.branding .branding-tagline {
		padding-bottom: 10px;
	}
	.branding .branding-tagline h1 {
		font-size: 40px;
	}
	.branding .branding-tagline h2 {
		font-size: 18px;
	}
}
@media only screen and (max-width: 660px) {
	.branding .container.flex {
		display: block;
	}
	section.branding .left,
	section.branding .right {
		text-align: center;
		width: 80%;
		margin: 0 auto;
		padding: 0;
	}
	.branding .branding-tagline h1 {
		font-size: 9vw;
	}
	.branding .branding-tagline h2 {
		font-size: 4vw;
	}
	.branding img.branding-image {
		width: 100%;
	}
}

@media only screen and (max-width: 480px) {
	.home section {
		text-align: center;
	}
	.flex.flex-split {
		flex-wrap: wrap;
	}
	section.app-features:nth-of-type(odd) .flex.flex-split {
		flex-direction: column-reverse;
	}
	.flex.flex-split .text,
	.flex.flex-split .image {
		width: 100%;
	}	
}


section.branding .right {
	position: relative;
}
section.branding .right::before {
	content: "";
	display: block;
	aspect-ratio: 1 / 1;
	width: 90%;
	height: auto;
	border-radius: 50%;
	position: absolute;
	background: var(--tertiary-color);
	right: 10%;
	bottom: 0;
}
section.branding .right::before {
	  border-radius: 350px 550px 250px 550px / 550px 250px 550px 250px;
	  animation: wobbleBorderRadius 5s ease-in-out alternate infinite;
}
@keyframes wobbleBorderRadius {
	50%  { border-radius: 550px 450px 350px 550px / 350px 550px 550px 450px; }
	100% { border-radius: 550px 250px 550px 250px / 250px 550px 250px 550px; }
}
.store-logos {
	display: flex;
	justify-content: center;
	gap: 30px;
	align-content: center;
	align-items: center;
	padding-top: 80px;
}
.store-logos .badge {
	height: 44px;
	width: auto;
}
@media only screen and (max-width: 800px) {
	.store-logos {
		padding-top: 60px;
	}
}
@media only screen and (max-width: 660px) {
	.store-logos {
		padding-top: 40px;
	}
}
@media only screen and (max-width: 480px) {
	.store-logos {
		padding-top: 20px;
	}
}




section.what-is-it {
	padding: 100px 0 60px 0;
	text-align: center;
}
.what-is-it .pre-h {
	position: relative;
	padding-bottom: 1px;
}
.what-is-it .pre-h .incent {
	position: absolute;
	width: auto;
	padding: 20px 30px;
	color: #000;
	font-weight: 550;
}
.what-is-it .pre-h .incent-one {
	left: 0;
	transform: translateY(-180%);
}
.what-is-it .pre-h .incent-two {
	right: 0;
	transform: translateY(-120%);
}
.what-is-it .pre-h .incent::before {
	content: "";
	position: absolute;
	z-index: -1;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	clip-path: polygon(0px 11%,97% 1px,96% 97%,3% 97%);
	transition: 250ms all;
	background: var(--tertiary-color);
}
.what-is-it .pre-h .incent-two::before {
	clip-path: polygon(8px 5%,94% 6px,97% 95%,2% 97%);
}
.what-is-it h2 {
	font-family: 'Newake';
	font-size: 34px;
	letter-spacing: 1px;
	line-height: 1.5;
}
.what-is-it h2 .sup,
.what-is-it h2 .sub {
	display: block;
	font-weight: 400;
	font-size: 21px;
	font-family: 'Soleil', sans-serif;
}
.what-is-it h2 .sup {
	opacity: 0.5;
	font-size: 18px;
	padding-bottom: 8px;
}
.what-is-it h2 .sub {
	padding-top: 8px;
}


.main ul.home-uniques {
	padding-left: 0;
	list-style: none;
}
.home-uniques li i {
	color: var(--primary-color);
	margin-right: 10px;
	animation: bounceRight 4500ms infinite;
}
.home-uniques li:nth-child(2) i {
	animation-delay: 750ms;
}
.home-uniques li:nth-child(3) i {
	animation-delay: 1500ms;
}
@keyframes bounceRight {
	0%,
	10%,
	25%,
	40%,
	50%,
	100%{
		transform: translateX(0);
	}
	20% {
		transform: translateX(-30px);
	}
	30% {
		transform: translateX(-15px);
	}
}
.app-features h2 {
  font-family: 'Newake';
  font-size: 24px;
  letter-spacing: 1.2px;
  line-height: 1.5;
}






/*
 * Regular content
 * ======================================================== */
.main h1 {
	font-size: 33px;
	line-height: 40px;
	font-weight: 600;
}
article h3 {
	font-size: 17px;
	font-weight: 550;
}
.step-text {
	color: var(--primary-color);
}
.step-number {
	display: inline-block;
	background: var(--primary-color);
	width: 30px;
	line-height: 25px;
	text-align: center;
	border-radius: 50%;
	color: #fff;
	padding-top: 5px;
	margin-right: 15px;
}
.main ul {
	list-style-type: square;
	list-style-position: outside;
	padding-left: 14px;
}
.main ul li {
	padding-left: 10px;
	margin-bottom: 0;
}
#primary {
	padding-top: 40px;
	padding-bottom: 60px;
}
.home #primary {
	padding-top: 30px;
	padding-bottom: 0;
}
.entry-content {
	padding-bottom: 40px;	
}
#breadcrumbs {
	padding-bottom: 40px;
	color: #999;
	font-size: 13px;
}
blockquote {
    width: 100%;
	padding-left: 10%;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
	border-left: 2px solid var(--tertiary-text-color);
}
.entry-content img {
	width: auto;
	height: auto;
}
img.alignright {
	float: right;
	margin-left: 20px;
	max-width: 50%;
	width: auto;
	height: auto;
}
img.alignleft {
	float: left;
	margin-right: 20px;
	max-width: 50%;
	width: auto;
	height: auto;
}

.entry-content a:not(.button) {
	color: var(--primary-link-color);
	text-decoration: underline dotted;
}
.entry-content a:not(.button):hover {
	color: var(--primary-link-color-hover);
	text-decoration: underline;
}
body:not(.page-id-788) .main ol {
	counter-reset: listCounter;
}
body:not(.page-id-788) .main ol li {
	position: relative;
	z-index: 2;
	padding-left: 21px;
	counter-increment: listCounter;
	padding-bottom: 14px;
}
body:not(.page-id-788) .main ol li::before {
	content: counter(listCounter);
	width: 30px;
	height: 30px;
	background: #fff;
	position: absolute;
	z-index: 1;
	left: -27px;
	text-align: center;
	line-height: 30px;
	color: var(--primary-color);
	border-radius: 50%;
	border: 1px solid var(--primary-color);
	top: -4px;
}
body:not(.page-id-788) .main ol.black li::before {
	color: var(--light-grey-color);
	border: 1px solid var(--light-grey-color);
}
.main ol li strong + br {
	display: block;
	height: 0;
	width: 100%;
	margin: 3px 0px;
}


p .small {
	font-size: 85%;
}


.faux-label {}

body .tw-pagination {
	margin: 0 auto;
	text-align: center;
	padding: 20px 0;
}
body .tw-pagination li {
	list-style: none;
	display: inline-block;
	padding-right: 6px;
}
body .tw-pagination a,
body .tw-pagination .current,
body .tw-pagination .prev,
body .tw-pagination .next {
	display: inline-block;
	margin-right: 4px;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	line-height: 40px;
    text-align: center;
    text-decoration: none;
    background: #e7e7e7;
    border: 1px solid #d7d7d7;
    color: #666666;
	padding: 0;
}
body .tw-pagination .prev,
body .tw-pagination .next {
    color: #666666;
    background: #f7f7f7;
    border: 1px solid #e7e7e7;
}
body .tw-pagination .current {
    color: var(--primary-color);
    background: #fff;
    border: 1px solid var(--primary-color);
}
body .tw-pagination a:hover {
    background: var(--primary-color);
    border: 1px solid var(--primary-color);
    color: #fff;
}
body .tw-pagination .prev:hover,
body .tw-pagination .next:hover {
    color: #333;
    background: #e7e7e7;
    border: 1px solid #e7e7e7;
}
@media only screen and (max-width: 800px) {
	.contact.flex {
		display: block;
	}
}
nav.post-nav {
	display: flex;
	justify-content: space-between;
	align-content: center;
	align-items: center;
}
nav.post-nav > *,
nav.post-nav a {
	background: var(--primary-button-bg-color);
	color: var(--primary-button-text-color);
	padding: 0px 20px;
	border-radius: 30px;
	transition: all 250ms ease-in-out;
	text-decoration: none !important;
}
nav.post-nav > *:hover,
nav.post-nav a:hover {
	background: var(--primary-button-bg-color-hover);
	color: var(--primary-button-text-color-hover);
}
nav.post-nav div a {
	display: inline-block;
	text-decoration: none;
	font-weight: normal;
	margin: 0 6px;
	padding: 4px 20px;
	background: none;
}
nav.post-nav div a:hover {
	text-decoration: none;
	background: none;
}
.form-content.hidden {
	display: none;
}
#app-dummy-box {
	position: relative;
	display: block;
	width: 280px;
	height: 550px;
	background: transparent url("../img/content/phone-dummy.jpg") no-repeat center top / cover;
	margin-left: auto;
	margin-bottom: 50px;
}
.app-preview #app-dummy-box {
	margin-right: auto;	
}
#app-dummy-overlay {
	position: absolute;
	display: block;
	width: 280px;
	height: 550px;
	background: transparent url("../img/content/phone-dummy-overlay.png") no-repeat center top / cover;
	top: 0;
	left: 0;
	z-index: 2;
}
#app-dummy-background,
#app-dummy-pages {
	position: absolute;
	display: block;
	width: 280px;
	height: 550px;
	background: rgba(0, 207, 255, 1);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 280px auto;
	top: 0;
	left: 0;
	z-index: 1;
}
#app-dummy {
	position: absolute;
	display: block;
	background: transparent;
	height: 513px;
	border-radius: 20px;
	overflow: hidden;
	left: 22px;
	right: 21px;
	top: 18px;
	z-index: 3;
}
#app-footer {
	height: 50px;
	background: rgba(0,0,0,0.53);
	position: absolute;
	width: 100%;
	bottom: 0;
	display: flex;
	justify-content: space-between;
	align-content: center;
	align-items: center;
	padding: 0 20px;
}
#app-footer i {
	color: rgba(221,221,221,1);
	cursor: pointer;
}
#app-footer i:hover {
	color: rgba(255,255,255,1);
}
.main ul.files_list {
	list-style-position: inside;
	padding: 10px;
	background: #eee;
	font-size: 13px;
	line-height: 1.1;
}
.main ul.files_list li {
	padding-left: 6px;
	margin-bottom: 0;
}
#app-dummy-pages {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	overflow: hidden;
}
#app-dummy-pages .book-page {
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
}



/*
 * Pricing
 * ======================================================== */
.pricing-list,
.choose-package-list {
	display: flex;
	justify-content: space-between;
	align-items: center;
	align-content: center;
}
.choose-package-list {
	flex-wrap: wrap;
	padding: 30px 0;
}
.pricing-list .pricing-panel,
.choose-package-list .pricing-panel {
	width: 31%;
	display: block;
	position: relative;
	box-shadow: 0 10px 30px rgba(0,0,0,0.1);
	transition: all 250ms ease-in-out;
	text-decoration: none;
	color: var(--base-text-color);
	transform: scale(1);
	margin-bottom: 20px;
}
.pricing-list .pricing-panel:hover,
.choose-package-list .pricing-panel:hover {
	box-shadow: 0 20px 30px rgba(0,0,0,0.15);
	color: var(--base-text-color);
	transform: scale(1.025);
}
.pricing-panel .inner {
	padding: 40px 30px;
}
.choose-package-list .pricing-panel .inner {
	padding: 30px 20px;
}
.choose-package-list .pricing-panel label {
	cursor: pointer !important;
	margin-bottom: 0;
}

@media (max-width: 900px) {
	.pricing-panel .inner {
		padding: 30px 20px;
	}
}

.choose-package-list .pricing-panel.no-package {
	width: 100%;
	flex-basis: 100%;
}


.pricing-panel h2,
.pricing-panel .text {
	text-align: center;
}
.pricing-panel h2 {
	transition: color 250ms ease-in-out;
	font-size: 30px;
}
.choose-package-list .pricing-panel h2 {
	font-size: 21px;
	margin-bottom: 1rem;
}

.pricing-panel .price,
.package-details .price {
	display: flex;
	justify-content: center;
	align-items: center;
	align-content: center;
	position: relative;
}
.pricing-panel .price .valuta,
.package-details .price .valuta {
	padding-right: 10px
}
.pricing-panel .price .amount,
.package-details .price .amount {
	font-weight: 700;
	font-size: 28px;
}
.choose-package-list .pricing-panel .price .amount {
	font-size: 21px;
}
.pricing-list .what ul,
.package-details .what ul {
	list-style-type: none;
	padding-left: 0;
	width: 100%;
}
.pricing-list .what ul li,
.package-details .what ul li {
	display: flex;
	justify-content: flex-start;
	align-content: flex-start;
	align-items: flex-start;
	font-size: 15px;
	color: #999;
}
.pricing-list .what ul li:before,
.package-details .what ul li:before {
	font-family: 'FontAwesome';
	content: '\f00c';
	min-width: 28px;
	width: 28px;
	text-align: left;
	font-size: 13px;
	color: mediumseagreen;
}
.pricing-panel .link {
	padding: 6px;
	text-align: center;
	color: var(--primary-link-color);
	border-top: 1px solid #eee;
}
@media (max-width: 800px) {
	.pricing-list,
	.choose-package-list {
		display: block;
	}
	.pricing-list .pricing-panel {
		width: 100%;
		display: block;
		margin-bottom: 30px;
	}
	.pricing-panel .inner {
		padding: 30px 40px;
	}
	.pricing-list .what ul {
		width: 90%;
		margin: 0 auto;
	}
}
.package-details {
	display: flex;
	justify-content: space-between;
	align-content: flex-start;
	align-items: flex-start;
}
.package-details .price {
	background: var(--tertiary-color);
	width: 100px;
	height: 100px;
	line-height: 100px;
	border-radius: 50%;
	transform: translateY(-50px);
}
.choose-package-list .pricing-panel .price {
	opacity: 0.3;
}
.choose-package-list .pricing-panel input {
	clip: rect(1px, 1px, 1px, 1px);
	height: 1px;
	overflow: hidden;
	position: absolute !important;
	width: 1px;
}
.choose-package-list .pricing-panel .choose {
	padding: 10px 0;
	font-size: 15px;
	display: flex;
	justify-content: center;
	align-content: center;
	align-items: center;
}
.choose-package-list .pricing-panel .choose .icon {
	display: inline-block;
	line-height: 15px;
	width: 15px;
	height: 15px;
	background: #fff;
	border: 2px solid #fff;
	box-shadow: 0 0 0 2px #000;
	border-radius: 50%;
	margin-right: 10px;
	margin-bottom: 3px;
}
.choose-package-list .pricing-panel .choose .icon-text {
	font-weight: 450;
}
.choose-package-list .pricing-panel input:checked + .choose .icon {
	background: #00AF00;
	box-shadow: 0 0 0 2px #00AF00;	
}
.choose-package-list .pricing-panel input:checked + .choose .icon-text {
	color: #00AF00;
}


img.logo-ideal {
	display: inline-block;
	width: auto;
	height: 30px;
	vertical-align: middle;
}
img.logo-ideal + span{
	vertical-align: middle;
}
.ideal-issuers {
	display: flex;
	justify-content: space-between;
	align-content: center;
	align-items: center;
	flex-wrap: wrap;
	padding-bottom: 40px;
}
.ideal-issuers label {
	width: 31%;
	position: relative;
}
.ideal-issuers label input {
	clip: rect(1px, 1px, 1px, 1px);
	height: 1px;
	overflow: hidden;
	position: absolute !important;
	width: 1px;
}
.ideal-issuers label .label-inner {
	display: flex;
	justify-content: flex-start;
	align-content: center;
	align-items: center;
	padding: 10px;
	background: #f6f6f6;
	border-radius: 4px;
	cursor: pointer;
}
.ideal-issuers label input:checked + .label-inner {
	background: #e0e0e0;
}

.ideal-issuers img {
	display: inline-block;
	width: 30px;
	height: auto;
	vertical-align: middle;
	margin-right: 14px;
}






/*
 * Testimonials
 * ======================================================== */

section.testimonials {
	background: #f0f0f0;
}
section.testimonials .container {
	display: flex;
	justify-content: space-between;
	align-content: center;
	align-items: center;
	flex-wrap: wrap;
}
section.testimonials .testimonial {
	width: 24%;
	background: #fff;
	padding: 30px 20px;
	position: relative;
	border-radius: 60px 50px 40px 80px / 70px 50px 50px 50px;
}
section.testimonials .testimonial:nth-child(2) {
	border-radius: 50px 70px 50px 50px / 50px 60px 40px 80px;
}

section.testimonials .testimonial:after {
	position: absolute;
	content: "";
	right: 40px;
	bottom: -25px;
	width: 0; 
	height: 0; 
	border-left: 26px solid transparent;
	border-right: 26px solid transparent;
	border-top: 26px solid #fff;
}
section.testimonials .stars {
	text-align: center;
	padding-bottom: 10px;
	color: var(--secondary-text-color);
}
@media only screen and (max-width: 800px) {
	section.testimonials .testimonial {
		width: 48%;
		margin-top: 20px;
		margin-bottom: 20px;
	}
}

@media only screen and (max-width: 480px) {
	section.testimonials .testimonial {
		width: 100%;
	}
}

/*
 * FAQ
 * ======================================================== */

.main ul.accordion {
	list-style: none;
	padding-left: 0;
}
.main ul.accordion li {
	padding-left: 0;
	margin-bottom: 20px;
}
.faq h3.faq-question {
	display: flex;
	justify-content: space-between;
	align-content: center;
	align-items: center;
	margin-bottom: 0;
	
	cursor: pointer;
	border-bottom: 1px solid #eee;
	padding-bottom: 10px;
	position: relative;
}
.accordion .icon {
	padding-right: 10px;
	color: rgba(0,0,0,0.3);
}
.accordion li:hover .icon {
	color: rgba(0,0,0,1);
}
.accordion .collapse {
	background: #f6f6f6;
	padding: 20px;
}
.accordion .collapse  p:last-child {
	margin-bottom: 0;
}

.z-print-collapsible {
	display: none;
}
.z-print-collapsible.open {
	display: block;
}




/*
 * File upload
 * ======================================================== */
.note {
    width: 500px;
    margin: 50px auto;
    font-size: 1.1em;
    color: #333;
    text-align: justify;
}
#drop-area {
	border: 1px dashed #ccc;
	border-radius: 4px;
	background: #f6f6f6;
	width: 100%;
	margin: 50px auto;
	padding: 20px;
	position: relative;
}
#drop-area.active {
    border-color: #666;
}
label.inline {
	width: 300px;
	margin: 0 auto;
	display: block;
	text-align: center;
	font-size: 14px;
	color: var(--primary-color);
	cursor: pointer;
}
label.inline:hover {
	color: var(--primary-color-hover);
}
#progress-bar {
	width: 200px;
	margin: 0 auto;
	display: block;
}
#gallery {
    margin-top: 10px;
}
#gallery img {
    width: 150px;
    margin-bottom: 10px;
    margin-right: 10px;
    vertical-align: middle;
}
#gallery span {
    width: 100px;
	height: 100px;
    margin-bottom: 10px;
    margin-right: 10px;
    vertical-align: middle;
	line-height: 100px;
	text-align: center;
	display: inline-block;
	background: #fff;
}
#gallery span.audio-file:before {
	content: "\f001";
	font-family: 'FontAwesome';
}
#upload_files {
    display: none;
}





#created-pages-holder {
	border: 1px dashed #ccc;
	border-radius: 4px;
	background: #eee;
	width: 100%;
	margin: 50px auto;
	padding: 20px;
	position: relative;

    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    grid-gap: 10px;
	
	
}
#created-pages-holder .page {
	background: #fff;
	min-height: 200px;
	position: relative;
}
#created-pages-holder .page .page-number {
	width: 20px;
	height: 20px;
	background: #eee;
	border: 1px solid #eee;
	border-radius: 50%;
	line-height: 20px;
	text-align: center;
	color: #aaa;
	font-size: 11px;
	font-weight: bold;
	margin: -10px auto 0 auto;
	position: relative;
}
#created-pages-holder .page .btn-add-page-image,
#created-pages-holder .page .btn-remove-page-image {
	position: relative;
	width: 100%;
	height: calc(100% - 10px);
	text-align: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-content: center;
	align-items: center;
	cursor: pointer;
}
#created-pages-holder .page .btn-add-page-image .fa-photo {
	width: 100%;
	font-size: 40px;
	color: #eee;
}
#created-pages-holder .page .btn-add-page-image .fa-plus-circle,
#created-pages-holder .page .btn-remove-page-image .fa-times-circle {
	width: 100%;
	font-size: 16px;
	color: var(--primary-color);
	transition: all 250ms ease-in-out;
	transform: scale(1);
}
#created-pages-holder .page .btn-add-page-image:hover .fa-plus-circle,
#created-pages-holder .page .btn-remove-page-image:hover .fa-times-circle {
	transform: scale(1.3);
}
#created-pages-holder .page .btn-remove-page-image .fa-times-circle {
	background: #fff;
	width: 20px;
	height: 20px;
	line-height: 20px;
	border-radius: 20px;
}



#created-pages-holder .page .btn-remove-page-image,
#created-pages-holder .page.has-image .btn-add-page-image {
	display: none;
}
#created-pages-holder .page.has-image .btn-remove-page-image,
#created-pages-holder .page .btn-add-page-image {
	display: flex;
}
#created-pages-holder .page .image-holder {
	width: 100%;
	height: 100%;
	background: #fff;
	position: absolute;
	padding: 4px;
}
#created-pages-holder .page .image-holder img {
	width: 100%;
	object-position: center;
	object-fit: cover;
}
#created-pages-holder .page .page-number:hover {
	cursor: grab;
}
#created-pages-holder input.file-upload {
	display: none;
}

ul.upload-audio-list {
	padding-left: 0;
	list-style: none;
}
ul.upload-audio-list li {
	background: #eee;
	margin: 0 0 10px 0;
	padding: 10px;
	display: flex;
	justify-content: flex-start;
	align-content: center;
	align-items: center;
}
ul.upload-audio-list li label span {
	display: block;
}


ul.upload-audio-list li .play_audio {
	position: relative;
	width: 50px;
	height: 60px;
	background: #fff;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-content: center;
	align-items: center;
	border-radius: 4px;
	margin: 0 8px 0 16px;
	transition: all 250ms ease-in-out;
	box-shadow: 0 0 10px 0 rgba(0,0,0,0);
	cursor: pointer;
}
ul.upload-audio-list li .play_audio:hover {
	box-shadow: 0 10px 20px 0 rgba(0,0,0,0.1);
}
ul.upload-audio-list li .play_audio .fa-music {
	position: absolute;
	width: 20px;
	height: 20px;
	line-height: 20px;
	text-align: center;
	color: #ACACAC;
	background: #fff;
	border-radius: 50%;
	left: 50%;
	top: -10px;
	margin-left: -10px;
	font-size: 12px;
}
ul.upload-audio-list li .play_audio .btn-play {
	width: 22px;
	height: 22px;
	line-height: 22px;
	font-size: 13px;
	text-align: center;
	background: #000;
	color: #fff;
	border-radius: 50%;
}
ul.upload-audio-list li .play_audio .btn-play .fa-play,
ul.upload-audio-list li .play_audio .btn-play .fa-pause {
	line-height: 22px;
}
ul.upload-audio-list li .play_audio .btn-play .fa-pause,
ul.upload-audio-list li .play_audio .btn-play.playing .fa-play {
	display: none;
}
ul.upload-audio-list li .play_audio .btn-play.playing .fa-pause {
	display: inline-block;
}
ul.upload-audio-list li audio {
	display: none;
}

ul.upload-audio-list li .btn-remove-page-audio {
	margin-left: auto;
	margin-right: 20px;
	cursor: pointer;
	width: 20px;
	height: 20px;
	line-height: 20px;
	font-size: 16px;
	color: var(--primary-color);
	transition: all 250ms ease-in-out;
	transform: scale(1);
	display: none;
}
ul.upload-audio-list li .btn-remove-page-audio:hover {
	transform: scale(1.3);
}
ul.upload-audio-list li.has-audio .btn-remove-page-audio {
	display: block;
}



ul.upload-audio-list li .page-number {
	width: 30px;
	height: 30px;
	background: #eee;
	border: 1px solid #eee;
	border-radius: 50%;
	line-height: 30px;
	text-align: center;
	color: #aaa;
	font-size: 16px;
	font-weight: bold;
	margin-left: -25px;
	position: relative;
}
ul.upload-audio-list li .image-holder {
	width: 100px;
	height: 150px;
	background: #fff;
	padding: 4px;
	margin: 0 20px;
}
ul.upload-audio-list li .image-holder img {
	width: 100%;
	object-position: center;
	object-fit: cover;
}





/*
 * Buttons and forms
 * ======================================================== */
/* override z-skeleton */
input, textarea, select, fieldset {
	margin-bottom: 0;
/*    -webkit-appearance: none;*/
}
select {
	-webkit-appearance: none;
	padding-right: 40px;
}
select + i.after-select {
	transform: translateX(-20px);
	float: right;
	position: relative;
	top: -28px;
	
	transform: translateX(-24px) translateY(10px);
	position: absolute;
	top: 0;
}

label .label-inner {
	font-weight: normal;
}

.split-form {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	align-content: flex-start;
	flex-wrap: wrap;
}
.split-form .left,
.split-form .right,
.flex-split .left, 
.flex-split .right {
	width: 49%;
}
.flex-split .image {
	width: 59%;
}
.flex-split .text {
	width: 39%;
}

ul.book-overview-admin {
	list-style: none;
	padding-left: 0;
}
ul.book-overview-admin li {
	display: flex;
	justify-content: flex-start;
	align-content: flex-start;
	align-content: flex-start;
	margin-bottom: 20px;
	padding-left: 0;
}
ul.book-overview-admin li .cover {
	width: 90px;
	height: 160px;
	background: #f6f6f6;
	margin-right: 20px;
}
ul.book-overview-admin li .cover img {
	object-fit: cover;
}

ul.book-overview-admin li .info {
	margin-right: 20px;
}
ul.book-overview-admin li .title {
	font-weight: 500;
}
ul.book-overview-admin li .actions {
	margin-left: auto;
	text-align: right;
}
.actions .btn-action {
	display: inline-block;
	font-size: 14px;
	line-height: 24px;
	text-decoration: none;
	padding: 0 12px;
	border-radius: 6px;
	margin: 2px 4px;
	border-color: var(--primary-button-bg-color);
	background: var(--primary-button-bg-color);
	color: var(--primary-button-text-color);
}
.actions .btn-action:hover {
	border-color: var(--primary-button-bg-color-hover);
	background: var(--primary-button-bg-color-hover);
	color: var(--primary-button-text-color-hover);
}
ul.book-overview-admin ul.meta {
	list-style: none;
	padding-left: 0;
	margin: 0;
	font-size: 90%;
	line-height: 24px;
	color: var(--light-grey-color-darker);
}
ul.book-overview-admin ul.meta li {
	margin-bottom: 0;
}
ul.book-overview-admin ul.meta .label {
	display: inline-block;
	text-transform: uppercase;
	font-weight: 500;
	font-size: 11px;
	line-height: 24px;
	color: var(--light-grey-color);
	padding-right: 6px;
}


table.order-rows {
	width: 100%;
}
table.order-rows .detail {}
table.order-rows .vat {
	text-align: right;
	width: 20%;
}
table.order-rows .amount {
	text-align: right;
	width: 20%;
}
table.order-rows .totals {
	font-weight: 500;
}




.button.button-primary,
button.button-primary,
input[type="submit"].button-primary,
input[type="reset"].button-primary,
input[type="button"].button-primary,
.button.button-white,
button.button-white,
input[type="submit"].button-white,
input[type="reset"].button-white,
input[type="button"].button-white {
	color: var(--primary-button-text-color-hover);;
	background-color: var(--primary-button-bg-color);
	border-color: var(--primary-button-bg-color);
	border-radius: 25px;
	height: 46px;
	padding: 0 50px;
	font-size: 12px;
	line-height: 46px;
	letter-spacing: .2rem;
	text-transform: uppercase;
	min-width: 260px;
	border-width: 2px;
	transition: all 250ms ease-in-out;
}
.button.button-primary:hover,
button.button-primary:hover,
input[type="submit"].button-primary:hover,
input[type="reset"].button-primary:hover,
input[type="button"].button-primary:hover,
.button.button-primary:focus,
button.button-primary:focus,
input[type="submit"].button-primary:focus,
input[type="reset"].button-primary:focus,
input[type="button"].button-primary:focus {
	color: var(--primary-button-text-color-hover);
	background-color: var(--primary-button-bg-color-hover);
	border-color: var(--primary-button-bg-color-hover);
}

.button.button-primary.button-open,
button.button-primary.button-open,
input[type="submit"].button-primary.button-open,
input[type="reset"].button-primary.button-open,
input[type="button"].button-primary.button-open {
	color: var(--primary-button-bg-color);
	background-color: transparent;
	border-color: var(--primary-button-bg-color);
}
.button.button-primary.button-open:hover,
button.button-primary.button-open:hover,
input[type="submit"].button-primary.button-open:hover,
input[type="reset"].button-primary.button-open:hover,
input[type="button"].button-primary.button-open:hover,
.button.button-primary.button-open:focus,
button.button-primary.button-open:focus,
input[type="submit"].button-primary.button-open:focus,
input[type="reset"].button-primary.button-open:focus,
input[type="button"].button-primary.button-open:focus {
	color: var(--primary-button-bg-color-hover);
	background-color: transparent;
	border-color: var(--primary-button-bg-color-hover);
}
.button.button-white.button-open,
button.button-white.button-open,
input[type="submit"].button-white.button-open,
input[type="reset"].button-white.button-open,
input[type="button"].button-white.button-open {
	color: #fff;
	background-color: #ffffff40;
	border-color: #fff;
	text-shadow: 0 0 10px #000;
}
.button.button-white.button-open:hover,
button.button-white.button-open:hover,
input[type="submit"].button-white.button-open:hover,
input[type="reset"].button-white.button-open:hover,
input[type="button"].button-white.button-open:hover,
.button.button-white.button-open:focus,
button.button-white.button-open:focus,
input[type="submit"].button-white.button-open:focus,
input[type="reset"].button-white.button-open:focus,
input[type="button"].button-white.button-open:focus {
	color: var(--primary-button-bg-color);
	background-color: #fff;
	border-color: #fff;
	text-shadow: none;
}



.button.button-inline,
button.button-inline,
input[type="submit"].button-inline,
input[type="reset"].button-inline,
input[type="button"].button-inline {
	color: var(--primary-button-bg-color);
	background-color: transparent;
	border-color: transparent;
	border-radius: 0;
	height: 46px;
	padding: 0 0px;
	font-size: 12px;
	line-height: 46px;
	letter-spacing: .2rem;
	text-transform: uppercase;
	min-width: 40px;
	border-width: 2px;
	transition: all 250ms ease-in-out;
}
.button.button-inline:hover,
button.button-inline:hover,
input[type="submit"].button-inline:hover,
input[type="reset"].button-inline:hover,
input[type="button"].button-inline:hover,
.button.button-inline:focus,
button.button-inline:focus,
input[type="submit"].button-inline:focus,
input[type="reset"].button-inline:focus,
input[type="button"].button-inline:focus {
	color: var(--primary-button-bg-color-hover);
	background-color: transparent;
	border-color: transparent;
}


.button-separator {
	display: inline-block;
	padding: 0 14px;
}





button.button-small,
.button.button-small {
	height: 36px;
	padding: 0 20px;
	font-size: 11px;
	line-height: 36px;
	letter-spacing: .15rem;
	min-width: 60px;
}



.button.button-large,
button.button-large,
input[type="button"].button-large {
	height: 46px;
	padding: 0 36px;
	font-size: 13px;
	line-height: 46px;
	border-radius: 6px;

}
.button:hover {
	text-decoration: none;
}


input[type="file"].file-upload-button::file-selector-button {
	display: inline-block;
	font-family: 'Soleil', sans-serif;
	text-transform: uppercase;
	text-align: center;
	text-decoration: none;
	white-space: nowrap;
	cursor: pointer;
	box-sizing: border-box;
	border-radius: 25px;
	border-width: 2px;
	color: #fff;
	background-color: var(--primary-button-bg-color);
	border-color: transparent;
	font-weight: 600;
	
	height: 26px;
	padding: 0 20px;
	font-size: 11px;
	line-height: 26px;
	letter-spacing: .15rem;
	min-width: 60px;
	
	transition: all 250ms ease-in-out;
}

input[type="file"].file-upload-button::file-selector-button:hover {
	color: #fff;
	background-color: var(--primary-button-bg-color-hover);
	border-color: transparent;
}
input[type=file].file-upload-button{ 
	color:transparent;
}




/*
 * Contact Form 7
 * ======================================================== */
input[type="email"],
input[type="number"],
input[type="search"],
input[type="text"],
input[type="tel"],
input[type="url"],
input[type="password"],
textarea,
select {
    width: 100%;
    margin-top: 0px;
    font-size: 14px;
	font-family: 'Soleil', sans-serif;
}
textarea {
	min-height: 110px;
}
/*** Contact Form 7    */
div.wpcf7-response-output {
    margin: 1em 0.5em 1em;
}
div.wpcf7-validation-errors,
div.wpcf7-acceptance-missing {
    border: 2px solid #f7e700;
	background-color: #f7e700;
	color: #000;
	font-size: 13px;
}
div.wpcf7-mail-sent-ng,
div.wpcf7-aborted {
	border: 2px solid #ff0000;
	background-color: #ff0000;
	color: #fff;
	font-size: 13px;
}

div.wpcf7-mail-sent-ok {
    border: 2px solid #398f14;
	background-color: #398f14;
	color: #fff;
	font-size: 13px;
}
span.wpcf7-not-valid-tip {
    color: #fff;
    font-size: 0.8em;
    font-weight: normal;
    display: block;
	background: #f00;
	padding: 1px 4px;
	margin-bottom: 3px;
	position: relative;
}
span.wpcf7-not-valid-tip:before {
    position: absolute;
    display: block;
	width: 0; 
	height: 0; 
	border-left: 5px solid transparent;
	border-right: 5px solid transparent;
	border-bottom: 5px solid #f00;
	content: "";
	top: -5px;
	left: 10px;
}
/*** Fluent Forms    */
body .fluentform .ff_upload_btn.ff-btn {
	background: var(--main-color-three);
	color: #fff;
	border-radius: 30px;
	font-size: 15px;
}
body .fluentform .ff_upload_btn.ff-btn:hover {
	background: var(--main-color-two);
	color: #fff;
}
body .fluentform .ff-el-input--label {
	margin-bottom: 10px;
	margin-top: 5px;
}
body .ff-message-success {
	border: 1px solid #36bc05;
	background: #36bc05;
	color: #fff;
}



/*
 * Grid (isotope)
 * ======================================================== */

.grid-item { width: 100%; padding: 8px; }
.grid-item--width2 { width: 100%; }


/* Larger than mobile */
@media (min-width: 400px) {}

/* Larger than phablet (also point when grid becomes active) */
@media (min-width: 550px) {
	.grid-item { width: 50%; }
	.grid-item--width2 { width: 100%; }
}

/* Larger than tablet */
@media (min-width: 750px) {
	.grid-item { width: 33.33%; }
	.grid-item--width2 { width: 66.67%; }
}
/* Larger than desktop */
@media (min-width: 1000px) {}
/* Larger than Desktop HD */
@media (min-width: 1200px) {}






/*
 * Swipers
 * ======================================================== */

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
	right: 10px;
}
.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
	left: 10px;
}
.swiper-pagination-bullet-active {
    opacity: 1;
    background: #fff;
}
.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    background: #E67932;
}







/*
 * Maps
 * ======================================================== */
.gmap {
	width: 100%;
	height: 400px;
	border: #ccc solid 1px;
	margin: 0;
}




/*
 * Error message
 * ======================================================== */
.error-msg {
	background: var(--primary-color);
	padding: 20px 30px;
	color: #fff;
	margin: 0 auto 40px auto;
}
.error-msg p:last-of-type {
	margin-bottom: 0;
}
.error-msg a {
	color: rgba(255,255,255,0.8);
}
.error-msg a:hover {
	color: rgba(255,255,255,1);
}
.mobile-warning {
	display: none;
}
@media only screen and (max-width: 480px) {
	.mobile-warning {
		display: block;
	}
}
.mobile-warning .error-msg {
	background: orangered;
}


/*
 * Loading Overlay
 * ======================================================== */

#overlay {
    display: flex;
	flex-direction: column;
	justify-content: center;
	align-content: center;
	align-items: center;
    position: fixed;
    width: 100%;
    min-height: 100%;
    top: 0;
    left: 0;
    right: 0;
	overflow: hidden;
	background: rgba(255,255,255,0.75);
    z-index: 9999;
}
#overlay.off {
    display: none;
	pointer-events: none;
}
#overlay span.loading-text {
	padding-bottom: 20px;
	font-weight: 500;
	color: #000;
	display: inline-block;
	text-align: center;
	width: 100%;
}
#overlay svg.icon-sync {
	width: 60px;
	height: auto;
	margin: 0 auto;
	display: block;
}

.animate-spin {
    animation: spin 2s infinite linear;
    display: inline-block;
}
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(359deg);
    }
}









/*
 * Footer
 * ======================================================== */

.footer {
	background: var(--footer-bg-color);
	color: var(--footer-text-color);
	font-size: 12px;
}
.footer .section.container .left,
.footer .section.container .right {
	width: 50%;
}
@media only screen and (max-width: 480px) {
	.footer .container {
		display: block;
	}
	.footer .section.container .left,
	.footer .section.container .right {
		width: 100%;
		padding: 10px 0;
	}
}
.footer a {
	color: var(--footer-link-color);
	text-decoration: none;
}
.footer a:hover {
	color: var(--footer-link-color-hover);
	text-decoration: underline;
}


.grecaptcha-badge{visibility:collapse !important;}

#user_switching_switch_on {
	background: #000;
	margin-bottom: 0;
	padding: 10px 20px;
}
#user_switching_switch_on a {
	background: var(--primary-link-color);
	text-decoration: none;
	outline: 0;
	color: #fff;
	padding: 1px 12px;
	display: inline-block;
	border-radius: 4px;
}
#user_switching_switch_on a:hover {
	background: var(--primary-link-color-hover);
	text-decoration: none;
}