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

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

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

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

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

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


/* Font Usae */

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

}

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

/**
 * Remove the margin in all browsers.
 */
body {
    margin: 0;
    font-family: var(--default-font-family);
    overflow-x: hidden;
}

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

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

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

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

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

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

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

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

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

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

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

sub {
    bottom: -0.25em;
}

sup {
    top: -0.5em;
}

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

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

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

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

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

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

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

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

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

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

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

a {
    outline: none;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

html {
    box-sizing: border-box;
    font-family: var(--default-font-family);
}

/*--------------------------------------------------------------
# Base
--------------------------------------------------------------*/
:root {
    --main-color: var(--primary-color);
    --main-text-color: #2B2F3E;
    --light-color: #F0F1F5;
    --alt-text-color: #2B2F3E;
    --alt-border-color: #e1e1e1;
    --default-font-family: var(--body-font);
    --default-font-family-medium: var(--body-font);
    --alt-font-family: var(--heading-font);


}

/* gutter
--------------------------------------------- */
.g-6, .gx-6 {
    --bs-gutter-x: 2rem;
}

.g-8, .gx-8 {
    --bs-gutter-x: 3.118rem;
}

/* Typography
--------------------------------------------- */
body,
button,
input,
select,
optgroup,
textarea {
    color: var(--main-text-color);
    font-size: 18px;
    line-height: 1.5;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1.5rem;
    font-family: var(--alt-font-family);
}

h1 {
    font-size: 56px;
    line-height: 64px;
    font-weight: 700;
    color: var(--main-text-color);

}

h2 {
    font-size: calc(1.3em + 1vw);
    line-height: calc(1.8rem + 1vw);
    font-weight: 700;
    color: var(--main-text-color);
}

h3 {
    font-size: 32px;
    line-height: 44px;
    font-weight: 700;
    color: var(--main-text-color);
}

h4 {
    font-size: 24px;
    line-height: 32px;
    font-weight: 700;
    color: var(--main-text-color);
}

h5 {
    font-size: 20px;
    line-height: 30px;
    font-weight: 700;
    color: var(--main-text-color);
}

h5 {
    font-size: 18px;
    line-height: 28px;
    font-weight: 700;
    color: var(--main-text-color);
}

h6 {
    font-size: 18px;
    line-height: 24px;
    font-weight: 700;
    color: var(--main-text-color);
}

p {
    font-size: 18px;
    font-weight: 400;
    color: var(--main-text-color);
    margin-bottom: 1.5em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    clear: both;
}

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

blockquote {
    margin: 0 1.5em;
}

address {
    margin: 0 0 1.5em;
    font-style: italic;
    font-weight: 600;
}

pre {
    background: #eee;
    line-height: 1.6;
    margin-bottom: 1.6em;
    max-width: 100%;
    overflow: auto;
    padding: 1.6em;
}


code {
    color: #1e1e1e;
    background: #f0f0f0;
    font-family: Menlo, Consolas, monaco, monospace;
    font-size: 14px;
}

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

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

big {
    font-size: 125%;
}

/* Elements
--------------------------------------------- */

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

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

ul {
    list-style: disc;
}

ol {
    list-style: decimal;
}

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

ul > li, ol > li, dl > li {
    margin-bottom: 0.5rem;
    list-style: initial;
}

ol ul, ul ul {
    list-style-type: circle;
    margin: 0;
    padding-left: 20px;
}

ol ol, ul ol {
    list-style-type: lower-latin;
    margin: 0;
    padding-left: 20px;
}

dt {
    font-weight: 700;
}

dd {
    margin: 0 1.5em 1.5em;
}

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

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

figure {
    margin: 1em 0;
}

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

label {
    font-size: 1rem;
}

/* Links
--------------------------------------------- */
a {
    color: var(--link-color);
    text-decoration: none;
}

a:hover {
    color: #FF9515;
}

a:active {
    color: var(--link-color);
}

a:focus {
    outline: 0;
}

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

/* Forms
--------------------------------------------- */
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
    border: 1px solid;
    border-color: var(--main-color);
    background: var(--main-color);
    color: #fff;
    padding: 10px 24px;
    min-height: 37px;
    box-shadow: 0px 0px 0px rgb(0 149 21 / 0%);
    border-radius: 0;
    font-size: 16px;


}

#commentform input[type="submit"] {
    margin-top: 20px;
}

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
    border-color: #e6e6e6;
}

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

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea {
    color: #2B2F3E;
    border: 1px solid var(--light-color);
    padding: 15px 24px;
    font-size: 16px;
    outline: none;
    min-height: 48px;
    width: 100%;
    background: var(--light-color);
    margin-bottom: 12px;
    border-radius: 8px;
}

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

::placeholder {
    opacity: .6;
}

select,
.select2-container--default .select2-selection--single {
    border: 1px solid var(--light-color);
    color: #2B2F3E;
    min-height: 42px;
    padding: 10px;
    border-radius: 0;
    outline: none;
    background: var(--light-color);
    font-size: 1rem;
    line-height: 1.5;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 27%;
}

textarea {
    width: 100%;
    min-height: 300px;
}

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

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

/* Navigation
--------------------------------------------- */


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

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

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

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

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


.updated:not(.published) {
    display: none;
}

.page-content,
.post-content,
.post-summary {
    margin: 1em 0 0;
}

.post-content {
    font-size: 18px;
    font-weight: normal;
    color: var(--main-text-color);
}

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

.status-publish.sticky {
    position: relative;
}

.sticky-post-label {
    font-size: 18px;
    font-weight: 600;
    color: var(--main-color);
    text-transform: uppercase;
    line-height: 24px;
}

.has-post-thumbnail.sticky .post-title {
    padding-top: 0px;
}

.post-meta span {
    margin-right: 7px;
}

.post-meta ul {
    margin: 0;
    padding: 0;
    list-style: none;

}

.electio_default_blog .post-meta {
    border-bottom: 1px solid #efebeb;
    padding-bottom: 15px;
}

.post-meta {
    width: 100%;
    float: left;
    margin-bottom: 0;
}

.post-meta ul li {
    float: left;
    font-size: 17px
}

.post-meta ul li i {
    vertical-align: middle;
    color: var(--main-color);
    font-size: 20px;
}

.post-meta ul li a {
    color: #2B2F3E;
}

.electio_post_thumbnail_inner {
    overflow: hidden;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.electio_post_thumbnail img,
.list-post-image img {
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    transform: scale(1);
    overflow: hidden;
    border-radius: 4px;
}

.electio_post_thumbnail_inner:hover img,
.electio_default_blog:hover .electio_post_thumbnail_inner img,
.sidebar-post-list-item:hover .electio_post_thumbnail_inner img {
    transform: scale(1.1);
}

/* Comments
--------------------------------------------- */
#comments p {
    margin-bottom: 0px;
}

#comments .comment-form-cookies-consent {
    margin-bottom: 20px;
}

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

.bypostauthor {
    display: block;
}

.comment-author-title {
    font-weight: 700;
    font-size: 21px;
    line-height: 28px;
    text-transform: capitalize;
    font-style: normal;
    font-family: var(--alt-font-family);
    margin-bottom: 0;
}

.comment-metadata {
    opacity: .7;
    margin-bottom: 4px;
    font-weight: 400;
    font-size: 18px;
}

.search-form .theme-input {
    width: 100%;
    border: 0;
    outline: 0;
    padding: 5px 24px;
    background-color: var(--light-color);
    border-radius: 0;
    min-height: 52px;
}

/* Widgets
    --------------------------------------------- */
/*.widget {*/
/*	margin: 0 0 40px;*/
/*	background: #FFFFFF;*/
/*box-shadow: 0px 15px 45px -5px rgba(0, 0, 0, 0.08);*/
/*border-radius: 8px;*/
/* padding: 32px;*/
/*}*/
.widget .widget {
    padding: 0px;
    margin: 0;
}

.widget h2.widget-title,
.widget_block .wp-block-group__inner-container h2,
.widgettitle {
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: #2B2F3E;
    margin-bottom: 42px;
    position: relative;
    line-height: 28px;
}

.widget h2.widget-title:before,
.widget_block .wp-block-group__inner-container h2:before,
.widgettitle:before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -15px;
    width: 100%;
    height: 1px;
    background-color: var(--primary-color);


}

.widget {
    margin-bottom: 40px;
}

.widget ul {
    padding-left: 0px;
    margin: 0;
}

.widget ul ul {
    padding-left: 20px;
}

.widget ul li {
    list-style: none;
    font-size: 13px;
    font-weight: normal;
    color: #7a7a7a;
    margin-bottom: 18px;
}

.widget ul li a {
    text-decoration: none;
    font-size: 18px;
    line-height: 1.4;
    font-weight: 400;
    color: #2B2F3E;
}

.widget ul li a .count {
    font-size: 16px;
}

.widget.widget_search h2 {
    display: none;
}

.widget ul li a:visited {
    color: #2B2F3E;
}

.widget ul li a:hover {
    color: var(--main-color);
}

.widget ul li a:focus,
.widget ul li a:active,
.widget ul li a:visited {
    color: var(--main-text-color);

}

.widget select {
    width: 100%;
    border: 1px solid var(--light-color);
    padding: 10px 5px;
    box-sizing: border-box;
}

.wp-block-calendar table th,
.wp-block-calendar thead,
.wp-calendar-table thead {
    background: var(--light-color);
}

.wp-block-calendar thead tr th,
.wp-calendar-table thead tr th {
    font-size: 18px;
    line-height: 1.5;
    font-weight: normal;
    color: var(--main-text-color);
    text-align: center;
}

table {
    caption-side: top;
    border-collapse: collapse;
}

.wp-block-calendar caption,
.wp-calendar-table caption {
    font-size: 18px;
    line-height: 18px;
    color: var(--main-text-color);
    font-weight: 400;
    margin-bottom: 18px;
}

.wp-block-calendar tbody tr td,
.wp-calendar-table tbody tr td {
    font-size: 18px;
    line-height: 1.5;
    color: var(--main-text-color);
    text-align: center;
}

.wp-block-calendar thead tr th,
.wp-calendar-table thead tr th, .wp-calendar-table tbody tr td {
    border: none;
    box-sizing: border-box;
    padding: 8px;
    width: 50px;
}

.wp-calendar-table tbody tr td a {
    width: 25px;
    height: 25px;
    border: none;
    border-radius: 50%;
    display: inline-block;
    text-decoration: none;
}

.wp-calendar-table tbody tr td a:hover {

}

#today::after {
    font-family: 'remixicon';
    content: "\EB7C";
    width: 100%;
    float: left;
    line-height: 0;
    padding-bottom: 0px;
    font-size: 8px;
    color: #FF9515;
    z-index: 1;
    position: relative;
}

.wp-calendar-nav-prev a, .wp-calendar-nav-next a {
    text-decoration: none;
}

.widget.widget_recent_entries ul li a {
    font-size: 18px;
    line-height: 24px;
    font-weight: 700;
    color: var(--main-text-color);
}

.widget.widget_recent_entries ul li {
    margin-bottom: 10px;
}

.widget.widget_recent_entries ul li a:visited, .widget.widget_recent_entries ul li a:active, .widget.widget_recent_entries ul li a:focus {
    color: var(--main-color);
}

ul#recentcomments li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 20px;
}

ul#recentcomments li > span a {
    line-height: 20px;
}

ul li.recentcomments > a {
    display: block;
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
}

ul#recentcomments li::before {
    content: '\EA6E';
    font-family: remixicon;
    font-size: 14px;
    color: var(--main-color);
    position: absolute;
    left: 0;
    line-height: 28px;
}

.widget.widget_rss ul li {
    margin-bottom: 10px;
}

.widget.widget_rss ul li a {
    font-size: 18px;
    font-weight: 700;
    line-height: 24px;
    color: var(--main-text-color);
    display: block;
}

.widget.widget_rss ul li span {
    font-size: 14px;
    line-height: 28px;
    color: var(--alt-text-color);
    font-weight: normal;
}

.widget.widget_rss ul li .rssSummary {
    font-size: 16px;
    color: #000;
    font-weight: normal;
    line-height: 24px;
    margin: 8px 0;
}

.widget.widget_rss ul li cite {
    font-size: 15px;
    color: var(--alt-text-color);
    line-height: 30px;
    font-weight: 600;
}

.widget-title a img {
    display: none;
}

.widget h2.widget-title a {
    color: var(--main-text-color);
}

.search-form {
    display: flex;
}

.search-form label, .search-form label input {
    width: 100%;
}

.search-form label input {
    outline: none;
    padding: 15px 10px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
}

.search-form .search-submit {
    border: none;
    outline: none;
    background: var(--main-color);
    color: #fff;
    padding: 0px 28px;
    max-height: 55px;
    position: relative;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}


.widget ul li .list-post-meta h4 {
    font-family: var(--default-font-family-medium);
    line-height: 19.2px;
    margin: 0;
    font-weight: 500;
    font-size: 20px;
}

.widget .electio-rcp-product-info h4 {
    line-height: 28px;
    margin: 0 0 5px
}

.widget ul li .list-post-meta h4 a,
.widget .electio-rcp-product-info h4 a {
    font-weight: 500;
    color: var(--main-text-color);
    line-height: 19.2px;
    margin-bottom: 5px;
    text-transform: capitalize;
    font-size: 16px;
}

.widget ul li.sidebar-post-list-item {
    margin-bottom: 20px;
    align-items: center;
}

.widget ul li.sidebar-post-list-item:last-child {
    margin-bottom: 0;
}

.widget ul li .posted-on a,
.widget ul li .sidebar-post-meta i {
    font-size: 14px;
    vertical-align: middle;
}

.widget ul li .sidebar-post-meta a {
    color: var(--main-color);
    font-family: var(--default-font-family-medium);
    font-weight: 500;
    font-size: 16px;
}

.widget ul li .posted-on a {
    font-size: 14px;
    color: rgb(116, 120, 124);
    font-weight: 300;
}

.sidebar-post-meta span i {
    color: var(--main-color);
}

.pivo-product-sidebar-asd {
    margin-bottom: 20px;
    align-items: center;
}

.z-index-10 {
    z-index: 10;
}

.pivo-product-sidebar-asd:last-child {
    margin-bottom: 0px;
}

.electio-widget-subscription-box.pvs-sub-style-1 {
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: center center !important;
    padding: 45px 45px 20px;
    border-radius: 0px;
    position: relative;
    color: #fff;
}

.electio-widget-subscription-box.pvs-sub-style-1:before {
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: rgb(150 166 140 / 24%);
    z-index: 1;
    position: absolute;
    border-radius: 0px;
}

.psv-subscription-form p {
    margin-bottom: 0;
}

.electio-widget-subscription-box h4 {
    margin-bottom: 15px;
}

.electio-widget-subscription-box.pvs-sub-style-1 h6,
.electio-widget-subscription-box.pvs-sub-style-1 h4 {
    color: #fff;
}

.electio-rcp-product-info .woocommerce-Price-amount {
    color: var(--main-color);
    font-weight: bold;
}

.electio-rcp-product-info ins {
    background: transparent;
}

.electio-rcp-product-info del,
.electio-rcp-product-info del span,
.electio-rcp-product-info del .woocommerce-Price-amount {
    color: #2B2F3E;
    font-weight: 400;
}

.widget .electio-post-tag-grid-sidebar {
    overflow: hidden;
    margin: 0 -6px;
    padding: 0;
}

.widget .electio-post-tag-grid-sidebar li {
    float: left;
    margin: 0;
}

.widget .electio-post-tag-grid-sidebar li a {
    border: 1px solid #F0F1F5;
    box-sizing: border-box;
    font-size: 18px;
    line-height: 22px;
    text-align: center;
    text-transform: capitalize;
    color: #2B2F3E;
    padding: 5px 12px;
    margin: 6px;
    transition: all .2s;
    display: inline-block;
    background: #F0F1F5;
    border-radius: 4px;
}

.widget .electio-post-tag-grid-sidebar li a:hover {
    background: var(--main-color);
    border-color: var(--main-color);
    color: #fff;
}

.widget ul li.cat-item a {
    position: relative;

    align-items: center;
    justify-content: space-between;
}

.widget ul li.cat-item {
    margin-bottom: 8px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.gallery-caption {
    display: block;
}

/*--------------------------------------------------------------
## Gutenberg
--------------------------------------------------------------*/
.wp-block-file .wp-block-file__button {
    border-radius: 0 !important;
}

.wp-block-media-text {
    margin-top: 28px;
    margin-bottom: 28px;
}

p.wp-block-subhead {
    font-style: italic;
    font-weight: normal;
    font-size: 21px;
    line-height: 33px;
    color: #714f20;
}

.has-large-font-size {
    font-size: 26px;
    font-weight: 400;
}

.has-larger-font-size {
    font-size: 40px;
    line-height: 48px;
    font-weight: 400;
}

.wp-block-cover.alignright, .wp-block-cover.alignleft {
    margin-bottom: 0.5rem;
}

.wp-block-cover .wp-block-cover-text a {
    border-bottom: 1px solid #d5cccc;
}

.wp-block-cover .wp-block-cover-text a:hover {
    border-color: #fff;
}

.wp-block-cover.has-pale-pink-background-color:before {
    background: #f78da7;
}

.wp-block-cover-image .wp-block-cover-image-text, .wp-block-cover .wp-block-cover-text, section.wp-block-cover-image > h2 {
    font-size: 2em;
    line-height: 1.25;
    z-index: 1;
    margin-bottom: 0;
    max-width: 840px;
    padding: 0.44em;
    text-align: center;
}

.wp-block-cover-image.has-left-content .wp-block-cover-image-text, .wp-block-cover.has-left-content .wp-block-cover-text, section.wp-block-cover-image.has-left-content > h2 {
    margin-left: 0;
    text-align: left;
}

.wp-block-cover.alignleft .wp-block-cover-text {
    text-align: left;
}

.alignfull img {
    border-radius: 0;
}

.has-drop-cap:first-letter {
    float: left;
    font-size: 8.4em !important;
    line-height: .68;
    font-weight: 100;
    margin: .05em .1em 0 0;
    text-transform: uppercase;
    font-style: normal;
}

.wp-block-quote {
    border-left: none;
    margin: 30px 0 40px 0;
    padding: 40px 30px 30px 30px;
    font-style: italic;
    font-weight: bold;
    font-size: 24px;
    line-height: 36px;
    position: relative;
    width: 100%;
    float: left;
    box-shadow: none;
    background: #EAFAF6;
    color: #2B2F3E;
    border-radius: 6px;

}

.wp-block-quote p {
    position: relative;
    z-index: 10;
    margin-bottom: 0;
    font-size: 18px;
    line-height: 1.7;
    color: #2B2F3E;
}

.wp-block-quote cite {
    font-weight: 700;

}

.wp-block-quote:before {
    content: "\f10d";
    font-family: "FontAwesome";
    color: rgb(255 229 226);
    z-index: 5;
    font-size: 124px;
    position: absolute;
    left: 3%;
    top: 18%;
    font-style: normal;
}

.wp-block-quote.is-style-large cite {
    float: right;
}

.xoopic-blockquote-block {
    position: relative;
    padding: 40px 30px 10px 30px;
}

.xoopic-blockquote-block:before {
    content: "";
    border: 2px solid #74716E;
    width: 100%;
    height: 100%;
    -webkit-clip-path: polygon(0 0, 95% 0, 65% 100%, 0% 100%);
    clip-path: polygon(0 0, 95% 0, 65% 100%, 0% 100%);
    background-clip: padding-box;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 18px;
}

.pivo-quote-circle:before {
    font-family: 'remixicon';
    content: "\EC52";
    position: absolute;
    top: -3%;
    left: 3%;
    background: #fffdf7;
    font-size: 18px;
    font-weight: 400;
    font-style: normal;
}

.pivo-bottom-chips::before {
    background-color: #74716e;
    content: "";
    display: block;
    height: 85px;
    width: 70px;
    position: absolute;
    bottom: -7%;
    z-index: 0;
    left: 2%;
    border: 2px solid #74716e;
    clip-path: polygon(75% 75%, 75% 100%, 50% 75%);
}

.xoopic-quote-content {
    position: relative;
    z-index: 10;
}

#xoopic-blockquote-box {
    position: relative;
}

#xoopic-blockquote-box h4 {
    margin: 0;
    padding: 0;
    position: absolute;
    left: 40%;
    font-size: 14px;
    color: #74716E;
    bottom: -12%;
}

.wp-block-quote.is-style-large .pivo-quote-circle:before {
    top: -7%;
}

.wp-block-quote__citation, .wp-block-quote cite, .wp-block-quote footer {
    font-style: normal;
    font-size: 16px !important;
    line-height: 18px;
    color: #FF543E;
    font-weight: 600;
    z-index: 10;
}

.wp-block-quote.is-large, .wp-block-quote.is-style-large {
    border: none;
    background: transparent;
    border-radius: 8px;
    font-style: normal;
    font-weight: normal;
    font-size: 18px;
    line-height: 33px;
    margin: 40px 0;
    box-shadow: inset 4px 0px 0px #222, inset -4px 0px 0px #222;
}

.wp-block-quote.is-style-large:before {
    top: -7%;
}

.wp-block-quote.has-text-align-right cite {
    text-align: right;
}

.wp-block-quote.has-text-align-right .pivo-bottom-chips::before {
    right: 5%;
    left: auto;
    clip-path: polygon(75% 75%, 60% 100%, 50% 75%);
}

.wp-block-quote.is-large p, .wp-block-quote.is-style-large p {
    margin-bottom: 10px;
}

.wp-block-quote.is-large:before {
    content: "";
    display: none;
}

.wp-block-quote.is-large p, .wp-block-quote.is-style-large p {
    font-size: 22px;
    font-style: normal;
    line-height: 1.6;
}

.wp-block-quote.is-style-large cite br {
    display: none;
}

.wp-block-quote.has-text-align-right {
    border: none;
}

.wp-block-quote.has-text-align-right .pivo-top-circle {
    top: -0.5%;
    right: auto;
    left: 20%;
}

.wp-block-quote.has-text-align-right .pivo-bottom-circle {
    right: 60%;
}

.wp-block-quote.has-text-align-right .pivo-quote-circle:before {
    left: auto;
    right: 4%;
}

.wp-block-quote.has-text-align-right:before {
    content: "\EC52";
    font-family: 'remixicon';
    color: var(--light-color);
    z-index: 5;
    font-size: 124px;
    position: absolute;
    right: 0;
    top: 10%;
    font-style: normal;
}

blockquote.has-light-gray-color p {
    color: #2B2F3E;
}

.wp-block-pullquote blockquote {
    box-shadow: none;
    border-left: 0;
}

.wp-block-pullquote p {
    margin-bottom: 8px;
}

.wp-block-pullquote.is-style-solid-color {
    background-color: #fffdf9;
    border-top: 4px solid #555d66;
    border-bottom: 4px solid #555d66;
}

.wp-block-pullquote.is-style-solid-color blockquote {
    color: #373833;
}

.blocks-gallery-grid .blocks-gallery-image figcaption, .blocks-gallery-grid .blocks-gallery-item figcaption, .wp-block-gallery .blocks-gallery-image figcaption, .wp-block-gallery .blocks-gallery-item figcaption {
    background: linear-gradient(0deg, rgba(0, 0, 0, .7), rgba(0, 0, 0, .3) 70%, transparent);
    font-style: italic;
    font-weight: normal;
    font-size: 13px;
    line-height: 18px;
    text-align: center;
    padding: 0 8px 8px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.wp-block-code > code {
    border: none;
}

.blocks-gallery-grid.is-cropped .blocks-gallery-image a, .blocks-gallery-grid.is-cropped .blocks-gallery-image img, .blocks-gallery-grid.is-cropped .blocks-gallery-item a, .blocks-gallery-grid.is-cropped .blocks-gallery-item img, .wp-block-gallery.is-cropped .blocks-gallery-image a, .wp-block-gallery.is-cropped .blocks-gallery-image img, .wp-block-gallery.is-cropped .blocks-gallery-item a, .wp-block-gallery.is-cropped .blocks-gallery-item img {
    border-radius: 0;
}

.wp-block-image img {
    border-radius: 0;
}

.wp-block-code {
    font-size: 14px;
    color: #373833;
    padding: .8em 1em;
    border: 1px solid #eee;
    border-radius: 4px;
    background: #eee;
    border-radius: 8px;
    padding: 64px;
    margin-left: calc(55% - 25vw);
    margin-right: calc(55% - 25vw);
    max-width: initial;
}

pre {
    border-radius: 4px;
    margin-top: 10px;
}

.wp-block-columns.alignfull {
    padding: 0 15px;
}

.xoopic-with-sidebar .wp-block-code {
    margin-left: 0;
    margin-right: 0;
}

.xoopic-with-sidebar .wp-block-quote.is-large, .xoopic-with-sidebar .wp-block-quote.is-style-large {
    margin-left: 0;
    margin-right: 0;
}

.xoopic-with-sidebar.right .alignfull {
    margin-right: 0;
}

.xoopic-with-sidebar.left .alignfull {
    margin-left: 0;
}

.wp-block-button {
    margin: 10px 0;
}

.wp-block-button__link {
    border-radius: 5px;
    background-color: #FD6050;
    margin-right: 10px;
}

.is-style-squared .wp-block-button__link {
    border-radius: 0;
}

.alignwide {
    margin-left: calc(-93vw / 2 + 100% / 2);
    margin-right: calc(-93vw / 2 + 100% / 2);
    max-width: 100vw;
}

.alignfull {
    position: relative;
    margin: 32px calc(50% - 50vw);
    max-width: 100vw;
    width: 100vw;
    clear: both;
    margin-top: 30px;
}


.wp-block-table {
    border-collapse: collapse;
}

.wp-block-table td, .wp-block-table th {
    padding: 1em;
    border: 1px solid;
    word-break: normal;
    border: 1px solid #222;
}

.wp-block-categories.wp-block-categories-list {
    font-size: 18px;
    line-height: 32px;
    font-weight: 600;
    list-style: none;
}

.wp-block-categories.wp-block-categories-list a {
    text-decoration: none;
}

.wp-block-latest-posts.wp-block-latest-posts__list li {
    clear: both;
    font-size: 18px;
    line-height: 32px;
    font-weight: 600;
    list-style: none;
    margin-bottom: 10px;
}

.wp-block-latest-posts.wp-block-latest-posts__list a {
    text-decoration: none;
}

.wp-block-cover, .wp-block-cover-image {
    height: auto;
}

.wp-block-archives {
    list-style: none;
    margin: 0;
    padding: 0;
}

.wp-block-archives li a {
    text-decoration: none;
}

.wp-block-calendar a {
    text-decoration: none;
}

.wp-block-latest-comments__comment-meta a {
    text-decoration: none;
}

.wp-block-rss {
    list-style: none;
    margin: 0;
    padding: 0;
}

.wp-block-latest-posts.is-grid li {
    border-top: 2px solid #2B2F3E;
    padding-top: 1rem;
    margin-bottom: 2rem;
}

.wp-block-latest-posts__post-author, .wp-block-latest-posts__post-date {
    font-size: 11px;
    color: #2B2F3E;
    line-height: 1.2;
    font-weight: 400;
}

.wp-block-tag-cloud a {
    text-decoration: none;
}

.wp-block-rss a {
    text-decoration: none;
}

.wp-block-calendar table th {
    font-weight: 400;
    background: var(--light-color);
}

.wp-block-calendar tbody td, .wp-block-calendar th {
    padding: 4px;
    border: 1px solid var(--light-color);
}

.wp-block-button.is-style-outline .wp-block-button__link {
    border-color: #373833;
    color: #373833 !important;
}

.gallery {
    display: flex;
    flex-wrap: wrap;
}

.gallery img {
    margin: 0 auto;
}

.wp-block-cover.has-background-dim.alignleft,
.wp-block-gallery.alignleft {
    margin-bottom: 20px;
    margin-right: 20px;
}

.wp-block-cover.has-background-dim p {
    font-size: 24px;
    line-height: 28px;
    color: #fff;
}

.alignwide {
    margin-top: 20px;
    margin-bottom: 20px;
}

.pagi-box-default {
    border: 1px solid #fff;
    background: #fff;
    display: inline-block;
    padding: 2px 12px !important;
    margin: 0 5px;
    font-size: 18px;
    line-height: 24px;
    border-radius: 3px;
}

.page-links {
    margin-top: 30px;
    width: 100%;
    float: left;
}

.current .pagi-box-default {
    border-color: #fd604f;
    background: #fd604f;
    color: #fff;
}

.pagi-box-default:hover {
    border-color: #E2E0F5;
    background: #E2E0F5;
    color: #fd604f;
}

.xoopic-post--main-content .wp-block-archives,
.wp-block-archives {
    margin-left: 0;
}

.wp-block-search .wp-block-search__input {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

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

    .el-blog-single-with-sidebar .alignwide {
        width: 100%;
        margin: 0;
    }

    .alignwide img,
    .alignfull img {
        display: block;
        margin: 0 auto;
        width: 100%;
    }

    .xoopic-with-sidebar .alignwide {
        margin-left: 0;
        margin-right: 0;
    }
}

.wp-block-embed-twitter.alignwide {
    margin-left: 0;
    margin-right: 0;
}

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

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

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

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

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

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

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

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

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

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

    /*rtl:ignore*/
    float: left;

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

.alignright {

    /*rtl:ignore*/
    float: right;

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

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

.el-blog-single-with-sidebar .alignfull {
    width: 100%;
    margin: 0;
}

.single-main-content-sidebar .alignfull {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
}


.wp-block-embed iframe {
    width: 100%;
    height: 80vh;
}

/* Blog Post */

.electio_default_blog.electio-post-grid-thumbnail {
    background: transparent;
    display: flex;
    align-items: center;
    margin: 0 0 32px 0;
}

.post-thumb-single .post-thumbnail {
    text-align: center;

}

.post-thumb-single .post-thumbnail img {
    max-width: 100%;
    border-radius: 8px;
    margin-bottom: 25px;
    width: 100%;

}

.wp-block-cover .wp-block-cover-text,
.wp-block-cover p:not(.has-text-color) {
    color: #fff;
    font-size: 36px;
    line-height: 1.4;
}

.wp-block-cover {
    margin-bottom: 24px;
}

.wp-block-button {
    line-height: 60px;
}

.wp-block-button__link {
    padding: 12px 25px;
}

.wp-block-button.alignleft .wp-block-button__link,
.wp-block-button.aligncenter .wp-block-button__link,
.wp-block-button.alignright .wp-block-button__link,
.wp-block-button.alignleft .wp-block-button__link {
    background: var(--main-color);
    font-size: 14px;
    line-height: 24px;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: bold;
}

.wp-block-button.is-style-outline .wp-block-button__link {
    border: 2px solid var(--main-color);
    color: var(--main-color);
    background: transparent;
    font-size: 14px;
    line-height: 24px;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: bold;
}

.wp-block-button.is-style-squared .wp-block-button__link {
    border-radius: 0px;
    background: var(--main-color);
    font-size: 14px;
    line-height: 24px;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: bold;
}

.wp-block-button .wp-block-button__link {
    border-radius: 5px;
    background: var(--main-color);
    font-size: 14px;
    line-height: 24px;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: bold;
}

.wp-block-search .wp-block-search__button {
    background: var(--main-color);
    border: 1px solid var(--main-color);
    padding: .375em .625em;
    color: #fffdf9;
    margin-left: 0;
    word-break: normal;
    border-radius: 0px 8px 8px 0;
    position: relative;
    font-size: 0;
}

.wp-block-search .wp-block-search__button:after {
    content: "\f002";
    font-family: "Font Awesome 6 Free";
    font-size: 18px;
    padding: 10px 20px;
    vertical-align: middle;
    font-weight: 900;
}

.wp-block-button.alignleft .wp-block-button__link:hover,
.wp-block-button.aligncenter .wp-block-button__link:hover,
.wp-block-button.alignright .wp-block-button__link:hover,
.wp-block-button.alignleft .wp-block-button__link:hover {
    background: #fb7b42;
}


.wp-block-button.is-style-outline .wp-block-button__link:hover {
    border: 2px solid #fb7b42;
    color: #fb7b42;
    background: transparent;
}

.wp-block-button.is-style-squared .wp-block-button__link:hover {
    background: #fb7b42;
}

.wp-block-button .wp-block-button__link:hover {
    background: #fb7b42;
    color: #fff;
}

blockquote {
    border-left: 2px solid var(--main-text-color);
    padding: 0 1em;
}

table {
    border-collapse: collapse;
    margin-bottom: 2rem;
    border: 1px solid var(--light-color);
}

table tr {
    border-bottom: 1px solid;
    border-bottom-color: var(--light-color);
}

tbody tr:nth-child(even) {
    border-bottom: 0;
    background-color: var(--light-color);
}

table thead th {
    background: var(--light-color);
}

table th, table td {
    box-sizing: border-box;
    border: 1px solid var(--light-color);
    padding-left: 10px;
    line-height: 36px;
    border: none;
}

table tr th, table tr td {
    padding: 0.9375rem 0;
    padding-left: 0.9375rem;
}

table tr th {
    text-align: left;
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
    font-weight: normal;
}

.wp-block-categories-dropdown.wp-block-categories select {
    width: 100%;
    padding: 7px;
    border: 1px solid var(--light-color);
}

a.read-more {
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 20px;
    color: var(--main-text-color);
    border-bottom: 1px solid var(--main-text-color);
}

ol.wp-block-latest-comments {
    padding-left: 0;
}

.wp-block-latest-comments__comment {
    line-height: 1.4;
}

.bredcrumb-separator {
    padding: 0 4px;
}

.bredcrumb-separator i {
    vertical-align: middle;
}

.widget .wp-block-search .wp-block-search__label {
    display: none;
}

.xpc-post-read-more-box {
    margin-top: 10px;
}

.tctz-default-thumbnail {
    position: relative;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.tctz-default-thm-blog {
    padding: 0;
    margin-bottom: 40px;
    width: 100%;
    float: left;
    background: #FFFFFF;
    box-shadow: 0px 4px 45px rgb(0 0 0 / 7%);
    border-radius: 8px;
}

.tetz-meta-padding-top {
    padding: 30px 20px;
    overflow: hidden;
}

.tctz-default-meta {
    padding: 30px 20px;
    overflow: hidden;
}

.tctz-default-meta h1 {
    color: var(--main-text-color);
    font-weight: 400;
    font-size: 34px;
    line-height: 1.4;
    margin: 0 0 15px;
    font-family: var(--alt-font-family);
}

.tctz-default-meta h1 a,
.post-meta ul li i,
.post-meta ul li span {
    color: var(--main-text-color);
}

.tctz-default-thumbnail img {
    width: 100%;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.post-meta {
    width: 100%;
    margin-top: 21px;
}

.electio-single-blog-header .post-meta {
    margin-top: 8px;
    display: flex;
    justify-content: center;
}

.post-meta ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.post-meta ul li {
    float: left;
    margin-right: 10px;
    font-size: 18px;
    vertical-align: middle;
}

.post-meta ul span {
    vertical-align: middle;
}

.tctz-post-excerpt {
    width: 100%;
    float: left;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.5;
    color: #2B2F3E;
}

.tctz-post-excerpt p {
    width: 100%;
    margin-bottom: 15px;
    color: var(--main-text-color);
    font-size: 18px;
    line-height: 1.5;
    margin-top: 6px;
    opacity: .85;
}

.read-more {
    vertical-align: middle;
    font-weight: bold;
    color: var(--main-text-color);
    transition: all .2s;
}

.read-more:hover {
    color: #FF9515;
    border-color: #FF9515;
}

.read-more i {
    vertical-align: middle;
}

.sticky-post-label {
    font-size: 18px;
    font-weight: 600;
    color: #FF9515;
    text-transform: uppercase;
    line-height: 24px;
    margin-top: 3px;
    display: block;
}

.post-meta ul li i,
.read-more i {
    color: var(--main-color);
}

.tctz-default-thumbnail {
    overflow: hidden;
    width: 100%;
}

.tctz-default-thumbnail img {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    transition: all 1s ease-out;
    transform: scale(1);

}

.tctz-default-thumbnail:hover img {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
}

.electio-single-post-breadcumb {
    display: flex;
    justify-content: center;
}

.electio-single-post-breadcumb .breadcrumb {
    font-size: 16px;
    margin-bottom: 5px;
}

.electio-single-post-breadcumb .breadcrumb,
.electio-single-post-breadcumb .breadcrumb a,
.electio-single-post-breadcumb .breadcrumb span {
    color: rgb(255 255 255 / 80%);
}

.electio-single-blog-header .electio-single-post-condensed-container {
    text-align: center;
}

.electio-blog-main-content,
.electio-single-post-content,
.electio-archive-main-content,
.electio-default-page-content {
    padding-top: 120px;
    padding-bottom: 80px;
}

/**************************************************************************************
                               3rd Party Codes
***************************************************************************************/


/**************************************************************************************
                                   Lity Begin
***************************************************************************************/
.lity {
    z-index: 9990;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    white-space: nowrap;
    background: #0b0b0b;
    background: rgba(0, 0, 0, 0.9);
    outline: none !important;
    opacity: 0;
    -webkit-transition: opacity 0.3s ease;
    -o-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
}

.lity.lity-opened {
    opacity: 1;
}

.lity.lity-closed {
    opacity: 0;
}

.lity * {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.lity-wrap {
    z-index: 9990;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    text-align: center;
    outline: none !important;
}

.lity-wrap:before {
    content: '';
    display: inline-block;
    height: 100%;
    vertical-align: middle;
    margin-right: -0.25em;
}

.lity-loader {
    z-index: 9991;
    color: #fff;
    position: absolute;
    top: 50%;
    margin-top: -0.8em;
    width: 100%;
    text-align: center;
    font-size: 14px;
    font-family: Arial, Helvetica, sans-serif;
    opacity: 0;
    -webkit-transition: opacity 0.3s ease;
    -o-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
}

.lity-loading .lity-loader {
    opacity: 1;
}

.lity-container {
    z-index: 9992;
    position: relative;
    text-align: left;
    vertical-align: middle;
    display: inline-block;
    white-space: normal;
    max-width: 100%;
    max-height: 100%;
    outline: none !important;
}

.lity-content {
    z-index: 9993;
    width: 100%;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    -o-transition: -o-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease, -o-transform 0.3s ease;
}

.lity-loading .lity-content,
.lity-closed .lity-content {
    -webkit-transform: scale(0.8);
    -ms-transform: scale(0.8);
    -o-transform: scale(0.8);
    transform: scale(0.8);
}

.lity-content:after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    display: block;
    right: 0;
    width: auto;
    height: auto;
    z-index: -1;
    -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
}

.lity-close {
    z-index: 9994;
    width: 35px;
    height: 35px;
    position: fixed;
    right: 0;
    top: 0;
    -webkit-appearance: none;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    padding: 0;
    color: #fff;
    font-style: normal;
    font-size: 35px;
    font-family: Arial, Baskerville, monospace;
    line-height: 35px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
    border: 0;
    background: none !important;
    border: none !important;
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.lity-close::-moz-focus-inner {
    border: 0;
    padding: 0;
}

.lity-close:hover,
.lity-close:focus,
.lity-close:active,
.lity-close:visited {
    text-decoration: none;
    text-align: center;
    padding: 0;
    color: #fff;
    font-style: normal;
    font-size: 35px;
    font-family: Arial, Baskerville, monospace;
    line-height: 35px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
    border: 0;
    background: none;
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.lity-close:active {
    top: 1px;
}

/* Image */
.lity-image img {
    max-width: 100%;
    display: block;
    line-height: 0;
    border: 0;
}

/* iFrame */
.lity-iframe .lity-container,
.lity-youtube .lity-container,
.lity-vimeo .lity-container,
.lity-facebookvideo .lity-container,
.lity-googlemaps .lity-container {
    width: 100%;
    max-width: 964px;
}

.lity-iframe-container {
    width: 100%;
    height: 0;
    padding-top: 56.25%;
    overflow: auto;
    pointer-events: auto;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-overflow-scrolling: touch;
}

.lity-iframe-container iframe {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    background: #000;
}

.lity-hide {
    display: none;
}

@media screen and (max-width: 990px) {
    .banner1-image {
        padding-top: 34px !important;
    }
}

h2.portfolio-single-title {
    font-weight: 400;
    font-size: 34px;
    line-height: 140%;
    color: #2B2F3E;
    margin-bottom: 15px;
    margin-top: 8px;
}

.portfolio-img a img {
    width: 100%;
    border-radius: 8px 8px 0px 0px;
}

.col-width {
    width: 100% !important;
}

@media (min-width: 768px) {
    .col-width {
        width: 50% !important;
    }
}

@media (min-width: 992px) {
    .col-width {
        width: 33.33333% !important;
    }
}

.widget.electio-custom-block {
    background: #4cd080;
}

.widget.electio-custom-block h2.widget-title {
    color: #ffffff;
}

.widget.electio-custom-block h2.widget-title:before {
    background: #ffffff;
}

.widget.electio-custom-block h2.widget-title:after {
    background: #F0F1F5;
    opacity: 0.2;
}

.wpcf7-form-control {
    margin-top: 0px !important;
    margin-bottom: 16px !important;
}

.dr-appointment-form input,
.dr-appointment-form .wpcf7-form-control {
    margin-bottom: 0px !important;
}

.dr-appointment-form .inputicon {
    position: relative;
}

.dr-appointment-form .inputicon i {
    position: absolute;
    right: 22px;
    top: 18px;
}

.dr-appointment-form select {
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: linear-gradient(45deg, transparent 50%, gray 50%),
    linear-gradient(135deg, gray 50%, transparent 50%);
    background-position: calc(100% - 30px) calc(1em + 12px),
    calc(100% - 25px) calc(1em + 12px);
    background-size: 5px 5px, 5px 5px;
    background-repeat: no-repeat;
}

.apinputicon select {
    width: 100%;
}

.dr-appointment-form input[type="submit"] {
    font-weight: 700;
    font-size: 18px;
    line-height: 150%;
    text-align: center;
    color: #ffffff;
}

/**************************************************************************************
                                   Nice Select
***************************************************************************************/


.nice-select {
    -webkit-tap-highlight-color: transparent;
    background-color: #fff;
    border-radius: 0px;
    border: solid 1px #e8e8e8;
    box-sizing: border-box;
    clear: both;
    cursor: pointer;
    display: block;
    float: left;
    font-family: inherit;
    font-size: 16px;
    font-weight: normal;
    height: 42px;
    line-height: 40px;
    outline: none;
    padding-left: 18px;
    padding-right: 30px;
    position: relative;
    text-align: left !important;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    white-space: nowrap;
    width: auto;
}

.nice-select:hover {
    border-color: #dbdbdb;
}

.nice-select:active, .nice-select.open, .nice-select:focus {
    border-color: #999;
}

.nice-select:after {
    content: '\ef7e' !important;
    font-family: "icomoon" !important;
    display: block;
    height: 5px;
    margin-top: -4px;
    pointer-events: none;
    position: absolute;
    right: 12px;
    top:11%;
    -webkit-transition: all 0.15s ease-in-out;
    transition: all 0.15s ease-in-out;
    width: 5px;
        font-size: 14px;
}



.nice-select.open .list {
    z-index: 999;
    opacity: 1;
    pointer-events: auto;
    -webkit-transform: scale(1) translateY(0);
    -ms-transform: scale(1) translateY(0);
    transform: scale(1) translateY(0);
}

.nice-select.disabled {
    border-color: #ededed;
    color: #999;
    pointer-events: none;
}

.nice-select.disabled:after {
    border-color: #cccccc;
}

.nice-select.wide {
    width: 100%;
}

.nice-select.wide .list {
    left: 0 !important;
    right: 0 !important;
}

.nice-select.right {
    float: right;
}

.nice-select.right .list {
    left: auto;
    right: 0;
}

.nice-select.small {
    font-size: 12px;
    height: 36px;
    line-height: 34px;
}

.nice-select.small:after {
    height: 4px;
    width: 4px;
}

.nice-select.small .option {
    line-height: 34px;
    min-height: 34px;
}

.nice-select .list {
    border-radius: 6px;
    border: 1px solid #F0F1F5;
    margin: 0;
    background-color: #fff;
    box-shadow: 0 0 0 1px rgba(68, 68, 68, 0.11);
    box-sizing: border-box;
    margin-top: 4px;
    opacity: 0;
    overflow: hidden;
    padding: 0;
    pointer-events: none;
    position: absolute;
    top: 100%;
    left: 0;
    -webkit-transform-origin: 50% 0;
    -ms-transform-origin: 50% 0;
    transform-origin: 50% 0;
    -webkit-transform: scale(0.75) translateY(-21px);
    -ms-transform: scale(0.75) translateY(-21px);
    transform: scale(0.75) translateY(-21px);
    -webkit-transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
    transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
    z-index: 20;
}

.nice-select .list:hover .option:not(:hover) {
    background-color: transparent !important;
}

.nice-select .option {
    cursor: pointer;
    font-weight: 400;
    line-height: 40px;
    list-style: none;
    min-height: 40px;
    outline: none;
    padding-left: 18px;
    padding-right: 29px;
    text-align: left;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
}

.nice-select .option:hover, .nice-select .option.focus, .nice-select .option.selected.focus {
    background-color: #F0F1F5;
}



.nice-select .option.disabled {
    background-color: transparent;
    color: #999;
    cursor: default;
}

.no-csspointerevents .nice-select .list {
    display: none;
}

.no-csspointerevents .nice-select.open .list {
    display: block;
}

.tooltip {
    position: absolute;
    top: calc(100% + 0.6495rem);
    z-index: 1200;
    max-width: 10rem;
    padding: 0.75rem;
    border-radius: 0;
    background-color: #0a0a0a;
    font-size: 80%;
    color: #fefefe;
}

.tooltip::before {
    position: absolute;
}

.tooltip.bottom::before {
    display: block;
    width: 0;
    height: 0;
    border: inset 0.75rem;
    content: '';
    border-top-width: 0;
    border-bottom-style: solid;
    border-color: transparent transparent #0a0a0a;
    bottom: 100%;
}

.tooltip.bottom.align-center::before {
    left: 50%;
    transform: translateX(-50%);
}

.tooltip.top::before {
    display: block;
    width: 0;
    height: 0;
    border: inset 0.75rem;
    content: '';
    border-bottom-width: 0;
    border-top-style: solid;
    border-color: #0a0a0a transparent transparent;
    top: 100%;
    bottom: auto;
}

.tooltip.top.align-center::before {
    left: 50%;
    transform: translateX(-50%);
}

.tooltip.left::before {
    display: block;
    width: 0;
    height: 0;
    border: inset 0.75rem;
    content: '';
    border-right-width: 0;
    border-left-style: solid;
    border-color: transparent transparent transparent #0a0a0a;
    left: 100%;
}

.tooltip.left.align-center::before {
    bottom: auto;
    top: 50%;
    transform: translateY(-50%);
}

.tooltip.right::before {
    display: block;
    width: 0;
    height: 0;
    border: inset 0.75rem;
    content: '';
    border-left-width: 0;
    border-right-style: solid;
    border-color: transparent #0a0a0a transparent transparent;
    right: 100%;
    left: auto;
}

.tooltip.right.align-center::before {
    bottom: auto;
    top: 50%;
    transform: translateY(-50%);
}

.tooltip.align-top::before {
    bottom: auto;
    top: 10%;
}

.tooltip.align-bottom::before {
    bottom: 10%;
    top: auto;
}

.tooltip.align-left::before {
    left: 10%;
    right: auto;
}

.tooltip.align-right::before {
    left: auto;
    right: 10%;
}


.trending-products-sport .tooltip.left {
    top: auto !important;
    right: -40% !important;
    bottom: -34px;
}

.trending-products-sport .tooltip.left::before {
    display: block;
    width: 0;
    height: 0;
    border: inset 0.45rem !important;
    content: '';
    border-top-width: 0 !important;
    border-bottom-style: solid !important;
    border-color: transparent transparent #0a0a0a !important;
    bottom: 100%;
    top: auto !important;
}

.trending-products-sport .tooltip.left::before {
    left: 50% !important;
    transform: translateX(-50%) !important;
}

.custom-list-item-x-p i {
    background: #292929;
    text-align: center;
    width: 30px !important;
    height: 30px;
    line-height: 30px;
    border-radius: 50%;

}

.custom-list-item-x-p i:hover {
    background: #FF9515;
    color: #fff;
}

.grocery-fotter-list-item-x-p i {
    color: #fff !important;
    background: #2D6154;
    width: 30px !important;
    height: 30px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.grocery-fotter-list-item-x-p i:hover {
    background: #05A845;
}

.text-border-slider .slider-content h1 {
    -webkit-text-stroke: 2px #FFFFFF;
    text-stroke: 2px #FFFFFF;
}

.trending-products-sport .product-content h4 {
    text-align: left;
    margin: 0;
}

#alg_currency_selector #alg_currency_select {
    background: transparent;
    border: none;
    min-height: auto;
    padding: 0;
    color: #fff;
    font-size: 14px;
}

.nice-select.alg_currency_select {
    height: auto;
    line-height: 14px;
    background: transparent;
    border: transparent;
    color: #fff;
    padding: 0;
}

#alg_currency_selector .nice-select .list {
    background: var(--main-text-color);
}

#alg_currency_selector .nice-select .list li {
    color: #fff;
}

#alg_currency_selector .nice-select .option:hover, #alg_currency_selector .nice-select .option.focus, #alg_currency_selector .nice-select .option.selected.focus {
    background: var(--main-text-color);
}


/*============================================
                Menu CSS
 =========================================*/
#electiomenu {
    padding: 0;
    margin: 0;
    border: 0;
    width: auto;
    display: flex;
}

#electiomenu ul,
#electiomenu li {
    list-style: none;
    margin: 0;
    padding: 0;
}

#electiomenu ul {
    position: relative;
    z-index: 597;
}

.electio-default-header #electiomenu > ul > li {
    line-height: 80px;
    height: 80px;
    display: flex;
    align-items: center
}

#electiomenu ul li {
    float: left;
    min-height: 1px;
    vertical-align: middle;
    position: relative;
}

#electiomenu ul li.hover,
#electiomenu ul li:hover {
    position: relative;
    z-index: 599;
    cursor: default;
}

#electiomenu ul ul {
    visibility: hidden;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 598;
    width: 100%;
    border-radius: 6px;
}

#electiomenu ul ul li {
    float: none;
    background: #fff;

}

#electiomenu ul ul ul {
    top: -35%;
    left: 200px;
    width: 200px;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    transform: translateX(0);
}

#electiomenu ul li:hover > ul {
    visibility: visible;
}

#electiomenu ul ul {
    bottom: 0;
    left: 0;
}

#electiomenu ul ul {
    margin-top: 0;
}

#electiomenu ul ul li {
    font-weight: normal;
}

#electiomenu a {
    display: block;
    line-height: 1em;
    text-decoration: none;
}

/* Custom CSS Styles */
#electiomenu {
    font-size: 1rem;
}

#electiomenu > ul.emerce-main-nav {
    display: flex;
    flex-wrap: wrap;
}

#electiomenu:after,
#electiomenu ul:after {
    content: '';
    display: block;
    clear: both;
}

#electiomenu ul ul {
    text-transform: none;
    min-width: 200px;
    background: #ffffff;
    -webkit-box-shadow: 0 6px 4px 0 rgba(10, 10, 25, .15);
    box-shadow: 0 6px 4px 0 rgba(10, 10, 25, .15);
    height: fit-content;
    left: 0;
    -webkit-transition: margin 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), -webkit-transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: margin 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), -webkit-transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: margin 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: margin 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), -webkit-transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    transform: translateY(30px);
    padding: 14px 0;
}

#electiomenu ul li:hover > ul {
    visibility: visible;
    transform: translateY(0);
}

#electiomenu ul ul a {
    color: var(--main-text-color);
    padding: 18px;
    font-size: 18px;
    line-height: 1.5rem;
    padding: 7.5px 20px;
    font-weight: 500;
}

#electiomenu ul ul ul {
    border-top: 0 none;
}

#electiomenu ul ul li {
    position: relative;
}

#electiomenu ul ul li:hover > a {
    color: var(--main-color);

}


#electiomenu ul ul li.has-sub > a:after {
    font-family: 'icomoon';
    content: '\ef5d';
    position: absolute;
    top: 50%;
    right: 15px;
    margin-top: -12px;
    vertical-align: middle;
    font-weight: 200;
}

.footer-list-items li a:before {
    font-family: 'iconly';
    content: '\e90d';
    position: absolute;
    top: 0;
    left: 0;
    vertical-align: middle;
    font-weight: 200;
}

.footer-list-items li a {
    padding-left: 20px;
    position: relative;
}

#electiomenu ul li.active > a {

}

#electiomenu ul li.has-sub > a:after {
    font-family: 'icomoon';
    content: '\ef5d';
    margin-left: 5px;
    vertical-align: middle;
    font-weight: 200;
}


#electiomenu ul li.last ul {
    left: auto;
    right: 0;
}

#electiomenu ul li.last ul ul {
    left: auto;
    right: 99.5%;
}

#electiomenu a {
    color: #fff;
    padding: 5px 15.5px;
}

#electiomenu > ul > li > a {

    font-size: 20px;
    line-height: 1.75;
    font-weight: 500;
    transition: all .3s;
}

#electiomenu > ul > li > a:hover {
    color: #FF9515;
}

#electiomenu ul > li > a:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 25px;
    opacity: 0;
    width: 100%;
    height: 10px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    background: url(../images/menu-orange.svg) no-repeat scroll center center / auto;
}

#electiomenu ul > li.current_page_item > a:before {
    opacity: 1;
}

#electiomenu ul > li:hover > a:before {
    bottom: 15px;
    opacity: 1;
}

#electiomenu ul ul li a:before {
    display: none;
}

#electiomenu li a i {
    padding-right: 10px;
}

#electiomenu li a .xpc-menu-img {
    display: inline-block;
    max-width: 30px;
}

.electio-def-header-container {
    width: 100%;
    margin: 0 auto;
    height: 100%;

}

.electio-def-header-container .row {
    border-bottom: 1px solid rgb(255 255 255 / 11%);
    height: 100%;
}

.electio-default-header {
    padding: 0 15px;
}

/*============================================
                 Mega Menu CSS
 =========================================*/

.xpc-menu-box {
    display: -webkit-box;
    display: flex;
    height: auto;
    padding: 0;
}

.xpc-menu-box .xpc-menu-box-inner {
    padding: 5px;
}

.xpc-menu-box .xpc-menu-box-inner img {
    height: 100% !important
}

.xpc-menu-box .xpc-intro-img {
    z-index: 1 !important;
    -o-object-fit: fill;
    object-fit: fill;
    height: 100%
}

.xpc-menu-box .xpc-intro-img img {
    -o-object-fit: fill;
    object-fit: fill
}

.xpc-menu-box .xpc-box-title {
    z-index: 1000 !important;
    max-width: 200px;
    padding-right: 10px
}

.xpc-menu-box .xpc-box-text {
    z-index: 1000 !important;
    max-width: 200px;
    margin-right: 20px
}

.xpc-menu-box .xpc-box-link {
    z-index: 1000 !important;
    padding-left: 0px !important
}

.xpc-menu-box .xpc-box-link i.xpcicon-angle-right {
    position: relative;
    top: 1px
}

.col-lg-2 .xpc-menu-box.xpc-menu-full-height,
.col-lg-3 .xpc-menu-box.xpc-menu-full-height,
.col-lg-4 .xpc-menu-box.xpc-menu-full-height,
.col-lg-6 .xpc-menu-box.xpc-menu-full-height {
    height: 100%
}

.col-lg-2 .xpc-menu-box .xpc-box-container,
.col-lg-3 .xpc-menu-box .xpc-box-container,
.col-lg-4 .xpc-menu-box .xpc-box-container,
.col-lg-6 .xpc-menu-box .xpc-box-container {
    display: inline-block !important;
    position: relative;
    z-index: 1000 !important;
    width: 100%
}

.col-lg-2 .xpc-menu-box .xpc-box-container .xpc-box-title,
.col-lg-3 .xpc-menu-box .xpc-box-container .xpc-box-title,
.col-lg-4 .xpc-menu-box .xpc-box-container .xpc-box-title,
.col-lg-6 .xpc-menu-box .xpc-box-container .xpc-box-title {
    z-index: 1000 !important;
    width: 100%
}

.col-lg-2 .xpc-menu-box .xpc-box-container .xpc-box-text,
.col-lg-3 .xpc-menu-box .xpc-box-container .xpc-box-text,
.col-lg-4 .xpc-menu-box .xpc-box-container .xpc-box-text,
.col-lg-6 .xpc-menu-box .xpc-box-container .xpc-box-text {
    z-index: 1000 !important;
    display: block;
    width: 100%;
    margin-right: 20px
}

.col-lg-2 .xpc-menu-box .xpc-box-container .xpc-box-link,
.col-lg-3 .xpc-menu-box .xpc-box-container .xpc-box-link,
.col-lg-4 .xpc-menu-box .xpc-box-container .xpc-box-link,
.col-lg-6 .xpc-menu-box .xpc-box-container .xpc-box-link {
    z-index: 1000 !important;
    display: inline-block;
    padding-left: 0px !important
}

.xpc-p-box {
    padding: 0;
}

.submenu-box.xpc-default-menu {
    padding: 5px 0;
}

.nav-style-megamenu > li.nav-item {
    margin-bottom: 0 !important;
}

.navbar .dropdown .dropdown-menu {
    display: block !important;
    visibility: hidden;
    overflow: hidden;
    height: 0;
    transition: opacity 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    min-width: 240px;
}

.nav-style-megamenu > li.nav-item .dropdown-menu .dropdown-item {
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.nav-style-megamenu > li.nav-item .dropdown-menu .dropdown-item:hover {
    color: var(--secondary-color);
    background: transparent;
}
.nav-style-megamenu>li.nav-item .dropdown-menu .dropdown-item span {
    position: relative;
}
.nav-style-megamenu>li.nav-item .dropdown-menu .dropdown-item span:after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0px;
    height: 2px;
    background: var(--blue-color);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}


.nav-style-megamenu > li.nav-item .dropdown-menu .dropdown-item:hover span:after {
    opacity: 1;
    width: 20px;
    visibility: visible;
}



.electio-menu-btn-ex a {
    display: inline-block;
    width: auto !important;
}

@media (min-width: 992px) {
    
   
    .dropdown-menu {
        padding: 0px
    }

    .navbar .dropdown .dropdown-menu .dropdown .submenu-box.xpc-default-menu {
        margin-top: 0;
    }

    .navbar .dropdown:hover > .dropdown-menu .dropdown:hover > .dropdown-menu,
    .navbar .dropdown:hover > .dropdown-menu .dropdown > .dropdown-menu:hover,
    .navbar .dropdown > .dropdown-menu:hover .dropdown:hover > .dropdown-menu,
    .navbar .dropdown > .dropdown-menu:hover .dropdown > .dropdown-menu:hover {
        top: 0;
        visibility: visible !important;
        left: 100%;
        padding-left: 10px;
        margin-top: 0;
    }

    .nav-item:not(.mega-item) .container *:first-child {
        border-radius: 0px
    }

    .electio-m-menu .nav-style-megamenu > li.nav-item {
        position: relative
    }

    .electio-m-menu .nav-style-megamenu > li.nav-item .dropdown-menu {
        top: 88%
    }

    .electio-m-menu .submenu-box {
        -webkit-transition: margin 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), -webkit-transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
        transition: margin 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), -webkit-transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
        transition: margin 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
        transition: margin 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), -webkit-transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    }

    .electio-m-menu .nav-style-megamenu > li.nav-item .dropdown-menu .submenu-box {
        -webkit-transform: translateY(40px);
        transform: translateY(40px);
        border-radius: 0;
        opacity: 0;
        border: 0px solid rgba(0, 0, 0, 0);
        margin-top: 14px;
            background: var(--white-color);
    -webkit-box-shadow: 4px 4px 20px rgba(0, 0, 0, 0.25);
    box-shadow: 4px 4px 20px rgba(0, 0, 0, 0.25);
    }

    .electio-m-menu .nav-style-megamenu > li.nav-item:hover .dropdown-menu .submenu-box {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
        opacity: 1;
        padding:12px 0;
    }

    .electio-m-menu .nav-style-megamenu > li.nav-item .dropdown-menu .submenu-box .container,
    .electio-m-menu .nav-style-megamenu > li.nav-item .dropdown-menu .submenu-box .container-fluid {
        border-radius: 0px;
        padding: 0px 15px 0 15px
    }

    .electio-m-menu .nav-style-megamenu > li.nav-item .dropdown-menu .submenu-box .container .row,
    .electio-m-menu .nav-style-megamenu > li.nav-item .dropdown-menu .submenu-box .container-fluid .row {
        margin: 0px
    }

    .electio-m-menu .nav-style-megamenu > li.nav-item .dropdown-menu .submenu-box .container {
        max-width: 100%;
    }

    .nav-style-megamenu > li.nav-item {
        position: relative;
        padding: 0px 0px;
    }

    .nav-style-megamenu > li.nav-item .dropdown-menu {
        margin-top: 0px;
        opacity: 0;
        -webkit-transition: opacity 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        transition: opacity 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        min-width: 240px;
        border: none;
    }

    .nav-style-megamenu > li.nav-item .dropdown-menu a:active:focus {
        background: rgba(0, 0, 0, 0.1)
    }

    .nav-style-megamenu > li.nav-item .dropdown-menu .dropdown-item {
        padding: 8px 20px;
        font-size: 16px;
        font-weight: 400;
    }

    .nav-style-megamenu > li.nav-item .dropdown-menu .container,
    .nav-style-megamenu > li.nav-item .dropdown-menu .container-fluid {
        margin: 0 !important;
        padding: 0 !important
    }

    .nav-style-megamenu > li.nav-item.mega-item {
        position: inherit;
    }

    .nav-style-megamenu > li.nav-item.mega-item .dropdown-menu {
        top: 78%;
    }
    .electio-vertical-nav-dropdown .nav-style-megamenu > li.nav-item.mega-item {
        position: inherit;
    }
    .electio-vertical-nav-dropdown .nav-style-megamenu > li.nav-item.mega-item .dropdown-menu {
        top: 0;
    }

    .nav-style-megamenu > li.nav-item .nav-link {
        position: relative;
    }

    .nav-style-megamenu > li.nav-item .nav-link:after {
        display: none;
    }

    .nav-style-megamenu > li.nav-item .nav-link span {
        position: relative;
    }


    .nav-style-megamenu > li.nav-item .dropdown-menu {
        width: 100%;
        max-width: 1200px;
        background: transparent;
        z-index: 999;
    }

    .nav-style-megamenu > li.nav-item .dropdown-menu.xpc-drop-big {
        padding: 0px;
        width: 100%;
    }

    .nav-style-megamenu > li.nav-item .dropdown-menu .submenu-box {
        background: #fff;
        -webkit-transform: translateY(58px);
        transform: translateY(58px);
        border-radius: 0px;
        opacity: 1;
        border: 0px solid rgba(0, 0, 0, 0);
        margin-top: 38px;
    }

    .nav-style-megamenu > li.nav-item .dropdown-menu .submenu-box .container,
    .nav-style-megamenu > li.nav-item .dropdown-menu .submenu-box .container-fluid {
        border-radius: 0px;
        padding: 0px 15px 0 15px
    }

    .nav-style-megamenu > li.nav-item .dropdown-menu .submenu-box .container .row,
    .nav-style-megamenu > li.nav-item .dropdown-menu .submenu-box .container-fluid .row {
        margin: 0px
    }

    .nav-style-megamenu > li.nav-item .dropdown-menu .submenu-box:after {
        content: "";
        position: absolute;
        border-radius: 0px;
        z-index: -1;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.05), 0 1.5rem 2.2rem rgba(0, 0, 0, 0.1) !important
    }

    .nav-style-megamenu > li.nav-item .dropdown-menu a {
        border-radius: 0;
        font-size: 18px;
        padding: 0px 15px 0 15px
    }

    .nav-style-megamenu > li.nav-item .dropdown-menu .electio-mg-col-title {
        padding: 0px 20px;
    }

    .nav-style-megamenu > li.nav-item .dropdown-menu h5.electio-mg-col-title {
        cursor: default;
        position: relative;
        font-size: 18px;
        font-weight: 700;
        margin-bottom: 22px;
        margin-bottom: 10px;
    }
    
      .nav-style-megamenu > li.nav-item .nav-link span{
         position:relative;
     }
    
    .electio-m-menu > ul > li.nav-item > .xpc-nav-link.dropdown-toggle > span .xpc-header-text::before {
    
}


.nav-style-megamenu > li.nav-item > .xpc-nav-link.dropdown-toggle > span:before{
   content: '\ef7e' !important;
    font-family: "icomoon" !important;
    position: absolute;
    right: -20px;
    top: 2px;
    -webkit-transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        font-size: 12px;
}




    .nav-style-megamenu > li.nav-item .container,
    .nav-style-megamenu > li.nav-item .container-fluid {
        padding: 0
    }

    .xpc-header-stack .navbar-nav > li > .dropdown-menu {
        margin-top: 5px
    }

    .xpc-header-stack .navbar-nav > li > .dropdown-menu .submenu-box {
        margin-top: 0 !important
    }

    .navbar .xpc-nav-active-line .nav-style-megamenu > li.nav-item.current-menu-item .nav-link span:after {
        -webkit-transform: scaleX(1);
        transform: scaleX(1);
        -webkit-transform-origin: left center;
        transform-origin: left center
    }

    .navbar .xpc-nav-global-active-line .nav-style-megamenu > li.nav-item.current-menu-item .nav-link span:after,
    .navbar .xpc-nav-global-active-line .nav-style-megamenu > li.nav-item.current-menu-ancestor .nav-link span:after {
        -webkit-transform: scaleX(1);
        transform: scaleX(1);
        -webkit-transform-origin: left center;
        transform-origin: left center
    }

    .navbar .dropdown:hover > .dropdown-menu, .navbar .dropdown > .dropdown-menu:hover {
        height: auto;
        visibility: visible;
        overflow: visible;
        opacity: 1;
    }

    .xpc-menu-line-right {
        border-right: 1px solid rgba(173, 181, 189, 0.15)
    }

    .xpc-menu-line-top {
        border-top: 1px solid rgba(173, 181, 189, 0.15)
    }

    .xpc-menu-line-right-top {
        border-right: 1px solid rgba(173, 181, 189, 0.15);
        border-top: 1px solid rgba(173, 181, 189, 0.15)
    }

    .xpc-menu-box .xpc-intro-img {
        z-index: 1 !important;
        -o-object-fit: cover !important;
        object-fit: cover !important;
        height: 100%
    }

    .xpc-menu-box .xpc-intro-img img {
        -o-object-fit: cover !important;
        object-fit: cover !important;
        z-index: 1 !important
    }

    .xpc-menu-box .xpc-box-container {
        z-index: 1000 !important
    }

    .xpc-menu-box .xpc-box-container .xpc-box-title {
        z-index: 1000 !important;
        width: 100%;
        display: block
    }

    .xpc-menu-box .xpc-box-container .xpc-box-text {
        z-index: 1000 !important;
        display: block;
        width: 100%
    }

    .xpc-box-light a.xpc-img-overlay {
        background: transparent !important;
        color: #fff !important;
    }

    .xpc-menu-box .xpc-box-title {
        font-size: 18px;
        font-weight: 600;
        line-height: 1.4;
    }

    .xpc-box-light span,
    .xpc-box-light .xpc-box-title {
        color: #fff;
    }

    .xpc-bg-image {
        position: absolute;
        -o-object-fit: cover;
        object-fit: cover;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%
    }

    .xpc-p-20 {
        padding: 20px;
    }

    .xpc-px-20 {
        padding-left: 20px;
        padding-right: 20px;
    }

    .xpc-pb-20 {
        padding-bottom: 20px;
    }

    .xpc-px-0,
    .xpc-px-0 .xpc-menu-box-inner {
        padding: 0 !important;
    }

    .xpc-px-0 .xpc-p-20 {
        padding: 0px !important;
    }
}

.xpc-nav-block-shortcode {
    width: 100%;
}

.xpc-menu-label {
    padding: 3px 5px;
    font-size: 12px;
    background-color: rgba(35, 162, 211, .09);
    color: #23a2d3;
    display: inline-block;
    line-height: 12px;
    margin: 0 5px;
    font-weight: bold;
}

.xpc-label-green {
    background-color: rgba(5, 168, 85, .07);
    color: #05a855;
}

.xpc-label-red {
    background-color: rgba(247, 10, 10, .07);
    color: #f70a0a;
}

.xpc-label-yellow {
    background-color: rgba(220, 213, 0, .07);
    color: #bcb704;
}

.xpc-label-black {
    background-color: rgba(32, 32, 29, .07);
    color: #20201d
}

.xpc-label-grey {
    background-color: rgba(144, 144, 144, .07);
    color: #7a7a7a;
}

.xpc-label-brown {
    background-color: rgba(220, 102, 0, .07);
    color: #dc6600;
}

.xpc-label-aqua {
    background-color: rgba(0, 255, 255, .07);
    color: #00b6b6;
}

.xpc-label-purple {
    background-color: rgba(128, 0, 128, .07);
    color: #800080;
}

.xpc-label-olive {
    background-color: rgba(128, 128, 0, .07);
    color: #808000;
}

.xpc-dropdown-padding {
    padding: 22px 20px;
}

.xpc-dropdown-padding-sm {
    padding: 5px;
}

.dm_comment_item .comment {
    padding: 12px 0;
}

.dm_comment_item:last-child {
    border-bottom: none;
}

.comment-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.comment-list li {
    list-style: none;
}

.comment-list li:marker {
    display: none;
}

.comment-list a {
    text-decoration: none;
}

.xoopic-atr-description p {
    font-size: 18px;
}

.comment-meta .dm_comment_author a, .comment-meta .dm_comment_author {
    font-weight: 600;
    font-size: 21px;
    line-height: 28px;
    color: var(--main-text-color);
    text-transform: capitalize;
    font-style: normal;
    width: 100%;
}

.comment-text p {
    font-size: 16px;
    font-weight: 300;

    line-height: 26px;
}

.comment-edit-link {

    font-size: 16px;
    color: rgb(0, 0, 0);
}

/*.comment-content{*/
/*    margin:15px 0;*/
/*}*/
.comment-awaiting-moderation {
    margin-bottom: 5px;
}

.comment-author.vcard {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

.comment-author.vcard img {
    height: 100%;
    margin-right: 24px;
    width: 60px;
    border-radius: 50%;
}

.comment-title-meta {
    flex: 1;
}

.comment-meta {
    border-bottom: 1px solid #E0E6EB;
    padding: 32px 0 30px 0;
    width: 100%;
    float: left;
}

.electio-comm-title {
    font-size: 34px;
    line-height: 47px;
}

.dm_comment-date {
    width: 100%;
    margin-top: 2px;
}

.comment-details {
    width: 100%;
}

.comment-content .comment-reply-link {
    position: relative;
    padding: 0 5px 0 20px;
    line-height: 18px;
}

.comments-area .comment-list .comment article.comment-body .comment-content .comment-reply a:before {
    position: absolute;
    left: 0;
    bottom: 1px;
    font-size: 18px;
    font-family: 'remixicon' !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\F078";
}

.comment-edit-link {
    position: relative;
    padding: 0 20px 0 5px;
    line-height: 18px;
}

/*.edit:after, .comment-edit-link:after {*/
/*    position: absolute;*/
/*    right: 0;*/
/*    bottom: 3px;*/
/*    font-size: 18px;*/
/*    font-family: 'Font Awesome 5 Free' !important;*/
/*    speak: none;*/
/*    font-style: normal;*/
/*    font-weight: normal;*/
/*    font-variant: normal;*/
/*    text-transform: none;*/
/*    line-height: 1;*/
/*    -webkit-font-smoothing: antialiased;*/
/*    -moz-osx-font-smoothing: grayscale;*/
/*    content: "\f064";*/
/*}*/
.comment-reply-title {
    padding-top: 35px;
    font-size: 34px;
    line-height: 1.5;
}

#cancel-comment-reply-link {
    font-size: 18px;
    margin: 0 12px;
    color: #FF9515;
}

.widget .wp-block-search__input {
    margin-bottom: 0;
}

.wpcf7-submit {
    width: 100%;
}

.archive-description {
    padding-top: 10px;
}

.comment-form-cookies-consent input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.comment-form-cookies-consent label {
    position: relative;
}

.comment-form-cookies-consent label:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: var(--light-color);
    border-radius: 8px;
}

.comment-form-cookies-consent input:checked ~ label:before {
    content: "\ecdf";
    font-family: 'icomoon';
    font-size: 25px;
    line-height: 1;
    color: #ff9515;
    background: #ffedd7;
}

/** BASIC SETUP START **/

.gridzy {
    display: block;
    will-change: width, height;
}

/* Hint for browsers to make animations even smoother */
.gridzy > .gridzyItem {
    will-change: left, top, width, height, opacity, transform;
}

/* Prevent initial visibility of items */
.gridzy > *:not(.gridzyItem) {
    visibility: hidden;
}

/* Fully visible state of items (transitions see below) */
.gridzyItemVisible {
}

/* Fully hidden state of items (transitions see below) */
.gridzyItemHidden {
    display: none;
}

/** BASIC SETUP END **/


/** SKIN SETUP START **/

/* Provides possibility to use semantic HTML without needing any skin, by using class "gridzyImage" */
.gridzy .gridzyImage {
    vertical-align: middle;
    width: 100%;
    height: 100%;
}

/** SKIN SETUP END **/


/** ANIMATION START  **/

/* transitions for several dynamic style changes */
.gridzyAnimated {
    height: 0;
    transition: height .4s;
}

.gridzyAnimated .gridzyItem {
    transition: all .4s;
}

/* Animation for appearing items on start of gallery */
.gridzyAnimated .gridzyItemInitialToVisible {
    animation-name: gridzyItemInitialToVisibleAnimation;
    animation-fill-mode: forwards;
    animation-duration: .4s;
}

@keyframes gridzyItemInitialToVisibleAnimation {
    0% {
        opacity: 0;
        transform: scale(.9);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Animation for appearing items while changing filter */
.gridzyAnimated .gridzyItemHiddenToVisible {
    animation-name: gridzyItemHiddenToVisibleAnimation;
    animation-fill-mode: forwards;
    animation-duration: .4s;
}

@keyframes gridzyItemHiddenToVisibleAnimation {
    0% {
        opacity: 0;
        transform: scale(.9);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Animation for disappearing items while changing filter */
.gridzyAnimated .gridzyItemVisibleToHidden {
    animation-name: gridzyItemVisibleToHiddenAnimation;
    animation-fill-mode: forwards;
    animation-duration: .4s;
}

@keyframes gridzyItemVisibleToHiddenAnimation {
    0% {
        opacity: 1;
        transform: scale(1);
    }

    100% {
        opacity: 0;
        transform: scale(.9);
    }
}

/* Here you can add an animation for items which stay visible while changing filter */
/*
.gridzyAnimated .gridzyItemVisibleToVisible {
	animation-name: gridzyItemVisibleToVisibleAnimation;
	animation-fill-mode: forwards;
	animation-duration: .4s;
}

@keyframes gridzyItemVisibleToVisibleAnimation {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}
*/

/** ANIMATION END  **/


/** PROGRESS INDICATOR START **/

.gridzyItem {
    opacity: 1;
}

.gridzyItemLoading {
    opacity: .3;
    box-shadow: inset 0 0 15px -5px #2B2F3E;
}

.gridzyItemLoading::before {
    content: " ";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 50px;
    height: 50px;
    margin: -25px 0 0 -25px;
    padding: 0;
    z-index: 1;
    opacity: 1;
    background: none;
    border: 2px solid;
    border-color: transparent transparent rgb(0, 0, 0) rgb(0, 0, 0);
    border-radius: 50%;
    outline: none;
    animation-duration: 1s;
    animation-name: gridzyProgressIndicator;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

.electio-common-paginav {
    width: 100%;
    margin: 40px 0;
    float: left;
    display: flex;
    justify-content: center;
}

.electio-common-paginav ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.electio-common-paginav ul li {
    float: left;
}

.electio-common-paginav ul li .page-numbers {
    font-size: 1.15rem;
    line-height: 1rem;
    display: flex;
    align-items: center;
    margin-right: 0;
    background: transparent;
    border: 1px solid #000;
    justify-content: center;
    font-family: 'Albert Sans';
    color: #000;
    opacity: 1;
    font-weight: 600;
}

.electio-common-paginav a i, .electio-common-paginav span i {
    vertical-align: middle;
}

.emerce-common-paginav a, .emerce-common-paginav span {
    padding: 0;
    color: var(--main-text-color);
}

.electio-common-paginav a {
    text-decoration: none;
}

.electio-common-paginav ul li .page-numbers:hover {
    color: #fff;
    opacity: 1;
}

.pagination ul li a:hover i {
    color: #fff;
}

.electio-common-paginav ul li .page-numbers i.current {
    opacity: 1;
    color: #fff;
    font-weight: 600;
}

.electio-single-post-content .post-title {
    opacity: 1;
    color: #ffffff;
    margin-right: 0;
    display: flex;
    justify-content: center;
}

.single-main-content-sidebar .alignwide {
    width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.med-single-content-mds {
    margin-bottom: 60px;
}

.electio-single-post-tag-bar {
    border-top: 1px solid #E0E6EB;
    border-bottom: 1px solid #E0E6EB;
    width: 100%;
    display: block;
    overflow: hidden;
    padding: 20px 0;
    margin-bottom: 30px;
}

.electio-tags-sgl ul {
    margin: 0 -5px;
    padding: 0;
    list-style: none;
}

.electio-tags-sgl ul li {
    float: left;
    margin: 5px;
}

.electio-tags-sgl ul li a {
    background: #F0F1F5;
    border-radius: 4px;
    color: #2B2F3E;
    padding: 3px 8px;
    font-size: 18px;
    transition: all .2s;
}

.electio-tags-sgl ul li a:hover {
    background: #FF9515;
    border-color: #FF9515;
    color: #fff;
}

.breadcrumb .active {
    color: #FF9515 !important;
}

.breadcrumb .bredcrumb-separator.active {
    color: #2B2F3E !important;
}

.electio-condensed-container {
    max-width: 1170px;
}

.electio-post-nav-ds img {
    max-width: 80px;
}

.electio-post-nav-ds h5 {
    margin-bottom: 0;
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
}

.electio-post-nav-ds a {
    background: #F0F1F5;
    border-radius: 8px;
    padding: 20px;
    margin: 10px 0;
    transition: all .2s;
}

.electio-post-nav-ds a:hover {
    background: #FFFFFF;
    box-shadow: 0px 15px 45px rgba(0, 0, 0, 0.07);
}

.electio-nav-text-sib {
    color: #FF9515;
}

.electio-post-nav-left img {
    margin-right: 15px;
    border-radius: 6px;
}

.electio-post-nav-right img {
    margin-left: 15px;
}

.electio-alt-404 {

    display: flex;
    align-items: center;
    padding: 50px 0 50px 0;
    height:100vh;
}

.page-title-404 {
    text-align: center;
    font-size: 48px;
    line-height: 1.4;
}

.page-content-404 {
    text-align: center;
}

.back-to-hm-btn {
    background: #FF543E;
    box-shadow: 0px 25px 35px rgba(42, 167, 255, 0.15);
    border-radius: 8px;
    padding: 15px 20px;
    height: 64px;
    color: #fff;
    display: inline-flex;
    align-items: center;
}

.page-title-404 {
    position: relative;
}

.back-to-hm-btn:visited {
    color: #fff;
}

.left-icon-404 {
    position: absolute;
    top: 7%;
    left: -10%;
}

.star-one-404 {
    position: absolute;
    left: 9%;
    top: 25%;
}

.star-two-404 {
    position: absolute;
    right: 22%;
    bottom: 14%;
}

.banner-btn svg {
    width: 1.185rem;
    height: 1.185rem;
}

.med-doctor-style-two {
    background: #FFFFFF;
    border: 1px solid #EDEFF2;
    box-sizing: border-box;
    box-shadow: 0px 25px 65px -10px rgba(0, 0, 0, 0.03);
    border-radius: 8px;
    padding: 0 30px 30px;
    text-align: center;
}

.swiper-slide-active .med-doctor-style-two {
    box-shadow: 0px 35px 75px -10px rgba(0, 0, 0, 0.1);
}

.med-doctor-style-two img {
    border-radius: 50% !important;
    margin-top: -20%;
}

.electio-team-block-d.swiper-slide {
    overflow: unset;
}

.style2-metabox-d h3 {
    font-weight: 400;
    font-size: 24px;
    line-height: 1.4;
    margin-bottom: 0;
    margin-top: 10px;
}

.social-item-stl-2 ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: inline-flex;

}

.social-item-stl-2 ul li {
    float: left;
    margin: 5px 10px;
}

.style-2social-box {
    justify-content: space-between;
    border-top: 1px solid #EDEFF2;
    padding: 20px 0px 0 0px;
    flex-wrap: wrap;
}

.social-item-stl-2 {
    border-right: 1px solid #EDEFF2;
}

.social-item-stl-2, .star-style-2ds {
    width: 48%;
}

.social-item-stl-2 span {
    color: #2B2F3E;
    font-weight: 600;
}

.star-style-2ds span.team-stl2-lebel {
    width: 100%;
    float: left;
    margin-bottom: 7px;
    color: #2B2F3E;
    font-weight: 600;
}

.med-stl-3-photo {
    background: #FFFFFF;
    box-shadow: 0px 15px 55px -10px rgb(0 0 0 / 9%);
    border-radius: 250px 250px 8px 8px;
    position: relative;
    padding: 10px;
    text-align: center;
}

.med-stl-3-photo-inner {
    background: linear-gradient(144.2deg, #FFCEC5 0%, #FF684C 100%);
    border-radius: 250px 250px 4px 4px;
    text-align: center;
    padding: 30px 0 0;
}

.med-stl-3-meta h3 {
    text-align: center;
    font-size: 24px;
    margin-top: 15px;
    margin-bottom: 0;
}

.med-stl-3-meta .best-medical-treatment-right-p {
    text-align: center;
    margin: 0;
    font-weight: 500;
}

.electio-team-block-d:nth-child(2n) .med-stl-3-photo-inner {
    background: linear-gradient(144.2deg, #E1F3FF 0%, #FF9515 100%);
}

.electio-team-block-d:nth-child(3n) .med-stl-3-photo-inner {
    background: linear-gradient(144.2deg, #C5F1D6 0%, #4CD080 100%);
}

.med-doctor-style-four {
    border-radius: 8px;
    position: relative;
    padding-bottom: 15px;
}

.med-dcotro-style-4-box {
    background: #F0F1F5;
    border-radius: 8px;
    padding: 20px;

}

.med-stl-4-photo-inner {
    text-align: center;
}

.med-stl-4-photo-inner img {
    border-radius: 8px !important;
}

.med-stl-4-meta {
    text-align: center;
}

.med-stl-4-meta h3 {
    text-align: center;
    font-size: 24px;
    margin-top: 15px;
    margin-bottom: 0;
}

.med-doctor-style-four:hover,
.med-doctor-style-four:hover .med-dcotro-style-4-box {
    background: #FF9515;
    position: relative;

}


.med-doctor-style-four:hover:after {
    content: "";
    background: url('../images/team-hover.svg') no-repeat center center/cover;
    width: 100%;
    height: 100%;
    z-index: 1;
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 8px !important;
    transition: all .2s;

}

.med-stl-4-meta .best-medical-treatment-right-p {
    text-align: center;
    margin: 0;
    font-weight: 500;
}

.med-stl-4-photo-inner,
.med-stl-4-meta {
    position: relative;
    z-index: 5;
}

.med-4social {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: center;
}

.med-4social li {
    padding: 5px;
}

.electio-team-block-d {
    margin-bottom: 24px;
}

.col-lg-6.swiper-slide {
    width: 100%;
}

.col-lg-4.swiper-slide {
    width: 100%;
}

.col-lg-3.swiper-slide {
    width: 100%;
}

.col-5m.swiper-slide {
    width: 100%;

}

.comment-reply-link {
    background: transparent !important;
}

.electio-site-search-wd .search-form input {
    outline: none;
    box-shadow: none;
}

.electio-site-search-wd .search-form input[type="submit"] {
    background: 0 0 !important;
    border: none;
    color: #FF9515;
    font-size: 0;
    font-weight: 300;
    width: 64px;
    height: 64px;
    z-index: 10;
    position: relative;
}

.electio-site-search-wd .sidebar-search #icon-addon {
    border: 1px solid #FF9515;
    background: #FF9515;
    color: #fff;
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
    width: 64px;
    height: 64px;
    position: relative;
}

.dm_sidebar_input_button:after {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    content: "\edbf";
    font-family: icomoon;
    font-size: 22px;
    line-height: 24px;
    color: #fff;
    color: #fff !important;
    padding-left: 0;
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
    font-weight: 200;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.medinic-addon-icons i {
    top: 50%;
    position: absolute;
    right: 20px;
    z-index: 10;
    font-size: 20px;
}

.form-select-mb-fix .medinic-addon-icons i {
    top: 22px;
}

.medinic-addon-icons input[type="text"] {
    background-image: none !important;
}

.price-table .price-value b {
    font-family: var(--alt-font-family);
}

.home-one-subscribe .hos-email {
    position: relative;
    flex: 1;
    margin-right: 16px;
}

.home-one-subscribe .hos-email i {
    position: absolute;
    left: 20px;
    top: 43%;
    z-index: 10;
    font-size: 20px;
}

.hos-email span input {
    padding-left: 11%;
}

.home-one-subscribe .wpcf7-form-control.wpcf7-submit {
    margin-bottom: 0 !important;
    height: 76px;
    min-width: 181px;
    text-align: center;
    display: flex;
    justify-content: center;
}

select {
    -webkit-appearance: none;
    -moz-appearance: none;
    background: transparent;
    background-image: url("data:image/svg+xml,%3Csvg width='16' height='10' viewBox='0 0 16 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M15 1.5L8 8.5L1 1.5' stroke='%2377829D' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position-x: 96%;
    background-position-y: 50%;
    border: 1px solid #dfdfdf;
    border-radius: 2px;
    margin-right: 2rem;
    padding: 1rem;
    padding-right: 2rem;
    vertical-align: middle;
}

.wpcf7-select,
.inner-addon .wpcf7-select,
.inner-addon select {
    webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='16' height='10' viewBox='0 0 16 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M15 1.5L8 8.5L1 1.5' stroke='%2377829D' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position-x: 96%;
    background-position-y: 50%;
}

::-webkit-calendar-picker-indicator {
    opacity: 1;
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='22' viewBox='0 0 20 22' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.09264 8.40421H18.9166' stroke='%2377829D' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M14.4421 12.3097H14.4513' stroke='%2377829D' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M10.0046 12.3097H10.0139' stroke='%2377829D' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M5.55789 12.3097H5.56715' stroke='%2377829D' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M14.4421 16.1962H14.4513' stroke='%2377829D' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M10.0046 16.1962H10.0139' stroke='%2377829D' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M5.55789 16.1962H5.56715' stroke='%2377829D' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M14.0437 1V4.29078' stroke='%2377829D' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M5.9655 1V4.29078' stroke='%2377829D' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M14.2383 2.5791H5.77096C2.83427 2.5791 1 4.21504 1 7.22213V16.2718C1 19.3261 2.83427 20.9999 5.77096 20.9999H14.229C17.175 20.9999 19 19.3545 19 16.3474V7.22213C19.0092 4.21504 17.1842 2.5791 14.2383 2.5791Z' stroke='%2377829D' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    width: 18px;
    height: 20px;
    cursor: pointer;
    border-radius: 50%;
    margin-left: .5rem;
}

::-webkit-calendar-picker-indicator:hover {
    -webkit-box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.04);
    box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.04);
}

@keyframes gridzyProgressIndicator {
    0% {
        transform: rotate(0deg);
        left: 50%;
    }
    100% {
        transform: rotate(360deg);
        left: 50%;
    }
}

/** Coming SOON / Maintenance **/

.electio-mainteannce-box {
    width: 100vw;
    height: 100vh;
    position: relative;
}

.electio-mainteannce-box.moverlay:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
}

.electio-maintenance-style1 .mm-main-box {
    max-width: 770px;
    margin: 0 auto;
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    text-align: center;
}

.electio-maintenance-style1 .mm-main-box h1 {
    font-size: 48px;
    margin-top: 30px;
}

.electio-mainteannce-box .container {
    position: relative;
    z-index: 10;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.electio_countdown {
    font-size: 0;
}

.electio_countdown time {
    font-size: 16px;
}

.electio-maintenance-style1 .electio-count-item {

    width: 120px;
    height: 120px;
    background: #4CD080;
    color: #fff;
    font-size: 48px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 12px;
    font-family: var(--alt-font-family);
    box-shadow: 0px 15px 35px rgba(0, 0, 0, 0.04);

}

.electio-maintenance-style1 .emerce-count-value .label {
    font-size: 18px;
    display: block;
    font-family: var(--default-font-family);
}

.stoneic1 {
    max-width: 75px;
    position: absolute;
    left: -10%;
    top: 10%;
}

.stoneic2 {
    max-width: 255px;
    position: absolute;
    right: -10%;
    top: 10%;
}

.stoneic3 {
    max-width: 86px;
    position: absolute;
    left: -8%;
    bottom: -21%;
}

.stone2ic1 {
    max-width: 100px;
    position: absolute;
    left: -38%;
    top: -15%;
}

.stone2ic2 {
    max-width: 140px;
    position: absolute;
    right: -48%;
    top: -35%;
}

.stone2ic3 {
    max-width: 70px;
    position: absolute;
    left: -40%;
    bottom: -35%;
}

.stone2ic4 {
    max-width: 105px;
    position: absolute;
    right: 30%;
    bottom: -40%;
}


/* Electio custom code */
.breadcrumb-section .breadcrumb {
    font-size: 16px;

}

.card-content h4 {

    font-size: 24px;
}

.card-content p {

    font-size: 16px;
}

.breadcrumb-section {
    background-color: #F6F6F6;
}

.post-image-arcive img {
    height: 382px;
    object-fit: cover;
}

.tags-list ul {
    display: flex;
    margin-left: 0;
    gap: 20px;
}

.blog-single-content img.uron_single_page {
    width: 100% !important;
}

.custom-shadow-one a {
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.04) !important;
}

.author-thumb img {
    width: 100%;
}

.comment-title-meta {
    position: relative;
}

.reply-btn .comment-reply-link {
    font-size: 16px;
    font-weight: 500;
    color: #000;
}

.comment-author-title {
    font-size: 18px;
    font-weight: 500;
    display: block;
    color: #000e3c;
}

.social-share a {
    cursor: pointer;
}

#comments .children {
    margin-left: 30px;
}

.comment-list a {
    color: #121111;
}

#commentform > p {
    padding: 0 0 !important;
}

.comment-box-information {
    margin-top: 20px;
}

.electio-single-post-content .cat-links a, .electio-single-post-content span.posted-on a {
    color: #74787c;
}

img.attachment-post-thumbnail.size-post-thumbnail.wp-post-image {
    width: 670px;
    height: 370px;
    width: 100%;
    object-fit: cover;
}

.blog-list-single-item .blog-meta span.byline::before, .blog-list-single-item .blog-meta span.author::before {
    display: none;
    padding-left: 0px;
}

.blog-list-single-item .blog-meta span.byline, .blog-list-single-item .blog-meta span.author {
    padding-left: 0px;
}

.blog-list-items .blog-list-single-item:first-child {
    margin-top: 0;
}

.blog-list-single-item .blog-meta span a {
    color: var(--primary-color);
}

.header-navigation,
.ur-navmenu {
    padding: 0 !important;
}

.nav-style-megamenu {
    margin: 0;
}

.dropdown-toggle::after {
    border: none !important;
    content: "\f054" !important;
    font-family: 'Font Awesome 6 Free' !important;
    font-weight: 900;
    font-size: 13px;
    position: absolute;
    right: 20px;
}

.xpc-dropdown-padding-lg {
    padding: 50px 30px;
}

.electio-template-btn {
    position: relative;
}

.electio-template-btn:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 0;
    background-color: var(--secondary-color);
    -webkit-transition: var(--transition-base);
    -o-transition: var(--transition-base);
    transition: var(--transition-base);
    z-index: -1;
}

.electio-template-btn:hover::before {
    height: 100%;
    z-index: 5;
}

.electio-template-btn span {
    position: relative;
    z-index: 10
}

/*img.img-fluid.mb-5.uron_single_page {*/
/*	height: 492px;*/
/*	object-fit: cover;*/
/*}*/
/** PROGRESS INDICATOR END **/
@media (max-width: 767px) {
    .electio-blog-main-content, .electio-single-post-content, .electio-archive-main-content, .electio-default-page-content {
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .single-post-meta ul {
        flex-wrap: wrap;
        gap: 15px;
    }

    .electio-default-header {
        height: 80px !important;
    }

    #electio-hero-banner {
        padding: 8rem 0 2rem 0 !important;
    }

    .bottom-frill-one {
        bottom: 6% !important;
        right: 24% !important;
    }

    .bottom-smiley-one {
        max-width: 80px;
        bottom: 39% !important;
        left: -6% !important;
    }

    .bottom-heart-one {
        max-width: 60px;
        top: 21% !important;
        right: 1% !important;
    }

    html, body {
        overflow-x: hidden;
    }

    .hos-email span input {
        padding-left: 14%;
    }
}

@media (min-width: 768px) {
    .electio-default-header .row > * {
        padding-left: 0;
        padding-right: 0;
    }

    .electio-default-header {
        padding: 0 50px;
    }

    .col-lg-6.swiper-slide {
        width: 50%;
    }

    .col-lg-4.swiper-slide {
        width: 33.33333333%;
    }

    .col-lg-3.swiper-slide {
        width: 25%;
    }

    .col-5m.swiper-slide {
        width: 50%;
    }

    .col-lg-2.swiper-slide {
        width: 16.66666667%
    }
}

@media (min-width: 576px) and (max-width: 768px) {
    .med-doctor-style-two img {
        margin-top: -10%;
    }
}

@media (min-width: 991px) {
    .electio-single-post .electio-heading {
        max-width: 50%;
        margin: 0 auto;
    }

    .custom-arrow-position-desktop .rev-5-navigation {
        position: absolute;
        right: -10%;
        bottom: 16%;
    }

    .electio-maintenance-style1 .mm-main-box {
        width: 770px;
        padding: 60px;
    }

    .tetz-meta-padding-top {
        padding: 40px 40px;
        overflow: hidden;
    }

    .tctz-default-meta {
        padding: 40px;
        overflow: hidden;
    }

    .col-5m.swiper-slide {
        width: 33.33333%;
    }

}

@media (min-width: 1200px) {
    .col-5m.swiper-slide {
        width: 25%;
    }
}

@media (min-width: 1400px) {
    .col-5m.swiper-slide {
        width: 20%;
    }
}

.widget ul li .list-post-meta h4 a:hover {
    color: #f36a07;

}

.sidebar-cat-link {
    width: 20px;
}

.sidebar-widget .sidebar-check-fields li label span {
    font-size: 14px;
}

#electio_post_category_widget-2 .sidebar-widget .sidebar-check-fields li label {
    display: inline-block;
}

.blog-list-items .pagination {
    justify-content: start;
}

.action-box a i {
    color: #fff;
}

@media (min-width: 1036px) {
    .d-customL-block, .navbar.d-customL-block {
        display: block !important;
    }
}

@media (min-width: 992px) {
    .col-lg-5d {
        flex: 0 0 auto;
        width: 20% !important;
    }
}

.social-wrapper a {
    color: #fff;
    padding: 4px 8px;
}

.social-wrapper a:visited {
    color: #fff;
}


span.comment-reply.reply-btn {
    display: flex;
    align-items: center;
    gap: 4px;
}

.comment-box-information.row.mt-3 {
    width: 100%;
}

.comment-avater img {
    width: 80px;
    height: 80px;
    max-width: 80px;
}

p.logged-in-as {
    margin-bottom: 15px !important;
}

ul.page-numbers li {
    list-style: none;
}

.tags-wrapper ul li {
    list-style: none;
}

.tags-wrapper ul {
    padding: 0;
}

/*Verticle nav style*/
.electio-vertical-nav-dropdown {
    position: absolute;
    left: 0;
    top: 100%;
    box-shadow: 0px 1px 16px 0px rgb(220 220 220 / 22%);
    width: 330px;
    /* display: none; */
    z-index: 99;
}
.el3-div-wrappper .main-wrapper-left-side {
    width: 330px;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
}

.electio-vertical-nav-dropdown  #primary-menu {
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border-gray);
    width: 100%;
}
.electio-vertial-nav-main-bth.navbar {
    padding-top: 30px;
    padding-bottom: 0;
}
.electio-vertical-nav-dropdown .nav-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0px 30px;
    position: relative;
}

.electio-vertical-nav-dropdown .nav-style-megamenu>li.nav-item .nav-link {
    padding: 22px 30px;
    font-size: 16px;
    font-weight: 400;
    border-bottom: 1px solid var(--border-gray);
    background: var(--white-color);
    width: 100%;
    color: var(--dark-color);
    position: relative;
}
.electio-vertical-nav-dropdown .nav-style-megamenu>li.nav-item .nav-link:hover {
    background: var(--yellow-color);
}
.wp-block-post-template{
    margin:0;
}
.wp-block-query-pagination-numbers .page-numbers{
    display:inline;
}
.wp-block-comment-template{
    margin:0;
}
.wp-block-comment-template li.comment{
    list-style:none;
}
.wp-block-comment-author-name{
    font-weight:bold;
}
@media (min-width: 992px){
    .electio-vertical-nav-dropdown .nav-style-megamenu > .menu-item-has-children .nav-link:before {
        content: "\f107" !important;
        font-family: "FontAwesome" !important;
        position: absolute;
        right: 30px;
        top: initial;
        -webkit-transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        font-size: 12px;
    }
    .electio-vertical-nav-dropdown .nav-style-megamenu > .menu-item-has-children .nav-link:hover:before {
        -webkit-transform: rotate(-90deg);
        -ms-transform: rotate(-90deg);
        transform: rotate(-90deg);
    }
}
.order-tracking button.template-btn {
    background: #000;
}

.electio__single-blog-sidebar {
    position: sticky;
    top: 30px;
}
.el-blog-details-section .wp-block-columns.alignfull {
    width: 100%;
    margin: 0;
    padding: 0;
}
.el-blog-details-section .wp-block-image {
    clear: both;
}

.el-blog-details-section .el-tags-and-social-wrapper {
    clear: both;
}
.el-blog-details-section .el-tags-and-social-wrapper .tags-wrapper ul {
    flex-wrap: wrap;
}
.el-blog-details-section .wp-block-search__button svg {
    display: none;
}
.el-blog-details-section .wp-block-search__inside-wrapper {
    border: none;
}
.el-blog-details-section .wp-block-search .wp-block-search__button{
    max-height: 56px;
}