/*!
Theme Name: socialactive
Theme URI: https://socialactive.com/
Author: Social Active
Author URI: https://socialactive.com/
Description: Description
Version: 1.0.0.1
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: socialactive
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

socialactive is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/

@font-face {
	font-family: 'Averta Std';
	src: local('Averta Std Light'), local('AvertaStd-Light'),
		url('/wp-content/themes/socialactive/fonts/AvertaStd-Regular.woff2') format('woff2'),
		url('/wp-content/themes/socialactive/fonts/AvertaStd-Regular.woff') format('woff');
	font-weight: 300;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Averta Std';
	src: local('Averta Std Regular'), local('AvertaStd-Regular'),
		url('/wp-content/themes/socialactive/fonts/AvertaStd-Regular.woff2') format('woff2'),
		url('/wp-content/themes/socialactive/fonts/AvertaStd-Regular.woff') format('woff');
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Averta Std';
	src: local('Averta Std Bold'), local('AvertaStd-Bold'),
		url('/wp-content/themes/socialactive/fonts/AvertaStd-Bold.woff2') format('woff2'),
		url('/wp-content/themes/socialactive/fonts/AvertaStd-Bold.woff') format('woff');
	font-weight: bold;
	font-style: normal;
	font-display: swap;
}

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Generic
	- Normalize
	- Box sizing
# Base
	- Typography
	- Elements
	- Links
	- Forms
## Layouts
# Components
	- Navigation
	- Posts and pages
	- Comments
	- Widgets
	- Media
	- Captions
	- Galleries
# plugins
	- Jetpack infinite scroll
# Utilities
	- Accessibility
	- Alignments

--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Generic
--------------------------------------------------------------*/

/* Normalize
--------------------------------------------- */

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
	 ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
	line-height: 1.15;
	-webkit-text-size-adjust: 100%;
}

/* Sections
	 ========================================================================== */

/**
 * Remove the margin in all browsers.
 */
body {
	margin: 0;
	font-family: 'Averta Std';
}

/**
 * Render the `main` element consistently in IE.
 */
main {
	display: block;
}


/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
	font-size: 2em;
	margin: 0.67em 0;
}

/* Grouping content
	 ========================================================================== */

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
	box-sizing: content-box;
	height: 0;
	overflow: visible;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
	font-family: monospace, monospace;
	font-size: 1em;
}

/* Text-level semantics
	 ========================================================================== */

/**
 * Remove the gray background on active links in IE 10.
 */
a {
	background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
	border-bottom: none;
	text-decoration: underline;
	text-decoration: underline dotted;
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
	font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
	font-family: monospace, monospace;
	font-size: 1em;
}

/**
 * Add the correct font size in all browsers.
 */
small {
	font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sub {
	bottom: -0.25em;
}

sup {
	top: -0.5em;
}

/* Embedded content
	 ========================================================================== */

/**
 * Remove the border on images inside links in IE 10.
 */
img {
	border-style: none;
}

/* Forms
	 ========================================================================== */

/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
	font-family: inherit;
	font-size: 100%;
	line-height: 1.15;
	margin: 0;
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
	overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
	text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type="button"],
[type="reset"],
[type="submit"] {
	-webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
	border-style: none;
	padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
	outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
	padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *		`fieldset` elements in all browsers.
 */
legend {
	box-sizing: border-box;
	color: inherit;
	display: table;
	max-width: 100%;
	padding: 0;
	white-space: normal;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
	vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
	overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type="checkbox"],
[type="radio"] {
	box-sizing: border-box;
	padding: 0;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
	height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type="search"] {
	-webkit-appearance: textfield;
	outline-offset: -2px;
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
	-webkit-appearance: button;
	font: inherit;
}

/* Interactive
	 ========================================================================== */

/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
	display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
	display: list-item;
}

/* Misc
	 ========================================================================== */

/**
 * Add the correct display in IE 10+.
 */
template {
	display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
	display: none;
}

/* Box sizing
--------------------------------------------- */

/* Inherit box-sizing to more easily change it's value on a component level.
@link http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
*,
*::before,
*::after {
	box-sizing: inherit;
}

html {
	box-sizing: border-box;
}

/*--------------------------------------------------------------
# Base
--------------------------------------------------------------*/

/* Typography
--------------------------------------------- */
body,
button,
input,
select,
optgroup,
textarea {
	color: #000;
	font-family: "Averta Std", sans-serif;
	line-height: 1.5;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	clear: both;
	line-height: 1.2;
	margin-top: 0;
	margin-bottom: 30px;
}

p {
	margin-bottom: 1.5em;
}

dfn,
cite,
em,
i {
	font-style: italic;
}

blockquote {
	margin: 0 1.5em;
}

address {
	margin: 0 0 1.5em;
}

pre {
	background: #eee;
	font-family: "Courier 10 Pitch", courier, monospace;
	line-height: 1.6;
	margin-bottom: 1.6em;
	max-width: 100%;
	overflow: auto;
	padding: 1.6em;
}

code,
kbd,
tt,
var {
	font-family: "Averta Std", monospace;
}

abbr,
acronym {
	border-bottom: 1px dotted #666;
	cursor: help;
}

mark,
ins {
	background: #fff9c0;
	text-decoration: none;
}

big {
	font-size: 125%;
}

/* Elements
--------------------------------------------- */
body {
	background: #fff;
}

hr {
	background-color: #ccc;
	border: 0;
	height: 1px;
	margin-bottom: 1.5em;
}

ul,
ol {
	margin: 0 0 1.5em 0;
}

ul {
	list-style: disc;
	margin-left: 0;
	padding-left: 25px;
}

ol {
	list-style: decimal;
	padding-left: 20px;
}

li>ul,
li>ol {
	margin-bottom: 0;
	margin-left: 1.5em;
}

dt {
	font-weight: 700;
}

dd {
	margin: 0 1.5em 1.5em;
}

/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
	max-width: 100%;
}

img {
	height: auto;
	max-width: 100%;
}

figure {
	margin: 1em 0;
}

table {
	margin: 0 0 1.5em;
	width: 100%;
}

/* Links
--------------------------------------------- */
a {
	color: #f26f26;
	text-decoration: none;
	transition: all 300ms cubic-bezier(0.16, 0.01, 0.77, 1);
}

a:hover,
a:focus,
a:active {
	color: #27a8e0;
}

a:focus {
	outline: 0;
}

a:hover,
a:active {
	outline: 0;
}

/* Forms
--------------------------------------------- */
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
	background: #e6e6e6;
	color: rgba(0, 0, 0, 0.8);
	line-height: 1;
	padding: 0.6em 1em 0.4em;
}

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
	border-color: #ccc #bbb #aaa;
	outline: none;
}

button:active,
button:focus,
input[type="button"]:active,
input[type="button"]:focus,
input[type="reset"]:active,
input[type="reset"]:focus,
input[type="submit"]:active,
input[type="submit"]:focus {
	border-color: #aaa #bbb #bbb;
	outline: none;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea {
	color: #666;
	border: 1px solid #ccc;
	padding: 3px;
	outline: none;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus {
	color: #111;
	outline: none;
}

select {
	border: 1px solid #ccc;
}

textarea {
	width: 100%;
}

/*--------------------------------------------------------------
# Layouts
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Components
--------------------------------------------------------------*/

.site-main .comment-navigation,
.site-main .posts-navigation,
.site-main .post-navigation {
	margin: 0 0 1.5em;
}

.comment-navigation .nav-links,
.posts-navigation .nav-links,
.post-navigation .nav-links {
	display: flex;
}

.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
	flex: 1 0 50%;
}

.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
	text-align: end;
	flex: 1 0 50%;
}

/* Posts and pages
--------------------------------------------- */
.sticky {
	display: block;
}

.post,
.page {
	margin: 0 0 1.5em;
	margin-bottom: 0;
}

.entry-date.published {
	display: none;
}

.page-content,
.entry-content,
.entry-summary {
	margin: 1.5em 0 0;
}

.page-links {
	clear: both;
	margin: 0 0 1.5em;
}

/* Comments
--------------------------------------------- */
.comment-content a {
	word-wrap: break-word;
}

.bypostauthor {
	display: block;
}

/* Widgets
--------------------------------------------- */
.widget {
	margin: 0 0 1.5em;
}

.widget select {
	max-width: 100%;
}

/* Media
--------------------------------------------- */
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
	border: none;
	margin-bottom: 0;
	margin-top: 0;
	padding: 0;
}

/* Make sure logo link wraps around logo image. */
.custom-logo-link {
	display: inline-block;
}

/* Captions
--------------------------------------------- */
.wp-caption {
	margin-bottom: 1.5em;
	max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.wp-caption .wp-caption-text {
	margin: 0.8075em 0;
}

.wp-caption-text {
	text-align: center;
}

/* Galleries
--------------------------------------------- */
.gallery {
	margin-bottom: 1.5em;
	display: grid;
	grid-gap: 1.5em;
}

.gallery-item {
	display: inline-block;
	text-align: center;
	width: 100%;
}

.gallery-columns-2 {
	grid-template-columns: repeat(2, 1fr);
}

.gallery-columns-3 {
	grid-template-columns: repeat(3, 1fr);
}

.gallery-columns-4 {
	grid-template-columns: repeat(4, 1fr);
}

.gallery-columns-5 {
	grid-template-columns: repeat(5, 1fr);
}

.gallery-columns-6 {
	grid-template-columns: repeat(6, 1fr);
}

.gallery-columns-7 {
	grid-template-columns: repeat(7, 1fr);
}

.gallery-columns-8 {
	grid-template-columns: repeat(8, 1fr);
}

.gallery-columns-9 {
	grid-template-columns: repeat(9, 1fr);
}

.gallery-caption {
	display: block;
}

/*--------------------------------------------------------------
# Plugins
--------------------------------------------------------------*/

/* Jetpack infinite scroll
--------------------------------------------- */

/* Hide the Posts Navigation and the Footer when Infinite Scroll is in use. */
.infinite-scroll .posts-navigation,
.infinite-scroll.neverending .site-footer {
	display: none;
}

/* Re-display the Theme Footer when Infinite Scroll has reached its end. */
.infinity-end.neverending .site-footer {
	display: block;
}

/*--------------------------------------------------------------
# Utilities
--------------------------------------------------------------*/

/* Accessibility
--------------------------------------------- */

/* Text meant only for screen readers. */
.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute !important;
	width: 1px;
	word-wrap: normal !important;
}

.screen-reader-text:focus {
	background-color: #f1f1f1;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	clip-path: none;
	color: #21759b;
	display: block;
	font-size: 0.875rem;
	font-weight: 700;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000;
}

/* Do not show the outline on the skip link target. */
#primary[tabindex="-1"]:focus {
	outline: 0;
}

/* Alignments
--------------------------------------------- */
.alignleft {

	/*rtl:ignore*/
	float: left;

	/*rtl:ignore*/
	margin-right: 1.5em;
	margin-bottom: 1.5em;
}

.alignright {

	/*rtl:ignore*/
	float: right;

	/*rtl:ignore*/
	margin-left: 1.5em;
	margin-bottom: 1.5em;
}

.aligncenter {
	clear: both;
	display: block;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 1.5em;
}


/* ##################### */
/* # THEME STYLES # */
/* ##################### */

#kostos-light .plans-list__item .col--20 {
	display: flex;
	justify-content: center;
}

#kostos-light .plans-header {
	padding: 26px 45px;
}

.tab__link {
	width: calc(100% / 6);
	font-size: 14px;
	white-space: pre-wrap !important;
}

.fixed-footer .futohW {
	display: none;
}

.glitch {
	color: white;
	font-size: 200px;
	position: relative;
	display: inline-block;
}

@keyframes noise-anim {
	0% {
		clip: rect(8px, 9999px, 61px, 0);
	}

	5% {
		clip: rect(9px, 9999px, 41px, 0);
	}

	10% {
		clip: rect(31px, 9999px, 80px, 0);
	}

	15% {
		clip: rect(97px, 9999px, 85px, 0);
	}

	20% {
		clip: rect(13px, 9999px, 7px, 0);
	}

	25% {
		clip: rect(54px, 9999px, 55px, 0);
	}

	30% {
		clip: rect(37px, 9999px, 66px, 0);
	}

	35% {
		clip: rect(59px, 9999px, 59px, 0);
	}

	40% {
		clip: rect(61px, 9999px, 39px, 0);
	}

	45% {
		clip: rect(16px, 9999px, 53px, 0);
	}

	50% {
		clip: rect(100px, 9999px, 63px, 0);
	}

	55% {
		clip: rect(36px, 9999px, 31px, 0);
	}

	60% {
		clip: rect(49px, 9999px, 75px, 0);
	}

	65% {
		clip: rect(98px, 9999px, 200px, 0);
	}

	70% {
		clip: rect(64px, 9999px, 22px, 0);
	}

	75% {
		clip: rect(54px, 9999px, 79px, 0);
	}

	80% {
		clip: rect(32px, 9999px, 195px, 0);
	}

	85% {
		clip: rect(9px, 9999px, 86px, 0);
	}

	90% {
		clip: rect(47px, 9999px, 7px, 0);
	}

	95% {
		clip: rect(49px, 9999px, 200px, 0);
	}

	100% {
		clip: rect(33px, 9999px, 79px, 0);
	}
}

.glitch:after {
	content: attr(data-text);
	position: absolute;
	left: 2px;
	text-shadow: -1px 0 red;
	top: 0;
	color: white;
	background: #27a8e0;
	overflow: hidden;
	clip: rect(0, 900px, 0, 0);
	animation: noise-anim 4s infinite linear alternate-reverse;
}

@keyframes noise-anim-2 {
	0% {
		clip: rect(75px, 9999px, 99px, 0);
	}

	5% {
		clip: rect(44px, 9999px, 37px, 0);
	}

	10% {
		clip: rect(3px, 9999px, 19px, 0);
	}

	15% {
		clip: rect(92px, 9999px, 64px, 0);
	}

	20% {
		clip: rect(58px, 9999px, 68px, 0);
	}

	25% {
		clip: rect(89px, 9999px, 69px, 0);
	}

	30% {
		clip: rect(45px, 9999px, 35px, 0);
	}

	35% {
		clip: rect(8px, 9999px, 41px, 0);
	}

	40% {
		clip: rect(29px, 9999px, 47px, 0);
	}

	45% {
		clip: rect(7px, 9999px, 52px, 0);
	}

	50% {
		clip: rect(21px, 9999px, 195px, 0);
	}

	55% {
		clip: rect(88px, 9999px, 59px, 0);
	}

	60% {
		clip: rect(74px, 9999px, 21px, 0);
	}

	65% {
		clip: rect(72px, 9999px, 41px, 0);
	}

	70% {
		clip: rect(57px, 9999px, 198px, 0);
	}

	75% {
		clip: rect(3px, 9999px, 51px, 0);
	}

	80% {
		clip: rect(38px, 9999px, 53px, 0);
	}

	85% {
		clip: rect(4px, 9999px, 36px, 0);
	}

	90% {
		clip: rect(48px, 9999px, 200px, 0);
	}

	95% {
		clip: rect(44px, 9999px, 11px, 0);
	}

	100% {
		clip: rect(16px, 9999px, 55px, 0);
	}
}

.glitch:before {
	content: attr(data-text);
	position: absolute;
	left: -2px;
	text-shadow: 1px 0 blue;
	top: 0;
	color: white;
	background: #27a8e0;
	overflow: hidden;
	clip: rect(0, 900px, 0, 0);
	animation: noise-anim-2 5s infinite linear alternate-reverse;
}

.page-template-default #page:not(.menu-active) .header-left,
.page-template-default #page:not(.menu-active) .header-right__top {
	border-color: #ededed;
}

.page-template-default #page:not(.menu-active) .menu-toggle__wrapper .color--white {
	color: #27a8e0 !important;
}

.page-template-default #page:not(.menu-active) .menu-toggle__wrapper .icon-dots svg {
	fill: #27a8e0;
}

.page-template-default #page:not(.menu-active) .alt-logo {
	opacity: 1;
}

.page-template-default #page:not(.menu-active) .main-logo {
	opacity: 0;
}

.page-template-default #page:not(.menu-active) .the__button.btn--light span {
	color: #000;
}

section.hero.hero--big:before {
	content: "";
	width: 1px;
	height: 100%;
	background: #ededed;
	position: absolute;
	left: 164px;
	top: 0;
}

section.hero.hero--big.bg--brand:before {
	background: #fff;
}

/* ### EDIT ### */
div#edit-post {
	position: fixed;
	height: 100vh;
	background: #f9f9f9;
	width: 100%;
	max-width: 600px;
	box-shadow: 9px 7px 8px 7px #00000008;
	top: 0;
	left: 0;
	padding: 30px 30px 65px 30px;
	z-index: 99999;
	transition: all 300ms ease-in-out;
	overflow: auto;
}

div#edit-post.hidden-edit {
	transform: translateX(-120%);
}

div#edit-post small {
	font-size: 60%;
	line-height: 1.4;
	margin-top: 5px;
	padding: 5px 10px;
	display: block;
	border-left: 2px solid #f26f63;
	background: #fff;
	font-weight: 300;
	font-style: italic;
}

div#edit-post button {
	border: 1px solid #ccc !important;
}

span.acf-required {
	display: none;
}

input.acf-button.button.button-primary.button-large,
.edit-your-page {
	cursor: pointer;
	position: fixed !important;
	left: 10px;
	bottom: 10px;
	z-index: 2;
}

span.close-btn {
	position: fixed;
	left: 10px;
	top: 10px;
	display: block;
	width: 20px;
	height: 20px;
	background-image: url(/wp-content/plugins/social-active-lotl/assets/img/mm-close.svg) !important;
	background-position: center;
	background-size: contain;
	cursor: pointer;
	transition: all 600ms ease;
}

span.close-btn:hover {
	transform: scale(1.05);
}

/* ### end of EDIT ### */

/* ### CREATE PAGE ### */

section.hero .acf-button {
	position: relative !important;
	margin-top: 30px;
}

.page-template-lord-of-the-links .acf-form {
	background: #fff;
	padding: 30px;
}

.has-page-already .edit-your-page {
	position: relative;
	display: inline-block;
	margin-top: 30px;
}

/* ### DESIGN ### */
.single-lotls {
	background: #f9f9f9;
}

.lotls__header {
	margin-bottom: 30px;
}

.lotls__header h1 {
	margin-bottom: 0;
}

.lotls__header img {
	border-radius: 50%;
}

section.lotls-content .social-active-credits a {
    color: var(--booster-button-bg)!important;
}

.acf-field--post-title .acf-input-wrap {
	display: flex;
	align-items: center;
}

.acf-field--post-title .acf-input-wrap input {
	border-left: 0;
	padding-left: 0;
}

.lotls-item a:hover {
	box-shadow: inset 0 0 20px 100px rgb(0 0 0 / 13%);
}

.acf-field--post-title .acf-input-wrap:before {
	content: "https://socialactive.gr/link/";
	color: #adadad;
	font-size: 11px;
	padding-right: 1px;
	background: #fff;
	height: 29px;
	border: 1px solid #cccccc;
	padding: 5px;
	padding-right: 1px;
	border-right: 0;
	cursor: none;
	pointer-events: none;
}

/* Default */
.lotls-item a {
	width: 100%;
	display: inline-block;
	padding: 10px 20px;
	text-align: center;
	margin-bottom: 10px;
	border-radius: 15px;
	background: #f26f26;
	color: #fff;
}

.blinking-cursor.active {
	display: block;
	width: 1px;
	height: 85%;
	margin-right: 45px;
	top: 7%;
	-webkit-animation: 1s blink step-end infinite;
	-moz-animation: 1s blink step-end infinite;
	-ms-animation: 1s blink step-end infinite;
	-o-animation: 1s blink step-end infinite;
	animation: 1s blink step-end infinite;
	border-right: 1px solid #000;
}

@keyframes blink {

	from,
	to {
		opacity: 0;
	}

	50% {
		opacity: 1;
	}
}

@-moz-keyframes blink {

	from,
	to {
		opacity: 0;
	}

	50% {
		opacity: 1;
	}
}

@-webkit-keyframes blink {

	from,
	to {
		opacity: 0;
	}

	50% {
		opacity: 1;
	}
}

@-ms-keyframes blink {

	from,
	to {
		opacity: 0;
	}

	50% {
		opacity: 1;
	}
}

@-o-keyframes blink {

	from,
	to {
		opacity: 0;
	}

	50% {
		opacity: 1;
	}
}

#crumbs {
	position: absolute;
	top: 130px;
	left: calc(4rem + 250px);
	color: #BEE5F6;
	z-index: 4;
}

#crumbs * {
	color: #BEE5F6;
}

body.no--footer footer#colophon {
	display: none;
}

body.no--header header {
	display: none !important;
}

body.no--header .hero {
	padding-left: 0;
	padding-top: 0;
}

body.no--header section.hero.hero--big:before {
	display: none;
}

.show-when-no-header {
	text-align: center;
	margin-top: 50px;
	display: none;
}

body.no--header .show-when-no-header {
	display: block;
}

@media (min-width: 1201px) {
	.single-services #crumbs {
		left: calc(7rem + 165px);
	}
}

.plans-list__group {
	background: #f8f8f8;
	border-top-right-radius: 25px;
	border-bottom-right-radius: 25px;
	margin-bottom: 10px;
	position: relative;
	transition: all 600ms ease;
}

.plans-list__group:before {
	content: "";
	width: 3px;
	height: 57px;
	background: #27a8e0;
	position: absolute;
	left: 0;
	top: 0;
	transition: all 600ms ease;
}

.plans-list__group:hover:before {
	height: 100%;
}

.plans-list__group:hover {
	background: #fff;
	box-shadow: 0px 15px 25px #88888833;
}

.plans-list__help-text {
	position: absolute;
	width: 200px;
	font-size: 14px;
	background: #bee5f6;
	padding: 15px;
	line-height: 1.2;
	left: -20px;
	transform: translate(-100%, -50%);
	top: 50%;
	opacity: 0;
	pointer-events: none;
	z-index: 2;
	text-align: center;
}

.plans-list__item:not(:first-child) .plans-list__help-text {
	left: 5px;
}

.plans-list__help-text:before {
	content: "";
	right: -30px;
	width: 30px;
	height: 100%;
	position: absolute;
	top: 0;
}

img.help__image {
	margin-bottom: 20px;
}

.plans-list__item .plans-list__item-title:hover .plans-list__help-text {
	opacity: 1;
	pointer-events: auto;
}

.plans-list__item {
	padding: 15px 20px;
	transition: all 600ms ease;
}

.plans-list__item:hover {
	background: #e6e6e6;
}

span.disabled-on-plan {
	display: block;
	width: 13px;
	height: 2px;
	background: #B7B7B7;
}

span.active-on-plan {
	display: block;
	background-image: url(/wp-content/themes/socialactive/media/pricing-tick.svg);
	width: 24px;
	height: 24px;
}

.plans-list__group .plans-list__item .plans-list__item-title .the__title {
	font-size: 16px;
}

.plans-list__item:first-child .plans-list__item-title .the__title,
.plans-list__extras .plans-list__item-title .the__title {
	font-size: 18px;
	color: #27a8e0;
	font-weight: 600;
}

.plans-list__group .plans-list__item:not(:first-child) .plans-list__item-title {
	padding-left: 25px;
}

span.content-on-plan {
	font-size: 14px;
}

.plans-list__item .col--15>span {
	margin: 0 auto;
}

.plans-list__item .col--15 {
	text-align: center;
}

span.the__title.title--with-help-text {
	text-decoration: underline;
	text-underline-position: under;
	cursor: help;
}

.plans-list__extras .plans-list__item:nth-child(odd):not(:hover) {
	background: #f8f8f8;
}

.plans-list__extras .plans-list__item {
	position: relative;
	margin-bottom: 10px;
}

.plans-list__extras .plans-list__item:before {
	content: "";
	width: 3px;
	height: 100%;
	background: #27a8e0;
	position: absolute;
	left: 0;
	top: 0;
}

.plans-header {
	padding: 26px 67px;
	background: #fff;
	margin-bottom: 35px;
	border-radius: 60px;
	box-shadow: 0px 15px 25px #88888833;
	position: sticky;
	top: 5px;
	z-index: 5;
}

input#plan-custom-budget {
	font-size: 50px;
	line-height: 1;
	width: 100%;
	max-width: 150px;
	border: 0;
	border-bottom: 2px solid #27a8e0;
	position: relative;
	padding: 5px 45px 5px 10px;
	text-align: right;
	margin: 0;
	-moz-appearance: textfield;
}

input#plan-custom-budget::placeholder {
	color: #E6E6E6;
}

input#plan-custom-budget::-webkit-outer-spin-button,
input#plan-custom-budget::-webkit-inner-spin-button {
	-webkit-appearance: none;
}

.input-with-currency {
	width: 100%;
	max-width: 150px;
	position: relative;
	margin: 0 auto;
}

.input-with-currency span {
	font-size: 50px;
	color: #E6E6E6;
	position: absolute;
	right: 0;
}

section#kostos-analutika .kostos-paketo__filtering-inner>div {
	border-color: #27a8e0;
	color: #27a8e0;
}

section#kostos-analutika .kostos-paketo__filtering-inner>div.active {
	color: #fff !important;
}

/* Hide hobby for now */
section#kostos-analutika .col--15:nth-child(2) {
	opacity: 0;
}

.kostos-paketo__timi .price-per {
	font-size: 26%;
	color: #B7B7B7 !important;
	display: flex;
	align-items: flex-end;
	margin-bottom: 10px;
}

.kostos-paketo__setup-fee {
	color: #B7B7B7;
}

.kostos-paketo__timi {
	display: flex;
	justify-content: center;
}

.kostos-paketo__timi .euro-symbol {
	font-size: 50%;
	vertical-align: top;
}

.kostos-paketo__bottom,
.kostos-paketo__middle {
	padding: 30px 40px;
	background: #fff;
}

.kostos-paketo__middle {
	border-bottom: 1px solid #f8f8f8;
}

.kostos-paketo__top {
	padding: 30px;
	border: 1px solid #fff;
}

ul.kostos-paketo__list {
	list-style: none;
}

ul.kostos-paketo__list li {
	padding-left: 30px;
	margin-bottom: 15px;
	position: relative;
	color: #BEBEBE;
}

.kostos-paketo__item.featured-paketo .kostos-paketo__inner {
	transform: scale(1.1);
	box-shadow: 0px 10px 30px #00000029;
	background: #fff;
}

.featured-paketo .button-wrapper {
	margin-top: 30px;
}

.kostos-paketo__item.featured-paketo .kostos-paketo__top {
	background: #F26F26;
	border-color: #F26F26;
}

ul.kostos-paketo__list li:before {
	content: "";
	width: 19px;
	height: 19px;
	background-image: url(/wp-content/uploads/2021/02/check.svg);
	position: absolute;
	left: 0;
	top: 5px;
	filter: grayscale(1);
}

ul.kostos-paketo__list li.active-item:before {
	filter: none;
}

ul.kostos-paketo__list li.active-item {
	color: #000;
}

.col--33.kostos-paketo__item.featured-paketo .kostos-paketou,
.col--33.kostos-paketo__item.featured-paketo .euro-symbol {
	color: #f26f26 !important;
}

.kostos-paketo__top h3 {
	margin-bottom: 20px !important;
}

.kostos-paketo__filtering-inner {
	display: flex;
	align-items: center;
	justify-content: center;
}

.kostos-paketo__filtering-inner>div {
	border: 1px solid #fff;
	color: #fff;
	padding: 10px 30px;
	position: relative;
	overflow: hidden;
	cursor: pointer;
}

.kostos-paketo__filtering-inner>div span {
	position: relative;
	z-index: 2;
}

.kostos-paketo__filtering-inner>.filtering--big {
	border-top-right-radius: 25px;
	border-bottom-right-radius: 25px;
}

.kostos-paketo__filtering-inner>.filtering--small {
	border-top-left-radius: 25px;
	border-bottom-left-radius: 25px;
}

.kostos-paketo__filtering-inner>.filtering--small:before {
	transform-origin: right;
}

.kostos-paketo__filtering-inner>.filtering--big:before {
	transform-origin: left;
}

.kostos-paketo__filtering-inner>div:before {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	background: #f26f26;
	top: 0;
	left: 0;
	transition: all 600ms ease;
	transform: scaleX(0);
}

.kostos-paketo__filtering-inner>div.active:before {
	transform: none;
}

.moving-image__main-image>img {
	width: 100%;
}

.single-services .hero {
	padding-left: 165px;
	padding-top: 80px;
}

.single-services .featured-testimonials-slider__buttons {
	top: calc(50% - 44px);
	transform: translateY(-50%);
}

.page-service .moving-image {
	margin-right: 0 !important;
	height: auto !important;
}

.page-service .section--boxed {
	position: relative;
	z-index: 2;
	max-width: 100%;
	padding: 0 5rem;
}

.anchor-link__item span {
	color: #27a8e0;
	text-shadow:
		-1px -1px 0 #fff,
		1px -1px 0 #fff,
		-1px 1px 0 #fff,
		1px 1px 0 #fff;
	transition: all 600ms ease;
	cursor: pointer;
}

.anchor-link__item span:hover {
	color: #fff;
	text-shadow:
		-1px -1px 0 #27a8e0,
		1px -1px 0 #27a8e0,
		-1px 1px 0 #27a8e0,
		1px 1px 0 #27a8e0;
}

span.service-arrow {
	background-image: url(/wp-content/themes/socialactive/media/arrow.svg);
	width: 68px;
	height: 68px;
	position: absolute;
	transform: translateY(-50%) rotate(90deg);
	filter: brightness(0) invert(1);
	transform-origin: center;
	top: 50%;
	margin-left: 20px;
	opacity: 0;
	pointer-events: none;
}

.anchor-link {
	position: relative;
}

.anchor-link:hover .service-arrow {
	opacity: 1;
}

.anagki__box-item {
	box-shadow: -20px 20px 30px #00000029;
}

.anagki__box-item img {
	width: 84px;
}

.solution__box-item h4 {
	margin-top: 0;
	line-height: 1;
}

span.solution__number {
	font-size: 127px;
	font-weight: 600;
	color: #27a8e0;
	opacity: .2;
	line-height: 1;
	transform: translateY(25px);
	display: block;
	position: absolute;
	top: 0;
	opacity: 0;
}

.setup__number {
	font-size: 127px;
	font-weight: 600;
	color: #fff;
	opacity: .2;
	line-height: 1;
	transform: translateY(37%) translateX(-52%);
	display: inline-block;
}

.solution__box-item {
	background: #fff;
	position: relative;
}

.setup__boxes {
	height: 40rem;
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
}

.setup__boxes .rotating-item {
	background-image: url(/wp-content/uploads/2021/02/hourglass.png);
	width: 34%;
	height: 49%;
	background-size: contain;
	position: absolute;
	background-position: center;
	background-repeat: no-repeat;
	left: 50%;
	top: 45%;
	transform: translate(-50%, -50%);
}

.setup__box-item {
	position: absolute;
	z-index: 2;
}

.setup__box-item:nth-child(1) {
	left: 15%;
}

.setup__box-item:nth-child(2) {
	left: 69%;
	bottom: 65%;
}

.setup__box-item:nth-child(3) {
	left: 75%;
	bottom: 30%;
}

.setup__box-item:nth-child(4) {
	left: 40%;
	bottom: 10%;
}

.setup__box-item:nth-child(5) {
	left: 5%;
	top: 35%;
}

.procedure__box-item {
	flex: 1 1 32%;
	margin: 0.5%;
	background: #f8f8f8;
}

.procedure__box-item-bottom img {
	height: 84px;
}

.procedure__box-item-top {
	background: #fff;
	padding: 30px 30px 0 30px;
	display: flex;
	align-items: flex-end;
}

.procedure__box-item-bottom {
	padding: 30px;
}

span.procedure__number {
	font-size: 80px;
	font-weight: 600;
	line-height: 1;
	color: #F8F8F8;
	display: block;
	margin-bottom: -12px;
}

.procedure__box-item-top h4 {
	margin-bottom: 10px;
	margin-left: 10px;
}

.procedure__box-item:last-child {
	text-align: center;
	background: #bee5f6;
}

.procedure__box-item:last-child * {
	margin-bottom: .5rem;
	margin-top: 0 !important;
}

.procedure__box-item:last-child .procedure__box-item-top {
	display: none;
}

.page-service__anchor-links {
	margin-bottom: 5rem;
	margin-left: 2rem;
}

.video-wrapper {
	position: relative;
	padding-bottom: 39.25%;
	padding-bottom: 56.3%;
	/* 16:9 */
	height: 0;
}

.video-wrapper iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

section#setup+#kostos {
	background: #4bb7e5;
}

.contact-form-row input:not([type=radio]),
.contact-form-row select,
.contact-form-row textarea {
	border: 1px solid #BEE5F6;
	padding: 10px;
	width: 100%;
	outline: none;
}

.contact-form-row textarea {
	height: 90px;
	margin-top: 10px;
	resize: vertical;
}

.contact-form-row .wpcf7-radio {
	width: 100%;
	display: block;
	margin-top: 10px;
}

.contact-form-row label {
	color: #888888 !important;
}

.contact-form-row select {
	margin-top: 10px;
}

.contact-form-row {
	margin-bottom: 20px;
}

.wpcf7-list-item {
	margin-right: 15px !important;
}

.wpcf7-radio .wpcf7-list-item label {
	cursor: pointer;
}

.contact-form-row input[type=radio]:checked {
	background: #27a8e0 !important;
}

.contact-form-row input[type=radio] {
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	width: 20px;
	height: 20px;
	border: 1px solid #BEE5F6;
	position: relative;
	margin: 0 10px 0 0;
	cursor: pointer;
	outline: none;
}

.contact-form-row input[type=radio]:checked:after {
	color: #fff;
}

.contact-form-row input[type=radio]:after {
	color: #fff;
}

.contact-form-row input[type=radio]::after {
	content: "✓";
	color: #fff;
	left: calc(50% - 5px);
	top: calc(50% - 7.5px);
	position: absolute;
	font-size: 16px;
	line-height: 1;
	transition: all 0.4s ease 0s;
}

.contact-form .the__content {
	border: 1px solid #bee5f6;
	padding: 40px;
}

.form__select span.wpcf7-form-control-wrap:before {
	content: "";
	border-top: 7px solid #27a8e0;
	border-right: 7px solid transparent;
	border-left: 7px solid transparent;
	position: absolute;
	right: 18px;
	top: 50%;
	z-index: 2;
}

.form__select span.wpcf7-form-control-wrap:after {
	content: "";
	width: 30px;
	height: calc(100% - 12px);
	background: white;
	position: absolute;
	top: 11px;
	right: 1px;
}

.form__select span.wpcf7-form-control-wrap {
	position: relative;
	display: block;
}

.page-template-contact footer#colophon>.section--boxed {
	display: none;
}

.contact-info>div {
	position: relative;
	padding-left: 50px;
}

span.contact-icon {
	position: absolute;
	left: 0;
	top: 5px;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}

.contact-icon.icon--map {
	background-image: url(/wp-content/themes/socialactive/media/contact-map.svg);
	width: 20px;
	height: 30px;
}

.contact-icon.icon--contact-phone {
	background-image: url(/wp-content/themes/socialactive/media/contact-phone.svg);
	width: 25px;
	height: 35px;
}

.contact-icon.icon--email {
	background-image: url(/wp-content/themes/socialactive/media/contact-email.svg);
	width: 25px;
	height: 30px;
}

.contact-icon.icon--chat {
	background-image: url(/wp-content/themes/socialactive/media/contact-chat.svg);
	width: 25px;
	height: 25px;
}

body.hero-light #page:not(.menu-active) .header-left,
body.hero-light #page:not(.menu-active) .header-right__top {
	border-color: #ededed;
	transition: all 500ms 300ms ease;
}

body.hero-light #page:not(.menu-active) .header-left {
	background: #fff;
	transition: all 500ms 300ms ease;
}

body.hero-light #page:not(.menu-active) .menu-toggle__wrapper .color--white {
	color: #27a8e0 !important;
}

body.hero-light #page:not(.menu-active) .menu-toggle__wrapper .icon-dots svg {
	fill: #27a8e0;
}

body.hero-light #page:not(.menu-active) .alt-logo {
	opacity: 1;
}

body.hero-light #page:not(.menu-active) .main-logo {
	opacity: 0;
}

body.hero-light #page:not(.menu-active) header .the__button.btn--light span {
	color: #000;
}

.loading-screen {
	background: #BEE5F6;
	position: fixed;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 9999999999999999;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 300ms ease;
}

.loading-counter {
	color: #fff;
	font-size: 80px;
	position: relative;
	z-index: 2;
}

.loading-symbol {
	font-size: 80px;
	color: #F26F26;
	position: relative;
	z-index: 2;
}

.loading-bg {
	width: 100%;
	background: #27a8e0;
	position: absolute;
	z-index: 1;
	height: 100%;
	transform: scaleX(1);
	transform-origin: left;
}

.animate-bg {
	animation: courtain 450ms linear;
}

.loading-screen.hide-loading {
	pointer-events: none;
	opacity: 0;
}

.loading-screen span {
	transition: all 300ms ease;
	display: inline-block;
}

.loading-screen span.hide-loading {
	opacity: 0;
	transform: translateY(-50px);
}

@-webkit-keyframes courtain {
	0% {
		transform: scaleX(0);
	}

	100% {
		transform: scaleX(1);
	}
}

@-moz-keyframes courtain {
	0% {
		transform: scaleX(0);
	}

	100% {
		transform: scaleX(1);
	}
}

@-o-keyframes courtain {
	0% {
		transform: scaleX(0);
	}

	100% {
		transform: scaleX(1);
	}
}

@keyframes courtain {
	0% {
		transform: scaleX(0);
	}

	100% {
		transform: scaleX(1);
	}
}

/* .our-work {
    margin: 0 -3rem;
} */

.work-item {
	width: 33%;
	padding: 1.5vw;
	text-align: center;
}

.hidden {
	visibility: hidden;
	height: 0px !important;
	padding: 0 !important;
}

.hidden img {
	opacity: 0;
}

.our-work .work-item img {
	box-shadow: -20px 20px 30px #0000001a;
	transition: opacity 100ms 300ms linear;
}

.work-item:nth-child(2) {
	margin-top: 3vw;
}

.load-more-wrapper,
.load-more-testimonial {
	text-align: center;
	margin-top: 3rem;
}

#load-more,
#load-more-testiominals {
	cursor: pointer;
}

ul.works-filters li:first-child a {
	border-top-left-radius: 25px;
	border-bottom-left-radius: 25px;
}

ul.works-filters li:last-child a {
	border-top-right-radius: 25px;
	border-bottom-right-radius: 25px;
}

ul.works-filters li a {
	border: 1px solid #27a8e0;
	color: #27a8e0;
	padding: 10px 30px;
}

ul.works-filters {
	list-style: none;
	display: flex;
	justify-content: center;
	margin-bottom: 3rem;
}

ul.works-filters li:hover a {
	background: #27a8e0;
	color: #fff;
}

ul.works-filters li.current-item a {
	background: #f26f26;
	border-color: #f26f26;
	color: #fff;
	pointer-events: none;
}

.the__button.btn--disabled:before {
	width: 100%;
}

.the__button.btn--disabled {
	opacity: .5;
	color: #fff;
	pointer-events: none;
}

.the__button.btn--disabled span {
	color: #fff;
}

.hero+section.featured-testimonials {
	margin-top: -8rem;
}

.testimonial-slider {
	padding: 0 100px;
	position: relative;
}

.testimonial-slider .swiper-wrapper {
	background-color: #fff;
}

.testimonial-item__inner {
	background: #fff;
	padding: 4rem 5rem 2rem;
	box-sizing: border-box;
	box-shadow: -15px 20px 30px #0000001a;
	position: relative;
}

.swiper-slide .testimonial-item__inner {
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.swiper-slide .testimonial-item {
	height: 100%;
}

.testimonial-item__content {
	max-height: 150px;
	overflow: auto;
	line-height: 1.25;
	padding: 0 10px;
}

.testimonial-item__content p:last-child {
	margin-bottom: 0;
}

.testimonial-item__content p:first-child {
	margin-top: 0;
}

.testimonial-slider .swiper-slide:not(.swiper-slide-active) {
	opacity: 0 !important;
}

.testimonial-item__inner:after {
	content: "";
	width: 36px;
	height: 36px;
	background-image: url(/wp-content/uploads/2021/02/grey-logo-icon.svg);
	position: absolute;
	top: 15px;
	left: 15px;
	background-repeat: no-repeat;
	background-position: center;
}

.featured-testimonials-slider__buttons {
	position: absolute;
	left: 0;
	width: 100%;
	top: 20%;
	z-index: 3;
	pointer-events: none;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.testimonial-slider .next__arrow,
.testimonial-slider .prev__arrow {
	background: #27a8e0;
	border: 0;
	pointer-events: auto;
	outline: none;
	width: 60px;
	height: 60px;
}

.testimonial-slider span.swiper-pagination-bullet {
	background: #fff;
	border: 1px solid #27a8e0;
	width: 12px !important;
	height: 12px !important;
	border-radius: 50%;
}

.testimonial-slider span.swiper-pagination-bullet.swiper-pagination-bullet-active {
	background: #27a8e0;
}

.featured-testimonials__pagination {
	margin-top: 3rem;
	margin-bottom: 3rem;
	text-align: center;
}

.testimonial-item__name {
	margin-bottom: 10px;
}

.testimonial-slider .swiper-slide {
	height: auto;
}

.masonry-testimonials .testimonial-item {
	width: 33%;
	padding: 1.5vw;
}

.masonry-testimonials .testimonial-item__inner {
	padding: 2vw;
}

.testimonial-item__inner>div {
	position: relative;
	z-index: 2;
}

.masonry-testimonials .testimonial-item:nth-child(2) {
	margin-top: -5rem;
}

.featured-posts-slider .swiper-slide {
	height: auto;
}

.featured-posts-slider .swiper-slide .post-item {
	height: 100%;
}

.featured-post-item .post-item__inner {
	flex-direction: row;
}

.post-item__left {
	width: 40%;
	margin-bottom: -2px;
}

.post-item__right {
	width: 60%;
	padding: 30px;
}

.featured-post-item .post-item__thumbnail-wrapper,
.featured-post-item .post-item__thumbnail {
	height: 100%;
}

.featured-post-item .post-item__thumbnail {
	padding-bottom: 0;
	background-position: center;
}

.post-item__thumbnail {
	height: 100%;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	transition: all 900ms ease;
}

.post-item__thumbnail-wrapper:hover .post-item__thumbnail {
	transform: scale(1.05);
}

.post-item__thumbnail-wrapper {
	overflow: hidden;
	position: relative;
	height: 100%;
}

.post-item__top {
	margin: -1px;
}

.post-item__content-wrapper {
	padding: 30px 30px 10px 30px;
	background: #fff;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.post-item__link-box {
	width: 80px;
	height: 80px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}

.post-item__link svg {
	width: 16px;
}

.post-item__bottom>div:not(:last-child) {
	margin-right: 20px;
}

.post-item__separator {
	height: 1px;
	flex: 1;
	background: #bee5f6;
}

.post-item {
	margin-left: 1.5%;
	margin-right: 1.5%;
	margin-bottom: 3%;
	box-shadow: 0px 10px 20px #0000001a;
	min-height: 250px;
	max-width: 980px;
}

.post-item__inner {
	height: 100%;
	display: flex;
	justify-content: space-between;
	background: #fff;
	position: relative;
}

.post-item__bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 30px 15px;
}

ul.blog-categories li:first-child a {
	border-top-left-radius: 25px;
	border-bottom-left-radius: 25px;
}

ul.blog-categories li:last-child a {
	border-top-right-radius: 25px;
	border-bottom-right-radius: 25px;
}

ul.blog-categories li a {
	border: 1px solid #fff;
	color: #fff;
	padding: 10px 30px;
}

ul.blog-categories {
	list-style: none;
	display: flex;
	justify-content: center;
	margin-bottom: 3rem;
}

li.current-item a {
	background: #f26f26;
	color: #fff;
}

ul.blog-categories li:hover a {
	background: #fff;
	color: #000;
}

.post-item__link-box .box--arrow {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	background: #fff;
	overflow: hidden;
}

.post-item__link-box .box--arrow svg {
	fill: #f26f26;
	position: relative;
	z-index: 2;
	transition: all 200ms ease;
}

.post-item__link-box .box--arrow:before {
	content: "";
	width: 100%;
	height: 100%;
	background: #f26f26;
	position: absolute;
	top: 0;
	left: 0;
	transform: translateX(-101%);
	transition: all 400ms ease-in-out;
}

.post-item__link-box:hover .box--arrow:before {
	transform: none;
}

.post-item__link-box:hover .box--arrow svg {
	fill: #fff;
}

span.box--text {
	white-space: nowrap;
	transform: translateX(101%);
	transition: all 400ms ease-in-out;
}

.post-item__link-box:hover span.box--text {
	transform: translateX(-103%);
}

.post-item__link {
	text-align: right;
	overflow: hidden;
}

.post-item__link a {
	display: inline-block;
}

.post-item__meta>div:before {
	content: "";
	min-width: 24px;
	min-height: 24px;
	background-size: 12px;
	background-position: center;
	background-repeat: no-repeat;
	display: inline-block;
	border-radius: 50%;
	margin-right: 6px;
}

.post-item__author:before {
	background: #FFCFB4;
	background-image: url(/wp-content/themes/socialactive/media/author.svg);
}

.post-item__date:before {
	background: #FFDFDF;
	background-image: url(/wp-content/themes/socialactive/media/date.svg);
}

.post-item__tags:before {
	background: #BEE5F6;
	background-image: url(/wp-content/themes/socialactive/media/tags.svg);
}

.post-item__meta>div {
	display: flex;
	align-items: center;
	margin-bottom: 11px;
}

.tag-item {
	margin-right: 11px;
}

.featured-posts .post-item__inner {
	flex-direction: column;
}

.featured-posts .post-item__inner>.col--50 {
	width: 100%;
}

.featured-posts .post-item__thumbnail {
	padding-bottom: 52%;
	height: unset;
}

.featured-posts .post-item {
	margin-left: 0;
}

.featured-posts-slider {
	overflow: hidden;
}

div:not(.swiper-container-initialized)>.swiper-wrapper {
	display: none;
}

.post-item__tags a {
	white-space: nowrap;
}

/* TOP POSTS */
.top-posts .post-item__inner {
	flex-direction: column;
}

.top-posts .post-item__inner>.col--50 {
	width: 100%;
}

.top-posts .post-item__thumbnail-container {
	height: 10rem;
}

.top-posts .post-item__link,
.top-posts .post-item__meta {
	display: none;
}

.top-posts h2.entry-title {
	font-size: 18px;
}

.top-posts .post-item__content-wrapper {
	padding: 0;
	padding-top: 15px;
}

.top-posts .post-item {
	margin-right: 0;
	margin-left: 0;
	box-shadow: none;
}

/* END OF TOP POSTS */

aside.post-sidebar {
	padding: 60px;
	background: #fff;
	margin-left: 60px;
	max-width: 450px;
}

.post-item__content-container {
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

@media (min-width: 768px) {
	section#content.blog {
		margin-top: -14rem;
	}
}

.social--icon a {
	background: #f26f26;
	width: 43px;
	height: 43px;
	margin-bottom: 5px;
	display: flex;
	align-items: center;
	justify-content: center;
	fill: #fff;
}

.social--icon:first-child a {
	border-top-left-radius: 25px;
	border-top-right-radius: 25px;
}

.social--icon:last-child a {
	border-bottom-left-radius: 25px;
	border-bottom-right-radius: 25px;
}

.service--general .moving-image__main-image {
	width: 85%;
	margin-top: 14%;
}

.service--general .serviceElem--one {
	top: 23%;
	left: 66%;
	width: 11%;
	z-index: -1;
}

.service--general .serviceElem--two {
	top: 89%;
	left: 15%;
	z-index: -1;
	width: 13%;
}

.service--general .serviceElem--three {
	top: 30%;
	left: 9%;
	width: 13%;
	z-index: -1;
}

.service--general .serviceElem--four {
	top: 0;
	left: -5%;
	width: 14%;
	z-index: -1;
}

.service--general .serviceElem--five {
	top: -6%;
	left: 74%;
	width: 25%;
	z-index: -1;
}

.service--social-media-academy .moving-image__main-image {
	width: 85%;
	margin-top: 14%;
}

.service--social-media-academy .serviceElem--one {
	width: 18%;
	top: 25%;
	left: 27%;
}

.service--social-media-academy .serviceElem--two {
	top: 34%;
	left: 60%;
	z-index: 2;
	width: 23%;
}

.service--social-media-academy .serviceElem--three {
	top: 6%;
	left: 0%;
	width: 21%;
	z-index: -1;
}

.service--social-media-academy .serviceElem--four {
	top: 54%;
	left: -5%;
	width: 20%;
	z-index: -1;
}

.service--socialmedia-for-all .moving-image__main-image {
	width: 85%;
	margin-top: 14%;
}

.service--socialmedia-for-all .serviceElem--one {
	width: 12%;
	top: 60%;
	left: 4%;
}

.service--socialmedia-for-all .serviceElem--two {
	top: 71%;
	left: 82%;
	z-index: -1;
	width: 9%;
}

.service--socialmedia-for-all .serviceElem--three {
	z-index: -1;
	top: 18%;
	left: 14%;
	width: 23%;
}

.service--social-ads .moving-image__main-image {
	width: 85%;
	margin-top: 14%;
}

.service--social-ads .serviceElem--one {
	width: 37%;
	top: 6%;
	left: -18%;
	z-index: -1;
}

.service--social-ads .serviceElem--two {
	top: 60%;
	left: -4%;
	z-index: -1;
	width: 22%;
}

.service--social-ads .serviceElem--three {
	top: 56%;
	left: 77%;
	width: 18%;
}

.service--social-ads .serviceElem--four {
	top: 17%;
	left: 76%;
	width: 13%;
}

.service--social-ads .serviceElem--five {
	top: 47%;
	left: -6%;
	width: 6%;
}

.service--reviews .moving-image__main-image {
	width: 85%;
	margin-top: 14%;
}

.service--reviews .serviceElem--one {
	width: 27%;
	top: 17%;
	left: 66%;
}

.service--reviews .serviceElem--two {
	top: -11%;
	left: 16%;
	z-index: -1;
	width: 25%;
}

.service--reviews .serviceElem--three {
	top: 0;
	left: 56%;
	width: 27%;
}

.whatYouGet__item img {
	max-height: 32px;
	width: 32px;
}

.whatYouGet__item {
    padding: 10px;
}

.whatYouGet__item .item__inner {
    padding: 20px;
    background: #fff;
    height: 100%;
}

.whatYouGet__item h4 {
	margin-left: 10px;
}

section.featured-our-works {
	background-image: linear-gradient(to right, #fff 50%, #f26f26 50%, #f26f26 100%);
}

.featured-our-works__right img {
	margin-top: -4.5rem;
}

.featured-our-works-chat-decor {
	position: absolute;
	right: 10%;
	top: 0;
	transform: translateY(-50%);
	z-index: 2;
	display: flex;
	align-items: center;
	flex-direction: column;
}

/* section.featured-services {
	background-image: url(/wp-content/uploads/2021/01/services-bg.jpg);
	background-size: 100% auto;
	background-repeat: no-repeat;
	background-position: top center;
} */

.featured-services__inner {
	overflow: hidden;
}

.featured-services-slider .swiper-slide:not(.swiper-slide-active) {
	filter: grayscale(1);
	pointer-events: none;
}

.featured-services-slider .swiper-slide:not(.swiper-slide-active) .featured-services__inner-slide {
	opacity: 0 !important;
}

.laptop-holder {
	width: 60%;
	height: 30vw;
	margin: 0 auto;
	position: relative;
}

.laptop-holder .swiper-slide {
	background-size: cover;
	background-position: center;
}

.laptop-holder:after {
	content: "";
	width: 100%;
	height: 100%;
	background-image: url(/wp-content/uploads/2021/01/laptop-bg.png);
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	position: absolute;
	pointer-events: none;
}

.featured-services-slider {
	position: absolute;
	width: 62%;
	left: 50%;
	top: 9%;
	transform: translateX(-50%);
	height: 77%;
}

.featured-services-slider .featured-services__inner-slide {
	padding: 3vw;
	opacity: 1;
	color: white;
}

.featured-services-slider__buttons {
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: absolute;
	width: 83%;
	z-index: 9;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	pointer-events: none;
}

.next__arrow svg,
.prev__arrow svg {
	fill: #fff;
	width: 20px;
}

.next__arrow,
.prev__arrow {
	border: 2px solid #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 64px;
	height: 64px;
	border-radius: 50%;
	margin: 10px 15px;
	cursor: pointer;
	pointer-events: auto;
}

.prev__arrow svg {
	transform: rotate(180deg);
}

span.swiper-pagination-bullet {
	border-radius: 0;
	width: 41px;
	height: 4px;
	background: #fff;
	outline: none;
	transition: all 600ms ease;
	opacity: .9;
}

span.swiper-pagination-bullet.swiper-pagination-bullet-active {
	width: 75px;
}

.featured-services__pagination {
	position: absolute;
	bottom: -30% !important;
	z-index: 5;
	left: 50% !important;
	transform: translateX(-50%);
	display: flex;
	align-items: center;
	justify-content: center;
}

span.services-rocket-decor {
	position: absolute;
	right: 10%;
	top: 0;
	transform: translateY(-50%);
	z-index: 2;
	display: flex;
	align-items: center;
	flex-direction: column;
}

.hero .services-slider .moving-image {
	margin-right: 0;
}

.service--lord-of-the-links .moving-image__main-image {
	width: 71%;
}

.service--lord-of-the-links .serviceElem--one {
	width: 29%;
	top: -8%;
	left: 54%;
}

.service--lord-of-the-links .serviceElem--two {
	top: -8%;
	left: 8%;
	z-index: -1;
	width: 28%;
}

.service--lord-of-the-links .serviceElem--three {
	top: 60%;
	left: 60%;
	width: 20%;
}

.service--lord-of-the-links .serviceElem--four {
	width: 17%;
	left: 6%;
	top: 37%;
}

.post-type-archive-services footer#colophon {
	display: none;
}

.services-slider {
	height: 100%;
	padding: 5rem;
	overflow: hidden;
}

.services-slider .swiper-slide {
	display: flex;
	align-items: center;
}

.services-slider .swiper-slide>div {
	width: 100%;
}

.post-type-archive-services #page:not(.menu-active) .header-left,
.post-type-archive-services #page:not(.menu-active) .header-right__top {
	border-color: #ededed;
}

.post-type-archive-services #page:not(.menu-active) .header-left {
	background: #fff;
}

.post-type-archive-services #page:not(.menu-active) .menu-toggle__wrapper .color--white {
	color: #27a8e0 !important;
}

.post-type-archive-services #page:not(.menu-active) .menu-toggle__wrapper .icon-dots svg {
	fill: #27a8e0;
}

.post-type-archive-services #page:not(.menu-active) .alt-logo {
	opacity: 1;
}

.post-type-archive-services #page:not(.menu-active) .main-logo {
	opacity: 0;
}

.post-type-archive-services #page:not(.menu-active) .the__button.btn--light span {
	color: #000;
}

.post-type-archive-services .hero {
	padding-left: 165px;
	padding-top: 80px;
}

.swiper-slide .homepage-main {
	position: relative;
}

.swiper-slide .moving-image {
	height: auto !important;
}

.services-slider__buttons {
	position: absolute;
	right: 50px;
	top: 50%;
	transform: translateY(-50%);
	z-index: 5;
}

.services-slider__buttons>div {
	outline: none;
	background: #fff;
	border-radius: 50%;
	width: 110px;
	height: 110px;
	border: 1px solid #27a8e0;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 20px 0;
	cursor: pointer;
	transition: all 200ms cubic-bezier(0.16, 0.01, 0.77, 1);
}

.services-slider__buttons .swiper-button-disabled {
	opacity: .1;
}

.services__prev {
	transform: rotate(180deg);
}

.services-slider__buttons>div svg {
	transition: all 200ms cubic-bezier(0.16, 0.01, 0.77, 1);
}

.services-slider__buttons>div:hover svg {
	fill: #27a8e0 !important;
}

.services-slider__buttons>div:hover {
	border-color: transparent;
}

.services__pagination>.tab__link {
	width: auto;
	height: auto;
	background: none;
	margin-right: 20px !important;
	display: flex;
	align-items: center;
	outline: none;
	white-space: nowrap;
}

.services__pagination {
	display: flex;
	align-items: center;
}

span.pagination-dot {
	min-width: 10px;
	height: 10px;
	background: #f26f26;
	border-radius: 50%;
	margin-right: 10px;
	display: block;
}

.swiper-pagination-bullet {
	opacity: .6;
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
	opacity: 1;
}

.swiper-pagination-bullet-active span.pagination-text {
	text-decoration: underline;
}

.services__pagination {
	position: absolute;
	top: 0;
	bottom: auto !important;
	height: 80px;
	margin-left: 200px !important;
	overflow: auto;
	width: calc(100% - 390px) !important;
}

.swiper-slide:not(.swiper-slide-active) .moving-elem {
	transform: none !important;
}

.swiper-slide .moving-elem img {
	transition: all 600ms 200ms ease;
	transform: scale(.5);
	opacity: 0;
}

.swiper-slide.swiper-slide-active .moving-elem img {
	transform: scale(1);
	opacity: 1;
}

.services-slider h2 em {
	font-size: 70%;
}

.what-we-do__top .bg--ascent {
	margin: -1px;
}

.what-we-do__top {
	border: 1px solid #e6e6e6;
	padding: 0;
}

.the__small-quote p {
	margin: 0 auto;
	position: relative;
	z-index: 2;
}

.the__small-quote {
	padding: 35px;
	border-left: 5px solid #f26f26;
	background: #F8F8F8;
	position: relative;
}

.the__small-quote:after {
	content: "";
	width: 80px;
	height: 80px;
	background-image: url(https://socialactive.gr/wp-content/themes/socialactive/media/footer-logo.svg);
	position: absolute;
	right: 20px;
	top: 20px;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}

.social-content__item>div {
	background: #fff;
	height: 100%;
	padding: 30px;
	padding-bottom: 50px;
}

.social-content__item {
	padding: 30px 15px;
}

section.what-we-do {
	background: url(/wp-content/themes/socialactive/media/round-grey-bg.svg);
	background-size: 80% auto;
	background-position: right 150%;
	background-repeat: no-repeat;
}

.quote__title {
	position: relative;
}

.quote__title:before {
	content: "";
	width: 70px;
	height: 70px;
	background-image: url(/wp-content/themes/socialactive/media/quote-light-blue.svg);
	position: absolute;
	left: -40px;
	top: -20px;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}

#page.menu-active .hero {
	opacity: 0;
}

.hero {
	height: 100vh;
	transition: all 590ms linear;
	padding-left: 165px;
	padding-top: 80px;
	overflow: hidden;
}

.hero.hero--big {
	min-height: 100vh;
	height: auto;
}

.hero .section--boxed,
.hero .cols--um {
	height: 100%;
}

.hero .moving-image {
	position: relative;
	margin-right: -11%;
	margin-top: 6%;
}

.moving-elem {
	position: absolute;
}

.homepage-main {
	position: relative;
	bottom: 0;
	right: 6%;
	width: 100%;
}

.homepage-main>img {
	margin-top: 25%;
}

.homeElem--one img {
	transform: rotate(-63deg);
}

.homeElem--one {
	position: absolute;
	width: 20%;
	bottom: 47%;
	right: 38%;
}

.homeElem--two {
	bottom: 16%;
	left: -2%;
	width: 17%;
}

.homeElem--three {
	z-index: 5;
	right: 50%;
	bottom: 94%;
	width: 26%;
}

.homeElem--four {
	right: 0;
	bottom: 65%;
	width: 44%;
}

.homeElem--five {
	width: 19%;
	bottom: 108%;
	z-index: 5;
}

.form-row input[type="text"],
.form-row input[type="tel"],
.form-row input[type="email"],
.form-row select {
	height: 70px;
	display: block;
	padding: 0 15px;
	border: 0;
	width: 100%;
}

footer .whats_your_goal {
	display: block;
	margin-top: 33px;
	margin-bottom: 14px;
}

footer .whats_your_goal select {
	border-right: 15px solid #fff;
	color: #9e9e9e;
}

.contact-form br {
	display: none;
}

.form-row textarea {
	padding: 15px;
	height: 303px;
	border: 0;
}

.form-row .col--50>div {
	margin-bottom: 15px;
}

span.form--label {
	transform: translateY(53px);
	display: block;
	position: relative;
	z-index: 2;
	margin-left: 15px;
	transition: all 400ms ease;
	transform-origin: left;
	margin-bottom: 5px;
	color: #9e9e9e;
	font-size: 18px;
}

span.wpcf7-list-item {
	margin-left: 0;
}

span.form--label.pressed__input,
span.form--label.filled__input {
	transform: translateY(0) scale(.8);
	color: #f26f26;
}

span.wpcf7-list-item label {
	display: flex;
}

span.wpcf7-list-item label [type="checkbox"] {
	margin-top: 5px;
	margin-right: 10px;
}

.footer-left {
	background-size: auto 100%;
	background-repeat: no-repeat;
	background-position: center;
	position: relative;
}

.footer-left__content {
	background-position: bottom;
	background-size: 100% auto;
	background-repeat: no-repeat;
	padding-bottom: 0;
}

span.icon--phone {
	background-image: url(/wp-content/themes/socialactive/media/phone.gif);
	display: inline-block;
	width: 70px;
	height: 70px;
	background-size: contain;
}

.footer-menu ul {
	display: flex;
	flex-wrap: wrap;
	padding: 20px 0 15px 0;
	margin: 0;
}

.footer-menu ul li {
	list-style: none;
}

.footer-menu ul li:not(:last-of-type) {
	margin-right: 20px;
}

.footer-copyright {
	border-top: 1px solid #e6e6e6;
}

.back-to-top {
	position: fixed;
	bottom: 170px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	right: 30px;
	transform: translateY(100%);
	opacity: 0;
	transition: all 300ms cubic-bezier(0.16, 0.01, 0.77, 1);
	width: 50px;
	height: 50px;
	background: #f26f26;
	border-radius: 50%;
	cursor: pointer;
	z-index: 10;
}

.back-to-top svg {
	transform: rotate(-90deg);
	fill: #fff;
	width: 20px;
}

.back-to-top.shown {
	opacity: 1;
	transform: none;
}

.vermAccordion__q--wrapper {
	position: relative;
	display: flex;
	align-items: center;
	cursor: pointer;
}

.vermAccordion__item {
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	outline: none;
}

.vermAccordion__item:nth-child(odd) {
	background: #F8F8F8;
}

.vermAccordion__q {
	padding: 30px;
	padding-right: 65px;
	margin: 0;
	text-decoration: none;
	display: block;
	position: relative;
}

.vermAccordion__icon svg {
	display: none;
}

.vermAccordion {
	max-width: 850px;
	margin: 0 auto;
}

.vermAccordion__icon {
	position: absolute;
	right: 0;
	width: 50px;
	height: 50px;
	margin-left: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	pointer-events: none;
}

span.vermAccordion__icon:before {
	content: "";
	width: 15px;
	height: 2px;
	background: #f26f26;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}

span.vermAccordion__icon:after {
	content: "";
	width: 2px;
	height: 15px;
	background: #f26f26;
	transform-origin: bottom;
	transition: all 300ms linear;
	display: block;
	margin-top: 1px;
}

.vermAccordion__item.is-active .vermAccordion__icon:after {
	transform: scale(0);
}

.vermAccordion__item>.vermAccordion__a {
	overflow: hidden;
	-webkit-transition-property: all;
	transition-property: all;
	-webkit-transition-timing-function: ease;
	transition-timing-function: ease;
}

.vermAccordion__item>.vermAccordion__a p:last-child {
	padding-bottom: 20px;
}

.vermAccordion__a {
	padding: 0 30px;
}

.vermAccordion__item.js-enabled>.vermAccordion__a {
	visibility: hidden;
}

.vermAccordion__item.is-active>.vermAccordion__a {
	visibility: visible;
}

.vermAccordion__item.is-active>.vermAccordion__q::after {
	content: '\2013';
}

.vermAccordion ul {
	margin-bottom: 20px;
}

input.search-field {
	border: 0;
	background: transparent;
	color: #000 !important;
	border-bottom: 1px solid #000;
	width: 25vw;
	max-width: 380px;
	min-width: 300px;
}

.search_submit {
	display: block;
	width: 100px;
	height: 50px;
	background-image: url(/wp-content/themes/dakos/media/arrow.svg);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	filter: brightness(0);
	transform: rotate(-90deg);
	cursor: pointer;
}

input.search-field::-webkit-search-cancel-button {
	filter: brightness(0);
	cursor: pointer;
}

.title__separator:after {
	content: "";
	width: 100px;
	height: 2px;
	display: block;
	background: #27a8e0;
	margin-top: 20px;
}

.color--white.title__separator:after {
	background: #fff;
}

.title__separator.text--center:after {
	margin-right: auto;
	margin-left: auto;
}

hr.light--hr {
	background-color: #bee5f6;
}

/* Hero is Light */
body.hero-is-light #page:not(.menu-active) .header-left,
body.hero-is-light #page:not(.menu-active) .header-right__top {
	border-color: #ededed;
}

body.hero-is-light #page:not(.menu-active) .menu-toggle__wrapper .color--white {
	color: #27a8e0 !important;
}

body.hero-is-light #page:not(.menu-active) .menu-toggle__wrapper .icon-dots svg {
	fill: #27a8e0;
}

body.hero-is-light #page:not(.menu-active) .alt-logo {
	opacity: 1;
}

body.hero-is-light #page:not(.menu-active) .main-logo {
	opacity: 0;
}

body.hero-is-light #page:not(.menu-active) .the__button.btn--light span {
	color: #000;
}

.dakosBlock__image-full-width {
    width: calc(100% + 100px);
    transform: translateX(-50px);
}

.singlePost__content .block--full-width {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

.results-icon {
    width: 35px;
    height: 35px;
    display: block;
    background: #f26f26;
    border-radius: 50%;
    margin: 0 auto 10px auto;
    background-image: url(/wp-content/plugins/socialactive-gutenberg-blocks/blocks/images/check.svg);
    background-size: 50%;
    background-repeat: no-repeat;
    background-position: center;
}

.result-item {
    padding: 15px;
}

/* end of Hero is Light */

@media (max-width: 767px) {
	.title__separator.m-text--center:after {
		margin-right: auto;
		margin-left: auto;
	}
}

input.search-field::placeholder {
	color: #000;
}

/* Scroll Bar */
::-webkit-scrollbar {
	width: 5px;
	height: 5px;
}

/* Track */
::-webkit-scrollbar-track {
	background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
	background: #1986b5;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
	background: #0d6a92;
}

.hidden-schema {
	display: none !important;
	visibility: hidden !important;
}

.hero-single-post {
	width: 100%;
	height: 100vh;
	position: absolute;
	left: 0;
	top: 0;
	background: #27a8e0;
}

section.single-post .section--boxed {
	position: relative;
	z-index: 2;
}

aside.singlePost__contents {
	order: 1;
}

aside.singlePost__share {
	order: 3;
}

article.singlePost__content {
	order: 2;
}

.singlePost__heading img {
	width: 100%;
	max-height: 600px;
	object-fit: cover;
	overflow: hidden;
}

.single-post .website-navigation {
	top: 500px;
	z-index: 3;
	height: 500px;
	position: fixed;
}

.single-post .next__arrow,
.single-post .prev__arrow {
	filter: none;
}

.single-post .next__title,
.single-post .prev__title {
	display: flex;
}

.single-post .next__title span,
.single-post .prev__title span {
	margin: 0 2px;
}

.single-post .websiteNavigation__next,
.single-post .websiteNavigation__prev {
	width: auto;
}

.single-post .next__circle,
.single-post .prev__circle {
	width: 300px;
	height: 300px;
}

aside.singlePost__contents ol {
	margin: 0;
	padding-left: 10px;
	list-style: none;
}

aside.singlePost__contents ol>li {
	font-weight: 600;
	font-size: 18px;
}

aside.singlePost__contents ul {
	padding-left: 20px;
}

aside.singlePost__contents ol>ul {
	margin-top: 7px;
}

aside.singlePost__contents {
	padding: 20px;
	margin-right: 20px;
	position: sticky;
	top: 50px;
	margin-top: 50px;
}

.social--icon:first-child a {
	border-radius: 0 !important;
	border-top-left-radius: 25px !important;
	border-bottom-left-radius: 25px !important;
}

.social--icon:last-child a {
	border-radius: 0 !important;
	border-top-right-radius: 25px !important;
	border-bottom-right-radius: 25px !important;
}

.social--icon {
	margin-right: 2px;
}

aside.singlePost__share a {
	margin: 0 2px !important;
}

aside.singlePost__share {
	margin: 0 !important;
	padding: 0 !important;
}

aside.singlePost__contents a {
	color: #000;
}

aside.singlePost__share {
	padding-left: 20px;
	position: sticky;
	top: 50px;
	margin-top: 54vh;
}

#progress-bar {
	position: fixed;
	top: 0;
	height: 5px;
	background: #f26f26;
	z-index: 5;
}

.progress-text {
	position: relative;
	color: #fff;
	text-align: center;
	width: 100%;
	display: block;
	font-size: 13px;
	line-height: 25px;
}

span#progress-number {
	width: 38px;
	display: inline-block;
}

a.anchor-link:hover {
	color: #f26f26;
}

section.testimonials {
	overflow: hidden;
}

.carousel--testimonials {
	max-width: 1000px;
	width: 90%;
	margin: 0 auto;
	padding: 0 10%;
	position: relative;
}

.featured-carousel__arrows {
	position: absolute;
	left: 0;
	top: 50%;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	transform: translateY(calc(-50% - 1rem));
}

.slider__button-prev,
.slider__button-next {
	background-image: url(https://socialactive.gr/wp-content/themes/dakos/media/arrow.svg);
	display: inline-block;
	cursor: pointer;
	width: 40px;
	height: 40px;
	transform: rotate(90deg);
}

.slider__button-next {
	transform: rotate(-90deg);
}

.carousel--testimonials .swiper-pagination-bullet.swiper-pagination-bullet-active {
	background: #BE1E2D;
	transform: scale(1.5);
}

.carousel--testimonials .swiper-pagination-bullet {
	background: #919191;
	margin: 0 5px;
	opacity: 1;
	transition: all 300ms cubic-bezier(0.16, 0.01, 0.77, 1);
}

.carousel--testimonials .slider__pagination {
	text-align: center;
}

.featured-carousel__pagination {
	margin-top: 2rem;
}

.carousel--testimonials .swiper-button-disabled {
	opacity: 0;
	pointer-events: none;
}

.popup {
	background: rgba(100, 100, 100, 0.6);
	position: fixed;
	display: none;
	z-index: 5000;
	height: 100vh;
	width: 100%;
	left: 0;
	top: 0;
	overflow: auto;
}

.popup-btn-close {
	position: absolute;
	background-color: #be1e2d;
	color: white;
	top: 10px;
	right: 10px;
	width: 30px;
	height: 30px;
	z-index: 5002;
	line-height: 26px;
	text-align: center;
	font-size: 25px;
	cursor: pointer;
	font-weight: 300;
}

.popup-trigger {
	cursor: pointer;
}

.popup-btn-close:hover {
	background-color: #000;
	color: #fff;
}

.popup.visible-popup {
	display: flex;
	align-items: center;
	justify-content: center;
}

.the__button {
	display: inline-block;
	padding: 0 30px;
	position: relative;
	line-height: 50px;
}

.the__button span {
	position: relative;
	z-index: 2;
	color: #000;
	transition: color 200ms cubic-bezier(0.16, 0.01, 0.77, 1);
}

.the__button:before {
	content: "";
	width: 50px;
	height: 50px;
	position: absolute;
	left: 0;
	top: 0;
	background: #f26f26;
	border-radius: 25px;
	transition: width 300ms cubic-bezier(0.16, 0.01, 0.77, 1);
}

.the__button:hover:before {
	width: 100%;
}

.the__button:hover span {
	color: #fff;
}

.the__button.btn--light span,
.the__button.btn--filled span {
	color: #fff;
}

.the__button.btn--filled:before {
	width: 100%;
}

.tabs__item-content:not(.active) {
	max-height: 0;
	opacity: 0;
	transform: translateY(10px);
	pointer-events: none;
	display: none;
}

.tabs__item-content.active {
	transition: all 400ms linear;
}

.tabs__item-title-wrapper {
	white-space: nowrap;
	background: #27a8e0;
	margin-bottom: 30px;
	flex-direction: column;
	justify-content: flex-start;
	min-width: 260px;
	max-width: 260px;
	margin-right: 30px;
	position: relative;
}

.tabs__item-title-wrapper:before {
	content: "";
	width: 100%;
	padding-bottom: 100%;
	bottom: 0;
	position: absolute;
	transform: translateY(50%);
	z-index: -1;
	background: #27a8e0;
	border-radius: 50%;
	transition: all 200ms linear;
}

.tabs__item-title-wrapper.main-not-clicked:before {
	border-radius: 0;
}

.tabs__item-title-wrapper:after {
	content: "";
	width: 100%;
	height: 0;
	top: 0;
	position: absolute;
	z-index: -1;
	background: #27a8e0;
	transition: all 600ms linear;
}

.tabs__item-title-wrapper.main-not-clicked:after {
	height: 100vh;
}

.tabs__item-title-wrapper>div {
	color: #8dceeb;
	padding: 10px 15px;
	text-align: center;
	cursor: pointer;
	width: 100%;
	position: relative;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

.tabs__item-title-wrapper>div.account-name {
	padding: 20px 20px !important;
}

.tabs__item-title-wrapper>div.account-name span.account-item__image {
	margin-right: 10px;
}

span.account-item__image {
	width: 20px;
}

span.account-item__text {
	width: calc(100% - 30px);
	text-align: left;
	margin-left: 10px;
	display: block;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.tabs__item-title.active {
	background: #BEE5F6;
	color: #fff;
	pointer-events: none;
}

.account-name.tabs__item-title {
	color: #fff;
	border-bottom: 1px solid #8dceeb;
}

.tabs__item-title.active img,
.account-name.tabs__item-title img {
	filter: brightness(0) invert(1);
}

.tabs__item-title-mobile {
	padding: 10px 0;
	margin-bottom: 10px;
}

.tabs__item-content-inner ul {
	list-style: none;
	padding-left: 0;
	margin-left: 0;
}

.tabs__item-content-inner li {
	margin-top: 0;
	margin-bottom: 15px;
	padding-bottom: 10px;
	border-bottom: 1px solid #eee;
}

span.account-item__image img {
	display: block;
	max-width: 18px;
	height: 19px;
}

.account-item.item--inactive {
	opacity: .4;
	cursor: auto;
}

.tabs__items-container {
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
}

.tabs__item-content-wrapper {
	padding: 20px;
	width: 100%;
	height: calc(100vh - 122px);
	overflow-y: auto;
}

ul.account-informations__billing li,
ul.account-informations__general li {
	font-weight: 600;
}

ul.account-informations__billing li span,
ul.account-informations__general li span {
	font-weight: 300;
}

.welcome-tips ol {
	padding: 15px 30px 15px 40px;
	background: #fff;
	margin-bottom: 0;
	border-left: 2px solid #f26f26;
}

.welcome-tips li {
	padding-bottom: 0;
	border-bottom: 0;
	position: relative;
	margin-left: 30px;
}

.welcome-tips {
	background: #FFF7F2;
	padding: 2rem;
	border-radius: 20px;
	position: relative;
}

.welcome-tips.hidden {
	display: none;
}

.welcome-tips .checkbox:after {
	content: "";
	color: #aaa;
	width: 100%;
	height: 100%;
	background-image: url(/wp-content/themes/socialactive/media/member/check.svg);
	background-size: contain;
	background-position: 50% 50%;
	background-repeat: no-repeat;
	position: absolute;
	top: 0;
	left: 0;
}

.welcome-tips .checkbox {
	width: 25px;
	height: 25px;
	position: absolute;
	border-radius: 50%;
	left: -60px;
}

.welcome-tips li.inactive .checkbox {
	filter: grayscale(1);
}

span.welcome-close {
	width: 30px;
	height: 30px;
	position: absolute;
	top: 10px;
	right: 10px;
	border-radius: 50%;
	background-image: url(/wp-content/themes/socialactive/media/member/close.svg);
	background-color: #fff;
	background-size: 40%;
	background-repeat: no-repeat;
	background-position: 50% 50%;
	cursor: pointer;
}

.full-height-section {
	min-height: 100vh;
}

.mm-login__form {
	max-width: 450px;
	margin: 0 auto;
	background: #fff;
	padding: 40px;
	border-radius: 15px;
	box-shadow: 0 5px 17px 14px #54545426;
}

.mm-login__form .mm-login {
	max-width: 100%;
}

.page-template-mm-login header#masthead,
.page-template-mm-login footer#colophon {
	display: none;
}

.full-height-section {
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
}

.mm-login__form .mm-login h1 svg {
	width: 25px;
	fill: #f26f26;
}

.mm-login__form .mm-login .mm-field {
	width: 100%;
	border: 1px solid #bee5f6;
	border-radius: 25px;
	padding: 10px 25px;
}

.mm-input-row {
	margin-bottom: 10px;
}

.col--100.col--label {
	margin-bottom: 5px;
	margin-left: 15px;
}

.col--70.col--input input {
	border: 0;
	text-align: center;
}

.mm-login__form label.mm-remember-me br {
	display: none;
}

.mm-button {
	background: #f26f26 !important;
	border: 0;
	border-radius: 0;
	text-shadow: none;
	color: #fff !important;
	padding: 15px 20px 11px 20px !important;
	line-height: 1;
	margin: 0;
	box-shadow: none !important;
}

.mm-button:hover {
	box-shadow: inset 0 0 0 500px #00000015 !important;
}

.mm-forgot-password input#email.mm-field {
	border: 0;
	background: #eee;
	padding: 5px 10px;
}

.mm-error {
	padding: 5px;
	text-align: center;
}

span.mm-label {
	margin-right: 10px;
	font-size: 16px;
}

.mm-login #mm-login-button {
	width: 100%;
	border-radius: 25px;
	margin-top: 13px;
	padding: 15px 20px !important;
}

.mm-button {
	font-family: 'Averta Std' !important;
	font-weight: 300 !important;
}

a.mm-forgot-password,
label.mm-remember-me {
	font-size: 13px;
}

.page-template-mm-checkout .hero {
	overflow: initial;
	padding-left: 0;
}

.page-template-mm-checkout .hero:before {
	display: none;
}

.page-template-mm-checkout header#masthead,
.page-template-mm-checkout footer#colophon {
	display: none;
}

#mm_checkout_form {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
}

#mm_checkout_form .mm_left_column {
	width: 55%;
}

#mm_checkout_form .mm_right_column {
	width: 35%;
	background: #fff;
	padding: 30px;
	position: sticky;
	top: 30px;
}

#mm_checkout_form label {
	display: block;
	margin-bottom: 7px;
	font-size: 80%;
}

#mm_checkout_form .mm-formField br {
	display: none;
}

#mm_checkout_form input,
#mm_checkout_form select {
	width: 100%;
	padding: 8px 10px;
	background: #f9f9f9;
	border: 0;
}

select#mm_field_cc_exp_month {
	width: 48%;
	margin-right: 2%;
}

select#mm_field_cc_exp_year {
	width: 48%;
}

#mm_checkout_form .mm-formField {
	width: 48%;
	margin-bottom: 20px;
}

.mm_left_column > div > div {
	background: #fff;
	padding: 30px;
	margin-bottom: 30px;
}

.mm_left_column>div:last-child {
	margin-bottom: 0;
}

.mm-button.large {
	padding: 12px 35px;
	width: auto !important;
	border-radius: 25px;
	text-shadow: none !important;
}

.mm-giftsection br {
	display: none;
}

.mm-braintree-hosted-field {
	height: 50px;
	padding: 15px;
	background: #f9f9f9;
}

.ui-widget-header {
	background: none;
	border: none;
}

.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default,
.ui-button,
html .ui-button.ui-state-disabled:hover,
html .ui-button.ui-state-disabled:active {
	background: none;
	border: none;
}

.mm-ui-button {
	border: 0;
	border-radius: 0;
	font-size: 18px !important;
	font-weight: 300;
	font-family: 'Averta Std' !important;
	padding: 11px 30px;
	background: #f26f26 !important;
	border-radius: 25px;
}

button.mm-ui-button.blue+button.mm-ui-button.blue {
	background: #27a8e0 !important;
}

#mm-form-container td {
	vertical-align: middle;
}

div#mm-form-container input,
div#mm-form-container select {
	background: #f9f9f9;
	border: 0;
	padding: 10px;
	width: 100%;
}

a.the__button.btn--small:before {
	width: 35px;
	height: 35px;
}

a.the__button.btn--small:hover:before {
	width: 100%;
}

a.the__button.btn--small {
	line-height: 35px;
	padding: 0 15px;
	font-size: 15px;
}

.back-to-account {
	position: fixed;
	bottom: 10px;
	left: 200px;
	z-index: 2;
}

.back-to-account .the__button:before {
	background: #bee5f6;
}

a.mm-update-button:before {
	content: "";
	width: 25px;
	height: 25px;
	background-image: url(/wp-content/plugins/social-active-lotl/assets/img/mm-edit-settings.svg);
	display: inline-block;
	background-size: contain;
	margin-right: 10px;
	margin-bottom: -6px;
}

a.mm-update-button {
	font-size: 14px;
}

.progress-bar.waiting--lotl:before {
	content: "";
	width: 80%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	background: #f26f26;
	border-top-left-radius: 25px;
	border-bottom-left-radius: 25px;
}

.progress-bar-container {
	margin-top: 5px;
	width: 100%;
}

.progress-bar.waiting--lotl {
	width: 100%;
	height: 17px;
	border-radius: 25px;
	border: 1px solid #f26f26;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}

.progress-bar.waiting--lotl span {
	font-size: 11px;
	color: #fff;
	position: relative;
	z-index: 2;
}

span.progress-label {
	font-size: 66%;
	margin-top: 1px;
	display: block;
}

.account-item.item--loading>span,
.account-item.item--loading img {
	opacity: .5;
}

.account-item.item--loading {
	cursor: wait;
}

button.ui-dialog-titlebar-close {
	background: none !important;
	border: 0 !important;
}

button.ui-dialog-titlebar-close {
	transition: all 600ms ease;
}

button.ui-dialog-titlebar-close:hover {
	background: none !important;
	border: 0 !important;
	transform: scale(1.2);
}

.ui-icon-closethick {
	background-image: url(/wp-content/plugins/social-active-lotl/assets/img/mm-close.svg) !important;
	width: 15px;
	height: 15px;
	background-position: center;
	background-size: contain;
}

input[type=checkbox] {
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	width: 20px !important;
	min-width: 20px;
	height: 20px;
	background: #f7f7f7;
	border: 0;
	position: relative;
	margin: 0 10px 0 0;
	cursor: pointer;
	outline: none;
	border: 1px solid #ddd;
}

input[type="checkbox"]::after {
	content: "✓";
	color: #f7f7f7;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	position: absolute;
	font-size: 20px;
	line-height: 1;
	transition: all 400ms ease 0s;
}

input[type=checkbox]:checked {
	background: #27a8e0 !important;
	border-color: #27a8e0;
}

input[type=checkbox]:checked:after {
	color: #fff;
}

label.mm-remember-me {
	display: flex;
	align-items: center;
}

.mm-forgot-password .mm-button {
	border-radius: 25px;
	margin-left: 20px;
}

.account-informations__general .mm-myaccount-element {
	margin: 0;
	border-bottom: 1px solid #eeeeee;
	padding: 10px 0;
}

.account-informations__general #mm-element-custom-field-1 {
	padding-top: 0;
}

.account-informations__general .mm-myaccount-element .mm-myaccount-label {
	font-weight: 600;
}

ul.account-informations__general>p {
	margin: 0;
}

/* .welcome-tips li {
	display: none !important;
} */

/*.welcome-tips li:nth-child(1) {
	display: block !important;
}*/

.StripeElement {
	background-color: #f9f9f9;
}

.tabs__item-content-inner .mm-myaccount-element {
	margin: 0;
	padding-bottom: 10px;
	margin-bottom: 10px;
	border-bottom: 1px solid #eeeeee;
}

blockquote.wp-block-quote p {
	margin: 0;
}

blockquote.wp-block-quote {
	border-left: 5px solid #27a8e0;
	padding: 10px;
	margin-left: 0;
	margin-top: 20px;
}

section.single-post {
	padding-top: 120px;
}

.singlePost__content>h2,
.single-case-study__content>h2,
.general-page .section--boxed>h2 {
	background: #d8eef7;
	padding: 30px;
	border-left: 5px solid #f26f26;
	font-weight: 400;
}

.singlePost__content>h3,
.single-case-study__content>h3,
.general-page .section--boxed>h3 {
	padding: 15px 30px;
	border-left: 5px solid #27a8e0;
	font-weight: 400;
}

.singlePost__content ul,
.singlePost__content ol,
.single-case-study__content ul,
.single-case-study__content ol {
	margin-left: 10px;
}

.singlePost__content ul li,
.singlePost__content ol li,
.single-case-study__content ul li,
.single-case-study__content ol li {
	margin-bottom: 7px;
}

.singlePost__content.max--800,
.single-case-study__content.max--800 {
	padding: 30px;
	/*background: #f8f8f8;*/
}

aside.singlePost__contents {
	max-height: calc(100vh - 100px);
	overflow: auto;
}

.singlePost__content .block--full-width,
.single-case-study__content .block--full-width {
	text-align: center;
}

.sa-block {
	margin-bottom: 30px;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output {
	background: #FFEBDF;
	border: 0;
	padding: 10px;
	border-left: 5px solid #f26f26;
}

.wpcf7 form.sent .wpcf7-response-output {
	background: #bee5f6;
	border: 0;
	padding: 10px;
	border-left: 5px solid #27a8e0;
}

.social-active-credits {
	position: fixed;
	bottom: 0;
	width: 100%;
	text-align: center;
	padding: 10px 20px;
	font-size: 70%;
	left: 0;
}

input.acf-button.button.button-primary.button-large {
	border: 0;
	font-size: 12px !important;
	font-weight: 300;
	font-family: 'Averta Std' !important;
	padding: 15px 30px;
	background: #f26f26 !important;
	border-radius: 25px;
	color: #fff;
}

/* section#lusi a {
	text-decoration: underline !important;
	text-underline-position: under;
} */

.single-post div#crumbs {
	position: relative;
	top: 0;
	left: 0;
	margin-top: 30px;
	margin-left: 30px;
}

.single-post .hero {
	overflow: initial;
	min-height: unset;
}

.single-post .hero .section--boxed {
	margin-bottom: -5rem;
	position: relative;
	z-index: 2;
}

.single-post .header-left {
	border: 0;
}

.menu-active .header-left {
	height: 100vh !important;
	border-right: 1px solid #fff;
}

.single-booster .loading-screen,
.single-lotls .loading-screen {
	display: none !important;
}

span.tkn-wrapper:not(.active) {
	display: none;
}

.col--.footer-left .tkn:not(:empty) {
	display: block;
}

.page-template-landing-page .solution__box-item .col--45 {
	display: none;
}

.page-template-landing-page .solution__box-item {
	justify-content: center !important;
}

.col--match {
	transition: all 600ms ease;
	position: relative;
}

.col--match.we--match {
	padding-right: 60px;
}

.col--match.no--match {
	padding-left: 60px;
}

.col--match ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.col--match ul li {
	margin-bottom: 15px;
	position: relative;
}

.we--match ul li:before {
	content: "";
	width: 25px;
	height: 25px;
	position: absolute;
	background-image: url(/wp-content/themes/socialactive/media/member/fit-check.svg);
	top: 5px;
	right: -40px;
	transition: all 600ms ease;
}

.no--match ul li:before {
	content: "";
	width: 25px;
	height: 25px;
	position: absolute;
	background-image: url(/wp-content/themes/socialactive/media/member/fit-uncheck.svg);
	top: 5px;
	left: -40px;
	transition: all 600ms ease;
}

section.do-we-match:before {
	content: "";
	width: 50%;
	height: 100%;
	background: rgb(242 111 38/14%);
	position: absolute;
	left: 0;
	top: 0;
	z-index: 1;
	transform-origin: right;
	transition: all 600ms ease;
	transform: scaleX(0);
}

section.do-we-match:after {
	content: "";
	width: 50%;
	height: 100%;
	background: rgb(255 114 114 / 14%);
	position: absolute;
	right: 0;
	top: 0;
	z-index: 1;
	transform-origin: left;
	transition: all 600ms ease;
	transform: scaleX(0);
}

section.do-we-match>.cols--um {
	position: relative;
	z-index: 2;
}

section.do-we-match {
	overflow: hidden;
}

.col--match:before {
	content: "";
	width: 100%;
	height: 300%;
	position: absolute;
	z-index: 5;
}

.moving-items {
	position: relative;
}

.moving-img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	transform: translate(-50%, -50%);
	background-size: cover;
}

.moving-img-wrap {
	width: 400px;
	height: 570px;
	position: fixed;
	top: 0;
	left: 0;
	pointer-events: none;
	visibility: hidden;
	z-index: 5;
	transition: transform 150ms linear;
}

span.moving-item {
	cursor: pointer;
}

.lp--2 .anagki__box-item {
	margin: 1.5%;
}

.signup-form input {
	width: 100%;
	border: 1px solid #bee5f6;
	border-radius: 25px;
	padding: 10px 25px;
	margin-bottom: 15px;
}

.signup-form input {
	color: #000 !important;
}

.signup-form input[type=checkbox] {
	padding: 0;
	border-radius: 0;
}

input#gist-form-subscribe {
	background: #f26f26;
	border: 0;
	color: #fff !important;
	padding: 15px;
	cursor: pointer;
}

.gdpr-acceptance>div {
	margin-top: -7px;
}

.page-template-landing-page .show-when-no-header img {
	filter: brightness(0) invert(1);
}

.page-template-landing-page .show-when-no-header {
	margin-top: 0;
	padding-top: 50px;
	background: #27a8e0;
}

.block-editor-block-list__layout>h2 {
	background: #d8eef7;
	padding: 30px;
	border-left: 5px solid #f26f26;
	font-weight: 400;
}

.block-editor-block-list__layout>h3 {
	padding: 15px 30px;
	border-left: 5px solid #27a8e0;
	font-weight: 400;
}

.wp-block {
	max-width: 800px;
}

body.active-popup {
	overflow: hidden;
}

span.popup__close {
	width: 30px;
	height: 30px;
	position: absolute;
	top: 30px;
	right: 30px;
	background-image: url(/wp-content/themes/socialactive/media/cancel.svg);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: 50% 50%;
	cursor: pointer;
	z-index: 3;
}

.popup__content {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgb(0 0 0 / 60%);
	overflow: auto;
	padding: 3rem;
	opacity: 0;
	pointer-events: none;
	z-index: -1;
	transition: all 600ms ease;
}

.popup__content.popup--shown {
	pointer-events: auto;
	z-index: 999;
	opacity: 1;
}

.popup__content>.popup__content-inner {
	width: 100%;
	max-width: 900px;
	margin: 0 auto;
	position: relative;
	z-index: 2;
	height: 100%;
}

.popup__content>.popup__content-inner .meetings-iframe-container,
.popup__content>.popup__content-inner .meetings-iframe-container iframe {
	height: 100% !important;
}

span.popup__bg-close {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.button__solid {
	background: #f26f26;
	display: inline-block;
	padding: 0 30px;
	position: relative;
	line-height: 50px;
	border-radius: 25px;
	color: #fff;
}

.button__solid:hover {
	background: #FFEBDF;
	color: #f26f26;
}

.page-template-contact .lets-talk-cta {
	display: none;
}

.header-alt-cta {
	position: absolute;
	z-index: 2;
	right: 260px;
	top: 15px;
	pointer-events: auto;
}

.btn--alt span {
	color: #fff;
}

.the__button.btn--alt:before {
	background: #8DCEEB;
}

body.hero-light #page:not(.menu-active) .the__button.btn--alt:before {
	background: #d8eef7;
}

body.hero-light #page:not(.menu-active) .the__button.btn--alt span {
	color: #27a8e0;
}

/* .header-alt-cta {
   display: none!important;
}

.logged-in .header-alt-cta {
   display: block!important;
} */

.post-type-archive-services .header-alt-cta,
.single-services .header-alt-cta {
	display: none !important;
}

.page-template-contact .header-alt-cta {
	right: 75px;
}


.toggle-button[data-toggle="we-match"] {
	color: #000000;
	background: #f5fdf1;
}

.toggle-button[data-toggle="no-match"] {
	color: #000000;
	background: #ffe5e5;
}

.social-follow-normal svg {
	margin: 0 10px;
}

@media (min-width: 768px) {
	.toggle-buttons {
		display: none;
	}

	.header-right__bottom .header-alt-cta {
		display: none;
	}
}

@media (max-width: 767px) {
	.toggle-buttons {
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.toggle-button {
		padding: 10px 20px;
		cursor: pointer;
		width: 50%;
		white-space: nowrap;
	}

	.col--match {
		display: none;
	}

	.col--match.active {
		display: block;
	}

	.col--match.we--match {
		background: #f5fdf1;
		padding: 30px;
	}

	.col--match.no--match {
		background: #ffe5e5;
		padding: 30px;
	}

	.col--match ul {
		padding-left: 25px !important;
	}

	.header-alt-cta {
		position: relative;
		margin: 25px 0;
		right: unset;
		top: unset;
	}
}

@media (max-width: 600px) {
	span.popup__close {
		top: 10px;
		left: 50%;
		transform: translateX(-50%);
	}

	.popup__content {
		padding: 50px 10px 10px;
	}
}

@media (max-width: 1050px) {
	.moving-img-wrap {
		max-width: 85%;
		transform: none !important;
		left: 50%;
		top: 50%;
	}

	.moving-img {
		-webkit-filter: drop-shadow(0 0 20px rgb(0 0 0 / 25%));
		filter: drop-shadow(0 0 20px rgb(0 0 0 / 25%));
		background-size: contain;
		background-position: center;
		background-repeat: no-repeat;
	}
}

@media (min-width: 1051px) {
	section.do-we-match>.cols--um:before {
		content: "";
		height: 70%;
		width: 2px;
		position: absolute;
		background: #f26f26;
		left: 50%;
		top: 50%;
		transform: translateY(-50%);
		margin-left: -1px;
	}

	section.do-we-match[data-hovering="we-match"]:before {
		transform: scaleX(1);
	}

	section.do-we-match[data-hovering="no-match"]:after {
		transform: scaleX(1);
	}

	section.do-we-match[data-hovering="we-match"] .no--match {
		opacity: .3;
	}

	section.do-we-match[data-hovering="no-match"] .we--match {
		opacity: .3;
	}

	section.do-we-match[data-hovering="we-match"] .no--match ul li:before {
		opacity: 0;
	}

	section.do-we-match[data-hovering="no-match"] .we--match ul li:before {
		opacity: 0;
	}
}

@media (max-width: 1050px) {
	.col--match .col--45 {
		max-width: 250px;
		margin-right: auto;
		margin-left: auto;
	}
}

@media (max-width: 767px) {
	.col--match .col--45 {
		display: none;
	}

	section.do-we-match {
		padding-right: 0;
		padding-left: 0;
	}

	.col--match.no--match {
		padding-left: 35px;
	}

	.col--match.we--match {
		padding-left: 35px;
		padding-right: 0;
	}

	.we--match ul li:before {
		right: unset;
		left: -40px;
	}
}

@media (max-width: 767px) {
	.footer-copyright {
		padding-top: 20px;
	}

	.whats_your_goal select {
		background: #fff !important;
	}

	footer .form-row textarea {
		height: 120px;
	}

	.form-row input[type="text"],
	.form-row input[type="email"],
	.form-row select {
		height: 58px;
	}

	footer span.form--label,
	footer select {
		font-size: 16px;
	}

	span.form--label {
		transform: translateY(45px);
	}

	.back-to-top {
		left: 10px;
		bottom: 10px;
		right: unset;
	}

	div#page {
		overflow-x: hidden;
	}

	.footer-copyright .footer-menu {
		padding-bottom: 55px;
		padding-right: 132px;
	}

	.footer-menu a {
		font-size: 14px;
		padding: 4px 0;
		display: inline-block;
	}
}

input.wpcf7-form-control.wpcf7-submit {
	background: #f26f26;
	border: 0;
	border-radius: 25px;
	padding: 15px 35px;
	color: #fff;
	cursor: pointer;
}

.wpcf7-not-valid-tip {
	color: #dc3232;
	font-size: 1em;
	font-weight: normal;
	display: block;
	position: absolute;
	width: 100%;
	white-space: nowrap;
}

@media (max-width: 600px) {
	.laptop-holder:after {
		width: 120%;
		height: 130%;
		left: 50%;
		transform: translateX(-50%);
	}

	.featured-services-slider {
		position: absolute;
		width: 80%;
		left: 50%;
		top: 12%;
		transform: translateX(-50%);
		height: 100%;
	}

	.laptop-holder .swiper-slide {
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.featured-services__inner-slide .the__title {
		font-size: 22px;
		margin-bottom: 0;
	}

	.featured-services__inner-slide .the__content {
		font-size: 11px !important;
		margin-bottom: 0;
	}

	.featured-services__inner .button-wrapper {
		margin-top: 20vw;
	}

	.featured-services-slider .featured-services__inner-slide {
		height: 90%;
		display: flex;
		flex-direction: column;
		justify-content: center;
	}

	.laptop-holder {
		margin-top: 80px;
	}

	.featured-services-slider__buttons {
		top: -90px;
		transform: none;
		left: 0;
		justify-content: center;
		width: 100%;
	}
}

@media (max-width: 1200px) and (min-width: 768px) {
	.header-left {
		min-width: 120px;
		max-width: 120px;
	}

	section.hero.hero--big:before {
		left: 119px;
	}

	#crumbs {
		left: calc(2rem + 120px);
	}

	.hero {
		padding-left: 120px !important;
	}
}

@media (max-width: 767px) {
	.hero {
		padding-left: 0 !important;
		height: auto;
	}

	section.hero.hero--big:before,
	.header-left__bottom {
		display: none;
	}

	.header-left {
		background: none !important;
		border: 0;
		height: 81px;
		border-bottom: 1px solid #fff !important;
	}

	.glitch {
		font-size: 145px;
	}

	.mobile-modal__Wrapper-urpdwm-0 {
		z-index: 9999999999 !important;
	}
}

@media (max-width: 1300px) {
	.plans-list__help-text {
		transform: translate(-17px, -100%);
		top: -15px;
		left: 0 !important;
		box-shadow: 0 0 20px 3px #00000024;
	}

	.plans-list__help-text:after {
		content: "";
		border-right: 7px solid transparent;
		border-left: 7px solid transparent;
		border-top: 10px solid #bee5f6;
		position: absolute;
		left: 50%;
		margin-left: -10px;
		bottom: -10px;
	}
}

@media (max-width: 1300px) and (min-width: 1100px) {
	span.setup__number {
		font-size: 70px;
		line-height: 0;
	}
}

@media (max-width: 1200px) and (min-width: 768px) {
	.services__pagination {
		margin-left: 140px !important;
		width: calc(100% - 250px) !important;
	}

	.lets-talk-cta {
		width: 110px;
		font-size: 18px;
	}

	.page-service .section--boxed {
		padding: 5rem 0;
	}

	.setup__box-item .font--18 {
		font-size: 11px !important;
	}
}

@media (max-width: 1050px) and (min-width: 768px) {
	.post-type-archive-services .header-left {
		position: fixed;
	}

	.single-services .hero {
		padding-top: 110px;
	}

	.post-type-archive-services .hero {
		height: auto;
	}

	.services-slider__buttons>div {
		width: 60px;
		height: 60px;
	}

	.services-slider__buttons>div svg {
		width: 60%;
	}

	.col--45.moving-image {
		max-width: 450px;
	}

	.services-slider__buttons {
		position: fixed;
	}
}

@media (max-width: 950px) and (min-width: 768px) {
	.services__pagination>.tab__link {
		font-size: 11px;
		margin-right: 10px !important;
	}

	.lets-talk-cta {
		width: 90px;
		font-size: 16px;
	}

	.services__pagination {
		margin-left: 130px !important;
		width: calc(100% - 220px) !important;
	}
}

@media (max-width: 1099px) and (min-width: 768px) {
	span.setup__number {
		font-size: 60px;
		line-height: 0;
	}

	span.setup__number+h4 {
		margin-top: -30px !important;
	}
}

@media (max-width: 1200px) and (min-width: 768px) {
	.services-slider .col--50 {
		width: 80%;
		position: relative;
		z-index: 2;
	}

	.services-slider .moving-image {
		opacity: .7;
		z-index: 1;
	}
}

@media (max-width: 767px) {
	.services__pagination {
		display: none;
	}

	.services-slider {
		padding-left: 30px;
		padding-right: 0;
	}

	.services-slider__buttons>div svg {
		width: 60%;
	}

	.services-slider__buttons>div {
		width: 50px;
		height: 50px;
		margin: 10px;
	}

	.services-slider__buttons {
		display: flex;
		flex-direction: row-reverse;
		width: 100%;
		justify-content: flex-end;
		left: 0;
		bottom: 0;
		transform: none;
		position: fixed;
		top: auto;
	}

	.single-services #crumbs {
		left: 30px;
	}

	.anagki__box-item:not(:last-child) {
		margin-bottom: 20px;
	}

	span.solution__number {
		font-size: 70px;
		transform: none;
	}

	.setup__boxes {
		height: auto;
	}

	.setup__box-item {
		position: relative;
		left: 0 !important;
		top: unset;
		max-width: 100%;
		z-index: 2;
		text-align: center;
	}

	.setup__number {
		font-size: 70px;
		transform: translate(-15px, 30%);
	}

	.setup__boxes .rotating-item {
		width: 80%;
		height: 100%;
		opacity: .3;
		z-index: 1;
	}

	.plans-list__item .col--40.plans-list__item-title {
		width: 75%;
		padding-left: 0 !important;
	}

	.plans-list__item .col--40:not(.plans-list__item-title) {
		display: none;
	}

	#kostos-light .plans-header {
		padding: 10px 20px;
		margin: 0 -15px !important;
	}

	#kostos-light .plans-header .plan-header__item {
		display: none;
	}

	.whatYouGet__item {
		margin-bottom: 20px;
		text-align: center;
	}

	.whatYouGet__item .cols {
		justify-content: center;
	}

	.plans-list__help-text:after {
		content: "";
		border-right: 7px solid transparent;
		border-left: 7px solid transparent;
		border-top: 10px solid #bee5f6;
		position: absolute;
		left: 25px;
		bottom: -10px;
	}

	.plans-list__item:first-child .plans-list__item-title .the__title,
	.plans-list__extras .plans-list__item-title .the__title {
		font-size: 15px;
	}

	.services-slider .swiper-slide .cols--ut {
		padding-right: 30px !important;
	}

	.page-service .section--boxed {
		padding-right: 30px;
		padding-left: 30px;
	}

	.page-service__anchor-links {
		margin-left: 0;
	}
}

@media (max-height: 900px) and (min-width: 768px) {

	.blog .hero,
	.category .hero {
		min-height: 100vh;
		height: auto;
	}

	.blog .hero .cols--ut,
	.category .hero .cols--ut {
		padding-top: 120px;
	}

	.blog .hero .section--boxed,
	.category .hero .section--boxed {
		border-left: 1px solid #fff;
		margin-left: -1px;
	}
}

@media (max-width: 920px) and (min-width: 768px) {
	.col--50.moving-image {
		width: 60%;
	}
}

@media (max-width: 1700px) and (min-width: 768px) {
	.posts-wrapper {
		margin: 0 auto;
	}

	aside.post-sidebar {
		display: none;
	}
}

@media (max-width: 1100px) and (min-width: 768px) {
	.posts-wrapper {
		width: 100%;
		margin: 0 auto;
	}

	.posts-wrapper .post-item {
		margin-left: 0;
	}

	section#content.blog {
		margin-top: 0;
	}

	ul.blog-categories li a {
		border-color: #f26f26;
	}

	ul.blog-categories li:not(.current-item) a {
		color: #27a8e0;
		border-color: #27a8e0;
	}
}

@media (max-width: 767px) {
	.singlePost__content.max--800 {
		padding-top: 30px !important;
		margin-right: -30px !important;
		margin-left: -30px !important;
	}

	.singlePost__heading {
		margin-bottom: -30px;
	}

	.single-post .hero .section--boxed>div {
		padding-right: 0;
		padding-left: 0;
	}

	.posts-wrapper .post-item__inner.cols--um {
		flex-direction: column;
	}

	.post-item__thumbnail {
		padding-bottom: 52%;
		height: unset;
	}

	.posts-wrapper .post-item {
		margin-left: 0;
	}

	ul.blog-categories li {
		width: 50%;
	}

	ul.blog-categories li a {
		background: #27a8e0;
		border-radius: 0 !important;
		display: block;
		font-size: 13px;
		text-align: center;
	}

	ul.blog-categories {
		flex-wrap: wrap;
		padding-left: 0;
	}

	ul.blog-categories li.current-item a {
		background: #f26f26;
		color: #fff;
	}

	aside.post-sidebar {
		display: none;
	}
}

@media (max-width: 767px) {
	.testimonial-slider {
		padding: 0;
	}

	.featured-testimonials-slider__buttons {
		width: calc(100% + 80px);
		margin-left: -40px;
	}

	.work-item {
		width: 50%;
	}

	.masonry-testimonials .testimonial-item {
		width: 100%;
		margin-top: 0 !important;
	}

	.masonry-testimonials .testimonial-item__inner {
		padding: 20px;
	}
}

@media (min-width: 768px) {
	.mobile-header {
		display: none;
	}
}

@media (max-width: 767px) {
	header#masthead {
		display: block;
	}

	.header-left,
	.header-right__top,
	.header-right .menu-toggle__wrapper {
		display: none;
	}

	#menu-toggle,
	#close-menu {
		width: auto;
	}

	.menu-toggle__wrapper {
		top: 0;
	}

	.navigation__wrapper .col--50:not(.main-navigation__center) {
		display: none;
	}

	.main-navigation__center {
		width: 100%;
	}

	.navigation__wrapper {
		padding-right: 30px;
		padding-left: 30px;
		padding-top: 30px;
		display: block;
	}

	.menu-item--big.no--number {
		margin-top: 30px;
	}

	.menu-item--big .the__button {
		margin-top: 20px;
	}

	.site-logo__wrapper {
		padding-left: 30px;
	}

	.alt-logo {
		position: absolute;
	}

	.header-right {
		margin-top: -75px;
		padding-top: 75px;
	}
}

@media (min-width: 768px) {
	.related-posts article {
		max-width: 30%;
	}
}

@media (max-width: 767px) {
	.posts-wrapper.featured-posts {
		max-width: 400px;
		margin: 0 auto;
	}

	.hero-single-post {
		padding-top: 75px;
	}

	section.single-post.bg--grey.pb--lg {
		padding-top: 91px;
	}

	#crumbs {
		position: relative;
		top: 10px;
		left: 30px;
		margin-bottom: 30px;
		color: #BEE5F6;
		z-index: 4;
		max-width: calc(100% - 60px);
	}

	.singlePost__inner aside {
		margin: 30px 0 0;
		top: 0;
		position: relative;
	}
}

@media (max-width: 767px) {
	.back-to-account {
		bottom: 70px;
		left: 10px;
	}
}

@media (max-width: 1200px) and (min-width: 768px) {
	.home .hero .col--60:not(.moving-image) {
		width: 80%;
		position: relative;
		z-index: 2;
	}

	.home .hero .moving-image {
		opacity: .8;
		z-index: 1;
	}

	h3.quote__title:before {
		left: -10px;
	}

}

@media (max-width: 767px) {
	.hero .moving-image {
		width: 80%;
		margin: 50px auto 0 !important;
	}

	.home .hero .moving-image {
		margin: 120px auto 0 !important;
	}

	section.featured-services.bg--brand {
		padding-top: 67px;
		padding-bottom: 100px;
	}

	section.featured-our-works {
		background-image: none !important;
		padding-top: 67px;
	}

	section.what-we-do {
		background: #f9f9f9;
		padding-bottom: 67px;
	}

	h3.quote__title:before {
		left: -10px;
	}

	.what-we-do__social-content {
		margin: -10px;
	}

	.social-content__item {
		padding: 10px;
	}

	section.featured-our-works>div {
		padding-right: 30px;
		padding-left: 30px;
	}

	.post-item__link {
		display: none !important;
	}

	.social-content__item>div {
		padding: 20px !important;
	}

	.testimonial-slider .prev__arrow,
	.testimonial-slider .next__arrow {
		width: 35px;
		height: 35px;
	}

	section.featured-our-works .col--50.p--md {
		padding-right: 0;
		padding-left: 0;
	}
}

@media (min-width: 768px) {
	.tabs__item-title-mobile {
		pointer-events: none;
	}
}

@media (max-width: 767px) {
	.tabs__item-title-wrapper {
		display: none;
	}

	.tabs__item-content:not(.active) {
		max-height: unset !important;
		opacity: 1 !important;
		transform: translateY(0) !important;
		pointer-events: auto !important;
		display: block;
	}

	.tabs__item-content-inner {
		height: 0;
		overflow: hidden;
		transition: opacity 300ms 200ms ease;
	}

	.tabs__item-content.active .tabs__item-content-inner {
		height: auto;
		opacity: 1;
		margin-bottom: 10px;
		margin-top: -13px;
	}

	.tabs__item-title-mobile {
		background: #c9e9f7;
		padding: 10px;
		margin-bottom: 20px;
		padding-right: 40px;
		position: relative;
	}

	.tabs__item-title-mobile:after {
		content: "";
		width: 15px;
		height: 15px;
		background-image: url(https://www.socialactive.gr/wp-content/themes/socialactive/media/member/close.svg);
		position: absolute;
		right: 15px;
		top: 50%;
		margin-top: -6.5px;
		transform: rotate(45deg);
		transition: all 300ms ease;
	}

	.tabs__item-title-mobile.active:after {
		transform: rotate(0);
	}

	.tabs__item-content-wrapper {
		height: auto !important;
		padding-bottom: 120px;
	}

	.mobile-tool.item--loading .tabs__item-content {
		opacity: .76 !important;
		filter: blur(1px);
	}

	.progress-bar-container {
		margin-top: -15px;
	}
}

@media (min-width: 1500px) {
	section.what-we-do {
		margin-top: -3rem;
	}
}

@media (min-width: 768px) {

	.solution__box-item:nth-child(4n-2),
	.solution__box-item:nth-child(4n-1) {
		background: #BEE5F6;
	}
}

@media (max-width: 767px) {
	.solution__box-item:nth-child(even) {
		background: #BEE5F6;
	}
}

@media (max-width: 1600px) {
	.vermAccordion__q {
		font-size: calc(23px + 5 * (100vw - 320px) / 1180);
	}

	.what-we-do .what-we-do__top {
		max-width: 1000px;
		margin-top: -3rem;
	}
}

@media (max-width: 767px) {
	.vermAccordion__a {
		margin: 0 !important;
		font-size: 15px;
	}

	.vermAccordion__a p:last-child {
		padding-bottom: 0;
	}
}

@media (min-width: 768px) {
	.form-row .col--50 {
		width: 48.5%;
	}
}

@media (max-width: 1300px) {
	.laptop-holder {
		width: 80%;
		height: 40vw;
	}
}

@media (max-width: 900px) {
	.laptop-holder {
		width: 100%;
		height: 50vw;
	}
}

/* .kerdos__paketou:not(.active) {
  	opacity: 0;
  	pointer-events: none;
} */

/* ##################### */
/* # RESPONSIVE STYLES # */
/* ##################### */

.hero-light #page.menu-active .social-icon svg {
    fill: #fff;
}

.home #primary {
	overflow-x: hidden;
}

span.services-rocket-decor.hovering-elem:before {
  content: "";
  width: 100px;
  height: 2px;
  background: #c9662b;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: rotate(-45deg);
  margin-left: -25px;
  margin-bottom: 30px;
	opacity: 0;
	pointer-events: none;
	transition: all 400ms 200ms ease;
}

span.services-rocket-decor.hovering-elem:after {
  content: "Your Brand";
  position: absolute;
  left: 0;
  bottom: 0;
  transform: rotate(-45deg);
  margin-left: -117px;
  margin-bottom: -60px;
  background: #fff;
  padding: 10px 30px;
	opacity: 0;
	pointer-events: none;
	transition: all 400ms 200ms ease;
}

span.services-rocket-decor.clicked-rocket img {
	transform: none!important;
	pointer-events: none;
}

span.services-rocket-decor img.shadow {
	transition: all 100ms ease;
}

span.services-rocket-decor.clicked-rocket img.shadow {
	opacity: 0;
}

span.services-rocket-decor {
	transition: top 5000ms 900ms ease, right 5000ms 900ms ease, opacity 5000ms 1200ms ease, transform 190ms ease;
	cursor: url('/wp-content/themes/socialactive/media/match.png'), pointer!important;
}

span.services-rocket-decor.clicked-rocket {
	top: -2000px;
	right: -2000px;
	/*transform: translateY(-50%) rotate(-45deg);*/
	opacity: 0;
	pointer-events: none!important;
}

span.services-rocket-decor.clicked-rocket:after,
span.services-rocket-decor.clicked-rocket:before {
	opacity: 1;
}

.block--cta-with-content .block-inner {
    background: #f26f26;
    border-radius: 200px;
    padding: 10px 20px;
    position: relative;
  	transition: all 600ms ease;
}

.block--cta-with-content .block-inner:hover {
    background: #26a7dc;
}

.block--cta-with-content .block-inner * {
    color: #fff;
    fill: #fff;
}

.block--cta-with-content .block-inner h4 {
  	margin: 0;
}

.block--cta-with-content .block-inner p:first-child {
  	margin-top: 0;
}

.block--cta-with-content .block-inner p:last-child {
  	margin-bottom: 0;
}

@media (min-width: 768px) {
  	.block--cta-with-content .block-inner {
    	padding: 20px 70px;
    	padding-left: 120px;
  	}
  
    .block--cta-with-content .block-inner svg {
        position: absolute;
        left: 0;
        top: 20px;
        margin-left: 45px;
    }
}

@media (max-width: 767px) {
    .block--cta-with-content .block-inner svg {
        margin-right: 10px;
      	width: 40px;
    }
}

span.play-video {
    position: absolute;
    top: 50%;
    left: 50%;
    background: #f26f26;
    width: 70px;
    height: 70px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 600ms ease;
    z-index: 5;
    box-shadow: 0 0 20px 2px #00000057;
  	cursor: pointer;
}

span.play-video:hover {
  	transform: translate(-50%, -50%) scale(1.2);
}

span.play-video svg {
    width: 35px;
    margin-left: 8px;
    margin-top: 2px;
}

.footer-container {
    background-image: linear-gradient(to bottom, #bee5f6 50%, #f8f8f8 50%);
}

.prefooter-container img {
    display: block;
    margin-left: auto;
    position: relative;
  	margin-bottom: -2px;
}

.single-post .prefooter-container {
    background: #f8f8f8!important;
}

.blog .prefooter-container,
.archive .prefooter-container{
    background: #fff!important;
}

span.sbi_follow_btn a {
    border-radius: 50px!important;
    padding: 14px 20px!important;
    background: #27a8e0!important;
  	box-shadow: none!important;
}

span.sbi_follow_btn a:hover {
  	background: #f26f26!important;
  	box-shadow: none!important;
}

.pswp__bg {
    background: #8dceeb;
}

.pswp__caption, .pswp__top-bar {
    background-color: rgb(141 206 235);
}

.pswp__button--arrow--left:before,
.pswp__button--arrow--right:before {
    background-color: transparent;
}

.pswp--has_mouse .pswp__button--arrow--left,
.pswp--has_mouse .pswp__button--arrow--right {
  	opacity: 1;
}

.moodboard-item img {
    box-shadow: 0 10px 35px 15px rgb(0 0 0 / 5%);
}

.checkout-payment-options {
    background: #f8f8f8;
    padding: 20px;
    margin: 30px 0;
}

.checkout-payment-options input {
    width: 20px!important;
    height: 20px!important;
  	cursor: pointer;
}

.checkout-payment-options label {
  	margin-bottom: 0!important;
  	cursor: pointer;
}

.checkout-payment-options > div:not(:last-child) {
  	margin-bottom: 15px!important;
}

.buy-product__image img {
    height: 300px;
    width: auto;
}

.logged-in form#mm-login-form {
    display: none;
}

.kostos-paketo__timi-pro-ekptosis .euro-symbol {
    font-size: 50%;
    vertical-align: top;
    margin-right: -10px;
}

.kostos-paketo__timi-pro-ekptosis .kostos-paketou {
    position: relative;
}

.kostos-paketo__timi-pro-ekptosis .kostos-paketou:after {
    content: "";
    width: 102%;
    height: 2px;
    background: #b7b7b7;
    position: absolute;
    left: -1%;
    top: 50%;
}

.kostos-paketo__inner.small--active .kostos-paketo__timi-pro-ekptosis {
    display: none;
}

.kostos-paketo__filtering-inner>.single-filtering--big {
	border-top-right-radius: 25px;
	border-bottom-right-radius: 25px;
}

.kostos-paketo__filtering-inner>.single-filtering--small {
	border-top-left-radius: 25px;
	border-bottom-left-radius: 25px;
}

.kostos-paketo__filtering-inner>.single-filtering--small:before {
	transform-origin: right;
}

.kostos-paketo__filtering-inner>.single-filtering--big:before {
	transform-origin: left;
}

span.banner-label:after {
    content: "";
    width: 0;
    height: 0;
    border-left: 15px solid #000;
    border-bottom: 9px solid transparent;
    bottom: -9px;
    right: 0;
    position: absolute;
}

span.banner-label:before {
    content: "";
    width: 0;
    height: 0;
    border-left: 15px solid #000;
    border-top: 9px solid transparent;
    top: -9px;
    right: 0;
    position: absolute;
}

span.banner-label {
    background: #515151;
    z-index: 2;
    padding: 26px 13px;
    color: #fff;
    position: absolute;
    writing-mode: vertical-lr;
    transform: rotate(-180deg);
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    font-size: 17px;
    left: -15px;
    top: 160px;
}

.kostos-paketo__item {
    position: relative;
}

.single-paketo-kostos .kostos-paketo__item {
    max-width: 450px;
    margin-bottom: 40px;
}

.single-paketo-kostos ul.kostos-paketo__list li {
  	margin-bottom: 10px;
}

.single-paketo-kostos ul.kostos-paketo__list {
  	margin-bottom: 0;
}

.single-paketo-kostos .kostos-paketo__top h3 {
  	margin-bottom: 10px!important;
}

.second--paketo + #kostos {
    background: #f26f26;
}

.second--paketo + #kostos .kostos-paketo__filtering-inner>div:before {
	background: #ffffff;
}

.second--paketo + #kostos .kostos-paketo__filtering-inner>div.active {
  	color: #f26f26;
}

.second--paketo + #kostos .kostos-paketo__item.featured-paketo .kostos-paketo__inner {
  	border: 1px solid #fff;
}

.single-paketo-kostos .kostos-paketo__item.featured-paketo .kostos-paketo__inner {
  	transform: none!important;
}

.single-paketo-kostos .kostos-paketo__bottom,
.single-paketo-kostos .kostos-paketo__middle {
  	padding: 25px 45px;
}

.kostos-paketo__inner.small--active .banner-label {
    opacity: 0;
}

@media (max-width: 400px) {
  	span.banner-label {
    	left: -31px!important
  	}
}

.tab-content__wrapper {
	background: #FFF7F2;
  padding: 2rem;
  border-radius: 20px;
  position: relative;
}

.tab-content__wrapper ul li {
  padding: 20px;
  background: #fff;
  margin-bottom: 15px;
  border-left: 2px solid #f26f26;
	border-bottom: 0;
}

.tab-content__wrapper ul {
	margin-bottom: 0;
}

.client-permalink-request p {
  margin: 0;
  margin-left: 20px;
}

.client-permalink-request {
	margin-top: 30px;
	margin-bottom: 0;
}

.client-permalink-request .wpcf7-spinner {
	display: none!important;
}

.acf-field.acf-field-text.acf-field-607de6a410875 {
  display: none!important;
}

.acf-field input[type="button"] {
  box-shadow: none;
  min-height: unset;
  background: #fff;
  font-size: 12px;
  border: 1px solid;
  line-height: 1!important;
  padding: 0;
  display: inline-block;
  transform: translateY(-1px);
}

input#request-permalink-email {
  display: none;
}

.page-template-mm-checkout .hero.hero--big {
	padding: 0!important;
}

#mm_checkout_form .mm_right_column {
	width: 40%;
}

@media (max-width: 920px) {
  #mm_checkout_form {
	  display: block!important;
  }

	#mm_checkout_form .mm_left_column,
	#mm_checkout_form .mm_right_column {
	  width: 100%;
	}
}

@media (max-width: 767px) {
	#mm_checkout_form .mm-formField {
	  width: 100%;	
	}
}

.social-follow-normal span.social-icon:hover svg {
    fill: #f26f26;
}

table#mm-subscriptions-table td {
    text-align: center;
    font-size: 88%;
    background: #f9f9f9;
    padding: 10px;
}

.page-template-landing-page .moving-image__main-image.service--main img {
    max-height: 700px;
    width: auto!important;
}

.page-template-landing-page .moving-image__main-image.service--main {
    text-align: center;
}

.grecaptcha-badge {
    display: none!important;
}

@media (min-width: 768px) {
  	.menu-item.m--shown {
        display: none;
    }
}

@media (max-width: 767px) {
    .show-when-no-header img {
        width: 100px;
    }
}

.page-template-mm-login .loading-screen {
    display: none!important;
}

.page-template-homepage .moving-image.new--hero .homeElem--two {
    bottom: 45%;
    left: -5%;
    width: 29%;
}

.page-template-homepage .moving-image.new--hero .homeElem--three {
    z-index: 5;
    left: 0;
    bottom: 72%;
    width: 29%;
}

.page-template-homepage .moving-image.new--hero .homeElem--four {
    left: 31%;
    bottom: 73%;
    width: 46%;
}

.page-template-homepage .moving-image.new--hero .homeElem--five {
    width: 19%;
    top: -16%;
    left: 23%;
    z-index: 5;
}

.page-template-homepage .moving-image.new--hero .homeElem--one {
    position: absolute;
    width: 19%;
    bottom: 71%;
    right: -1%;
}

.page-template-homepage .moving-image.new--hero .homeElem--one img {
    transform: none!important;
}

.page-template-homepage .homepage-main {
  	right: 0!important;
}

.lets-talk-cta {
    line-height: 1.2!important;
  	font-size: 18px!important;
  	text-align: center!important;
}

.featured-our-works__logos img {
    height: 50px;
  	width: 90%;
    max-width: 120px;
    object-fit: contain;
}

.featured-our-works__logos > div > div {
    padding: 20px 0;
    border-bottom: 1px solid #dedede; /* #e4f4fb */
  	display: flex;
  	align-items: center;
  	justify-content: center;
}

.featured-our-works__logos > div {
    padding: 0 30px;
}

.featured-our-works__logos {
    position: relative;
}

.featured-our-works__logos:before,
.featured-our-works__logos:after {
    content: "";
    height: 100%;
    width: 1px;
    background: #dedede;
    position: absolute;
    left: 33%;
    top: 0;
}

.featured-our-works__logos:after {
    left: unset;
  	right: 33%;
}

.featured-our-works__logos > div:nth-child(13) div,
.featured-our-works__logos > div:nth-child(14) div,
.featured-our-works__logos > div:nth-child(15) div {
  	border-bottom: 0;
}

section.featured-our-works {
  	background-image: none!important;
}

.featured-our-works__logos-wrapper {
    padding-right: 0!important;
    padding-left: 0!important;
}

/* .the__button.btn--alt.color--brand span {
    color: #000;
} */

@media (min-width: 1650px) {
    .page-template-homepage .hero {
        padding-left: 80px;
    }
}

.spinny-words {
	width: 100%;
	height: 60px;
	position: relative;
}

.spinny-words > span {
	position: absolute;
	white-space: nowrap;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}

.spinny-words > span > span {
  opacity: 0;
  animation: rotateWord 10s linear infinite 0s;
	display: inline-block;
}

.spinny-words > span:nth-child(2) > span { 
  animation-delay: 2.5s; 
}

.spinny-words > span:nth-child(3) > span { 
  animation-delay: 5s
}

.spinny-words > span:nth-child(4) > span { 
  animation-delay: 7.5s; 
}

/* .spinny-words span:nth-child(5) { 
  animation-delay: 12s; 
} */

/* .spinny-words span:nth-child(6) { 
  animation-delay: 15s; 
} */

@keyframes rotateWord {
0%   { opacity: 0; }
2%   { opacity: 0; transform: translateX(30px); }
5%   { opacity: 1; transform: translateX(0px);}
17%  { opacity: 1; transform: translateX(0px); }
20%  { opacity: 0; transform: translateX(-30px); }
80%  { opacity: 0; }
100% { opacity: 0; }
}

.filter--white {
    filter: brightness(0) invert(1);
}

.logged-in footer {
    display: block!important;
}

footer ul li a {
    color: #000;
    margin-bottom: 12px;
    display: block;
}

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

.footer-menu ul {
  	justify-content: center;
}

footer h2 {
    border-bottom: 1px solid #e6e6e6;
    padding-bottom: 15px;
}

.payment-icon {
    margin: 5px;
    padding: 10px 15px;
    background: #209bd0;
}

.payment-icon svg {
    height: 20px;
    fill: #fff;
    display: block;
}

.prefooter-logos img {
    padding: 10px 20px;
    width: auto;
    height: 80px;
    max-width: 180px;
    object-fit: contain;
}

.testimonial--featured .testimonial-item__inner {
    padding: 60px 40px 40px;
	border-radius: 10px;
    box-shadow: none;
	background: #f8f8f8;
}

.testimonial--featured .testimonial-item__image img {
  	border-radius: 50%;
	border: 2px solid #fff;
	display: block;
}

.swiper-slide .testimonial-item.testimonial--featured {
    box-shadow: -15px 20px 30px #0000001a;
}

.testimonial-item__image img {
    min-width: 60px;
	width: 60px;
	height: 60px;
	object-fit: cover;
	border-radius: 50%;
}

.testimonial--featured {
	position: relative;
	overflow: hidden;
}

.testimonial--featured .testimonial-item__inner:after {
	display: none;
}

.testimonial--featured .testimonial-item__content {
	padding-left: 0;
}

.testimonial-slider__new .next__arrow,
.testimonial-slider__new .prev__arrow {
    width: 38px;
    height: 38px;
    background: #f8f8f8;
	margin: 5px!important;
}

.testimonial-slider__new .next__arrow svg, 
.testimonial-slider__new .prev__arrow svg {
	width: 13px;
	fill: #f26f26;
}

.testimonial-slider__new span.swiper-pagination-bullet.swiper-pagination-bullet-active {
	background: #f26f26!important;
	border-color: #f26f26!important;
}

.testimonial-slider__new span.swiper-pagination-bullet {
	border-color: #f26f26!important;
}

@media (min-width: 768px) {
	.testimonial-slider__new {
		padding: 0 60px!important;
	}
}

.testimonial-slider__new .featured-testimonials-slider__buttons {
    top: calc(50% - 1rem);
    transform: translateY(-50%);
}

.testimonial-slider__new .featured-testimonials__pagination {
	margin-top: 1rem!important;
}

img.be-active-graphic {
    position: absolute;
    transform: translateX(-50%);
    left: 50%;
    bottom: -5px;
    transform-origin: left;
}

.swiper-slide .testimonial-item .video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 10px;
    width: 100%;
}

.testimonial-item .video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial--with-video .testimonial-item__image {
    position: absolute;
    top: 20px;
    left: 20px;
	z-index: 2;
}

.play-testimonial-video {
	position: absolute;
    top: 50%;
    left: 50%;
    background: rgba(255, 255, 255, .2);
	border: 1px solid #fff;
    width: 70px;
    height: 70px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 600ms ease;
    z-index: 5;
    cursor: pointer;
}

.play-testimonial-video svg {
    width: 45%;
    margin-left: 7px;
}

.testimonial--with-video .video-wrapper:after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    background-image: linear-gradient(to bottom, transparent, rgb(5 132 189 / 42%));
}

.testimonial--with-video .testimonial-item__name {
    position: absolute;
    bottom: 30px;
    z-index: 2;
    left: 50%;
    transform: translateX(-50%);
    font-size: 24px;
    font-weight: 600;
    font-style: italic;
    color: #fff;
	white-space: nowrap;
}

.testimonial-item.testimonial--featured.testimonial--with-video {
    border-radius: 10px;
}

.swiper-slide .testimonial-item.testimonial--featured.testimonial--with-video {
	width: 100%;
	height: 0;
    padding-bottom: 56.3%;
}

.testimonial--with-video .testimonial-item__name,
.testimonial--with-video .testimonial-item__image, 
.testimonial--with-video .play-testimonial-video,
.testimonial--with-video .video-wrapper:after {
	transition: all 300ms ease;
}

.testimonial--with-video .video-wrapper:after,
.testimonial-item .video-wrapper video{
	border-radius: 10px;
}

.testimonial--with-video.video-playing .testimonial-item__name,
.testimonial--with-video.video-playing .testimonial-item__image, 
.testimonial--with-video.video-playing .play-testimonial-video,
.testimonial--with-video.video-playing .video-wrapper:after {
    opacity: 0;
	pointer-events: none;
}

.testimonial-slider .swiper-slide {
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 767px) {
	.play-testimonial-video {
		width: 40px;
		height: 40px;
	}
	
	.testimonial--with-video .testimonial-item__name {
		font-size: 20px;
		bottom: 20px;
	}
	
	.featured-our-works__logos-wrapper {
		padding-bottom: 100px!important;
	}
}

body .loading-screen {
	display: none!important;
}

.post-item__thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (min-width: 768px) {
	div#response article.post-item .post-item__thumbnail-container {
		width: 60%;
	}
	
	div#response article.post-item .post-item__content-container {
		width: 40%;
	}
}

@media (max-width: 767px) {
	section.featured-our-works .col--50.p--lg {
		padding: 0;
	}
	
	.featured-testimonials-slider__buttons {
		width: calc(100% + 60px)!important;
		margin-left: -30px!important;
	}
	
	.play-testimonial-video {
		opacity: 0;
		width: 100%!important;
		height: 100%!important;
		z-index: 5;
	}
	.testimonial--with-video .video-wrapper:after {
		pointer-events: none;
	}
}

th {
    text-align: left;
}

.features-service-grid__item {
    position: relative;
	border: 1px solid #fff;
	transition: all 300ms ease;
}

.features-service-grid__item:hover {
	background: #fff;
}

.features-service-grid__item .the__title,
.features-service-grid__item .the__subtitle,
.features-service-grid__item .the__content {
	color: #fff;
	transition: all 300ms ease;
}

.features-service-grid__item:hover .the__title,
.features-service-grid__item:hover .the__subtitle {
	color: #27a8e0;
}

.features-service-grid__item:hover .the__content {
	color: #000;
}

.features-service-grid__content {
    position: relative;
    z-index: 1;
    max-width: 90%;
	margin: 0 auto;
}

.setup-boxes .rotating-item {
    background-image: url(/wp-content/uploads/2021/02/hourglass.png);
    width: 450px;
    height: 450px;
    background-size: contain;
    position: sticky;
  	top: 120px;
    background-position: center;
    background-repeat: no-repeat;
}

.solution__box-item .content-max-height {
    max-height: 300px;
    overflow: auto;
    padding-right: 30px;
}

.social-content__item .setup__number {
    color: #27a8e0;
    margin: 0;
    transform: none;
    font-size: 75px;
    margin-bottom: -45px;
    display: block;
    margin-left: -20px;
}

/* .solution__box-item > div {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
} */

.solution__box-item .content-max-height > p:first-child {
    margin-top: 0;
}

.wp-block-image figcaption {
    font-size: 12px;
    font-style: italic;
}

a.warm-welcome-backup img {
    border-radius: 50%;
    border: 3px solid #f26f26;
}

a.warm-welcome-backup {
    display: block;
    width: 100px;
    height: 100px;
    border-radius: 50%;
}

.warm-welcome-popup {
    position: fixed;
    right: 30px;
    bottom: 30px;
    width: 350px;
	height: 600px;
    z-index: 99999;
	opacity: 0;
	pointer-events: none;
	transition: all 300ms ease;
}

.warm-welcome-popup.active {
	opacity: 1;
	pointer-events: auto;
}

span.close-button {
    position: absolute;
    width: 50px;
    height: 50px;
    background: red;
    top: 0;
    right: 0;
    z-index: 99999999999999;
    cursor: pointer;
}

.footer-col__contact .max--350 {
	max-width: 350px;
}

.menu-item--new a {
	position: relative;
}

.menu-item--new a:before {
    content: "Νέο";
    position: absolute;
    top: 0;
    background-image: url(https://www.socialactive.gr/wp-content/uploads/2022/04/bubble.svg);
    background-size: 100% 100%;
    padding: 8px 8px 16px;
    margin-top: -28px;
    font-size: 10px;
    left: 100%;
    transform: translateX(-50%);
}

/* @media (min-width: 651px) {
	.payment-icons {
		margin-bottom: 20px;
	}
} */

@media (max-width: 650px) {
	.menu-item--new {
		width: 100%;
	}
	
	.menu-item--new a {
		margin-top: 20px;
	}
}

@media (max-width: 767px) {
	.ebook .moving-image__inner {
		max-width: 250px;
		margin: 0 auto;
	}
	
	.prefooter-logos div {
		max-width: 180px;
		margin: 0 auto;
	}
	
	.payment-icons {
		display: none!important;
	}
	
	.footer-menu ul {
		justify-content: flex-start!important;
	}
	
	.footer-copyright .footer-menu {
		padding: 0;
	}
}

.screen-reader-response {
    display: none;
}

.wpcf7 form.sent .wpcf7-response-output {
	margin-top: 25px;
}

.hero-blur {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-size: cover;
    opacity: .3;
    filter: blur(15px);
}

.single-case_studies .hero .section--boxed {
	transform: translateY(5rem);
    position: relative;
    z-index: 2;
}

.single-case_studies .hero {
    overflow: initial;
    min-height: 100vh;
	position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1;
}

.single-case_studies .hero .full-image-wrapper, 
.single-case_studies .hero .full-image-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .5;
    filter: blur(15px);
}

.single-case_studies div#crumbs {
    position: relative;
    top: 0;
    left: 0;
    margin-top: 30px;
    margin-left: 30px;
}

.single-case_studies #crumbs * {
    color: black!important;
}

body.hero-light.single-case_studies #page:not(.menu-active) .header-left {
    background: transparent!important;
}

@media (min-width: 768px) {
	.single-case-study__inner aside {
		margin-top: 100vh;
	}
	
	.single-case_studies .social-share .cols {
		flex-direction: column;
	}
	
	.single-case_studies .social-share > h3 {
		display: none;
	}
	
	.single-case_studies .social--icon:first-child a {
		border-top-right-radius: 25px!important;
		border-bottom-left-radius: 0!important;
	}
	
	.single-case_studies .social--icon:last-child a {
		border-top-right-radius: 0 !important;
		border-bottom-right-radius: 25px !important;
		border-bottom-left-radius: 25px !important;
	}
}

@media (min-width: 1890px) {
	.single-case-study__inner aside {
		margin-top: 30vh;
	}
}