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

Theme Name: Magzine
Version: 2.3
Requires at least: 5.4
Tested up to: 6.0.1
Requires PHP: 7.3
Description: Designed by <a href="https://www.ghostpool.com">GhostPool.com</a>.
Author: GhostPool
Author URI: https://www.ghostpool.com
Theme URI: 
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Tags: full-width-template, threaded-comments, one-column, two-columns, left-sidebar, right-sidebar, custom-background, custom-colors, custom-menu, editor-style, featured-images, rtl-language-support, sticky-post, theme-options, translation-ready
Text Domain: magzine

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

CSS Resets

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

html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,section,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;vertical-align:baseline;}section,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block;}body{line-height:1;}ol,ul{list-style:none;}blockquote,q{quotes:none;}blockquote:before,blockquote:after,q:before,q:after{content:'';content:none;}table{border-spacing:0;border-collapse:collapse;}input[type="text"],input[type="email"],input[type="number"],input[type="password"],input[type="search"],input[type="button"],input[type="submit"],input[type="reset"],textarea,button{-webkit-appearance:none;}input::-moz-focus-inner{margin-top:0;margin-bottom:-1px;padding:0;border:0;}


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

General Styling

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

/*--------------------------------------------------------------
General Styling - Document
--------------------------------------------------------------*/

* {
-webkit-box-sizing: border-box;
box-sizing: border-box;
outline: none;
-webkit-text-size-adjust: none;
}
html {
overflow-x: hidden;
}
body {
margin: 0;
padding: 0;
font-size: 16px;
line-height: 36px;
-webkit-text-size-adjust: 100%;
text-rendering: optimizeLegibility;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
-webkit-font-variant-ligatures: none;
font-variant-ligatures: none;
}
#wpadminbar {
z-index: 99999999 !important;
}
.dialog-type-lightbox {
z-index: 99999 !important;
}

/*--------------------------------------------------------------
General Styling - Loaders
--------------------------------------------------------------*/

/* Page loader ************************************/
.gp-page-loader {
display: flex;
overflow: hidden;
position: fixed;
z-index: 1000002;
top: 0; 
left: 0;
width: 100%;
height: 100%;
opacity: 1;
visibility: visible;
background: #fff;
-webkit-transition: all .35s ease-out;
transition: all .35s ease-out;
justify-content: center;
align-items: center;
}
.gp-page-loader.gp-remove-loader {
opacity: 0;
visibility: hidden;
}
.gp-page-loader-icon {
color: #eee;
}
.gp-animation-horizontal-vertical-flip .gp-page-loader-icon {
-webkit-animation: flip 2.4s infinite linear both;
animation: flip 2.4s infinite linear both;
}
.gp-animation-spin .gp-page-loader-icon {
-webkit-animation: spin 5s infinite linear;
animation: spin 5s infinite linear;
}

/* Element loader ************************************/
.gp-loader {
display: none;
overflow: hidden;
position: absolute;
z-index: 1;
top: 0; 
left: 0;
width: 100%;
height: 100%;
-webkit-transition: all .35s ease-out;
transition: all .35s ease-out;
justify-content: center;
align-items: center;
}
.gp-loading .gp-loader {
display: flex;
}
.gp-loader-icon {
color: #000;
font-size: 40px;
}
.gp-animation-horizontal-vertical-flip .gp-loader-icon {
-webkit-animation: flip 2.4s infinite linear both;
animation: flip 2.4s infinite linear both;
}
.gp-animation-spin .gp-loader-icon {
-webkit-animation: spin 5s infinite linear;
animation: spin 5s infinite linear;
}

/* Animation effects ************************************/

@-moz-keyframes fadeOut {
    from { opacity: 1; }
    to   { opacity: 0; }
}
@-webkit-keyframes fadeOut {
    from { opacity: 1; }
    to   { opacity: 0; }
}
@keyframes fadeOut {
    from { opacity: 1; }
    to   { opacity: 0; }
}

@-moz-keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}
@-webkit-keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@-moz-keyframes flip {
    from {
        -moz-transform:rotate(0deg);
    }
    to {
        -moz-transform:rotate(360deg);
    }
}
@-webkit-keyframes flip {
    from {
        -webkit-transform:rotate(0deg);
    }
    to {
        -webkit-transform:rotate(360deg);
    }
}
@keyframes spin {
    from {
        transform:rotate(0deg);
    }
    to {
        transform:rotate(360deg);
    }
}

@-moz-keyframes flip {
	0%, 10% {
	-moz-transform: perspective(140px) rotateX(-180deg);
	opacity: 0;
	} 
	25%, 75% {
	-moz-transform: perspective(140px) rotateX(0deg);
	opacity: 1;
	} 
	90%, 100% {
	-moz-transform: perspective(140px) rotateY(180deg);
	opacity: 0;
	}
}
@-webkit-keyframes flip {
	0%, 10% {
	-webkit-transform: perspective(140px) rotateX(-180deg);
	opacity: 0;
	} 
	25%, 75% {
	-webkit-transform: perspective(140px) rotateX(0deg);
	opacity: 1;
	} 
	90%, 100% {
	-webkit-transform: perspective(140px) rotateY(180deg);
	opacity: 0;
	}
}
@keyframes flip {
	0%, 10% {
	transform: perspective(140px) rotateX(-180deg);
	opacity: 0;
	} 
	25%, 75% {
	transform: perspective(140px) rotateX(0deg);
	opacity: 1;
	} 
	90%, 100% {
	transform: perspective(140px) rotateY(180deg);
	opacity: 0;
	}
}

/*--------------------------------------------------------------
General Styling - Text
--------------------------------------------------------------*/

a {
text-decoration: none;
transition: all .2s;
}
a:focus-visible {
outline-style: solid;
outline-width: 1px;
}
h1,
h2,
h3,
h4,
h5,
h6 {
clear: both;
word-break: normal;
overflow-wrap: anywhere;
margin: 20px 0;
line-height: 1.35;
}
h1 {
font-size: 2.44em;
}
h2 {
font-size: 1.95em;
}
h3 {
font-size: 1.56em;
}
h4 {
font-size: 1.25em;
}
h5 {
font-size: 1em;
}
h6 {
font-size: 0.8em;
}
p,
address {
margin-bottom: 16px;
}
em, 
var,
q {
font-style: italic;
}
small {
font-size: xx-small;
line-height: 1em;
}
sup {
vertical-align: top;
font-size: xx-small;
line-height: 1em;
} 
sub {
vertical-align: bottom;
font-size: xx-small;
line-height: 1em;
}
mark {
padding: 3px 5px;
border: 1px solid #FFD600;
background: #FFEB00;
color: #726C29;
font-weight: bold;
}
ins {
text-decoration: underline;
}
dl {
margin-bottom: 20px;
}
dd {
padding-left: 20px;
margin-bottom: 10px;
}
dt {
font-weight: bold;
}

/*--------------------------------------------------------------
General Styling - Lists
--------------------------------------------------------------*/

ol {
margin: 0 0 12px 24px;
padding: 0;
list-style-type: decimal;
}
ol li > * {
margin-bottom: 0;
}
ul {
margin: 0 0 12px 24px;
padding: 0;
list-style-type: square;
}
ul li > * {
margin-bottom: 0;
}

/*--------------------------------------------------------------
General Styling - Fields/Button styling
--------------------------------------------------------------*/

/* General ************************************/

input,
select,
textarea {
max-width: 100%;
padding: 12px;
background: #f0f0f0;
border: 0;
font-family: inherit;
font-size: 16px;
line-height: 26px;
}
input:focus,
textarea:focus {
border-color: #d3ced2;
}
textarea {
width: 100%;
height: 150px;
resize: vertical;
}
input[type='radio'],
input[type='checkbox'] {
position: relative;
top: 2px;
margin: 0 8px 0 0;
background: transparent;
}
input[type='radio'] {
-webkit-appearance: radio;
}
input[type='checkbox'] {
-webkit-appearance: checkbox;
}
input[type='submit'] {
cursor: pointer;
}
button {
border: 0;
}
button,
input[type=button],
input[type=submit],
.elementor-button,
.elementor-clickable {
transition: all .2s;
cursor: pointer;
font-size: 16px;
line-height: 26px;
font-weight: 500;
}

/* Placeholder text ************************************/

::-webkit-input-placeholder {
opacity: 0.7;
}
::-moz-placeholder {
opacity: 0.7;
}
:-ms-input-placeholder {  
opacity: 0.7;
}

/* TinyMCE editor ************************************/

.gp-theme .wp-core-ui .button, 
.gp-theme .wp-core-ui .button-primary, 
.gp-theme .wp-core-ui .button-secondary {
display: inline-block;
text-decoration: none;
font-size: 13px;
line-height: 2.15384615;
min-height: 30px;
padding: 0 10px;
cursor: pointer;
border-width: 1px;
border-style: solid;
-webkit-appearance: none;
border-radius: 3px;
white-space: nowrap;
box-sizing: border-box;
text-transform: none;
}
.gp-theme .switch-html.wp-switch-editor, 
.gp-theme .switch-tmce.wp-switch-editor {
background: #ebebeb;
color: #666;
font-size: 13px;
line-height: 1.46153846;
height: 20px;
margin: 5px 0 0 5px;
padding: 3px 8px 4px;
border: 1px solid #e5e5e5;
border-radius: 0;
text-transform: none;
}
.gp-theme .html-active .switch-html.wp-switch-editor, 
.gp-theme .tmce-active .switch-tmce.wp-switch-editor {
background: #f5f5f5;
color: #555;
border-bottom-color: #f5f5f5;
}

/* Visual tab */
.gp-theme .mce-btn button {
padding: 4px 6px;
font-size: 14px;
line-height: 20px;
text-align: center;
background: none;
border-radius: 3px;
text-transform: none;
}
.gp-theme .mce-btn button:hover {
background: none;
border: 0;
}
.gp-theme .mce-btn.mce-active, 
.gp-theme .mce-btn.mce-active button, 
.gp-theme .mce-btn.mce-active i, 
.gp-theme .mce-btn.mce-active:hover button, 
.gp-theme .mce-btn.mce-active:hover i,
.gp-theme .mce-menu .mce-container-body,
.gp-theme .mce-window .mce-wp-help>.mce-container-body,
.gp-theme .mce-window .mce-container-body.mce-abs-layout,
.gp-theme #wp-link-wrap #link-selector {
color: #000;
}

/* Text tab */
.gp-theme .wp-core-ui .quicktags-toolbar input.button.button-small {
font-size: 13px;
line-height: 2.15384615;
min-height: 30px;
margin: 2px;
padding: 0 10px;
color: #0071a1;
border-color: #0071a1;
background: #f3f5f6;
border-radius: 3px;
}
.gp-theme .wp-core-ui .quicktags-toolbar input.button.button-small:hover {
font-size: 13px;
line-height: 2.15384615;
min-height: 30px;
margin: 0;
padding: 0 10px;
color: #0071a1;
border-color: #0071a1;
background: #f3f5f6;
}
.gp-theme .mce-toolbar .mce-listbox button {
text-transform: none;
}
.gp-theme .wp-editor-container textarea.wp-editor-area {
border-radius: 0;
}

/* Add Link Window */
.gp-theme div.wp-link-input input {
padding: 3px !important;
line-height: 1.28571429 !important;
background: #fff !important;
}
.gp-theme #wp-link input[type=text] {
border: 1px solid #777;
}
.gp-theme #wp-link-submit {
background: #2271b1;
border-color: #2271b1;
color: #fff;
text-decoration: none;
text-shadow: none;
font-weight: normal;
}

/* Special characters window */
.gp-theme .mce-window .wp-editor-help h2, 
.gp-theme .mce-window .wp-editor-help p {
color: #000;
}
.gp-theme .mce-window .mce-window-head .mce-close, 
.gp-theme .mce-window-head .mce-close .mce-i-remove {
background: none;
}

/* Custom colors window */
.gp-theme .mce-textbox {
padding: 0 !important;
}

/* Add Media Window ************************************/

.gp-theme .media-frame, 
.gp-theme .media-modal,
.gp-theme .media-frame-title h1,
.gp-theme .uploader-inline h2,
.gp-theme .media-attachments-filter-heading, 
.gp-theme .media-frame-menu-heading {
color: #000;
}
.gp-theme .media-menu .media-menu-item,
.gp-theme .media-router .media-menu-item,
.gp-theme .wp-core-ui .attachment.details .check, 
.gp-theme .wp-core-ui .attachment.selected .check:focus, 
.gp-theme .wp-core-ui .media-frame.mode-grid .attachment.selected .check {
font-family: inherit;
font-weight: inherit;
text-transform: none;
border-radius: 0;
}
.gp-theme .uploader-inline .browser,
.gp-theme .media-toolbar-primary>.media-button, 
.gp-theme .media-toolbar-primary>.media-button-group,
.gp-theme .selection-info .clear-selection,
.gp-theme .media-modal .delete-attachment, 
.gp-theme .media-modal .trash-attachment, 
.gp-theme .media-modal .untrash-attachment,
.gp-theme .wp-core-ui .button-group.button-small .button, 
.gp-theme .wp-core-ui .button.button-small {
font-family: inherit;
font-size: inherit;
font-weight: inherit;
text-transform: none;
}
.gp-theme .media-menu .media-menu-item:focus,
.gp-theme .media-router .media-menu-item:hover,
.gp-theme .media-router .media-menu-item:focus,
.gp-theme .selection-info .clear-selection:focus, 
.gp-theme .selection-info .clear-selection:hover,
.gp-theme .media-modal .delete-attachment:focus, 
.gp-theme .media-modal .delete-attachment:hover, 
.gp-theme .media-modal .trash-attachment:focus, 
.gp-theme .media-modal .trash-attachment:hover, 
.gp-theme .media-modal .untrash-attachment:focus, 
.gp-theme .media-modal .untrash-attachment:hover {
background: none;
}
.gp-theme .media-frame input[type=date], 
.gp-theme .media-frame input[type=datetime-local], 
.gp-theme .media-frame input[type=datetime], 
.gp-theme .media-frame input[type=email], 
.gp-theme .media-frame input[type=month], 
.gp-theme .media-frame input[type=number], 
.gp-theme .media-frame input[type=password], 
.gp-theme .media-frame input[type=search], 
.gp-theme .media-frame input[type=tel], 
.gp-theme .media-frame input[type=text], 
.gp-theme .media-frame input[type=time], 
.gp-theme .media-frame input[type=url], 
.gp-theme .media-frame input[type=week] {
padding: 0 8px !important;
font-size: 13px !important;
line-height: 2.15384615 !important;
border-radius: 4px !important;
}
.gp-theme .media-attachments-filter-heading, 
.gp-theme .media-frame-menu-heading {
font-size: 13px;
line-height: 1;
}
.gp-theme .media-router .active:hover {
background: #fff;
}
.gp-theme .attachment-details .setting+.description {
line-height: 1.2;
}
.gp-theme .media-modal-close {
padding: 0;
background: none;
color: #666;
}  
.gp-theme .media-modal-close:active, 
.gp-theme .media-modal-close:hover {
background: none;
padding: 0;
border-radius: 0;
}

/*--------------------------------------------------------------
General Styling - Code
--------------------------------------------------------------*/

pre:not(.wp-block-verse) {
overflow: auto;
margin: 0 0 20px 0;
padding: 15px 20px;
font-family: 'Courier New';
white-space: pre-wrap;
word-break: normal;
overflow-wrap: anywhere;
}
code,
kbd {
font-family: 'Courier New';
}

/*--------------------------------------------------------------
General Styling - Table
--------------------------------------------------------------*/

table, 
.wp-block-table {
width: 100%;
min-width: 240px;
margin-top: 28px;
margin-bottom: 28px;
border-collapse: collapse;
}
table td, 
table th, 
.wp-block-table td, 
.wp-block-table th {
padding: 10px;
border: 1px solid;
}

/*--------------------------------------------------------------
General Styling - Alignments
--------------------------------------------------------------*/

.gp-element-post-content > *[class*="wp-block-"]:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.wp-block-separator):not(.woocommerce) {
max-width: 100%;
}
.gp-element-post-content > *.alignwide {
margin-left: auto;
margin-right: auto;
clear: both;
}
.gp-element-post-content > *.alignfull,
.elementor .elementor-widget:not(.elementor-widget-text-editor):not(.elementor-widget-theme-post-content) .gp-element-post-content figure.alignfull {
clear: both;
position: relative;
left: 50%;
right: 50%;
width: 100vw;
margin-left: -50vw;
margin-right: -50vw;
max-width: none;
}
.alignleft,
.gp-element-post-content > *.alignleft {
float: left;
margin: 10px 2rem 10px 0 !important;
}
.alignright,
.gp-element-post-content > *.alignright {
float: right;
margin: 10px 0 10px 2rem !important;
}
.aligncenter,
.gp-element-post-content > *.aligncenter {
width: 100%;
margin: 10px auto !important;
text-align: center;
}
.gp-element-post-content > *.alignfull iframe {
width: 100%;
}

/*--------------------------------------------------------------
General Styling - Visibility
--------------------------------------------------------------*/

.gp-clear {
display: block;
clear: both;
margin: 0;
padding: 0;
width: 100%;
height: 0;
content: '';
font-size: 0;
line-height: 0;
}
.gp-hidden {
display: none;
}
.invisible {
visibility: visible;
}
.js .invisible {
visibility: hidden;
}
.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;
}
.wp-block-spacer {
margin-bottom: 0 !important;
}

/*--------------------------------------------------------------
General Styling - Captions
--------------------------------------------------------------*/

.wp-caption,
.wp-block-gallery figcaption, 
.wp-block-embed figcaption, 
.wp-block-image figcaption {
width: 100%;
max-width: 100%;
margin-bottom: 1em;
color: #555;
font-size: 14px;
line-height: 20px;
}
.gallery-caption,
.wp-caption-text {
font-size: 14px;
line-height: 20px;
}
.wp-caption-text {
margin: 5px 0 20px 0;
}

/*--------------------------------------------------------------
General Styling - Embeds
--------------------------------------------------------------*/

object,
embed,
video,
iframe {
max-width: 100%;
}

/*--------------------------------------------------------------
General Styling - Other
--------------------------------------------------------------*/

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

/*--------------------------------------------------------------
General Styling - Icons
--------------------------------------------------------------*/

/* Elementor Icons ************************************/

.gp-element-icon {
text-align: center;
flex: 0 0 auto;
}
.gp-element-icon svg {
width: 1em;
vertical-align: middle;
}

/* Cross ************************************/

.gp-icon-cross {
display: block;
position: relative;
width: 32px;
height: 32px;
}
.gp-icon-cross:before, 
.gp-icon-cross:after {
position: absolute;
content: ' ';
left: 15px;
height: 32px;
width: 2px;
background: #fff;
}
.gp-icon-cross:before {
transform: rotate(45deg);
}
.gp-icon-cross:after {
transform: rotate(-45deg);
}

/*--------------------------------------------------------------
General Styling - FlexSlider
--------------------------------------------------------------*/

.gp-slider {
position: relative;
zoom: 1;
}
.gp-slider .slides {
margin: 0;
padding: 0;
zoom: 1;
list-style-type: none;
line-height: 1;
}
.gp-slider .slides > li {
position: relative;
display: none;
margin: 0;
padding: 0;
list-style-type: none;
-webkit-backface-visibility: hidden;
}
/*.gp-slider[data-animation="slide"] .slides > li {
left: -1px; /* Fix for 1px offset show on left
}*/
.gp-slider .slides li > img {
width: 100%;
line-height: 0;
}
.gp-slider .slides:after {
content: "\0020";
display: block;
clear: both;
visibility: hidden;
line-height: 0;
height: 0;
}
html[xmlns] .gp-slider .slides {
display: block;
}
* html .gp-slider .slides {
height: 1%;
}

/* Prev/next nav ************************************/

.gp-slider .flex-direction-nav {
display: none;
position: absolute;
z-index: 99;
width: 100%;
top: 50%;
transform: translateY(-50%);
margin: 0;
list-style: none;
justify-content: space-between;
}
.gp-slider .flex-direction-nav.gp-active {
display: flex;
}
.gp-slider .flex-direction-nav .flex-nav-prev {
margin-left: 20px;
}
.gp-slider .flex-direction-nav .flex-nav-next {
margin-right: 20px;
}
.gp-slider .flex-direction-nav a {
display: block;
width: 40px;
height: 40px;
background: rgba(0,0,0,0.5);
text-align: center;
cursor: pointer;
border-radius: 50%;
}
.gp-slider .flex-direction-nav a:before {
font-family: 'fontello';
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
color: #fff;
font-size: 20px;
line-height: 40px;
font-weight: 100;
}
.gp-slider .flex-direction-nav .flex-next:before {
content: '\e810';
}
.gp-slider .flex-direction-nav .flex-prev:before {
content: '\e811';
}
.gp-slider .flex-direction-nav a:hover {
background: rgba(0,0,0,0.8);
}
.gp-slider .flex-direction-nav .flex-disabled {
opacity: 0.2;
cursor: auto;	
pointer-events: none;
}

/* Buttons nav ************************************/

.gp-slider .flex-control-nav {
display: flex;
width: 100%;
overflow: hidden;
list-style: none;
margin: 10px 0 0 0;
line-height: 0;
justify-content: center;
}
.gp-slider .flex-control-nav li {
display: inline-block;
margin: 0 2px 0 2px;
padding: 0;
list-style: none;
}
.gp-slider .flex-control-nav li a {
position: relative;
z-index: 99;
display: block;
width: 14px;
height: 14px;
border-radius: 50%;
background: rgba(0,0,0,0.25);
text-indent: -8999px;
cursor: pointer;
}
.gp-slider .flex-control-nav li a:hover,
.gp-slider .flex-control-nav li .flex-active {
background: rgba(0,0,0,0.8);
}

	
/*--------------------------------------------------------------
General Styling - Messages
--------------------------------------------------------------*/

/* Success Message ************************************/

.gp-success-message,
.gp-error-message {
display: none;
}
.gp-success-message {
position: relative;	
width: 100%;	
clear: both;	
overflow: hidden;	
padding: 20px;
background: #eee;
border-left: 5px solid #4caf50;
border-radius: 5px;
color: #000;
}

/* Error Message ************************************/

.gp-error-message {
position: relative;	
width: 100%;	
clear: both;	
overflow: hidden;	
padding: 20px;
background: #eee;
border-left: 5px solid #ff0000;
border-radius: 5px;
color: #000;
}
.gp-error-message a[href] {
color: #ff0000;
}
.gp-error-message a[href]:hover {
color: #ff0000;
text-decoration: underline;
}
.gp-global-error-message {
margin: 20px;
font-size: 16px;
line-height: 22px;
}


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

Gutenberg

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

/*--------------------------------------------------------------
Gutenberg - Blocks
--------------------------------------------------------------*/

.wp-block-columns.alignfull, 
.alignfull:not(.has-background) .wp-block-columns {
padding-left: 2rem;
padding-right: 2rem;
}
.wp-block-archives,
.wp-block-categories,
.wp-block-code, 
.wp-block-columns,
.wp-block-cover, 
.wp-block-embed, 
.wp-block-gallery, 
.wp-block-group,
.wp-block-image, 
.wp-block-latest-comments, 
.wp-block-latest-posts, 
.wp-block-media-text,
.wp-block-preformatted, 
.wp-block-pullquote, 
.wp-block-quote, 
.wp-block-quote.is-large, 
.wp-block-quote.is-style-large, 
.wp-block-verse, 
.wp-block-video {
margin-top: 28px;
margin-bottom: 28px;
}
.wp-block-latest-posts {
margin-left: 0;
}
.wp-block-group.has-background {
padding: 25px;
}

/*--------------------------------------------------------------
Gutenberg - Buttons
--------------------------------------------------------------*/

.wp-block-button {
margin-top: 28px;
margin-bottom: 28px;
} 
.wp-block-button.is-style-squared > * {
border-radius: 0;
}
.gp-theme .wp-block-button:not(.is-style-outline) .wp-block-button__link:not(.has-text-color) {
color: #fff;
}
.gp-theme .wp-block-button:not(.is-style-outline) .wp-block-button__link:not(.has-text-color):active, 
.gp-theme .wp-block-button:not(.is-style-outline) .wp-block-button__link:not(.has-text-color):focus, 
.gp-theme .wp-block-button:not(.is-style-outline) .wp-block-button__link:not(.has-text-color):hover, 
.gp-theme .wp-block-button:not(.is-style-outline) .wp-block-button__link:not(.has-text-color):visited {
color: #fff;
}

/*--------------------------------------------------------------
Gutenberg - Cover Images
--------------------------------------------------------------*/

.gp-theme .wp-block-cover-image h1:not(.has-text-color), 
.gp-theme .wp-block-cover-image h2:not(.has-text-color), 
.gp-theme .wp-block-cover-image h3:not(.has-text-color), 
.gp-theme .wp-block-cover-image h4:not(.has-text-color), 
.gp-theme .wp-block-cover-image h5:not(.has-text-color), 
.gp-theme .wp-block-cover-image h6:not(.has-text-color), 
.gp-theme .wp-block-cover-image p:not(.has-text-color), 
.gp-theme .wp-block-cover .wp-block-subhead:not(.has-text-color), 
.gp-theme .wp-block-cover h1:not(.has-text-color), 
.gp-theme .wp-block-cover h2:not(.has-text-color), 
.gp-theme .wp-block-cover h3:not(.has-text-color), 
.gp-theme .wp-block-cover h4:not(.has-text-color), 
.gp-theme .wp-block-cover h5:not(.has-text-color), 
.gp-theme .wp-block-cover h6:not(.has-text-color), 
.gp-theme .wp-block-cover p:not(.has-text-color) {
color: #fff;
}

/*--------------------------------------------------------------
Gutenberg - Drop Caps
--------------------------------------------------------------*/

.has-drop-cap:not(:focus)::after {
content: "";
display: table;
clear: both;
padding-top: 14px;
}

/*--------------------------------------------------------------
Gutenberg - Headings
--------------------------------------------------------------*/

.has-small-font-size {
font-size: 13px;
}
.has-normal-font-size,
.has-regular-font-size {
font-size: 16px;
}
.has-medium-font-size {
font-size: 20px;
}
.has-large-font-size {
font-size: 36px;
line-height: 1.3;
}
.has-large-font-size + p {
line-height: 1.6em;
}
.has-huge-font-size {
font-size: 46px;
line-height: 2.2;
}

/*--------------------------------------------------------------
Gutenberg - Media Text
--------------------------------------------------------------*/

.wp-block-media-text .wp-block-media-text__content {
padding-top: 20px;
}
.wp-block-media-text__content .has-small-font-size {
font-size: 0.842em;
}
.wp-block-media-text__content .has-normal-font-size,
.wp-block-media-text__content .has-regular-font-size {
font-size: 1em;
}
.wp-block-media-text__content .has-medium-font-size {
font-size: 1.1em;
line-height: 1.45;
}
.wp-block-media-text__content .has-large-font-size {
font-size: 1.25em;
line-height: 1.4;
}
.wp-block-media-text__content .has-larger-font-size {
font-size: 1.5em;
line-height: 1.3;
}

/*--------------------------------------------------------------
Gutenberg - Quotes
--------------------------------------------------------------*/

/* Blockquote ************************************/

blockquote,
.wp-block-quote {
margin-top: 40px !important;
margin-bottom: 40px !important;
padding: 0 !important;
border: 0 !important;
}
blockquote p, 
.wp-block-quote p {
font-size: 30px;
line-height: 1.6;
font-weight: 600;
}
.wp-block-quote.is-large, 
.wp-block-quote.is-style-large {
margin-top: 60px;
margin-bottom: 60px;
}
.wp-block-quote.is-large p, 
.wp-block-quote.is-style-large p {
font-size: 42px;
}

/* Pull quote ************************************/

.wp-block-pullquote,
.elementor .elementor-widget:not(.elementor-widget-text-editor):not(.elementor-widget-theme-post-content) .wp-block-pullquote {
margin-top: 40px;
margin-bottom: 40px;
padding: 40px;
}
.wp-block-pullquote blockquote {
margin: 0;
}
.wp-block-pullquote.is-style-solid-color blockquote {
max-width: 100%;
}
.wp-block-pullquote.is-style-solid-color blockquote p {
margin-bottom: 16px;
}
.wp-block-pullquote p {
font-size: 30px;
line-height: 1.6;
font-weight: 600;
color: inherit;
}

/* Citation ************************************/

br + cite {
margin-top: 10px;
}

/*--------------------------------------------------------------
Gutenberg - Separator
--------------------------------------------------------------*/

.gp-theme .wp-block-separator,
.elementor hr.wp-block-separator {
margin: 28px auto;
}
hr:not(.wp-block-separator) {
margin: 28px auto;
border-top: 0;
border-bottom-width: 1px;
}


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

Element - Add Rating Element

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

/*--------------------------------------------------------------
General
--------------------------------------------------------------*/

.gp-element-add-rating.gp-loading {
opacity: 0.5;
}

/*--------------------------------------------------------------
Icons
--------------------------------------------------------------*/

.gp-element-add-rating.gp-unrated .rating-symbol {
cursor: pointer;
}

/*--------------------------------------------------------------
Button
--------------------------------------------------------------*/

.gp-submit-rating-button {
margin-top: 10px;
cursor: pointer;
}

/*--------------------------------------------------------------
Messages
--------------------------------------------------------------*/

.gp-submit-rating-button + .gp-min-rating-error-message {
margin-top: 20px;
}


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

Element - Advanced Tabs

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

.gp-element-advanced-tabs {
display: flex;
}
.gp-element-advanced-tabs.gp-format-column {
flex-direction: column;
}
.gp-tabs-menu {
display: flex;
flex-direction: row;
flex-flow: wrap;
flex: 1 0 auto;
}
.gp-format-row .gp-tabs-menu {
flex-direction: column;
}
.gp-tab-label {
display: block;
cursor: pointer;
margin-right: 20px;
}
.gp-tab-label:hover,
.gp-tab-label.gp-active {
color: #005daf;
}
.gp-icon-align-right .gp-tab-label .gp-element-icon {
margin-left: 8px;
}
.gp-icon-align-left .gp-tab-label .gp-element-icon {
margin-right: 8px;
}
.gp-tab-content {
margin-top: 10px;
}
.gp-tab-content.gp-active {
display: block;
}


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

Element - Advertisement

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

.gp-element-advertisement {
line-height: 0;
}
.gp-element-advertisement a,
.gp-element-advertisement img {
display: inline-block;
line-height: 0;
}

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

Element - Attributes Filters

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

.gp-element-attribute-filters.gp-format-row {
display: flex;
flex-wrap: wrap;
}
.gp-attribute-filters-ul {
display: flex;
width: 100%;
flex-wrap: wrap;
margin: 0;
}
.gp-format-column  .gp-attribute-filters-ul {
flex-direction: column;
}
.gp-format-row .gp-attribute-filters-ul {
flex-direction: row;
}
.gp-attribute-filter-li {
list-style-type: none;
}
.gp-format-column .gp-attribute-filter-li {
padding-bottom: 10px;
}
.gp-format-row .gp-attribute-filter-li {
padding: 10px;
}
.gp-attribute-header {
display: flex;
align-items: center;
justify-content: space-between;
font-weight: 700;
}
.gp-attribute-header.gp-clear-terms-attribute-click-filter {
cursor: pointer;
}
.gp-attribute-label .gp-element-icon {
margin-right: 8px;
}
.gp-toggle-terms .gp-attribute-terms {
display: none;
}
.gp-attribute-terms-ul {
list-style-type: none;
margin: 0;
}
.gp-attribute-term-li {
display: flex;
list-style-type: none;
cursor: pointer;
}
.gp-attribute-term-li.gp-active,
.gp-attribute-term-li:hover {
color: #005daf;
}
.gp-attribute-term-li:after {
cursor: pointer;
}
.gp-attribute-terms select {
margin-bottom: 10px;
}
.gp-toggle-icon {
cursor: pointer;
}
.gp-clear-filters {
display: none;
list-style-type: none;
cursor: pointer;
margin: 10px 0;
}
.gp-format-row .gp-clear-filters {
margin: 0 0 10px 10px;
}
.gp-format-column .gp-clear-filters {
margin: 10px 0;
}


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

Element - Author Box

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

.gp-element-author-box {
display: flex;
}
.gp-author-box-layout-left {
flex-direction: row;
}
.gp-author-box-layout-above {
flex-direction: column;
}
.gp-author-box-layout-right {
flex-direction: row-reverse;
}
.gp-author-box-v-align-middle {
align-items: center;
}
.gp-author-box-avatar {
display: inline-block;
flex-shrink: 0;
line-height: 0;
}
.gp-author-box-layout-left .gp-author-box-avatar {
margin-right: 20px;
}
.gp-author-box-layout-above .gp-author-box-avatar {
margin-bottom: 20px;
}
.gp-author-box-layout-right .gp-author-box-avatar {
margin-left: 20px;
}
.gp-author-box-avatar img.avatar {
width: 100px;
height: auto;
border-radius: 50%;	
}
.gp-author-box-fields {
display: inline-block;
width: 100%;
}


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

Element - Back To Top

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

.gp-element-back-to-top {
display: none;
position: fixed;
z-index: 99;
text-align: center;
cursor: pointer;
background: #000;
width: 48px;
height: 48px;
line-height: 48px;
border-radius: 50%;
right: 20px;
bottom: 20px;
}
.gp-element-back-to-top i {
line-height: 1;
letter-spacing: 0;
color: #fff;
font-size: 18px;
}
.gp-element-back-to-top svg {
fill: #fff;
width: 18px;
}


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

Element - Button

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

.gp-button {
display: inline-block;
cursor: pointer;
padding: 10px;
background: #005daf;
color: #fff;
}
.gp-button:hover {
background: #000;
color: #fff;
}
.gp-button-full-width .gp-button {
width: 100%;
}
.gp-icon-align-right .gp-button .gp-element-icon {
margin-left: 8px;
}
.gp-icon-align-left .gp-button .gp-element-icon {
margin-right: 8px;
}
.gp-follow-item {
opacity: 1;
transition: transform .3s ease, opacity .3s;
}
.gp-follow-item:not(.gp-following) .gp-element-icon:not(.gp-unfollow-icon),
.gp-follow-item.gp-following .gp-element-icon.gp-unfollow-icon {
display: inline;
}
.gp-follow-item:not(.gp-following) .gp-element-icon.gp-unfollow-icon,
.gp-follow-item.gp-following .gp-element-icon:not(.gp-unfollow-icon) {
display: none;
}
.gp-follow-item.gp-loading {
opacity: 0.5;
}

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

Element - Carousel

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

.gp-element-carousel {
opacity: 0;
}
.gp-carousel-item {
width: 200px;
display: flex;
align-items: flex-start;
margin: 0 20px;
}
.gp-carousel-item img {
display: block;
width: 200px;
max-height: 100%;
}
.flickity-enabled {
position: relative;
}
.flickity-enabled:focus { 
outline: none; 
}
.flickity-viewport {
overflow: hidden;
position: relative;
height: 100%;
}
.flickity-slider {
position: absolute;
width: 100%;
height: 100%;
}
.flickity-enabled.is-draggable {
-webkit-tap-highlight-color: transparent;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
.flickity-enabled.is-draggable .flickity-viewport {
cursor: move;
cursor: -webkit-grab;
cursor: grab;
}
.flickity-enabled.is-draggable .flickity-viewport.is-pointer-down {
cursor: -webkit-grabbing;
cursor: grabbing;
}

/*--------------------------------------------------------------
Carousel - Prev/Next Buttons
--------------------------------------------------------------*/

.gp-theme button.flickity-button {
width: 40px;
height: 40px;
background: rgba(0,0,0,0.5);
border: none;
color: #fff;
padding: 0;
}
.gp-prev-next-position-relative .flickity-button {
position: relative;
}
.gp-prev-next-position-absolute .flickity-button {
position: absolute;
top: 50%;
transform: translateY(-50%);
}
.gp-theme button.flickity-button:hover {
background: rgba(0,0,0,0.8);
cursor: pointer;
}
.gp-theme button.flickity-button:active {
opacity: 0.6;
}
.gp-theme button.flickity-button:disabled {
opacity: 0.3;
cursor: auto;
pointer-events: none;
}
.flickity-button-icon {
fill: currentColor;
}
.flickity-prev-next-button.previous { 
left: 10px; 
}
.flickity-prev-next-button.next { 
right: 10px; 
}
.flickity-rtl .flickity-prev-next-button.previous {
left: auto;
right: 10px;
}
.flickity-rtl .flickity-prev-next-button.next {
right: auto;
left: 10px;
}
.flickity-prev-next-button .flickity-button-icon {
width: 20px;
height: 100%;
text-align: center;
}

/*--------------------------------------------------------------
Carousel - Page Buttons
--------------------------------------------------------------*/

.flickity-page-dots {
display: flex;
width: 100%;
padding: 0;
margin: 0;
list-style: none;
text-align: center;
line-height: 1;
}
.gp-buttons-position-relative .flickity-page-dots {
position: relative;
margin-top: 10px;
}
.gp-buttons-position-absolute .flickity-page-dots {
position: absolute;
top: 10px;
left: auto;
}
.flickity-rtl .flickity-page-dots { 
direction: rtl; 
}
.flickity-page-dots .dot {
display: inline-block;
width: 14px;
height: 14px;
margin: 0 2px;
background: rgba(0,0,0,0.25);
border-radius: 50%;
cursor: pointer;
line-height: 14px;
transition: all .2s;
}
.gp-stretch-buttons .flickity-page-dots .dot {
width: 100%;
border-radius: 0;
}
.flickity-page-dots .dot:hover,
.flickity-page-dots .dot.is-selected {
background: rgba(0,0,0,0.8);
}


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

Element - Comments

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

/*--------------------------------------------------------------
Comments - Comments list
--------------------------------------------------------------*/

.gp-comment-list-outer {
position: relative;
}
.gp-loading .gp-comment-list-inner {
opacity: 0.5;
}

/*--------------------------------------------------------------
Comments - Comment title
--------------------------------------------------------------*/

.gp-comments-title,
.gp-reply-title {
margin-top: 0;
}
.gp-comments-title {
margin-bottom: 20px;
}

/*--------------------------------------------------------------
Comments - Comment filters
--------------------------------------------------------------*/

.gp-comment-dropdown {
max-width: 46%;
margin: 0 10px 20px 0;
}
.gp-comments-count-title {
margin-bottom: 20px;
}

/*--------------------------------------------------------------
Comments - Comment list
--------------------------------------------------------------*/

#comments {
position: relative;
}
.gp-comment-list {
margin: 0;
list-style: none;
}	
.gp-comment-li {
margin: 0;
list-style: none;
}
.gp-comment-list .children {
margin-left: 20px;
list-style: none;
}
.gp-comment-body {
display: flex;
margin-bottom: 30px;
padding: 20px;
border-radius: 5px;
word-break: normal;
overflow-wrap: anywhere;
}
.gp-comment-body > p:last-child {
margin-bottom: 0;
}
.gp-comment-avatar {
flex-shrink: 0;
}
.gp-comment-avatar .avatar {
width: 48px;
height: auto;
margin-right: 20px;
border-radius: 50%;
}
.gp-comment-content {
flex: 1 1 auto;
}
.gp-comment-meta {
line-height: 1;
}
.gp-comment-author {
display: block;
margin-bottom: 5px;
}
.gp-comment-author .gp-verified-icon,
.gp-comment-author .gp-verified-image {
margin-left: 5px;
}
.gp-comment-date-time {
display: block;
margin-bottom: 10px;
font-size: 12px;
line-height: 12px;
}
.gp-comment-text {
font-size: 14px;
line-height: 24px;
}
.gp-comment-review-title {	
margin-bottom: 10px;
font-weight: 500;
}
.gp-comment-good-bad-points {
display: flex;
flex-direction: column;
}
.gp-comment-good-bad-points ul {
margin: 0;
}
.gp-comment-good-bad-points li {
display: flex;
list-style-type: none;
}
.gp-comment-good-bad-points .gp-element-icon {
margin-right: 8px;
}
.gp-comment-reply-link {
display: block;
margin-top: 10px;
line-height: 0;
}
.gp-comment-reply-link a {
display: inline-block;
font-size: 12px;
line-height: 12px;
}
#respond + .gp-comment-reply-link {
display: none;
}

/*--------------------------------------------------------------
Comments - Pagination
--------------------------------------------------------------*/

.gp-comment-list-outer .gp-pagination {
text-align: center;
margin: 0;
}
.gp-comment-list-outer .gp-pagination li {
padding: 0 5px;
}
.gp-comment-list-outer .gp-pagination ul.page-numbers .page-numbers.prev:before,
.gp-comment-list-outer .gp-pagination ul.page-numbers .page-numbers.next:before {
content: none;
}

/*--------------------------------------------------------------
Comments - Comment form
--------------------------------------------------------------*/

#respond {
position: relative;
}
#respond label {
display: block;  
margin-bottom: 5px;
line-height: 1;
}
#commentform p {    
display: inline-block;
width: 100%;
line-height: 1;
}
.gp-comment-field {
margin-bottom: 20px;
}
#commentform .gp-comment-form-good-bad-points {    
display: flex;
flex-direction: column;
}
#commentform .form-submit {
margin: 0;
}
#commentform p.logged-in-as,
#commentform p.comment-notes,
#commentform p.comment-form-cookies-consent label {
font-size: 90%;
line-height: 1.4em;
letter-spacing: inherit;
text-transform: inherit;
font-weight: inherit;
font-style: inherit;
}
#commentform p.comment-form-cookies-consent label {
display: inline;
}
.gp-standard-reply #commentform .gp-comment-form-review-title,
.gp-standard-reply #commentform .gp-form-rating,
.gp-standard-reply #commentform .gp-comment-form-good-bad-points {    
display: none;
}
.gp-reply-title {
margin: 0 0 10px 0;
}
.gp-cancel-reply {
display: block;
margin: 0;
}
#cancel-comment-reply-link {
font-size: small;
line-height: 1;
font-weight: normal;
}
.gp-comment-success-message {
margin-top: 20px;
}
.gp-comment-error-message {
margin-top: 20px;
}
.gp-character-limit-message {
display: block;
margin-top: 10px;
}

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

Element - Featured Item

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

/*--------------------------------------------------------------
General
--------------------------------------------------------------*/

.elementor-widget-ghostpool_featured_image {
line-height: 0;
}
.gp-element-featured-item {
position: relative;
line-height: 0;
}
.gp-featured-item-background.gp-featured-item-outer {
display: inline-block;
position: relative;
max-width: 100%;
overflow: hidden;
}
.gp-featured-item-outer.gp-video-item {
width: 100%;
}
.gp-featured-item-outer:not(.gp-video-item) .gp-featured-item-inner {
position: absolute;
z-index: 1;
top: 0;
left: 0;
width: 100%;
height: 100%;
max-width: 100%;
background-size: cover;
background-repeat: no-repeat;
}
.gp-placeholder-image + .elementor-background-overlay {
display: none;
}
.gp-items-grid .gp-featured-item-inner {
width: 100% !important;
}

/*--------------------------------------------------------------
Image
--------------------------------------------------------------*/

.gp-image-link {
position: absolute;
z-index: 2;
top: 0; 
left: 0;
width: 100%;
height: 100%;
cursor: pointer;
}
.gp-featured-image-caption-text {
display: block;
width: 100%;    
margin-top: 0.5em;
}

/*--------------------------------------------------------------
Audio
--------------------------------------------------------------*/

.gp-audio-item {
display: block;
position: absolute;
bottom: 0;
left: 0;
width: 100%;
}
.gp-featured-item-outer + .gp-audio-item {
position: relative;
z-index: 3;
}
.gp-theme .mejs-button > button,
.gp-theme .mejs-button > button:hover,
.gp-theme .mejs-button > button:focus {
background-color: transparent;
border-radius: 0;
padding: 0;
}

/*--------------------------------------------------------------
Tiled gallery
--------------------------------------------------------------*/

.gp-post-format-gallery-content p,
.gp-post-format-gallery-content .wp-caption-text {
display: none;
}
.gp-post-format-gallery-content .gallery-item {
margin: 0 !important;
}

/*--------------------------------------------------------------
Gallery slider
--------------------------------------------------------------*/

.gp-gallery-slider-item {
display: block;
}


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

Form

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

/* Fields  ************************************/

.gp-element-form {
position: relative;
}
.gp-element-form.gp-loading {
opacity: 0.5;
}
.gp-element-form p {
margin: 0;
}
.gp-field:not(.gp-field-hide) {
margin-bottom: 20px;
}
.gp-field:last-child {
margin: 0 !important;
}
.gp-field-hide {
margin: 0;
}
.gp-element-form .gp-label {
display: block;
margin-bottom: 10px;
font-size: 16px;
line-height: 22px;
font-weight: 500;
}
.gp-field-desc {
font-size: small;
}
.gp-field > .gp-field-desc, 
.gp-post-format-field > .gp-field-desc {
margin-top: 5px;
}

/* Text field */
.gp-element-form .gp-text-field {
width: 100%;
} 

/* Checkbox field */
.gp-element-form .gp-checkbox-field {
display: flex;
align-items: center;
}

/* Radio field */
.gp-element-form input[type="radio"] {
margin-bottom: 3px;
}

/* Uploads field */
.gp-upload-button {
cursor: pointer;
}
.gp-uploads .gp-upload-preview {
margin-bottom: 10px;
}
.gp-gallery-field .gp-uploads .gp-upload-preview {
margin-right: 10px;
}

/* Post formats field */
.gp-post-format-field {
display: none;
margin-top: 10px;
}
.gp-post-format-field.gp-show {
display: block;
}

/* Privacy policy field */
.gp-element-form .gp-privacy-policy,
.gp-element-form .gp-rememberme {
display: block;
float: left;
width: 100%;
line-height: 1;
} 
.gp-element-form .gp-privacy-policy-label {
display: inline-block;
width: 100%;
}

/* Submit button */
.gp-element-form .gp-submit-button-wrapper {
margin-bottom: 0;
}
.gp-element-form .gp-submit-button {
width: auto;
cursor: pointer;
}
.gp-button-full-width.gp-element-form .gp-submit-button {
width: 100%;
}
.gp-element-form  .gp-submit-button .gp-icon-align-right {
margin-left: 8px;
}
.gp-element-form  .gp-submit-button .gp-icon-align-left {
margin-right: 8px;
}

/* Success/error messages ************************************/

.gp-form-success-message {	
margin-bottom: 30px;	
}	
.gp-form-success-message.gp-show-message {	
display: block;	
}	
.gp-form-error-message {	
margin-top: 10px;
padding: 10px 20px;
}
.gp-error .gp-form-error-message {
display: block;
}

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

Element - Affiliates

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

.gp-affiliates-header {
display: flex;
padding: 10px;
text-align: center;
align-items: center;
}
.gp-affiliates-field-row {
display: flex;   
padding: 10px; 
text-align: center;
align-items: center;
justify-content: space-between;
}
.gp-affiliates-title {
font-weight: 600;
}
.gp-affiliates-image-field {
line-height: 0 !important;
}


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

Element - Image Gallery

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

.gp-element-image-gallery {
display: flex;
flex-wrap: wrap;
align-items: center;
overflow: hidden;
}
.gp-gallery-item {
float: left;
padding: 0 5px 15px 5px;
text-align: center;
}
.gp-gallery-item a {
display: block;
line-height: 0;
}
.gp-gallery-item img {
line-height: 0;
}
    
/*--------------------------------------------------------------------------------------

Element - Items

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

/*--------------------------------------------------------------
General
--------------------------------------------------------------*/

/* Needed for Elementor optimized DOM output experimental feature */
.gp-items-grid .gp-item .elementor,
.gp-items-grid .gp-item .elementor > .elementor-element,
.gp-items-grid .gp-item .elementor > .elementor-inner,
.gp-items-grid .gp-item .elementor > .elementor-element > .elementor-container, 
.gp-items-grid .gp-item .elementor > .elementor-element > .elementor-container > .elementor-column,
.gp-items-grid .gp-item .elementor > .elementor-element > .elementor-container > .elementor-column > .elementor-widget-wrap {
height: 100%;
}
.gp-no-items-found-message { 
width: 100%;
}

/*--------------------------------------------------------------
List
--------------------------------------------------------------*/

.gp-items-list .gp-item:last-child {
margin-bottom: 0;
}

/*--------------------------------------------------------------
Masonry
--------------------------------------------------------------*/

.gp-items-masonry {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}
.gp-item-gutter-size {
position: absolute;
}

/*--------------------------------------------------------------
Grid
--------------------------------------------------------------*/

.gp-items-grid {
display: -ms-grid;
display: grid;
}

/*--------------------------------------------------------------
Columns
--------------------------------------------------------------*/

.gp-sticky-column-inner {
width: 100%;
}
.gp-items-columns .gp-item {
display: inline-block;
vertical-align: top;
}

/*REMOVE.gp-items-columns .gp-item {
width: calc((100% - ((3 - 1) * 2%)) / 3);
margin-left: 2%;
}
.gp-items-columns .gp-item:nth-of-type(3n+1) {
margin-left: 2%;
}
.gp-items-columns .gp-item:nth-of-type(3n+1) {
margin-left: 0; 
clear: left !important;
}
.gp-items-columns .gp-item:nth-last-child(-n+3) { 
margin-bottom: 30px; 
}
.gp-items-columns .gp-item { 
margin-bottom: 30px; 
}
.gp-items-columns .gp-item:nth-last-child(-n+3) { 
margin-bottom: 0; 
}*/
			
			
/*--------------------------------------------------------------
No item template styling
--------------------------------------------------------------*/

.gp-basic-post-item {
width: 100%;
}
.gp-items-list .gp-basic-post-item {
display: flex;
}
.gp-basic-image-link {
display: block;
width: 100%;
margin-bottom: 10px;
line-height: 0;
}
.gp-items-list .gp-basic-image-link {
display: block;
width: auto;
margin-right: 15px;
flex: 0 0 auto;
line-height: 0;
}
.gp-basic-image-link img {
width: 100%;
}
.gp-items-list .gp-basic-image-link img {
width: auto;
}
.gp-basic-post-item .gp-basic-post-item-text h2 {
margin: 0 0 5px 0;
font-size: 18px;
line-height: 24px;
}
.gp-basic-post-item-excerpt {
margin-bottom: 10px;
hyphens: auto;
word-break: normal;
overflow-wrap: anywhere;
}
.gp-basic-post-item-metas {
display: flex;
position: relative;
font-size: 15px;
line-height: 21px;
}
.gp-basic-post-item-meta { 
margin-right: 10px;
}

/*--------------------------------------------------------------
Items loader
--------------------------------------------------------------*/

.gp-element-items-wrapper.gp-loading .gp-element-items {
opacity: 0.5;
}


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

Element - Good/Bad Points

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

.gp-element-good-bad-points ul {
margin: 0;
}
.gp-element-good-bad-points li {
display: flex;
list-style-type: none;
}
.gp-element-good-bad-points li:last-child {
margin: 0 !important;
}
.gp-element-good-bad-points .gp-element-icon {
margin-right: 8px;
}


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

Element - Heading

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

/*--------------------------------------------------------------
General
--------------------------------------------------------------*/

.gp-element-heading {
position: relative;
margin: 0;
line-height: 1;
}
.gp-element-heading.gp-has-heading-filters {
display: flex;
}
.gp-heading-secondary-background {
position: absolute;
z-index: 1;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: #000;
}
.gp-style-bottom-left-slanted .gp-heading-secondary-background,
.gp-style-bottom-right-slanted .gp-heading-secondary-background {
top: auto;
bottom: 0;
}
.gp-element-heading.gp-icon-align-right .gp-element-icon {
margin-left: 8px;
}
.gp-element-heading.gp-icon-align-left .gp-element-icon {
margin-right: 8px;
}
.gp-element-heading.gp-text-align-left {
text-align: start; 
justify-content: flex-start;
}
.gp-element-heading.gp-text-align-right {
text-align: end; 
justify-content: flex-end;
}
.gp-element-heading.gp-text-align-center {
text-align: center; 
justify-content: center;
}

/*--------------------------------------------------------------
Formats
--------------------------------------------------------------*/

/* General ************************************/

.gp-heading {
position: relative;
z-index: 2;    
margin: 0;
}
.gp-inline-header .gp-heading {
display: inline-block; 
}
.gp-stretch-header .gp-heading {
display: block;
}

/* Standard Background ************************************/

.gp-style-standard-background .gp-heading {
padding: 20px;
background-color: #000;
color: #fff;
}

/* Horizontal Line Through ************************************/

.gp-style-horizontal-line-through {
display: flex; 
}
.gp-style-horizontal-line-through .gp-heading,
.gp-style-horizontal-line-through.gp-heading {
display: flex; 
flex-direction: row;
width: 100%;
}
.gp-style-horizontal-line-through .gp-heading:after,
.gp-style-horizontal-line-through .gp-heading:before,
.gp-style-horizontal-line-through.gp-heading:after,
.gp-style-horizontal-line-through.gp-heading:before {
content: ''; 
flex: 1 1;
margin: auto;	
border-style: solid;
border-width: 2px 0 0 0;
}
.gp-style-horizontal-line-through .gp-heading:before,
.gp-style-horizontal-line-through.gp-heading:before {
margin-right: 10px; 
}
.gp-style-horizontal-line-through .gp-heading:after,
.gp-style-horizontal-line-through.gp-heading:after {
margin-left: 10px; 
}
.gp-style-horizontal-line-through.gp-text-align-left .gp-heading:before {
content: none;
}
.gp-style-horizontal-line-through.gp-text-align-left .gp-heading:after {
content: '';
}
.gp-style-horizontal-line-through.gp-text-align-right .gp-heading:after {
content: none;
}
.gp-style-horizontal-line-through.gp-text-align-right .gp-heading:before {
content: '';
}
.gp-style-horizontal-line-through.gp-text-align-center .gp-heading:before,
.gp-style-horizontal-line-through.gp-text-align-center .gp-heading:after {
content: '';
}

/* General Slanted ************************************/

.gp-style-double-slanted .gp-heading,
.gp-style-double-slanted.gp-heading,
.gp-style-top-left-slanted .gp-heading,
.gp-style-top-left-slanted.gp-heading,
.gp-style-top-right-slanted .gp-heading,
.gp-style-top-right-slanted.gp-heading,
.gp-style-bottom-left-slanted .gp-heading,
.gp-style-bottom-left-slanted.gp-heading,
.gp-style-bottom-right-slanted .gp-heading,
.gp-style-bottom-right-slanted.gp-heading,
.gp-style-double-slanted .gp-heading:before,
.gp-style-double-slanted.gp-heading:before,
.gp-style-top-left-slanted .gp-heading:before,
.gp-style-top-left-slanted.gp-heading:before,
.gp-style-top-right-slanted .gp-heading:before,
.gp-style-top-right-slanted.gp-heading:before,
.gp-style-bottom-left-slanted .gp-heading:before,
.gp-style-bottom-left-slanted.gp-heading:before,
.gp-style-bottom-right-slanted .gp-heading:before,
.gp-style-bottom-right-slanted.gp-heading:before {
background-color: #000;
color: #fff;
}

/* Double Slanted ************************************/

.gp-style-double-slanted .gp-heading,
.gp-style-double-slanted.gp-heading {
position: relative;
padding: 10px 50px 10px 10px;
background: none !important;
}
.gp-style-double-slanted .gp-heading:before,
.gp-style-double-slanted.gp-heading:before {
content: '';
z-index: -1;
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
-webkit-transform-origin: 100% 0;
-ms-transform-origin: 100% 0;
transform-origin: 100% 0;
-webkit-transform: skew(-45deg);
-ms-transform: skew(-45deg);
transform: skew(-45deg);
}
body.rtl .gp-style-double-slanted .gp-heading:before,
body.rtl .gp-style-double-slanted.gp-heading:before {
-webkit-transform: skew(45deg);
-ms-transform: skew(45deg);
transform: skew(45deg);
}

/* Top Left Slanted ************************************/

.gp-style-top-left-slanted .gp-heading,
.gp-style-top-left-slanted.gp-heading {
position: relative;
margin-left: 44px;
padding: 10px;
}
body:not(.rtl) .gp-style-top-left-slanted .gp-heading:before,
body.rtl .gp-style-top-right-slanted .gp-heading:before,
body:not(.rtl) .gp-style-top-left-slanted.gp-heading:before,
body.rtl .gp-style-top-right-slanted.gp-heading:before {
content: '';
z-index: -1;
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
-webkit-transform-origin: bottom left;
-ms-transform-origin: bottom left;
transform-origin: bottom left;
-webkit-transform: skew(45deg, 0deg);
-ms-transform: skew(45deg, 0deg);
transform: skew(45deg, 0deg);
}

/* Bottom Left Slanted ************************************/

.gp-style-bottom-left-slanted .gp-heading,
.gp-style-bottom-left-slanted.gp-heading {
position: relative;
margin-left: 44px;
padding: 10px;
font-size: 20px;
line-height: 30px;
}
body:not(.rtl) .gp-style-bottom-left-slanted .gp-heading:before,
body.rtl .gp-style-bottom-right-slanted .gp-heading:before,
body:not(.rtl) .gp-style-bottom-left-slanted.gp-heading:before,
body.rtl .gp-style-bottom-right-slanted.gp-heading:before {
content: '';
z-index: -1;
position: absolute;
top: 0;
left: -50px;
width: 100%;
height: 100%;
-webkit-transform-origin: bottom left;
-ms-transform-origin: bottom left;
transform-origin: bottom left;
-webkit-transform: skew(-45deg);
-ms-transform: skew(-45deg);
transform: skew(-45deg);
}

/* Top Right Slanted ************************************/

.gp-style-top-right-slanted .gp-heading,
.gp-style-top-right-slanted.gp-heading {
position: relative;    
margin-right: 44px; 
padding: 10px;
}
body:not(.rtl) .gp-style-top-right-slanted .gp-heading:before,
body.rtl .gp-style-top-left-slanted .gp-heading:before,
body:not(.rtl) .gp-style-top-right-slanted.gp-heading:before,
body.rtl .gp-style-top-left-slanted.gp-heading:before {
content: '';
z-index: -1;
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
-webkit-transform-origin: bottom left;
-ms-transform-origin: bottom left;
transform-origin: bottom left;
-webkit-transform: skew(-45deg, 0deg);
-ms-transform: skew(-45deg, 0deg);
transform: skew(-45deg, 0deg);
}

/* Bottom Right Slanted ************************************/

.gp-style-bottom-right-slanted .gp-heading,
.gp-style-bottom-right-slanted.gp-heading {
position: relative;    
margin-right: 44px; 
padding: 10px;
font-size: 20px;
line-height: 30px;
}
body:not(.rtl) .gp-style-bottom-right-slanted .gp-heading:before,
body.rtl .gp-style-bottom-left-slanted .gp-heading:before,
body:not(.rtl) .gp-style-bottom-right-slanted.gp-heading:before,
body.rtl .gp-style-bottom-left-slanted.gp-heading:before {
content: '';
z-index: -1;
position: absolute;
top: 0;
right: -50px;
width: 100%;
height: 100%;
-webkit-transform-origin: bottom left;
-ms-transform-origin: bottom left;
transform-origin: bottom left;
-webkit-transform: skew(45deg);
-ms-transform: skew(45deg);
transform: skew(45deg);
}

/*--------------------------------------------------------------
Filters
--------------------------------------------------------------*/

/* General ************************************/

.gp-heading-filters,
.gp-filter-format-links {
display: flex;
}
.gp-filters-align-flex-start {
justify-content: flex-start;
}
.gp-filters-align-center {
justify-content: center;
}
.gp-filters-align-flex-end {
justify-content: flex-end;
}
.gp-filters-align-space-between {
justify-content: space-between;
}

/* Links ************************************/

.gp-filter-format-links a {
margin-right: 25px;
}
.gp-filter-format-links a:last-child {
margin-right: 0;
}

/* Dropdown menus ************************************/

.gp-heading-filters {
position: relative;
z-index: 3;  
height: 100%;
align-self: center;
flex: 1 1 auto;
}
.gp-filter-format-dropdown-menu {
height: 100%;
flex-shrink: 0;
}
.gp-filter-dropdown-menu-link {
display: block;
position: relative;
height: 100%;
padding: 0 10px;
cursor: pointer;
}
.gp-filter-dropdown-text {
display: inline-flex;
align-items: center;
height: 100%;
}
.gp-filter-dropdown-menu-icon {
display: inline-block;
margin-left: 10px;
}
.gp-filter-dropdown-menu-icon:after {	
content: '\e812';
font-family: 'fontello';
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;	
font-size: 0.8em;	
}
.gp-filter-dropdown-menu {
display: none;
position: absolute;
z-index: 3;
top: auto;
left: 0;
min-width: 200px;
padding: 5px 0;
background: #f8f8f8;
text-align: left;
}
.gp-filters-align-flex-end .gp-filter-format-dropdown-menu .gp-filter-dropdown-menu,
.gp-filters-align-space-between .gp-filter-format-dropdown-menu:last-child .gp-filter-dropdown-menu {
left: auto;
right: 0;
}
.gp-filter-dropdown-menu-link:hover .gp-filter-dropdown-menu {
display: block;
}
.gp-filter-dropdown-menu a.gp-filter-link {
display: block;
margin: 0;
padding: 5px 10px;
color: inherit;
}

/*--------------------------------------------------------------
Pagination
--------------------------------------------------------------*/

/* Numbers ************************************/

.gp-pagination {
margin-top: 40px;
}
.gp-pagination-numbers {
position: relative;
width: 100%;
clear: both;
}
.gp-pagination ul.page-numbers,
.gp-pagination.gp-post-page-numbers {
display: flex;
position: relative;
overflow: hidden;
width: 100%;
margin: 0;
padding: 0;
list-style: none;
}
.gp-pagination li {
display: inline-block;
}
.gp-pagination li .page-numbers,
.gp-pagination .post-page-numbers {
display: inline-block;
width: 42px;
height: 42px;
line-height: 42px;
margin-right: 5px;
text-align: center;
}
.gp-pagination li .current.page-numbers,
.gp-pagination .post-page-numbers.current {
cursor: default;
}
.gp-pagination li .page-numbers.prev:before,	
.gp-pagination li .page-numbers.next:before {
font-family: 'fontello';
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}	
.gp-pagination li .page-numbers.prev:before,	
body.rtl .gp-pagination li .page-numbers.next:before {	
content: '\e811';	
}	
.gp-pagination li .page-numbers.next:before,	
body.rtl .gp-pagination li .page-numbers.prev:before {	
content: '\e810';	
}	
.gp-pagination.gp-post-page-numbers {
margin-top: 40px;
}

/* Arrows ************************************/

.gp-pagination-arrows {
display: flex;
position: relative;
z-index: 3;
top: 0;
left: 0;
width: 100%;
clear: both;
}
.gp-pagination-arrows .page-numbers {
display: inline-block;
line-height: 1;
}
.gp-pagination-arrows .page-numbers li .page-numbers {
margin: 0;
}
.gp-pagination-arrows .page-numbers.gp-disabled {
opacity: 0.5;
}
.gp-pagination-arrows .gp-icons-default:before {	
position: relative;
font-family: 'fontello';
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
font-size: 30px;
}	
.gp-pagination-arrows .gp-prev.gp-icons-default:before {	
content: '\e811';	
}	
.gp-pagination-arrows .gp-next.gp-icons-default:before {	
content: '\e810';	
}

/* Load more button ************************************/

.gp-load-more-button {
display: inline-block;
cursor: pointer;
}
.gp-element-items[data-pagination-type="load-more-scrolling"] + .gp-pagination {
display: none;
}


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

Element - Logo

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

.gp-element-logo {
display: block;
line-height: 0;
}


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

Element - Nav Menus

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

/*--------------------------------------------------------------
Top level
--------------------------------------------------------------*/

/* Menu ************************************/

.gp-menu-container {
position: relative;
}
.gp-menu-container .menu {
display: flex;
margin: 0;
list-style: none;
font-size: 0; /* Removes the .menu-item inline-block gaps */
flex-wrap: wrap;
}
.gp-menu-container.gp-format-vertical .menu {
flex-direction: column;
width: 100%;
clear: both;
}

/* Menu Item ************************************/

.gp-menu-container.gp-format-horizontal .menu-item {
display: inline-block;
position: relative;
vertical-align: bottom;
}
.gp-menu-container.gp-format-vertical .menu-item {
display: block;
position: relative;
width: 100%;
clear: both;
}	
.gp-menu-container .menu-item.gp-standard-menu {
position: relative;
}
.gp-menu-container .menu-item.gp-hide-on-mobile {
display: none;
}
.gp-menu-container .menu > .menu-item {
white-space: nowrap;
}
.gp-menu-container .menu-item.gp-hidden {
display: none !important;
}
.gp-menu-container .sub-menu .menu-item {
position: relative;
width: 100%;
}

/* Menu Link ************************************/

.gp-menu-link {
display: flex;
font-size: 16px;
line-height: 22px;
align-items: center;
padding: 5px 10px;
margin: 0 10px;
word-break: normal;
overflow-wrap: anywhere;
}
.menu-item-has-children > .gp-menu-link {
justify-content: space-between;
}
.gp-menu-container.gp-format-vertical .gp-menu-link {
white-space: normal;
}
.gp-menu-container .sub-menu .gp-menu-link {
padding: 5px 20px;
margin: 0;
}
.gp-menu-container.gp-format-horizontal .sub-menu .gp-menu-link {
width: 100%;
}
.gp-top-level-dropdown-icon-position-left .gp-menu-link,
.gp-dropdown-menu-dropdown-icon-position-left .sub-menu .gp-menu-link {
flex-direction: row-reverse;
text-align: right;
}

/* Menu Icon ************************************/

.gp-top-level-icon-position-left .gp-menu-icon {
margin-right: 10px;
}
.gp-top-level-icon-position-right .gp-menu-icon {
margin-left: 10px;
}
.gp-top-level-icon-position-top .gp-menu-icon {
margin-bottom: 10px;
}
.gp-top-level-icon-position-bottom .gp-menu-icon {
margin-top: 10px;
}
.menu > .menu-item.gp-hide-menu-label > .gp-menu-link .gp-menu-icon {
margin: 0;
}
.gp-top-level-icon-position-top .gp-menu-icon,
.gp-top-level-icon-position-bottom .gp-menu-icon {
display: block;
text-align: center;
}

/* Dropdown Menu Icon ************************************/

.gp-top-level-dropdown-icon-position-right .menu > .menu-item > .gp-menu-link .gp-dropdown-menu-icon {
margin-left: 10px;
}
.gp-top-level-dropdown-icon-position-left .menu > .menu-item > .gp-menu-link .gp-dropdown-menu-icon {
margin-right: 10px;
}

/* Menu Username ************************************/

.gp-menu-username {
margin-left: 8px;
}

/* Divider ************************************/

.gp-menu-divider:before,
.gp-menu-divider:after {
display: block;
background-color: #eee; 
width: 100%;
height: 1px;
}
.gp-menu-divider-top:before {
content: '';
}
.gp-menu-divider-bottom:after {
content: '';
}

/*--------------------------------------------------------------
Columns
--------------------------------------------------------------*/

.menu-item.gp-columns-menu .gp-column-menu-item .sub-menu {
display: block;
position: relative;
top: auto !important;
left: auto !important;
right: auto !important;
width: auto;
}

/*--------------------------------------------------------------
Dropdown menus
--------------------------------------------------------------*/

/* General ************************************/

.gp-menu-container .sub-menu {
display: none;
margin: 0;
}
.gp-menu-container .menu-item:not(.gp-column-menu-item):not(.gp-mega-menu-ready) > .sub-menu {
padding: 10px 0;
}
.gp-menu-container .menu-item:not([data-sub-menu-width]):focus-within > .sub-menu {
display: block;
}
.gp-menu-container .menu-item[data-sub-menu-width]:focus-within > .sub-menu {
display: flex;
}
.gp-menu-container .sub-menu .menu-item {
font-size: initial;
}

/* Horizontal menu ************************************/

.gp-menu-container.gp-format-horizontal .menu-item:not(.gp-column-menu-item) > .sub-menu {	
background: #f8f8f8;	
}	
.gp-menu-container.gp-dropdown-menu-hover .menu-item:not([data-sub-menu-width]):hover > .sub-menu {
display: block;
}
.gp-menu-container.gp-dropdown-menu-hover .menu-item.gp-mega-menu-ready:hover > .sub-menu {
display: flex;
}
.gp-menu-container.gp-format-horizontal .sub-menu {
display: none;
position: absolute;
z-index: 99;
top: auto;
left: auto;
overflow: visible;
width: 250px;
margin: 0;
white-space: normal;
list-style: none;
text-align: left;
}
.gp-menu-container.gp-format-horizontal .gp-columns-menu .sub-menu {
width: 100%;
}
.gp-menu-container.gp-format-horizontal .menu-item:not(.gp-columns-menu):not([data-sub-menu-width]) .sub-menu .menu-item {
display: flex;
flex-wrap: wrap;
clear: both;
justify-content: space-between;
}
.gp-menu-container.gp-format-horizontal .sub-menu .menu-item:last-child {
margin-bottom: 0 !important;
border-bottom-width: 0 !important;
}
.gp-menu-container.gp-format-horizontal.gp-dropdown-menu-position-left .sub-menu {
right: 0;
}
.gp-menu-container.gp-format-horizontal.gp-dropdown-menu-position-right .sub-menu {
left: 0;
}
.gp-menu-container.gp-format-horizontal.gp-dropdown-menu-position-right .sub-menu .menu-item .sub-menu {
left: 100%;
right: auto;
}
.gp-menu-container.gp-format-horizontal.gp-dropdown-menu-position-left .sub-menu .menu-item .sub-menu {
left: -100%;
right: auto;
}

/* Dropdown menu icon ************************************/

.gp-dropdown-menu-icon {
cursor: pointer;
}
.menu-item:not(.menu-item-has-children) > .gp-dropdown-menu-icon {
display: none;
}
.gp-dropdown-menu-dropdown-icon-position-left .menu .sub-menu > .menu-item .gp-dropdown-menu-icon {
padding-right: 10px;
}
.gp-dropdown-menu-dropdown-icon-position-right .menu .sub-menu > .menu-item .gp-dropdown-menu-icon {
padding-left: 10px;
}
.gp-dropdown-menu-icon {
font-weight: 100;
}
.gp-dropdown-menu-icon:before {	
content: '\e812';	
font-family: 'fontello';
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
font-size: 0.8em;
}	
body:not(.rtl) .gp-menu-container.gp-format-horizontal.gp-dropdown-menu-position-right .sub-menu .menu-item-has-children .gp-dropdown-menu-icon:before,
body.rtl .gp-menu-container.gp-format-horizontal.gp-dropdown-menu-position-left .sub-menu .menu-item-has-children .gp-dropdown-menu-icon:before {	
content: '\e810';	
}
body:not(.rtl) .gp-menu-container.gp-format-horizontal.gp-dropdown-menu-position-left .sub-menu .menu-item-has-children .gp-dropdown-menu-icon:before,
body.rtl .gp-menu-container.gp-format-horizontal.gp-dropdown-menu-position-right .sub-menu .menu-item-has-children .gp-dropdown-menu-icon:before {	
content: '\e811';	
}	
.gp-menu-container.gp-format-vertical .gp-selected > .gp-menu-link .gp-dropdown-menu-icon:before {	
content: '\e80f';	
}

/* Notification counter ************************************/

.menu-item .gp-notification-counter {
width: 20px;
height: 20px;
font-size: 12px;
line-height: 20px;
color: #fff;
background: #000;
border-radius: 50%;
text-align: center;
}
.gp-top-level-dropdown-icon-position-right .menu > .menu-item .gp-notification-counter {
margin-left: 5px;
}
.gp-top-level-dropdown-icon-position-left .menu > .menu-item .gp-notification-counter {
margin-right: 5px;
}

/* Profile display ************************************/	

.gp-profile-menu .gp-profile-menu-inner {	
position: relative;
display: flex;	
align-items: center;	
}	
.gp-profile-menu .gp-profile-menu-inner .avatar {	
width: 30px;	
height: 30px;	
margin-right: 10px;	
border-radius: 50%;	
}	
.gp-profile-menu.gp-hide-menu-label .avatar {	
margin-right: 0;
}	
.gp-profile-menu .gp-profile-menu-inner .gp-notification-counter,	
.menu .gp-profile-menu.menu-item:hover .gp-profile-menu-inner .gp-notification-counter {	
position: absolute;
top: -5px;	
left: 15px;	
}

/* Profile link - Deprecated ************************************/	

.gp-profile-link > .gp-menu-link {	
border: 0 !important;	
background: transparent !important;	
}	
.gp-profile-link .avatar {	
width: 30px;	
height: 30px;	
border-radius: 50%;	
}	
.gp-profile-link > .gp-notification-counter,	
.menu .gp-profile-link.menu-item:hover > .gp-notification-counter {	
position: absolute;	
left: 25px;	
top: 50%;	
}


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

Element - News Ticker

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

.elementor-widget-ghostpool_trending.elementor-invisible {
visibility: visible;
}
.gp-element-news-ticker {
margin: 0;
list-style: none;
}
.gp-element-news-ticker[data-animation="slide"] {
visibility: hidden;
}
.gp-element-news-ticker[data-animation="fade"] a {
display: block;
}
.gp-element-news-ticker[data-animation="slide"] li {
display: inline-block;
}
.gp-element-news-ticker[data-animation="slide"] li:after {
margin: 0 5px;
}
.gp-element-news-ticker.gp-divider-none li:after {
content: '\00A0';
}
.gp-element-news-ticker.gp-divider-backslash li:after {
content: '\005C';
}
.gp-element-news-ticker.gp-divider-dash li:after {
content: '\2013';
}
.gp-element-news-ticker.gp-divider-middle-dot li:after {
content: '\00B7';
}
.gp-element-news-ticker.gp-divider-forward-slash li:after {
content: '\2215';
}
.gp-element-news-ticker.gp-divider-vertical-bar li:after {
content: '\007C';
}


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

Element - Number

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

.gp-element-number {
display: flex;
align-items: center;
width: 40px;
height: 40px;
}


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

Element - PMPro Levels

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

.gp-level-comparison-items .gp-level-td {
display: flex;
}
.gp-level-badge.gp-button {
cursor: auto;
}


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

Element - Post Format Icon

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

.gp-element-post-format-icon {
line-height: 1;
}
.gp-element-post-format-icon i {
font-size: 30px;
}
.gp-element-post-format-icon svg {
width: 30px;
}


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

Element - Post Meta

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

.gp-element-post-meta {
display: flex;
position: relative;
align-items: flex-start;
word-break: normal;
overflow-wrap: anywhere;
hyphens: auto;
}
.gp-element-post-meta .gp-heading {
display: inline-flex;
flex-flow: wrap;
}
.gp-element-post-meta.gp-style-none .gp-heading {
width: 100%;
}
body:not(.rtl) .gp-element-post-meta.gp-icon-align-left .gp-element-icon,
body.rtl .gp-element-post-meta.gp-icon-align-right .gp-element-icon {
margin-right: 8px;
}
body:not(.rtl) .gp-element-post-meta.gp-icon-align-right .gp-element-icon,
body.rtl .gp-element-post-meta.gp-icon-align-left .gp-element-icon {
margin-left: 8px;
}
.gp-element-post-meta .gp-post-meta:last-child {
margin: 0;
}
.gp-element-post-meta .gp-post-meta:not(:last-child):after {
margin: 0 5px;
}
.gp-element-post-meta.gp-divider-none .gp-post-meta:not(:last-child):after {
content: '\00A0';
}
.gp-element-post-meta.gp-divider-backslash .gp-post-meta:not(:last-child):after {
content: '\005C';
}
.gp-element-post-meta.gp-divider-dash .gp-post-meta:not(:last-child):after {
content: '\2013';
}
.gp-element-post-meta.gp-divider-middle-dot .gp-post-meta:not(:last-child):after {
content: '\00B7';
}
.gp-element-post-meta.gp-divider-forward-slash .gp-post-meta:not(:last-child):after {
content: '\2215';
}
.gp-element-post-meta.gp-divider-vertical-bar .gp-post-meta:not(:last-child):after {
content: '\007C';
}
.gp-element-post-meta .gp-post-meta.gp-post-meta-avatar:not(:last-child):after {
content: '';
}
.gp-element-post-meta .gp-post-meta.gp-post-meta-avatar {
display: inline-block;
line-height: 0;
align-self: center;
}
.gp-element-post-meta .gp-post-meta-avatar img {
display: inline-block;
width: 48px;
height: auto;
margin-right: 20px;
border-radius: 50%;
}
.gp-element-post-meta.gp-format-column .gp-post-meta:last-child {
margin-bottom: 0 !important;
}


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

Post Navigation

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

/*--------------------------------------------------------------
Post Navigation - General
--------------------------------------------------------------*/

.gp-element-post-navigation {
display: flex;    
position: relative;
justify-content: space-between;
}
.gp-element-post-navigation.gp-has-post-titles {
flex-direction: column;
}
.gp-post-navigation-link {
display: flex;
width: 100%;
word-break: normal;
overflow-wrap: anywhere;
}
.gp-post-navigation-link[rel="prev"] {
text-align: left;
}
.gp-post-navigation-link[rel="next"] {
text-align: right;
}
.gp-post-navigation-border {
width: 100%;
height: 1px;
margin: 20px 0;
flex-shrink: 0;	
background-color: #eee;
}
.gp-post-navigation-text {
display: block;
position: relative;
flex: 1 1 auto;
align-self: center;
}

/*--------------------------------------------------------------
Post Navigation - Labels
--------------------------------------------------------------*/

.gp-post-navigation-label {
display: block;
color: #000;
font-size: 12px;
line-height: 20px;
font-weight: 700;
text-transform: uppercase;
text-decoration: none;
transition: all .2s;
}

/*--------------------------------------------------------------
Post Navigation - Post Title
--------------------------------------------------------------*/

.gp-post-navigation-post-title {
display: block;
font-size: 14px;
line-height: 22px;
text-decoration: none;
transition: all .2s;
}

/*--------------------------------------------------------------
Post Navigation - Post Image
--------------------------------------------------------------*/

.gp-post-navigation-image {
display: block;
position: relative;
flex: 0 0 auto;
align-self: center;    
line-height: 0;
border-radius: 50%;
}
.gp-post-navigation-image .gp-image {
width: 75px;
height: 75px;
border-radius: 50%;
}
.gp-post-navigation-link[rel="prev"] .gp-post-navigation-image {
margin-right: 20px;
}
.gp-post-navigation-link[rel="next"] .gp-post-navigation-image {
margin-left: 20px;
}

/*--------------------------------------------------------------
Post Navigation - Icons
--------------------------------------------------------------*/

.gp-post-navigation-icon {
display: block;
position: relative;
align-self: center;
font-size: 30px;
}
.gp-element-post-navigation .gp-post-navigation-icon:before {
font-family: 'fontello';
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
font-size: 30px;
line-height: 30px;
font-weight: 100;
}
.gp-element-post-navigation.gp-icons-default a[rel='prev'] .gp-post-navigation-icon:before,	
body.rtl .gp-element-post-navigation.gp-icons-default a[rel='next'] .gp-post-navigation-icon:before {	
content: '\e811';	
}	
.gp-element-post-navigation.gp-icons-default a[rel='next'] .gp-post-navigation-icon:before,	
body.rtl .gp-element-post-navigation.gp-icons-default a[rel='prev'] .gp-post-navigation-icon:before {
content: '\e810';	
}
.gp-element-post-navigation.gp-icons-arrows a[rel='prev'] .gp-post-navigation-icon:before,
body.rtl .gp-element-post-navigation.gp-icons-arrows a[rel='next'] .gp-post-navigation-icon:before {
content: '\E830';
}
.gp-element-post-navigation.gp-icons-arrows a[rel='next'] .gp-post-navigation-icon:before,
body.rtl .gp-element-post-navigation.gp-icons-arrows a[rel='prev'] .gp-post-navigation-icon:before {
content: '\E82F';
}
.gp-element-post-navigation.gp-icons-circle-arrows a[rel='prev'] .gp-post-navigation-icon:before,
body.rtl .gp-element-post-navigation.gp-icons-circle-arrows a[rel='next'] .gp-post-navigation-icon:before {
content: '\E82E';
}
.gp-element-post-navigation.gp-icons-circle-arrows a[rel='next'] .gp-post-navigation-icon:before,
body.rtl .gp-element-post-navigation.gp-icons-circle-arrows a[rel='prev'] .gp-post-navigation-icon:before {
content: '\E82D';
}
.gp-element-post-navigation.gp-icons-chevrons a[rel='prev'] .gp-post-navigation-icon:before,
body.rtl .gp-element-post-navigation.gp-icons-chevrons a[rel='next'] .gp-post-navigation-icon:before {
content: '\E811';
}
.gp-element-post-navigation.gp-icons-chevrons a[rel='next'] .gp-post-navigation-icon:before,
body.rtl .gp-element-post-navigation.gp-icons-chevrons a[rel='prev'] .gp-post-navigation-icon:before {
content: '\E810';
}
.gp-element-post-navigation.gp-icons-double-chevrons a[rel='prev'] .gp-post-navigation-icon:before,
body.rtl .gp-element-post-navigation.gp-icons-double-chevrons a[rel='next'] .gp-post-navigation-icon:before  {
content: '\E834';
}
.gp-element-post-navigation.gp-icons-double-chevrons a[rel='next'] .gp-post-navigation-icon:before,
body.rtl .gp-element-post-navigation.gp-icons-double-chevrons a[rel='prev'] .gp-post-navigation-icon:before {
content: '\E833';
}
.gp-element-post-navigation.gp-icons-circle-chevrons a[rel='prev'] .gp-post-navigation-icon:before,
body.rtl .gp-element-post-navigation.gp-icons-circle-chevrons a[rel='next'] .gp-post-navigation-icon:before {
content: '\E832';
}
.gp-element-post-navigation.gp-icons-circle-chevrons a[rel='next'] .gp-post-navigation-icon:before,
body.rtl .gp-element-post-navigation.gp-icons-circle-chevrons a[rel='prev'] .gp-post-navigation-icon:before {
content: '\E831';
}
a[rel="prev"] .gp-post-navigation-icon {
margin-right: 20px;
}
a[rel="next"] .gp-post-navigation-icon {
margin-left: 20px;
}


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

Post Title/Archive Title

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

.gp-post-title,
.gp-subtitle,
.gp-archive-title {
margin: 0;
}
.gp-post-title:before,
.gp-post-title:after {
display: inline-block;
vertical-align: middle;
margin-top: -4px;
padding: 4px 5px;
background: #000;
color: #fff;
font-size: 12px;
line-height: 1;
font-weight: 500;
border-radius: 3px;
}
.gp-post-title:before {
margin-right: 5px;
}
.gp-post-title:after {
margin-left: 5px;
}
.gp-has-subtitle .gp-post-title,
.gp-has-desc .gp-archive-title {
margin-bottom: 10px;
}
.gp-archive-description p:last-child {
margin-bottom: 0;
}
.gp-title-divider-outer {
display: flex;
}
.gp-title-divider-inner {
width: 100%;
height: 1px;
margin: 15px 0;
background-color: #000;
}


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

Element - Post Content

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

.gp-element-post-content {
hyphens: auto;
word-break: normal;
overflow-wrap: anywhere;
}
.gp-element-post-content p:last-child {
margin-bottom: 0;
}
.gp-element-post-content > *[class*='wp-block'],
.elementor .elementor-widget:not(.elementor-widget-text-editor):not(.elementor-widget-theme-post-content) .gp-element-post-content figure {
margin-bottom: 28px;
}


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

Element - Post Excerpt

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

.gp-element-post-excerpt {
hyphens: auto;
word-break: normal;
overflow-wrap: anywhere;
}
.gp-element-post-excerpt p:last-child {
margin-bottom: 0;
}
.gp-element-post-excerpt .gp-read-more-link {
margin-top: 10px;
}


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

Element - Recent Comments

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

.gp-element-recent-comments ul,
.widget_recent_comments ul {
margin: 0;
list-style: none;
}
.gp-element-recent-comments ul li {
display: flex;
margin: 0;
list-style: none;
align-items: flex-start;
}
.gp-element-recent-comments li {
background-color: #f8f8f8;
padding: 15px;
border-radius: 5px;
}
.widget_recent_comments ul li {
margin: 0;
list-style: none;
}
.gp-element-recent-comments li:not(:last-child) {
margin-bottom: 15px;
}
.gp-element-recent-comments ul li:last-child, 
.widget_recent_comments ul li:last-child,
.wp-block-latest-comments__comment:last-child {
margin-bottom: 0;
}
.gp-element-recent-comments .gp-recent-comments-avatar {	
margin-right: 20px;	
flex: 0 0 auto; 	
line-height: 0;	
border-radius: 50%;	
}	
.gp-element-recent-comments .gp-recent-comments-avatar img {	
width: 48px;	
height: auto;	
border-radius: 50%;	
}	
.gp-element-recent-comments .gp-recent-comments-link {	
display: block;	
width: 100%;	
margin-bottom: 5px;	
font-size: 14px;	
line-height: 20px;	
}	
.gp-element-recent-comments .gp-recent-comments-excerpt {	
display: block;	
width: 100%;	
font-size: 14px;	
line-height: 20px;	
}	
.gp-element-recent-comments .gp-recent-comments-date {	
display: block;	
width: 100%;	
margin-top: 5px;	
color: #b1b1b1;	
font-size: 12px;	
line-height: 18px;	
}


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

Element - Search Button

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

/*--------------------------------------------------------------
Button
--------------------------------------------------------------*/

.gp-search-button-wrapper {
position: relative;
line-height: 0;
}
.gp-search-button-wrapper.gp-popup-box-align-left {
text-align: left;
}
.gp-search-button-wrapper.gp-popup-box-align-center {
text-align: center;
}
.gp-search-button-wrapper.gp-popup-box-align-right {
text-align: right;
}
.gp-search-button-wrapper.gp-popup-box-align-justify {
text-align: justify;
}
.gp-search-button {
cursor: pointer;
}

/*--------------------------------------------------------------
Popup Box
--------------------------------------------------------------*/

.gp-search-popup-box-wrapper {
display: none;
z-index: 1;
position: absolute;
top: 100%;
margin-top: 30px;
}
.gp-search-box-position-type-button.gp-popup-box-align-left.gp-search-popup-box-wrapper {
right: 0;
}
.gp-search-box-position-type-button.gp-popup-box-align-right.gp-search-popup-box-wrapper {
left: 0;
}
.gp-search-box-position-type-page.gp-popup-box-align-center.gp-search-popup-box-wrapper {
right: 0;
}
.gp-search-popup-box {
display: inline-block;
width: 100%;
padding: 15px;
background-color: #f8f8f8;
}
.gp-search-popup-box-wrapper .searchform { 
width: 100%;
}


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

Element - Search Form

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

.gp-element-search-form,
.gp-search-form {
display: flex;
}
.gp-element-search-form .gp-search-form-input,
.gp-element-search-button .gp-search-form-input {
min-width: 0;
margin: 0;
padding: 0 15px;
flex: 1 1 auto;
border: 1px solid #ddd;
font-size: 20px;
line-height: 20px;
}
.gp-element-search-form .gp-search-form-button,
.gp-element-search-button .gp-search-form-button {
border: 0;
margin: 0 0 0 10px;
padding: 15px;
font-size: 20px;
line-height: 20px;
cursor: pointer;
}
.gp-element-search-form.gp-icon-align-right .gp-element-icon {
margin-left: 8px;
}
.gp-element-search-form.gp-icon-align-left .gp-element-icon {
margin-right: 8px;
}


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

Element - Section

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

/*--------------------------------------------------------------
General
--------------------------------------------------------------*/

.elementor,
.elementor-section-wrap {
position: relative;
}
/* !important needed so parent column custom gaps do not override these values */
.elementor-column-gap-narrow > .elementor-column > .elementor-element-populated {
padding: 5px !important; 
}
.elementor-column-gap-default > .elementor-column > .elementor-element-populated {
padding: 10px !important; 
}
.elementor-column-gap-extended > .elementor-column > .elementor-element-populated {
padding: 15px !important; 
}
.elementor-column-gap-wide > .elementor-column > .elementor-element-populated {
padding: 20px !important; 
}
.elementor-column-gap-wider > .elementor-column > .elementor-element-populated {
padding: 30px !important; 
}
.elementor-column-gap-no > .elementor-column > .elementor-element-populated,
.elementor-inner-section .elementor-column-gap-no .elementor-element-populated {
padding: 0 !important; 
}

/*--------------------------------------------------------------
Featured Image Background
--------------------------------------------------------------*/

.gp-featured-section-background {
display: none;
position: absolute;
top: 0;
left: 0;
z-index: 0; /* Changed from -1, as image hidden if parent section has background color */
overflow: hidden;
width: 100%;
height: 100%;
}
.gp-featured-section-background .gp-featured-item-inner {
display: block;
width: 100%;
height: 100%;
}
.gp-image-background-color {
display: none;
position: absolute;
top: 0;
left: 0;
z-index: -2;
width: 100%;
height: 100%;
}
.gp-hover-effect-dark-overlay + .gp-featured-section-background + .gp-image-background-color {
background: #000;
}

/*--------------------------------------------------------------
Hover Effects
--------------------------------------------------------------*/

/* Blur ************************************/

.gp-hover-effect-blur + .gp-featured-item-outer .gp-image-item {
-webkit-filter: blur(0);
filter: blur(0);
-webkit-transition: .3s ease-in-out;
transition: .3s ease-in-out;
}

/* Dark Overlay ************************************/

.gp-hover-effect-dark-overlay + .gp-featured-item-outer .gp-image-item {
opacity: 1;
-webkit-transition: opacity .5s ease;
transition: opacity .5s ease;
}

/* Zoom ************************************/

.gp-hover-effect-zoom + .gp-featured-item-outer .gp-image-item {
-webkit-transition: -webkit-transform .75s ease, opacity .75s;
transition: transform .75s ease, opacity .75s;
}
.gp-hover-effect-zoom:hover + .gp-featured-item-outer .gp-image-item {
-webkit-transform: scale3d(1.04,1.04,1);
transform: scale3d(1.04,1.04,1);
}

/* Shift Up ************************************/

.gp-hover-effect-shift-up + .gp-featured-item-outer {
transform: translate3d(0, 0, 0);
transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.gp-hover-effect-shift-up:hover + .gp-featured-item-outer {
transform: translate3d(0, -6px, 0);
}


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

Element - Share Buttons

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

/* General  ************************************/

.gp-element-share-buttons {
display: flex;
flex-wrap: wrap;
width: calc(100% + 1vh);
margin: -5px 0 -5px -5px;
}
.gp-columns-1 .gp-share-button {
width: 100%;
}
.gp-columns-2 .gp-share-button {
width: 50%;
}
.gp-columns-3 .gp-share-button {
width: 33.3%;
}
.gp-columns-4 .gp-share-button {
width: 25%;
}
.gp-columns-5 .gp-share-button {
width: 20%;
}
.gp-columns-6 .gp-share-button {
width: 16.6%;
}

/* Button  ************************************/

.gp-share-button a {
display: flex;
justify-content: center;
position: relative;
height: 36px;
margin: 5px;
padding: 0 10px;
line-height: 36px;
border-radius: 50%;
}
.gp-button-style-icon .gp-share-button a {
width: 36px;
}
.gp-button-style-text .gp-share-button a,
.gp-button-style-icon-text .gp-share-button a {
padding: 0 10px;
}
.gp-button-shift-up .gp-share-button a {
top: 0;
-webkit-transition: top .2s
}
.gp-button-shift-up .gp-share-button a:hover {
top: -3px;
}
.gp-button-shift-down .gp-share-button a {
top: 0;
-webkit-transition: top .2s
}
.gp-button-shift-down .gp-share-button a:hover {
top: 3px;
}

/* Icons  ************************************/

.gp-share-button a:before {
color: #fff;
}
.gp-element-share-buttons:not(.gp-button-style-text) .gp-share-button a:before {
font-family: 'fontello';
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
font-size: 20px;
}
.gp-element-share-buttons.gp-button-style-icon-text .gp-share-button a:before {
margin-right: 8px;
}
.gp-element-share-buttons:not(.gp-button-style-text) .gp-facebook-icon a:before {
content: '\E82B';
}
.gp-element-share-buttons:not(.gp-button-style-text) .gp-twitter-icon a:before {
content: '\E82A';
}
.gp-element-share-buttons:not(.gp-button-style-text) .gp-pinterest-icon a:before {
content: '\E829';
}
.gp-element-share-buttons:not(.gp-button-style-text) .gp-linkedin-icon a:before {
content: '\E828';
}
.gp-element-share-buttons:not(.gp-button-style-text) .gp-reddit-icon a:before {
content: '\E827';
}
.gp-element-share-buttons:not(.gp-button-style-text) .gp-tumblr-icon a:before {
content: '\E826';
}
.gp-element-share-buttons:not(.gp-button-style-text) .gp-email-icon a:before {
content: '\E825';
}
.gp-element-share-buttons:not(.gp-button-style-text) .gp-whatsapp-icon a:before {
content: '\E82C';
}

/* Text  ************************************/

.gp-share-button-text {
color: #fff;
}


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

Element - Show Comments

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

.gp-show-comments-item {
padding: 20px;
border-radius: 5px;
background: #fff;
}
.gp-show-comments-columns .gp-show-comments-item {
display: inline-block;
vertical-align: top;
}
.gp-show-comments-columns .gp-show-comments-field {
float: left;
}
.gp-show-comments-avatar {
margin-right: 20px;
border-radius: 50%;
line-height: 0;
}
.gp-show-comments-avatar img {
width: 48px;
height: auto;
border-radius: 50%;
}
.gp-show-comments-item .gp-verified-icon,
.gp-show-comments-item .gp-verified-image {
margin-left: 5px;
}
.gp-show-comments-date {
margin-top: 5px;
}
.gp-show-comments-rating {
margin-top: 10px;
}
.gp-show-comments-excerpt {
margin-top: 10px;
}
.gp-show-comments-post-title {
margin-top: 10px;
}
.gp-show-comments-post-image {
margin-top: 10px;
}


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

Element - Show Rating

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

/* General ************************************/

.gp-element-show-rating {
display: -webkit-flex;
display: flex;
flex-wrap: wrap;
justify-content: center;
}
.gp-criterion-title {
margin-bottom: 5px;
}
.gp-your-criteria-user-rating-text {
margin-top: 5px;
}
.gp-post-average-user-rating-text {
margin-right: 10px;
}
.gp-user-votes-text {
margin-right: 10px;
}
.gp-rating-word {
margin-left: 10px;
}

/*--------------------------------------------------------------
Non linear ratings
--------------------------------------------------------------*/

/* Container ************************************/

.gp-non-linear-rating-container {
display: -webkit-flex;
display: flex; 
flex-direction: column;
align-items: center;
justify-content: center;
position: relative;
margin-bottom: 15px;
}
.gp-non-linear-rating-container .gp-rating-container {
display: -webkit-flex;
display: flex;
position: relative;
align-items: center;
justify-content: center;
}
.gp-element-show-rating.gp-non-linear-rating-container:not(.gp-rating-style-gauge) .gp-rating-container {
width: 100%;
}

/* Styles ************************************/

/* Square */
.gp-rating-style-square .gp-rating-container {
width: 100px;
height: 100px;
border-radius: 0;
background: #000;
color: #fff;
}

/* Circle */
.gp-rating-style-circle .gp-rating-container {
width: 100px;
height: 100px;
border-radius: 50%;
background: #000;
color: #fff;
}

/* Gauge */
.gp-rating-style-gauge .gp-gauge-rating-container {    
position: relative;
width: 100px;
height: 100px;
border-radius: 50%;
background: #eee;
}
.gp-rating-style-gauge .gp-gauge-rating-container.gp-full-gauge-rating {
background: #FF0053;
}		
.gp-rating-style-gauge .gp-summary-rating-text-wrapper,
.gp-rating-style-gauge .gp-rating-text-wrapper {
z-index: 4;
position: absolute;
top: 10px;
right: 10px;
bottom: 10px;
left: 10px;
background: #fff;
color: #000;
border-radius: 50%;
border-style: solid;
align-items: center;
justify-content: center;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.gp-gauge-circle {
position: absolute;
left: 0;
top: 0;
right: 0;
bottom: 0;
}
.gp-small-rating .gp-gauge-1 {
clip: rect(0, 100px, 100px, 50px);
}
.gp-small-rating .gp-gauge-2 {
clip: rect(0, 50px, 100px, 0);
}
.gp-gauge-spinner {
z-index: 2;
position: absolute;
left: 0;
overflow: hidden;
width: 50%;
height: 100%;
background: #1e73be;
border-radius: 100% 0 0 100%/50% 0 0 50%;
-webkit-transform-origin: 100% 50%;
transform-origin: 100% 50%;
}
body.rtl .gp-gauge-spinner {
right: 0;
left: auto;
border-radius: 100% 0 0 100%/50% 0 0 50%;
}
.gp-small-rating .gp-gauge-spinner {
background: #FF0053; 
background:-webkit-linear-gradient(#FF0053 0%, #FF0053 70%); background:linear-gradient(#FF0053 0%, #FF0053 70%);
}
.gp-large-rating .gp-gauge-spinner {
background: #FF0053;
}										
.gp-gauge-filler {
z-index: 3;
position: absolute;
left: 50%;
overflow: hidden;
width: 50%;
height: 100%;
border-radius: 0 100% 100% 0/0 50% 50% 0;
-webkit-transform-origin: 0% 50%;
transform-origin: 0% 50%;
background: #FF0053;
background:-webkit-linear-gradient(#FF0053 0%, #FF0053 70%); 
background:linear-gradient(#FF0053 0%, #FF0053 70%);
}
body.rtl .gp-gauge-filler {
right: 50%;
left: auto;
border-radius: 100% 0 0 100%/50% 0 0 50%;
}

/* Criterion title ************************************/

.gp-non-linear-rating-container .gp-criterion-title {
align-self: center;
}
    
/* Rating text ************************************/

.gp-non-linear-rating-container .gp-rating-text-wrapper {
display: -webkit-flex; 
display: flex;
flex-direction: column;
}
.gp-non-linear-rating-container .gp-rating-text {
font-size: 30px;
align-self: center;
}
.gp-non-linear-rating-container .gp-average-rating-user-votes-text {
flex-direction: column;
}
.gp-non-linear-rating-container .gp-user-votes-text.gp-rating-text {
font-size: 14px;
}

/* Rating word ************************************/

.gp-non-linear-rating-container .gp-rating-word {
display: -webkit-flex; 
display: flex;
}

/*--------------------------------------------------------------
Linear ratings
--------------------------------------------------------------*/

/* Container ************************************/

.gp-linear-rating-container {
display: -webkit-flex; 
display: flex;
flex-wrap: wrap;
}
.gp-linear-rating-container.gp-rating-container {
margin-bottom: 15px;
}

/* Styles ************************************/

/* General */
.gp-bootstrap-wrapper {
display: -webkit-flex;
display: flex;
line-height: 0;
white-space: nowrap;
}
.rating-symbol {
padding-right: 2px;
line-height: 1;
font-size: 20px;
}
.rating-symbol *[class*="icon-"] {
display: inline-block;
}

/* Stars */
.gp-rating-style-closed-stars .rating-symbol-foreground,
.gp-rating-style-open-stars .rating-symbol-foreground,
.gp-rating-style-custom-icon .rating-symbol-foreground {
color: #ffc107;
}
.gp-rating-style-closed-stars .rating-symbol-background,
.gp-rating-style-open-stars .rating-symbol-background,
.gp-rating-style-custom-icon .rating-symbol-background {
color: #d6d6d6;
}

/* Hearts */
.gp-rating-style-hearts .rating-symbol-foreground {
color: #e60060;
}
.gp-rating-style-hearts .rating-symbol-background {
color: #ccc;
}

/* Circles */
.gp-rating-style-circles .rating-symbol-foreground {
color: #000;
}
.gp-rating-style-circles .rating-symbol-background {
color: #ccc;
}

/* Squares */
.gp-rating-style-squares .rating-symbol-foreground {
color: #000;
}
.gp-rating-style-squares .rating-symbol-background {
color: #ccc;
}

/* Bars */
.gp-rating-style-bars .gp-linear-rating-container {
display: flex;
}
.gp-rating-style-bars .gp-linear-rating-container .gp-rating-icon-text-container,
.gp-rating-style-bars .gp-linear-rating-container .gp-bootstrap-wrapper {
flex: 1 1 auto;
}  
.gp-rating-style-bars .rating-symbol {
display: inline-block;
width: 100%;
background-color: #e6e6e6;
}
.gp-rating-style-bars .rating-symbol-background {
background-color: #e6e6e6;
}
.gp-rating-style-bars .rating-symbol-foreground {
background-color: #000;
}

/* Custom image */
.gp-rating-style-custom-image .gp-rating-icon {
display: inline-block;
background-repeat: no-repeat;  
}
.gp-rating-style-custom-image .gp-rating-icon-empty {
background-position: left top;
}
.gp-rating-style-custom-image .gp-rating-icon-filled {
background-position: left bottom;
}

/* Rating text ************************************/

/* General */
.gp-rating-text-wrapper {
display: -webkit-flex;
display: flex;
}
.gp-summary-rating-text-wrapper {
flex-direction: column;
}
.gp-rating-text {
display: -webkit-flex;
display: flex;
}

/* Text position */
.gp-rating-text-position-top-bottom .gp-linear-rating-container,
.gp-rating-text-position-top .gp-linear-rating-container,
.gp-rating-text-position-bottom .gp-linear-rating-container {
flex-direction: column;
}
.gp-rating-text-position-left .gp-linear-rating-container,
.gp-rating-text-position-right .gp-linear-rating-container,
.gp-rating-text-position-left-right .gp-linear-rating-container {
align-items: center;
}
.gp-rating-icon-text-container {
display: -webkit-flex;
display: flex;
}
.gp-rating-text-position-left .gp-linear-rating-container .gp-rating-icon-text-container,
.gp-rating-text-position-right .gp-linear-rating-container.gp-rating-icon-text-container,
.gp-rating-text-position-left-right .gp-linear-rating-container .gp-rating-icon-text-container {
align-items: center;
}

/* Label */
.gp-rating-text .gp-label:after {
content: '';
margin-right: 5px;
}

/* Max rating */
.gp-actual-rating + .gp-max-rating:before {
content: '\002F';
margin: 0 2px;
}

/* User votes */
.gp-linear-rating-container .gp-user-votes-text {
margin-left: 5px;
}


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

Element - Show Rating Breakdown

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

.gp-element-show-rating-breakdown .gp-element-show-rating {
flex-direction: column;
}
.gp-breakdown-entry {
display: flex;
align-items: center;
}
.gp-breakdown-entry .elementor-element-rating_breakdown,
.gp-breakdown-entry .gp-linear-rating-container {
width: 100%;
}
.gp-breakdown-average-rating .gp-linear-rating-container.gp-rating-container {
margin-bottom: 15px;
}
.gp-breakdown-entry .gp-linear-rating-container.gp-rating-container {
margin-bottom: 0;
}
.gp-breakdown-entry .rating-symbol {
font-size: 15px;
}
.gp-breakdown-entry .gp-rating-style-bars, 
.gp-breakdown-entry > .elementor-element-rating_breakdown {
max-width: 100%;
}
.gp-breakdown-rating {
width: 30px;
margin-left: 10px;
}
.gp-breakdown-percentage {
width: 50px;
margin-left: 10px;
}


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

Element - Slide In Menu

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

/* Menu  ************************************/

html.gp-slide-in-menu-active {
overflow: hidden;
min-height: 100%;
}
.gp-slide-in-menu {
position: fixed;
z-index: 999998;
-webkit-transition: -webkit-transform 0.2s;
transition: transform 0.2s;
background-color: #fff;
}
.gp-active .gp-slide-in-menu {
-webkit-transform: translate(0,0) !important;
transform: translate(0,0) !important;
}
.gp-slide-in-menu-inner {    
height: 100%;
padding: 20px;
overflow-y: auto;
-webkit-overflow-scrolling: touch;
}
.gp-slide-in-menu-left .gp-slide-in-menu {
left: 0;
right: auto;
top: 0;
bottom: 0;
width: 80%;
height: 100%;
transform: translateX(-100%);
-webkit-transform: translateX(-100%);
}
.gp-slide-in-menu-right .gp-slide-in-menu {
right: 0;
left: auto;
top: 0;
bottom: 0;
width: 80%;
height: 100%;
transform: translateX(100%);
-webkit-transform: translateX(100%);
}
.gp-slide-in-menu-top .gp-slide-in-menu {
top: 0;
left: 0;
right: 0;
width: 100%;
height: 300px; 
-webkit-transform: translateY(-300px); 
transform: translateY(-300px);
}
.gp-slide-in-menu-bottom .gp-slide-in-menu {
bottom: 0;
left: 0;
right: 0;
width: 100%;
height: 300px; 
-webkit-transform: translateY(300px); 
transform: translateY(300px);
}

/* Background  ************************************/

.gp-slide-in-menu-bg {
display: none;
position: fixed;
top: 0; 
left: 0;
z-index: 999998;
background: rgba(0,0,0,0.8);
width: 100%;
height: 100%;
}
.gp-active .gp-slide-in-menu-bg {
display: block;
}

/* Open button  ************************************/

.gp-slide-in-menu-open-button {
display: flex;
align-items: center;
font-size: 24px;
line-height: 24px;
cursor: pointer;
}
.gp-icon-align-right.gp-slide-in-menu-open-button .gp-element-icon {
margin-left: 8px;
}
.gp-icon-align-left.gp-slide-in-menu-open-button .gp-element-icon {
margin-right: 8px;
}
.gp-open-slide-in-menu-bars {
display: inline-block;
}
.gp-icon-bars {
display: block;
width: 30px;
height: 2px;
margin: 6px 0;
background: #000;
}

/* Close button  ************************************/

.gp-slide-in-menu-close-button {
display: none;
align-items: center;
z-index: 999999;
left: 0;
right: auto; 
font-size: 24px;
line-height: 24px;
cursor: pointer;
}
.gp-slide-in-menu-close-button.gp-button-position-absolute {
position: absolute;
}
.gp-slide-in-menu-close-button.gp-button-position-fixed {
position: fixed;
}
.gp-icon-align-right.gp-slide-in-menu-close-button .gp-element-icon {
margin-left: 8px;
}
.gp-icon-align-left.gp-slide-in-menu-close-button .gp-element-icon {
margin-right: 8px;
}
.gp-slide-in-menu-close-button.gp-button-position-absolute .gp-icon-cross:before,
.gp-slide-in-menu-close-button.gp-button-position-absolute .gp-icon-cross:after {
background-color: #000;
}
.gp-slide-in-menu-close-button.gp-button-position-absolute svg {
fill: #000;
}
.gp-slide-in-menu-close-button.gp-button-position-fixed .gp-icon-cross:before,
.gp-slide-in-menu-close-button.gp-button-position-fixed .gp-icon-cross:after {
background-color: #fff;
}
.gp-slide-in-menu-close-button.gp-button-position-fixed svg {
fill: #fff;
}
.gp-active .gp-slide-in-menu-close-button {
display: inline-flex;
}
.admin-bar .gp-slide-in-menu-inner {
position: relative;
height: calc(100% - 32px);
}
.admin-bar .gp-slide-in-menu-left .gp-slide-in-menu-close-button.gp-button-position-fixed,
.admin-bar .gp-slide-in-menu-right .gp-slide-in-menu-close-button.gp-button-position-fixed,
.admin-bar .gp-slide-in-menu-top .gp-slide-in-menu-close-button.gp-button-position-fixed {
margin-top: 32px;
}
.gp-slide-in-menu-left .gp-slide-in-menu-close-button {
top: 15px;
right: 15px; 
left: auto;
}
.gp-slide-in-menu-right .gp-slide-in-menu-close-button {
top: 15px;
left: 15px;
right: auto;
}
.gp-slide-in-menu-top .gp-slide-in-menu-close-button {	
top: 15px;	
right: 15px;	
left: auto;
}	
.gp-slide-in-menu-bottom .gp-slide-in-menu-close-button {	
bottom: 15px;	
right: 15px;  	
left: auto;
}


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

Element - Slider

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

.elementor-widget-ghostpool_slider.elementor-invisible {
visibility: visible;
}
.gp-element-slider.gp-slider-no-template li {
line-height: 0;
}
.gp-element-slider.gp-slider .flex-direction-nav {
bottom: auto;
}
.gp-prev-next-position-relative.gp-element-slider.gp-slider .flex-direction-nav {
position: relative;
top: auto;
left: auto;
}
.gp-prev-next-position-absolute.gp-element-slider.gp-slider .flex-direction-nav {
position: absolute;
top: 50%;
left: auto;
}
.gp-buttons-position-relative.gp-element-slider.gp-slider .flex-control-nav {
position: relative;
top: auto;
left: auto;
}
.gp-buttons-position-absolute.gp-element-slider.gp-slider .flex-control-nav {
position: absolute;
top: 10px;
left: auto;
}
.gp-stretch-buttons.gp-element-slider.gp-slider .flex-control-nav li {
width: 100%;
flex: 1 1 auto;
}
.gp-stretch-buttons.gp-element-slider.gp-slider .flex-control-nav li a {	
width: 100%;
}


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

Element - Stats

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

.gp-element-stats {
display: flex;
flex-wrap: wrap;
width: calc(100% + 1vh);
}
.gp-stat {
display: flex;
margin-bottom: 20px;
}
.gp-element-stats.gp-icon-align-top .gp-stat,
.gp-element-stats.gp-icon-align-bottom .gp-stat {
flex-direction: column;
}
.gp-stat-label {
margin-bottom: 5px;
line-height: 1;
}
.gp-stat-number {
font-size: 30px;
line-height: 1;
}
.gp-element-stats .gp-element-icon {
display: flex;
align-items: center;
justify-content: center;
}
.gp-element-stats .gp-element-icon i {
font-size: 25px;
}
.gp-element-stats .gp-element-icon svg {
width: 25px;
}
.gp-element-stats.gp-icon-align-right .gp-element-icon {
margin-left: 15px;
}
.gp-element-stats.gp-icon-align-left .gp-element-icon {
margin-right: 15px;
}
.gp-element-stats.gp-icon-align-top .gp-element-icon {
margin-bottom: 15px;
}
.gp-element-stats.gp-icon-align-bottom .gp-element-icon {
margin-top: 15px;
}

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

Element - Taxonomies

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

.gp-element-taxonomies ul {
margin: 0;
}
.gp-element-taxonomies li {
display: flex;
list-style-type: none;
justify-content: space-between;
}
.gp-element-taxonomies.gp-new-line .gp-term-li {
margin-bottom: 10px;
}
.gp-element-taxonomies.gp-new-line .gp-term-li:last-child {
margin-bottom: 0 !important;
}
.gp-element-taxonomies.gp-same-line .gp-term-li {
display: inline-block;
}
.gp-element-taxonomies.gp-same-line .gp-term-li a {
display: block;
margin: 5px;
}
.gp-element-taxonomies.gp-same-line .gp-term-count {
margin-left: 5px;
}


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

Element - Text

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

.gp-element-text p:last-child {
margin: 0;
}


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

Element - Up/Down Voting

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

/* Buttons ************************************/

.gp-voting-buttons {
display: -webkit-flex;
display: flex;
line-height: 1;
}
.gp-vote-data {
display: -webkit-inline-flex;
display: inline-flex;
-webkit-justify-content: center;
justify-content: center;
-webkit-align-items: center;
align-items: center;
}
.gp-vote-button {
display: -webkit-inline-flex;
display: inline-flex;
-webkit-justify-content: center;
justify-content: center;
-webkit-align-items: center;
align-items: center;
cursor: pointer;
}
.gp-voted .gp-vote-button,
.gp-my-comment .gp-vote-button {
cursor: default;
}
.gp-vote-icon {
margin: 0 !important;
text-align: center;
}
.gp-vote-icon:before {    
line-height: 1;
}
.gp-up-vote + .gp-down-vote {
margin-left: 15px;
}
.gp-vote-icon + .gp-vote-label {
margin-left: 7px;
}
.gp-vote-count {
display: -webkit-flex;
display: flex;
line-height: 1;
}

/* Styles ************************************/

/* Round Buttons */
.gp-voting-style-round-icons .gp-vote-icon {
display: -webkit-flex;
display: flex;
border-radius: 50%;
-webkit-align-items: center;
align-items: center;
-webkit-justify-content: center;
justify-content: center;
}
.gp-voting-style-round-icons .gp-up-vote .gp-vote-icon,
.gp-voting-style-round-icons .gp-down-vote .gp-vote-icon {
color: #fff;
width: 30px;
height: 30px;
}
.gp-voting-style-round-icons .gp-up-vote .gp-vote-icon {
background-color: #61CE70;
}
.gp-voting-style-round-icons .gp-up-vote.gp-voted .gp-vote-icon,
.gp-voting-style-round-icons.gp-element-up-down-voting:not(.gp-my-comment):not(.gp-voted) .gp-up-vote:hover .gp-vote-icon {
background-color: #23A455;
}
.gp-voting-style-round-icons .gp-down-vote .gp-vote-icon {
background-color: #FF0101;
}
.gp-voting-style-round-icons .gp-down-vote.gp-voted .gp-vote-icon,
.gp-voting-style-round-icons.gp-element-up-down-voting:not(.gp-my-comment):not(.gp-voted) .gp-down-vote:hover .gp-vote-icon {
background-color: #E20000;
}

/* Rounded Buttons */
.gp-voting-style-rounded-buttons .gp-vote-button {
padding: 5px 8px;
border-radius: 4px;
color: #fff;
}
.gp-voting-style-rounded-buttons .gp-up-vote.gp-vote-button {
background-color: #61CE70;
}
.gp-voting-style-rounded-buttons:not(.gp-my-comment):not(.gp-voted) .gp-up-vote.gp-vote-button:hover,
.gp-voting-style-rounded-buttons .gp-up-vote.gp-vote-button.gp-voted {
background-color: #23A455;
}
.gp-voting-style-rounded-buttons .gp-down-vote.gp-vote-button {
background-color: #FF0101;
}
.gp-voting-style-rounded-buttons:not(.gp-my-comment):not(.gp-voted) .gp-down-vote.gp-vote-button:hover,
.gp-voting-style-rounded-buttons .gp-down-vote.gp-vote-button.gp-voted {
background-color: #E20000;
}

/* Count positions ************************************/

.gp-voting-count-position-top .gp-vote-button {
-webkit-flex-direction: column-reverse;
flex-direction: column-reverse;
}
.gp-voting-count-position-bottom .gp-vote-button {
-webkit-flex-direction: column;
flex-direction: column;
}
.gp-voting-count-position-top .gp-vote-count {
margin-bottom: 7px;
-webkit-justify-content: center;
justify-content: center;
}
.gp-voting-count-position-bottom .gp-vote-count {
margin-top: 7px;
-webkit-justify-content: center;
justify-content: center;
}
body:not(.rtl) .gp-voting-count-position-left .gp-vote-data,
body.rtl .gp-voting-count-position-right .gp-vote-data {
order: 2;
}
.gp-voting-count-position-left .gp-vote-count {
margin-right: 7px;
-webkit-align-items: center;
align-items: center;
order: 1;
}
body.rtl .gp-voting-count-position-right .gp-vote-count {
order: 1;
}
body:not(.rtl) .gp-voting-count-position-right .gp-vote-data,
body.rtl .gp-voting-count-position-right .gp-vote-data {
order: 1;
}
.gp-voting-count-position-right .gp-vote-count {
margin-left: 7px;
-webkit-align-items: center;
align-items: center;
order: 2;
}
body.rtl .gp-voting-count-position-left .gp-vote-count {
order: 2;
}
.gp-voting-count-position-left-right .gp-up-vote .gp-vote-data {
order: 2;
}
.gp-voting-count-position-left-right .gp-up-vote .gp-vote-count {
margin-right: 7px;
-webkit-align-items: center;
align-items: center;
order: 1;
}
.gp-voting-count-position-left-right .gp-down-vote .gp-vote-data {
order: 1;
}
.gp-voting-count-position-left-right .gp-down-vote .gp-vote-count {
margin-left: 7px;
-webkit-align-items: center;
align-items: center;
order: 2;
}


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

Element - Video Playlist

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

/* Selected video ************************************/

.gp-selected-video-iframe {
display: block;
position: relative;
padding-bottom: 56.25%; /* 16:9 */
height: 0;
background: #000;
line-height: 0;
}
.gp-selected-video-iframe iframe,
.gp-selected-video-iframe .mejs-video {
position: absolute;
top: 0;
left: 0;
width: 100% !important;
height: 100% !important;
}
.gp-selected-video-info {
display: flex;
width: 100%;
padding: 15px;
background-color: #000;
}
.gp-video-status-button {
flex: 0 0 auto;    
padding: 0 35px 0 20px; 
align-self: center;
text-align: center;
line-height: 1;
cursor: pointer;
}
.gp-video-status-button.gp-play-button:before {
content: '\25b6';
font-size: 28px;
color: #fff;
}
.gp-video-status-button.gp-pause-button:before {
content: '\258d\258d';
font-size: 22px;
letter-spacing: -7px;
color: #fff;
}
.gp-selected-video-title {
font-size: 14px;
line-height: 18px;
color: #fff;
}
.gp-selected-video-duration {
font-size: 11px;
line-height: 17px;
color: #9c9da1;
}

/* Video playlist ************************************/

.gp-element-video-playlist {
overflow: hidden;
transform: translateZ(0);
background-color: #333;
}
.gp-video-playlist {
overflow-y: auto;
overflow-x: hidden;
height: 350px;
}
.gp-video-playlist::-webkit-scrollbar {
width: 6px;
}
.gp-video-playlist::-webkit-scrollbar-thumb {
background-color: #919191;
border-radius: 10px;
}
.gp-video-playlist .gp-video-item {
display: flex;
width: 100%;
padding: 10px 15px;
cursor: pointer;
background-color: #333;
}
.gp-video-playlist .gp-video-item:hover {
background-color: #171717;
}
.gp-video-playlist .gp-selected.gp-video-item {
border-left: 3px solid #fff;
background-color: #292929;
}
.gp-video-playlist .gp-video-item .gp-video-thumbnail {
flex: 0 0 auto;
margin-right: 15px;
width: 70px;
line-height: 0;
}
.gp-video-playlist .gp-video-item .gp-video-title,
.gp-video-playlist .gp-video-item .gp-video-duration {
font-size: 12px;
line-height: 16px;
}
.gp-video-playlist .gp-video-item .gp-video-title {
color: #fff;
}
.gp-video-playlist .gp-video-item .gp-video-duration {
color: #9c9da1;
}


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

Templates - Headers

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

/*--------------------------------------------------------------
Header - Standard
--------------------------------------------------------------*/

.gp-header {
position: relative;
z-index: 99999;
}
.gp-header .elementor-section.elementor-section-stretched { /* Fix for Elementor adding right minus position */
left: 0 !important;
}
.gp-header-overlay {
position: absolute;
width: 100%;
}

/*--------------------------------------------------------------
Header - Fix
--------------------------------------------------------------*/

.gp-scrolling.gp-header-fixed-both,
.gp-scrolling.gp-header-fixed-up {
position: fixed;
top: 0;
left: 0;
right: 0;
}
.gp-header-scrolling.gp-header-fixed-both,
.gp-header-scrolling.gp-header-fixed-up {
display: none;
}
.gp-header-scrolling.gp-scrolling.gp-header-fixed-both,
.gp-header-scrolling.gp-scrolling.gp-header-fixed-up {
display: block;
}
	
/*--------------------------------------------------------------
Header - Mobile
--------------------------------------------------------------*/

.gp-scrolling.gp-header-mobile {
-webkit-animation: fadeIn 0.5s;
animation: fadeIn 0.5s;
}


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

Templates - Popups

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

html.gp-no-scroll {
overflow: hidden;
min-height: 100%;
}
.gp-popup-overlay {
display: none;
position: fixed;
top: 0;
left: 0;
z-index: 999991;
width: 100%;
height: 100%;
padding: 20px;
justify-content: center;
align-items: center;
background-color: rgba(0,0,0,0.8);
}
.gp-popup-open.gp-popup-overlay {
display: flex;
-webkit-animation: fadeIn 0.5s;
animation: fadeIn 0.5s;
}
.gp-popup-close.gp-popup-overlay {
-webkit-animation: fadeOut 0.5s;
animation: fadeOut 0.5s;
}
.gp-popup-box {
opacity: 1;
overflow-y: auto;
width: 100%;
height: auto;
max-height: 100%;
position: relative;
background: #fff;
box-shadow: 0 8px 23px 3px rgba(0,0,0,0.2);
align-items: flex-start;
}
.gp-popup-box.fadeOut {
opacity: 0;
-webkit-animation: fadeOut 0.5s;
animation: fadeOut 0.5s;
}
.gp-popup-close-button {
display: none;
position: absolute;
top: 20px;
right: 20px;
z-index: 3;
cursor: pointer;
}
.gp-popup-close-button .gp-icon-cross {
width: 20px;
height: 20px;
}
.gp-popup-close-button .gp-icon-cross:before, 
.gp-popup-close-button .gp-icon-cross:after {
left: 9px;
height: 20px;
background: #000;
}


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

Sidebar Widgets

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

/*--------------------------------------------------------------
General
--------------------------------------------------------------*/

.widget {    
position: relative;
clear: both;
width: 100%;
}
.widget:not(:last-child) {
margin-bottom: 35px;
}
.widget:last-child {
margin-bottom: 0 !important;
}
.widget-title,
.widget_block .wp-block-group__inner-container > h2,
.widget_block .wp-block-search__label {
display: block;
margin: 0 0 10px;
font-size: 18px;
line-height: 28px;
font-weight: 500;
}
.widget ol,
.widget ul,
.widget_block > .wp-block-group {
margin: 0;
}
.widget li {
list-style-type: none;
padding: 5px 0;
font-size: 16px;
line-height: 22px;
}
.widget .children li,
.widget .sub-menu li {    
padding-left: 10px;
}
.widget .children li:last-child,
.widget .sub-menu li:last-child {    
padding-bottom: 0;
border-bottom: 0;
}

/*--------------------------------------------------------------
Calendar widget
--------------------------------------------------------------*/

#wp-calendar {
width: 100%;
}
#wp-calendar th {
padding: 8px 0;
text-align: center;
font-weight: 500;
border-width: 1px;
border-style: solid;
}
#wp-calendar td {
padding: 8px 0;
text-align: center;    
font-size: 16px;
border-width: 1px;
border-style: solid;
}
#wp-calendar #today {
background-color: #fafafa;
}
#wp-calendar caption {
margin-bottom: 10px;
text-align: left;
font-weight: 500;
}

/*--------------------------------------------------------------
Latest Posts widget
--------------------------------------------------------------*/

.wp-block-latest-posts.wp-block-latest-posts__list li {
margin-bottom: 10px;
}
.wp-block-latest-posts.wp-block-latest-posts__list li:last-child {
margin-bottom: 0;
}
.wp-block-latest-posts__post-author, 
.wp-block-latest-posts__post-date {
line-height: 1;
}

/*--------------------------------------------------------------
RSS widget
--------------------------------------------------------------*/

.widget_recent_entries .post-date,
.widget_rss .rss-date {
margin-left: 12px;
font-size: 11px;
}
ul.wp-block-rss {
margin: 0;
}

/*--------------------------------------------------------------
Search widget
--------------------------------------------------------------*/

.widget_search .gp-search-form-input {
width: 100%;
}
.searchform .accessibly-hidden {
display: none;
}
.wp-block-search__input {
border: 0;
line-height: 1;
}
.wp-block-search__button {
border: 0;
line-height: 1;
}

/*--------------------------------------------------------------
Tag cloud widget
--------------------------------------------------------------*/

.tagcloud {
font-size: 0;
}
.tagcloud a {
margin-right: 8px;
}


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

Other Plugins

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

/*--------------------------------------------------------------
WooCommerce
--------------------------------------------------------------*/

.gp-custom.elementor-section .elementor-container {
display: block;
}

/*--------------------------------------------------------------
WPForms
--------------------------------------------------------------*/

.gp-theme div.wpforms-container-full, 
.gp-theme div.wpforms-container-full .wpforms-form * {
visibility: unset;
}
.gp-theme .wpforms-container label.wpforms-error {
margin-top: 10px;
}
.gp-theme div.wpforms-container-full .wpforms-form .wpforms-field-label {
font-size: inherit;
font-weight: inherit;
}
.gp-theme div.wpforms-container-full .wpforms-form input[type=date], 
.gp-theme div.wpforms-container-full .wpforms-form input[type=datetime], 
.gp-theme div.wpforms-container-full .wpforms-form input[type=datetime-local], 
.gp-theme div.wpforms-container-full .wpforms-form input[type=email], 
.gp-theme div.wpforms-container-full .wpforms-form input[type=month], 
.gp-theme div.wpforms-container-full .wpforms-form input[type=number], 
.gp-theme div.wpforms-container-full .wpforms-form input[type=password], 
.gp-theme div.wpforms-container-full .wpforms-form input[type=range], 
.gp-theme div.wpforms-container-full .wpforms-form input[type=search], 
.gp-theme div.wpforms-container-full .wpforms-form input[type=tel], 
.gp-theme div.wpforms-container-full .wpforms-form input[type=text], 
.gp-theme div.wpforms-container-full .wpforms-form input[type=time], 
.gp-theme div.wpforms-container-full .wpforms-form input[type=url], 
.gp-theme div.wpforms-container-full .wpforms-form input[type=week], 
.gp-theme div.wpforms-container-full .wpforms-form select, 
.gp-theme div.wpforms-container-full .wpforms-form textarea {
height: auto;
}

/*--------------------------------------------------------------
Youzify (on forum and non Youzer pages)
--------------------------------------------------------------*/

.gp-theme .youzify .activity-header {
padding-right: 40px;
}
.elementor .youzify-profile-img img {
border-radius: 50%;
}
.gp-theme #bbpress-forums #bbp-search-form #bbp_search, 
.gp-theme #bbpress-forums .bbp-search-form #rs, 
.gp-theme #bbpress-forums .bbp-search-form #ts {
border-color: #eee;
}
body .elementor-widget-container > .buddypress.widget .item-list, 
body .elementor-widget-container > .buddypress.widget .item-options {
padding: 0 !important;
}

/*--------------------------------------------------------------
WP Debug Bar 
--------------------------------------------------------------*/

#querylist {
z-index: 99999;
}

/*--------------------------------------------------------------
WPML
--------------------------------------------------------------*/

.wpml-elementor-ls .wpml-ls-legacy-list-horizontal .wpml-ls-item {
width: 100%;
} 
.wpml-elementor-ls .wpml-ls-legacy-list-horizontal {
padding: 0;
} 
.wpml-elementor-ls .wpml-ls-legacy-list-horizontal a {
padding-left: 0;
padding-right: 0;
}


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

Media queries

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

/* Tablet (768px and above) */
@media only screen and (min-width: 768px) {

	.elementor .elementor-widget:not(.elementor-widget-text-editor):not(.elementor-widget-theme-post-content) figure blockquote,
	.wp-block-quote,
	.wp-block-quote.is-large, 
	.wp-block-quote.is-style-large,
	.wp-block-pullquote,
	.elementor .elementor-widget:not(.elementor-widget-text-editor):not(.elementor-widget-theme-post-content) .wp-block-pullquote {
	margin-left: 40px !important;
	margin-right: 40px !important;
	}
	.gp-element-post-content > *.alignwide {
	width: 100%;
	max-width: 100%;
	}
	.alignleft,
	.gp-element-post-content > *.alignleft {
	max-width: calc(4 * (100vw / 12)) !important;
	margin-right: calc(2 * 1rem) !important;
	}
	.alignright,
	.gp-element-post-content > *.alignright {
	max-width: calc(4 * (100vw / 12));
	margin-right: 0 !important;
	margin-left: calc(2 * 1rem) !important;
	}
	.gp-comment-good-bad-points {
	flex-direction: row;
	}
	.gp-comment-good-bad-points .gp-comment-good-points {
	margin-right: 10px;
	}
	.gp-comment-good-bad-points .gp-comment-bad-points {
	margin-left: 10px;
	}
	#commentform .gp-comment-form-good-bad-points {
	flex-direction: row;
	}
	#commentform .gp-comment-form-good-points {    
	margin-right: 5px;
	}
	#commentform .gp-comment-form-bad-points {    
	margin-left: 5px;
	}		
	.gp-element-post-navigation.gp-has-post-titles {
	flex-direction: row;
	}
	.gp-post-navigation-link {
	width: 50%;
	}
	.gp-has-border .gp-post-navigation-link {
	width: 48%;
	}
	.gp-post-navigation-border {
	width: 1px;	
	height: auto;
	margin: 0 30px;
	}
	.gp-linear-rating-container .gp-summary-rating-text-wrapper {
	flex-direction: row;
	}
	
}

/* Desktop (1025px and above) */
@media only screen and (min-width: 1025px) {

	blockquote,
	.wp-block-quote,
	.wp-block-quote.is-large, 
	.wp-block-quote.is-style-large,
	.wp-block-pullquote,
	.elementor .elementor-widget:not(.elementor-widget-text-editor):not(.elementor-widget-theme-post-content) .wp-block-pullquote {
	margin-left: 100px !important;
	margin-right: 100px !important;
	}
	.gp-popup-overlay {
	padding: 0;
	}
	.gp-popup-box {
	width: 600px;
	}
	.gp-tab-label {
	display: inline-block;
	}
	.gp-menu-container .menu-item.gp-hide-desktop-display {
	display: none !important;
	}
	.gp-whatsapp-icon {
	display: none;
	}
		
}

/* Desktop (1260px to 1205px) */
@media only screen and (max-width: 1260px) and (min-width: 1025px) {

	.gp-theme .youzify-forum .youzify-page-main-content,
	.gp-theme .youzify-global-wall .youzify-page-main-content {
	padding-left: 30px;
	padding-right: 30px;
	}
	
}

/* Tablet (1024px and below) */
@media only screen and (max-width: 1024px) {

	.gp-menu-container .menu-item.gp-hide-tablet-display {
	display: none !important;
	}
	.gp-theme .youzify-forum .youzify-page-main-content {
	padding-left: 20px;
	padding-right: 20px;
	}	


/*REMOVE.gp-items-columns .gp-item {
width: calc((100% - ((2 - 1) * 2%)) / 2);
margin-left: 2%;
}
.gp-items-columns .gp-item:nth-of-type(2n+1) {
margin-left: 2%;
}
.gp-items-columns .gp-item:nth-of-type(2n+1) {
margin-left: 0; 
clear: left !important;
}
.gp-items-columns .gp-item:nth-last-child(-n+2) { 
margin-bottom: 30px; 
}
.gp-items-columns .gp-item { 
margin-bottom: 30px; 
}
.gp-items-columns .gp-item:nth-last-child(-n+2) { 
margin-bottom: 0; 
}*/

}

/* Mobile (767px and below) */
@media only screen and (max-width: 767px) {

	.gp-element-advanced-tabs.gp-format-row {
	flex-direction: column;
	}
	.gp-format-row .gp-tabs-menu,
	.gp-format-column .gp-tabs-menu {
	flex-direction: row;
	flex: 1 1 auto;
	}
	.gp-menu-container .menu-item.gp-hide-mobile-display {
	display: none !important;
	}	
	
/*REMOVE.gp-items-columns .gp-item {
width: 100%;
margin-left: 2%;
}
.gp-items-columns .gp-item:nth-of-type(1n+1) {
margin-left: 2%;
}
.gp-items-columns .gp-item:nth-of-type(1n+1) {
margin-left: 0; 
clear: left !important;
}
.gp-items-columns .gp-item:nth-last-child(-n+1) { 
margin-bottom: 30px; 
}
.gp-items-columns .gp-item { 
margin-bottom: 30px; 
}
.gp-items-columns .gp-item:nth-last-child(-n+1) { 
margin-bottom: 0; 
}*/

}

/* WordPress admin bar breakpoint */
@media only screen and (max-width: 782px) {

	.admin-bar .gp-slide-in-menu-inner {
	height: calc(100% - 46px);
	}
	.admin-bar .gp-slide-in-menu-left .gp-slide-in-menu-close-button.gp-button-position-fixed,
	.admin-bar .gp-slide-in-menu-right .gp-slide-in-menu-close-button.gp-button-position-fixed,
	.admin-bar .gp-slide-in-menu-top .gp-slide-in-menu-close-button.gp-button-position-fixed {
	margin-top: 46px;
	}

}

@media only screen and (max-width: 481px) {

	.alignleft,
	.gp-element-post-content > *.alignleft,
	.alignright,
	.gp-element-post-content > *.alignright {
	float: none !important;
	margin-left: auto !important;
	margin-right: auto !important;
	}
	
}
	
@media only screen and (max-width: 395px) {

	/* Fixes input field and button being cut off on smaller devices */
	.gp-element-search-form .gp-search-form-input,
	.gp-search-form-button .gp-search-form-input {
	width: 50%;
	}
	
}	