/**
 * Eronex Theme - CSS
 *
 * This stylesheet contains custom styles and overrides for the Eronex WordPress theme.
 * It defines the layout, typography, color schemes, and other visual elements to ensure
 * a cohesive design and consistent user experience across the site.
 *
 * Author: Deveasel
 * Version: 0.0.1
 *
 * Note: This file is intended to be loaded after the all styles.
 *
 * TABLE OF CONTENTS:
 *  1. General
 *  2. Typography
 *  3. Layout & Structure
 *  4. Forms
 *  5. Tables
 *  6. Lists
 *  7. Custom Theme Styles
 */

/* ---------------------------------------------
	General
--------------------------------------------- */
.latest-pages-section {
    background-color: #ffffff;
    padding:10px 0px 40px 0px;
}
div.asl_w .probox .promagnifier .innericon svg {
    fill: #55a15f!important;
}
ul.menu-new{
	margin:0px;
	padding:0px
}
ul.menu-new li a{
	color:#000;
}
ul.menu-new li{
	color:#55a15f
}
ul.menu-new li a:hover{
	text-decoration:underline;
	color:#55a15f
}
.single-blog-wrapper {
    color: #000;
    padding: 50px 20px;
}
.single-grid {
    display: grid;
    grid-template-columns: 2.2fr 1fr;
    gap: 40px;
}

/* Main Content Styling */
.single-post-article {
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px -10px rgba(0,0,0,0.5);
}
.single-category-tag {
    background: rgba(99, 102, 241, 0.15);
    color: #000;
    font-size: 11px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 20px;
}
.single-post-title {
    font-size: 32px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.3;
    margin-bottom: 25px;
}
.single-meta-info {
    display:none;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 25px;
    margin-bottom: 30px;
}
.single-author-box {
    display: flex;
    align-items: center;
    gap: 12px;
}
.single-author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
}
.single-author-name {
    display: block;
    font-size: 15px;
    /* font-weight: 700; */
    color: #55a15f;
}
.single-post-date {
    display: block;
    font-size: 13px;
    color: #94a3b8;
}
.single-featured-img {
    width: 100%;
    height: 400px;
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 35px;
}
.single-featured-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* WordPress Content Typography Formatting */
.single-content-body {
    font-size: 16px;
    line-height: 1.8;
    color: #000;
}
.single-content-body p {
    margin-bottom: 20px;
}
.single-content-body h2, .single-content-body h3 {
    margin-top: 30px;
    margin-bottom: 15px;
}
.single-content-body img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 20px 0;
}

/* Sidebar Styling */
.single-sidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
}
.sidebar-widget {
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 10px 30px -10px rgba(0,0,0,0.5);
}
.sidebar-widget h3 {
    font-size: 16px;
    color: #000;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    border-bottom: 1px solid #000;
    padding-bottom: 10px;
}
.sidebar-search-form input {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 12px 15px;
    color: #fff;
    font-size: 14px;
    outline: none;
}
.sidebar-search-form input:focus {
    border-color: #818cf8;
}
.sidebar-categories {
    list-style: none;
    padding: 0;
    margin: 0;
}
.sidebar-categories li {
    margin-bottom: 12px;
}
.sidebar-categories a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #94a3b8;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}
.sidebar-categories a:hover {
    color: #818cf8;
}
.cat-count {
    background: rgba(255, 255, 255, 0.05);
    padding: 2px 8px;
    border-radius: 6px;
    font-size: 12px;
}
.sidebar-recent-posts {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.recent-post-item {
    text-decoration: none;
    display: block;
    border-bottom:1px solid #55a15f;
    padding-bottom: 10px;
}
.recent-title {
    display: block;
    font-size: 14px;
    color: #000;
    margin-bottom: 4px;
    transition: color 0.2s;
}
.recent-post-item:hover .recent-title {
    color:#55a15f;
}
.recent-date {
    font-size: 12px;
    color: #64748b;
}
@media screen and (max-width: 1024px) {
    .single-grid {
        grid-template-columns: 1fr;
    }
}
@media screen and (max-width: 640px) {
    .single-post-article {
        padding: 20px;
    }
    .single-post-title {
        font-size: 24px;
    }
    .single-featured-img {
        height: 250px;
    }
}
.trt{
	margin:20px 0px;
}
.unique-blog-wrapper {
    color: #f8fafc;
    padding: 60px 20px;
}
.unique-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 50px auto;
}
.unique-badge {
    background: rgba(99, 102, 241, 0.15);
    color: #818cf8;
    font-size: 11px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 50px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 15px;
}
.unique-header h1 {
    font-size: 38px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}
.unique-header p {
    color: #94a3b8;
    font-size: 16px;
}

/* 3-Column Grid */
.unique-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Card Design */
.unique-card {
    background: #fff;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 30px -10px rgba(0,0,0,0.5);
}
.unique-card:hover {
    transform: translateY(-8px);
    border-color:#55a15f;
    box-shadow: 0 20px 40px -15px rgba(99, 102, 241, 0.2);
}

/* Image Box */
.unique-img-box {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
}
.unique-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.unique-card:hover .unique-img-box img {
    transform: scale(1.08);
}
.unique-date{
	display:none
}
.unique-cat-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #55a15f;
    backdrop-filter: blur(8px);
    color: #ffffff;
    font-size: 12px;
    /* font-weight: 700; */
    padding: 5px 12px;
    border-radius: 8px;
    /* text-transform: uppercase; */
    letter-spacing: 0.5px;
    border: 1px solid rgba(255, 255, 255, 0.1);
	display:none
}
.unique-content-box {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

/* Title */
.unique-title {
    font-size: 19px;
    font-weight: 700;
    line-height: 1.4;
    margin: 0 0 14px 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.unique-title a {
    color: #000;
    text-decoration: none;
    transition: color 0.2s;
}
.unique-title a:hover {
    color:#55a15f;
}
.unique-author-date {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #94a3b8;
    margin-bottom: 14px;
}
.unique-author {
    display: flex;
    align-items: center;
    gap: 6px;
}
.unique-avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
}
.unique-author span {
    color:#55a15f;
}
.unique-dot {
    color: #475569;
}

/* Excerpt Content */
.unique-excerpt {
    font-size: 14px;
    color: #000;
    line-height: 1.6;
    margin: 0 0 20px 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex-grow: 1;
}

/* Footer Action (Read More) */
.unique-footer-action {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    margin-top: auto;
}
.unique-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color:#55a15f;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.2s;
}
.unique-read-more svg {
    transition: transform 0.2s;
}
.unique-read-more:hover {
    color: #a5b4fc;
}
.unique-read-more:hover svg {
    transform: translateX(4px);
}

/* Pagination */
.unique-pagination {
    margin-top: 50px;
    text-align: center;
}
.unique-pagination .nav-links {
    display: inline-flex;
    gap: 8px;
}
.unique-pagination .page-numbers {
    padding: 10px 16px;
    background: #1e293b;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    color: #cbd5e1;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.2s;
}
.unique-pagination .page-numbers.current, 
.unique-pagination .page-numbers:hover {
    background: #6366f1;
    color: #fff;
    border-color: #6366f1;
}

/* Responsive Media Queries */
@media screen and (max-width: 1024px) {
    .unique-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media screen and (max-width: 640px) {
    .unique-grid {
        grid-template-columns: 1fr;
    }
    .unique-blog-wrapper {
        padding: 30px 15px;
    }
}
.site-footer {
    background-color: #55a15f!important;
}
.pre-footer {
    padding: 40px 0px;
    border-top: 1px solid #55a15f;
}
.pre-footer .footerabut img{
	width:80%;
	margin-bottom:10px
}
.pre-footer .footerabut p {
    font-size: 16px;
}
.disc__main{
	background: #fff;
    padding: 10px 0px;
    margin-bottom: 50px;
}
.directory-grid-section {
    padding: 40px 0;
}

.directory-container.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* CSS Grid Layout (Responsive by default) */
.airline-modern-grid-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* Default 4 columns on desktop */
    gap: 20px;
}

/* Card Column Styling */
.airline-directory-card-col {
    display: flex;
}

/* Card Inner Box */
.airline-directory-card-inner {
    background: #ffffff;
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease-in-out;
    border: 1px solid #e2e8f0;
}
.airline-directory-card-inner:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    border-color: #55a15f;
}
.airline-card-link {
    display: flex;
    align-items: center;
    padding: 20px;
    text-decoration: none;
    height: 100%;
}

/* Airplane Icon Box Style */
.airline-icon-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: #eff6ff; /* Light blue background */
    color: #3b82f6; /* Icon color */
    border-radius: 10px;
    margin-right: 15px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.airline-directory-card-inner:hover .airline-icon-box {
    background-color: #ffffff;
    color: #ffffff;
}
.airline-name-box {
    flex-grow: 1;
}

.airline-card-title {
    font-size: 16px;
    font-weight: 600;
    color: #1e293b;
    margin: 0;
    line-height: 1.4;
    transition: color 0.2s ease;
}

.airline-directory-card-inner:hover .airline-card-title {
    color:#55a15f;
}

/* Empty State Styling */
.directory-empty-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px;
    background: #fff;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
}

.directory-empty-state h3 {
    color: #64748b;
    margin: 0;
    font-weight: 500;
}

/* --- Responsive Breakpoints --- */

/* Tablets / Medium Devices (max-width: 1024px) */
@media screen and (max-width: 1024px) {
    .airline-modern-grid-row {
        grid-template-columns: repeat(3, 1fr); /* 3 columns */
    }
}

/* Small Tablets / Large Phones (max-width: 768px) */
@media screen and (max-width: 768px) {
    .airline-modern-grid-row {
        grid-template-columns: repeat(2, 1fr); /* 2 columns */
        gap: 15px;
    }
    .directory-grid-section {
        padding: 40px 0;
    }
}

/* Mobile Phones (max-width: 480px) */
@media screen and (max-width: 480px) {
    .airline-modern-grid-row {
        grid-template-columns: 1fr; /* Single column layout for phones */
    }
}
.disc__main p{
	margin-bottom:0px;
	color:#000
}
.pre-footer .footerabut a.remo {
    background: #55a15f;
    padding: 10px 20px;
    color: #fff;
    border-radius: 10px;
}
.pre-footer .footerabut a.remo:hover{
	text-decoration:underline!important
}
.pre-footer .col-md-3 p.hed{
	font-size:22px;
	margin:0px;
}
.footer_bottom {
    text-align: right;
}
.footer_bottom ul {
    margin: 0;
    padding: 0;
    display: inline-flex;
    margin-right: 15px;
}
.footer_bottom ul li {
    list-style-type: none;
    float: left;
    padding: 0 10px;
    line-height: 65px;
}
.footer_bottom ul li a {
	color:#fff
}
.footercall {
    position: fixed;
    width: 100%;
    /* line-height: 50px; */
    bottom: 0px;
    background-color: #55a15f;
    border-top: 1px solid #fff;
    text-align: center;
    z-index: 999;
}
.footercall button, .footercall button:hover {
    width: 100%;
    border: 0px;
    background:#55a15f;
}
.footercall button .content {
    color: #fff;
    font-size: 24px;
    text-transform: capitalize;
}
.footercall button .content svg {
    width: 30px;
    height: 25px;
    float: none;
    margin-top: 0px;
    margin-right: 0px;
	fill:#fff
}
.footercall button .content svg path:nth-child(2) {
	-webkit-animation: header-phone 1s infinite cubic-bezier(.1, .57, .5, 1);
	animation: header-phone 1s infinite cubic-bezier(.1, .57, .5, 1);
}
.footercall button .content svg path:nth-child(3) {
	-webkit-animation:header-phone2 1s infinite cubic-bezier(.1, .57, .5, 1);
	animation:header-phone2 1s infinite cubic-bezier(.1, .57, .5, 1);
}
@-webkit-keyframes header-phone {
	0%,30% {opacity:0; -webkit-transform:translate3d(-20px, 20px, 0); transform:translate3d(-20px, 20px, 0)}
	80% {opacity:1; -webkit-transform:translate3d(0, 0, 0); transform:translate3d(0, 0, 0)}
	100%{opacity:0}}
@keyframes header-phone {
	0%,30%{opacity:0; -webkit-transform:translate3d(-20px, 20px, 0); transform:translate3d(-20px, 20px, 0)}
	80%{opacity:1; -webkit-transform:translate3d(0, 0, 0); transform:translate3d(0, 0, 0)}
	100%{opacity:0}}
@-webkit-keyframes header-phone2 {
	0%{opacity:0; -webkit-transform:translate3d(-20px, 20px, 0); transform:translate3d(-20px, 20px, 0)}
	70%,90%{opacity:1; -webkit-transform:translate3d(0, 0, 0); transform:translate3d(0, 0, 0)}
	100%{opacity:0}}
@keyframes header-phone2 {
	0%{opacity:0; -webkit-transform:translate3d(-20px, 20px, 0); transform:translate3d(-20px, 20px, 0)}
	70%,90%{opacity:1; -webkit-transform:translate3d(0, 0, 0); transform:translate3d(0, 0, 0)}
	100%{opacity:0}}
.footer_disclaimer {
    text-align: center;
    color: #003251;
    margin-top: 10px;
    margin-bottom: 57px;
    border-top: 1px solid #fff;
    padding: 20px 10px 1px;
    background: #fff;
	text-align:left
}
.airline-banner-wrapper {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('/wp-content/uploads/2026/07/fixbanner.webp') center/cover no-repeat;
    padding: 60px 20px;
    color: #fff;
    text-align: center;
}
.airline-main-title {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}
#airline-breadcrumbs {
    color: #ffffff;
    margin: 10px 0px 0px 0px;
    display: inline-block;
    overflow: auto;
    position: relative;
    padding: 5px 15px 15px 0;
    font-size: 16px;
    width: 100%;
    font-weight: 600;
    text-align: center;
}
.tocst, .airline-sidebar-widget{
	padding: 20px;
    background: #f4f6f9;
    float: left;
    margin-top: 20px;
    box-shadow: 4px 5px 16px rgba(64, 68, 77, .12);
    border-radius: 8px;
    background-color: #fff;
    width: 100%;
    margin-bottom: 20px;
}
.airline-banner-inner .entry-header{
	margin-bottom:0px!important
}
.airline-banner-inner .entry-header h1{
	    margin-top: 0;
    margin-bottom: 0px;
}
#airline-breadcrumbs a {
    color: #fff;
    border: 1px solid #54a15e;
    border-radius: 10px;
    background: #54a15e;
    padding: 6px;
}
.airline-content-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 15px;
}
.airline-primary-box {
    background: #fff;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
}

/* Locations Grid Cards (Matching Screenshot) */
.locations-section-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #111;
}
.airline-locations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.airline-location-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}
.airline-location-card:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    border-color:#55a15f;
}
.airline-location-card a {
    color: #222;
    text-decoration: none;
    font-size: 15px;
    display: block;
    line-height: 1.4;
}
.airline-location-card a:hover {
    color:#55a15f;
}
.airline-sidebar-widget ul li {
    padding: 10px 0;
    border-bottom: 1px solid #f1f1f1;
}
.airline-sidebar-widget ul li:last-child {
    border-bottom: none;
}
.airline-sidebar-column{
	float: right;
    position: sticky;
    top:30px;
}
.airline-sidebar-widget p.widget-title{
	    text-align: left;
    margin-bottom: 14px;
    font-size: 18px;
    color: #000;
    font-weight: 700;
    margin-left: 20px;
}
.airline-sidebar-widget ul li a {
    color: #000;
    text-decoration: none;
    font-size: 14px;
}
.airline-sidebar-widget ul li a:hover {
    text-decoration: underline;
}

.airline-cta-section {
    background: #ffffff; /* Agar background white chahiye toh white rakh sakte hain */
    padding: 60px 15px;
    width: 60%;
	margin:0px auto
}
.airline-cta-wrapper {
    display: flex;
    justify-content: center; /* Left-right se bilkul center karega */
    align-items: center;
    width: 100%;
}
.airline-cta-box {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    max-width: 800px; /* Box ki maximum width set ki hai */
    width: 100%;
    text-align: center;
}
.airline-cta-heading {
    font-size: 28px;
    font-weight: 700;
    color: #000;
    margin-bottom: 12px;
}
.airline-cta-desc {
    font-size: 16px;
    color: #000;
    margin-bottom: 25px;
    line-height: 1.5;
}
.airline-cta-btn-wrap {
    display: flex;
    justify-content: center;
}
.airline-call-btn {
    background:#54a15e;
    color: #fff;
    border: none;
    padding: 14px 32px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    transition: background 0.3s ease;
}
.airline-call-btn:hover {
    background: #fff;
    border: 1px solid #54a15e;
}
@media(max-width: 992px) {
    .airline-locations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media(max-width: 768px) {
    .airline-locations-grid {
        grid-template-columns: 1fr;
    }
    .airline-main-title {
        font-size: 26px;
    }
    .airline-cta-box {
        padding: 20px;
    }
}
.section-main-title {
    font-size: 32px;
    font-weight: 700;
    color: #000;
}

.latest-page-horizontal-card {
    display: flex;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(32, 50, 77, 0.03);
    transition: all 0.3s ease;
	margin-bottom:10px;
}

.latest-page-horizontal-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(32, 50, 77, 0.08);
    border-color:#55a15f;
}

.card-image-side {
    width: 40%;
    min-height: 140px;
    overflow: hidden;
    background: #f1f5f9;
}

.card-image-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.latest-page-horizontal-card:hover .card-image-side img {
    transform: scale(1.06);
}

.card-content-side {
    width: 60%;
    padding: 18px;
    display: flex;
    align-items: center;
}

.latest-card-title {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
    margin: 0;
}

.latest-card-title a {
    color:#000;
    text-decoration: none;
    transition: color 0.2s ease;
}

.latest-card-title a:hover {
    color:#55a15f;
}

/* Responsive adjustment for small screens */
@media (max-width: 576px) {
    .card-image-side {
        width: 45%;
    }
    .card-content-side {
        width: 55%;
        padding: 12px;
    }
    .latest-card-title {
        font-size: 14px;
    }
}
/* Qatar Airways Pages Grid Styling */
.qatar-pages-section {
    background-color: #f8fafc;
	padding:40px 0px
}

.qatar-horizontal-card {
    display: flex;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(32, 50, 77, 0.03);
    transition: all 0.3s ease;
	margin-bottom:10px;
}

.qatar-horizontal-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(32, 50, 77, 0.08);
    border-color:#55a15f;
}

.qatar-horizontal-card .card-image-side {
    width: 40%;
    min-height: 140px;
    overflow: hidden;
    background: #f1f5f9;
}

.qatar-horizontal-card .card-image-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.qatar-horizontal-card:hover .card-image-side img {
    transform: scale(1.06);
}

.qatar-horizontal-card .card-content-side {
    width: 60%;
    padding: 18px;
    display: flex;
    align-items: center;
}

.qatar-card-title {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
    margin: 0;
}

.qatar-card-title a {
    color: #000;
    text-decoration: none;
    transition: color 0.2s ease;
}

.qatar-card-title a:hover {
    color:#55a15f;
}

/* Mobile Responsive Optimization */
@media (max-width: 576px) {
    .qatar-horizontal-card .card-image-side {
        width: 45%;
    }
    .qatar-horizontal-card .card-content-side {
        width: 55%;
        padding: 12px;
    }
    .qatar-card-title {
        font-size: 14px;
    }
	.airline-cta-section{
		width:100%
	}
}
.tophead {
    background: linear-gradient(rgb(0 0 0 / 11%), rgb(0 0 0 / 70%)), url(/wp-content/uploads/2026/07/banner.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    background-position: 100% 40%;
    padding:8% 0px;
}
.topheadin {
    width: 100%;
    margin: 0px auto;
    text-align: center;
}
.topheadin h1 {
    color: #FFFFFF;
    font-weight: 600;
    padding: 0px;
}
.topheadin p {
    width: 62%;
    margin: 0px auto;
    color: #fff;
}
.flight-search {
    width: 60%;
    margin: 0px auto;
    margin-top: 40px;
}
.flight-search #ajaxsearchlite1 .probox, div.asl_w .probox {
    border: 1px solid #138b70 !important;
    background: #FFF;
    margin-bottom: 40px;
}
:root {
	--eronex-line-height: 1.5;
	--eronex-border-radius-sm: 4px;
	--eronex-border-radius-md: 8px;
	--eronex-border-radius-lg: 12px;
	--eronex-border-radius-xl: 16px;
	--eronex-primary-color: 126, 76, 255; /* #7E4CFF */
	--eronex-secondary-color: 46, 128, 255; /* #2E80FF */
	--eronex-primary-font-color: 99, 99, 99; /* #636363 */
	--eronex-secondary-font-color: 14, 14, 15; /* #0E0E0F */
	--eronex-light-grey-color: 247, 247, 247; /* #F7F7F7 */
	--eronex-grey-color: 235, 235, 235; /* #EBEBEB */
	--eronex-dark-grey-color: 207, 207, 207; /* #CFCFCF */
	--eronex-light-success-color: 221, 250, 220; /* #DDFADC */
	--eronex-success-color: 23, 178, 106; /* #17B26A */
	--eronex-light-danger-color: 250, 235, 235; /* #FAEBEB */
	--eronex-danger-color: 231, 42, 42; /* #E72A2A */
	--eronex-light-warning-color: 255, 249, 245; /* #FFF9F5  */
	--eronex-warning-color: 245, 158, 11; /* #F59E0B */
	--eronex-light-info-color: 220, 237, 250; /* #DCEDFA */
	--eronex-info-color: 46, 144, 250; /* #2E90FA */
	--eronex-dark-color: 43, 43, 43; /* #2B2B2B */
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

/* Skip link & screen-reader text (required for keyboard / a11y) */
.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;
	width: 1px;
	word-wrap: normal !important;
}

.screen-reader-text:focus,
.skip-link:focus {
	background-color: #f1f1f1;
	border-radius: 3px;
	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;
}

#eronex-content:focus {
	outline: none;
}

body {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	font-size: 14px;
	line-height: var(--eronex-line-height);
	color: rgb(var(--eronex-primary-font-color));
	margin: 0;
	background-color: #ffffff;
	-webkit-text-size-adjust: 100%;
	scroll-behavior: smooth;
	-webkit-tap-highlight-color: transparent;
}

h1, h2, h3, h4, h5, h6, a, .eronex-main-font {
	color: rgb(var(--eronex-secondary-font-color));
}

h1 {
    font-size: 38px;
}

h2 {
    font-size: 32px;
}

h3 {
    font-size: 28px;
}

h4 {
    font-size: 24px;
}

h5 {
    font-size: 20px;
}

h6 {
    font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0 0 0.5rem;
}

article, aside, details, figcaption, figure, footer,
header, hgroup, menu, nav, section {
	display: block;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

a, h1, h2, h3, h4, h5, h6, p, span {
	overflow-wrap: break-word;
	line-height: var(--eronex-line-height);
}

p {
	margin: 0 0 20px;
}

p:nth-last-child(1) {
	margin-bottom: 0;
}

address, blockquote, pre, table {
	margin: 0 0 20px
}

pre {
	display: block;
	word-break: break-word;
	border-radius: 0;
	overflow: auto
}
blockquote.wp-block-quote,
blockquote {
	border-left: 2px solid;
	border-color: rgb(var(--eronex-primary-color));
	background-color: rgba(var(--eronex-primary-color),0.08);
	padding: 24px;
	font-size: 20px;
	color: rgb(var(--eronex-secondary-font-color));
}

blockquote.wp-block-quote p,
blockquote.wp-block-quote q,
.wp-block-pullquote p,
blockquote q,
blockquote p{
	margin: 0;
	color: rgb(var(--eronex-secondary-font-color));
	font-size: 18px;
	line-height: 26px;
	letter-spacing: -0.18px;
	line-height: 1.5;
	font-style: italic;
	font-weight: 500;
}

blockquote.wp-block-quote cite,
blockquote cite,
blockquote cite {
    font-size: 14px;
    line-height: 26px;
    margin: 4px 0 0;
    font-style: normal;
	color: rgb(var(--eronex-primary-font-color));
}

blockquote.wp-block-quote:where(.has-text-align-right) {
	border-left: 0;
	border-right-width: 2px;
}

table {
    background-color: transparent;
    max-width: 100%;
	width: 100%;
}

table>thead>tr>th,
table>tbody>tr>th,
table>tfoot>tr>th,
table>thead>tr>td,
table>tbody>tr>td,
table>tfoot>tr>td {
    border-top: 1px solid rgba(var(--eronex-grey-color));
    border: 1px solid rgba(var(--eronex-grey-color));
    line-height: 1.5;
    text-align: center;
    vertical-align: top;
    padding: 16px;
}

table thead tr th {
    border-top: 1px solid rgba(var(--eronex-grey-color));
}

table>thead>tr>th {
    background-color: rgb(var(--eronex-light-grey-color));
    vertical-align: bottom;
}

dl dt{
	font-weight: bold;
	color: rgb(var(--eronex-secondary-font-color));
}

dl dd{
	margin-inline-start: 20px;
	margin-bottom: 8px;
}

.aligncenter, div.aligncenter {
    display: block;
    margin: 20px auto 20px auto;
	text-align: center;
}

.wp-block-calendar td,
.wp-block-calendar th {
	text-align: center;
}

a{
	color: rgb(var(--eronex-primary-color));
	text-decoration: none;
}

a:hover, a:focus {
	color: rgb(var(--eronex-primary-color), 0.9);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
.eronex-header-button:focus-visible,
.eronex-hamburger-toggle-btn:focus-visible,
.eronex-hamburger-close-btn:focus-visible {
	outline: 1px solid rgb(var(--eronex-primary-color));
	outline-offset: 1px;
}

b, strong {
    font-weight: bolder;
	color: rgb(var(--eronex-secondary-font-color));
}

code {
    color: #e83e8c;
    word-break: break-word;
}

kbd {
    padding: .2rem .4rem;
    color: #fff;
    background-color: #212529;
    border-radius: .2rem;
}

.gallery-caption {
	display: block;
	font-size: 0.875em;
	line-height: 1.5;
	margin-top: 0.5em;
	text-align: center;
}

.bypostauthor {
	display: block;
}

:focus {
	outline-offset: 2px;
}

.eronex-primary-wrapper {
	margin: 0 auto;
}

.eronex-archive-layout-grid {
    --eronex-archive-grid-items: 4;
}

.eronex-container {
	width: 100%;
	max-width: 1140px;
	margin: 0 auto;
	padding: 0 calc(1.5rem * .5);
}

.eronex-container-fluid{
	width: 100%;
	max-width: 100%;
	padding: 0 calc(1.5rem * .5);
}

.eronex-full-width{
	width: 100%;
	max-width: 100%;
}

.eronex-custom-width{
	width: 100%;
	max-width: 1140px;
	margin: 0 auto;
}

.eronex-row {
	display: flex;
	flex-wrap: wrap;
	gap: 24px 0;
	margin-right: calc(1.5rem * -.5);
	margin-left: calc(1.5rem * -.5);
}

.eronex-row > * {
	flex-shrink: 0;
	width: 100%;
	max-width: 100%;
	padding-right: calc(1.5rem * .5);
	padding-left: calc(1.5rem * .5);
}

/* ---------------------------------------------
	Preloader
--------------------------------------------- */

.eronex-preloader-wrapper{
	position: fixed;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #ffffff;
	z-index: 999;
}

.eronex-preloader-image {
	width: 120px;
}

/*Loader 1*/
.eronex-preloader-layout-1 .eronex-preloader{
	width: 50px;
	height: 50px;
	display: inline-block;
	position: relative;
}

.eronex-preloader-layout-1 .eronex-preloader::after,
.eronex-preloader-layout-1 .eronex-preloader::before {
	content: '';
	box-sizing: border-box;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: rgb(var(--eronex-primary-color));
	position: absolute;
	left: 0;
	top: 0;
	animation: eronexLoaderAnim1 2s linear infinite;
}
.eronex-preloader-layout-1::after {
	animation-delay: 1s;
}

/* Loader 2 */
.eronex-preloader-layout-2 .eronex-preloader,
.eronex-preloader-layout-2 .eronex-preloader:before,
.eronex-preloader-layout-2 .eronex-preloader:after {
	border-radius: 50%;
	width: 18px;
	height: 18px;
	animation-fill-mode: both;
	animation: eronexLoaderAnim2 1.8s infinite ease-in-out;
}

.eronex-preloader-layout-2 .eronex-preloader {
	color: rgb(var(--eronex-primary-color));
	position: relative;
	text-indent: -9999px;
	transform: translateZ(0);
	animation-delay: -0.16s;
}

.eronex-preloader-layout-2 .eronex-preloader:before,
.eronex-preloader-layout-2 .eronex-preloader:after {
	content: '';
	position: absolute;
	top: 0;
}

.eronex-preloader-layout-2 .eronex-preloader:before {
	left: -25px;
	animation-delay: -0.32s;
}

.eronex-preloader-layout-2 .eronex-preloader:after {
	left: 25px;
}

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

@keyframes eronexLoaderAnim2 {
	0%,
	80%,
	100% {
		box-shadow: 0 18px 0 -9px;
	}
	40% {
		box-shadow: 0 18px 0 0;
	}
}

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

.eronex-header{
	position: relative;
	z-index: 98;
}

/*Logo*/
.eronex-header .eronex-brand{
	display: flex;
	align-self: center;
}

.eronex-header .eronex-brand > a{
	display: inline-block;
	font-size: 24px;
	line-height: 1;
	color: #2b2b2b;
	font-weight: 500;
	text-decoration: none;
}

.eronex-header .eronex-sticky-logo{
	display:none;
}

.eronex-header.eronex-appear .eronex-default-logo{
	display:none;
}

.eronex-header.eronex-appear .eronex-sticky-logo{
	display:block;
}

/*Nav*/
.eronex-navbar{
	display: flex;
	align-items: center;
	min-height: 70px;
	width: 100%;
	border-bottom: 1px solid transparent;
}

.eronex-appear .eronex-navbar{
	position: fixed;
	top: 0;
	left: 0;
	background-color: #fff;
	animation-name: topAppear;
	animation-duration: 0.3s;
	animation-fill-mode: both;
	-webkit-box-shadow: 0 10px 10px -15px rgba(0, 0, 0, 0.35);
	box-shadow: 0 10px 10px -15px rgba(0, 0, 0, 0.35);
}

.admin-bar .eronex-appear .eronex-navbar{
	top: 32px;
}

.eronex-navbar:not(.eronex-transparent){
	background-color:#fff;
}

.eronex-navbar:not(.eronex-transparent) {
	border-color: rgb(var(--eronex-grey-color));
}

/*Navbar*/
.eronex-navbar .eronex-nav{
	margin-left: auto;
}

.eronex-header .eronex-hamburger-body .eronex-nav > .eronex-menu {
	display: block;
}

.eronex-navbar > div{
	display: flex;
	align-items: center;
	gap: 5px;
}

.eronex-navbar nav ul{
	padding: 0;
	margin: 0;
	list-style: none;
}

.eronex-navbar nav > ul{
	display: flex;
	align-items: center;
}

.eronex-navbar nav > ul > li{
	position: relative;
}

.eronex-navbar nav > ul > li > a{
	display: flex;
	align-items: center;
	font-size: 14px;
	padding: 24px 0;
	margin: 0 12px;
	font-weight: 400;
	text-decoration: none;
	color: rgb(var(--eronex-secondary-font-color));
	transition: color .3s ease-in-out;
}

.eronex-navbar nav > ul > li.menu-item-has-children > a{
	gap: 8px;
}

.eronex-navbar nav > ul > li.current-menu-item > a {
	color: rgb(var(--eronex-primary-color));
}

.eronex-navbar nav > ul > li > a > .eronex-dropdown-icon::after{
	content: '\e970';
	position: relative;
	font-family: 'hero-icons';
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.eronex-navbar nav > ul > li > a:hover,
.eronex-navbar nav > ul > li > a:focus{
	color: rgb(var(--eronex-primary-color));
}

/*Sub Menu*/
.eronex-navbar nav ul.sub-menu{
	position: absolute;
	top: 100%;
	left: 0;
	width: 200px;
	background-color: #fff;
	opacity: 0;
	visibility: hidden;
	margin-top: 1px;
	box-shadow: 0 4px 10px -2px rgba(0, 0, 0, .1);
	transform: translateY(10px);
	transition: opacity .3s, visibility 0s linear .3s, transform .3s;
	border-radius: 0 0 var(--eronex-border-radius-lg) var(--eronex-border-radius-lg);
}

.eronex-navbar ul.sub-menu > li > a > .eronex-dropdown-icon::after{
	content: '\e972';
	position: relative;
	font-family: 'hero-icons';
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.eronex-navbar nav li:hover > ul.sub-menu,
.eronex-navbar nav li:focus-within > ul.sub-menu,
.eronex-navbar nav li.focus > ul.sub-menu{
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
	z-index: 10;
	transition: opacity .3s, visibility 0s linear 0s, transform .3s;
}

.eronex-navbar ul.sub-menu > li > a{
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-size: 14px;
	padding: 0 14px;
	margin: 14px 0;
	font-weight: 400;
	text-decoration: none;
	color: rgb(var(--eronex-secondary-font-color));
	transition: color .3s;
}

.eronex-navbar ul.sub-menu > li > a:hover,
.eronex-navbar ul.sub-menu > li > a:focus {
	color: rgb(var(--eronex-primary-color));
}

header.eronex-appear .eronex-navbar ul.sub-menu > li > a{
	color: rgb(var(--eronex-secondary-font-color));
}

header.eronex-appear .eronex-navbar ul.sub-menu > li > a:hover,
header.eronex-appear .eronex-navbar ul.sub-menu > li > a:focus {
	color: rgb(var(--eronex-primary-color));
}

.eronex-navbar nav ul.sub-menu > li > ul.sub-menu{
	top:-1px;
	left:100%;
}

.eronex-navbar nav ul.sub-menu > li > ul.eronex-submenu-edge{
	left: auto;
	right: 100%;
}

/*Header Layout 2*/
.eronex-navbar-style-2 .eronex-nav{
	margin-left: 0;
	margin-right: auto;
}

/*Header Layout 3*/
.eronex-navbar-style-3 .eronex-nav{
	margin-left: auto;
	margin-right: auto;
}

/*Header Layout 4*/
.eronex-navbar-style-4 > div {
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
}

.eronex-navbar-style-4 .eronex-brand {
	width: 100%;
	justify-content: center;
}

.eronex-navbar-style-4 .eronex-nav {
	margin: unset;
}

/* ---------------------------------------------
	Header - Search
--------------------------------------------- */

.eronex-header-search{
	position: relative;
}

.eronex-header-search > .search-form label{
	position: absolute;
	height: 40px;
	width: 0;
	max-width: 50vw;
	opacity: 0;
	visibility: hidden;
	right: calc(100% + 5px);
	top: 50%;
	font-size: 15px;
	line-height: 1;
	transform: translateY(-50%);
	transition: width .3s, opacity .3s, visibility 0s linear .3s;
}

.eronex-search-expand .eronex-nav{
	opacity: 0;
	transition: opacity .3s;
}

.eronex-search-expand .eronex-header-search > .search-form label{
	width: 400px;
	opacity: 1;
	visibility: visible;
	margin: 0;
	transition: width .3s, opacity .3s, visibility 0s linear 0s;
}

.eronex-header-search > .search-form input{
	font-size: 14px;
	margin: 0;
	line-height: var(--eronex-line-height);
	font-weight: 400;
	width: 100%;
	max-width: 100%;
	border: 1px solid rgba(var(--eronex-grey-color));
	outline: none;
	box-shadow: none;
	padding: 8px 14px 8px 40px;
	height: auto;
	min-height: 40px;
	color: rgb(var(--eronex-secondary-font-color));
	border-radius: var(--eronex-border-radius-lg);
	background-color: #fff;
	caret-color: rgb(var(--eronex-secondary-font-color));
}

.eronex-header-search > .search-form input[type="search"]::-webkit-search-decoration,
.eronex-header-search > .search-form input[type="search"]::-webkit-search-cancel-button,
.eronex-header-search > .search-form input[type="search"]::-webkit-search-results-button,
.eronex-header-search > .search-form input[type="search"]::-webkit-search-results-decoration {
  display: none;
}

.eronex-header-search > .search-form input::placeholder{
	color: rgba(var(--eronex-primary-font-color), 0.7);
}

.eronex-header-search > .search-form input:hover {
	border-color: rgb(var(--eronex-dark-grey-color));
}

.eronex-header-search > .search-form input:focus{
	box-shadow: 0 0 0 3px rgba(var(--eronex-primary-color), 0.05);
    border-color: rgb(var(--eronex-primary-color));
    border-style: solid;
}

.eronex-header-search > .search-form label:before{
	content: "\e9db";
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	height: 100%;
	pointer-events: none;
	user-select: none;
	font-family: 'hero-icons';
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	font-size: 130%;
	line-height: 40px;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.eronex-header-search > .search-form .search-submit{
	height: 40px;
	width: 40px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	position: relative;
	background-color: transparent;
	outline: none;
	padding: 0;
	border: 1px solid rgb(var(--eronex-grey-color));
	border-radius: 50%;
	transition: color .3s, background-color .3s;
	color: rgb(var(--eronex-primary-font-color));
}

.eronex-header-search > .search-form .search-submit:hover{
	background: #FFF;
    color: rgb(var(--eronex-primary-font-color));
    border: 1px solid rgb(var(--eronex-grey-color));
    -webkit-box-shadow: 0 4px 18px 0 #F6F5F8 inset;
    box-shadow: 0 4px 18px 0 #F6F5F8 inset;
}

.eronex-header-search > .search-form .search-submit > i{
	font-size: 22px;
}

.eronex-search-expand .eronex-header-search .search-submit > i:before{
	content: '\ea39';
}

.eronex-header-button {
	padding: 8px 16px;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	gap: 5px;
	font-size: 16px;
	line-height: 1;
	border: 1px solid rgb(var(--eronex-primary-color));
	background-color: rgb(var(--eronex-primary-color));
	border-radius: var(--eronex-border-radius-md);
	transition: background-color .3s ease-in-out, border-color .3s ease-in-out, color .3s ease-in-out;
}

.eronex-header-button:hover,.eronex-header-button:focus{
	color: #ffffff;
	background-color: rgba(var(--eronex-primary-color),0.8);
}

/* ---------------------------------------------
	Hamburger
--------------------------------------------- */

.eronex-hamburger-toggle-btn{
	height: 40px;
	width: 40px;
	display: none;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	position: relative;
	outline: none;
	padding: 0;
	color: #fff;
	border: 1px solid transparent;
	border-radius: var(--eronex-border-radius-md);
	background-color: rgb(var(--eronex-primary-color));
	transition: color .3s, background-color .3s;
}

.eronex-hamburger-toggle-btn > i{
	font-size: 24px;
}

.eronex-navbar:has(.eronex-hamburger-toggle-btn) .gn-action-menu-wrapper {
	order: 9;
}

.eronex-hamburger-wrapper{
	position: fixed;
	z-index: 999;
	right: 0;
	top: 0;
	width: 100%;
	height: 100%;
}

.admin-bar .eronex-hamburger-wrapper{
	top: 32px;
}

.eronex-hamburger-wrapper:not(.active){
	pointer-events: none;
	visibility: hidden;
}

/* Child panels set visibility: visible for slide animations, which would
   otherwise keep off-screen hamburger links in the keyboard tab order. */
.eronex-hamburger-wrapper:not(.active) .eronex-hamburger-menu-wrapper {
	visibility: hidden;
}

.eronex-hamburger-overlay{
	position: absolute;
	top:0;
	left:0;
	bottom: 0;
	right: 0;
	background: #00000080;
	opacity: 0;
	cursor: pointer;
	visibility: hidden;
	transition: all .3s;
}

.eronex-hamburger-wrapper.active .eronex-hamburger-overlay{
	opacity: 1;
	visibility: visible;
}

.eronex-hamburger-menu-wrapper {
	position: absolute;
	height: 100%;
	width: 100%;
	z-index: 99;
	gap: 15px;
	background: #fff;
	overflow: hidden;
}

.eronex-hamburger-header > a{
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.eronex-hamburger-header .eronex-hamburger-logo{
	width: 150px;
	max-width: 100%;
}

.eronex-hamburger-close-btn{
	top: 12px;
	padding: 0;
	right: 16px;
	width: 28px;
	cursor: pointer;
	height: 28px;
	display: flex;
	font-size: 16px;
	box-shadow: none;
	position: absolute;
	align-items: center;
	justify-content: center;
	border-radius: var(--eronex-border-radius-md);
	background: #fff;
	color: rgb(var(--eronex-secondary-font-color));
	border: 1px solid rgb(var(--eronex-grey-color));
}
.eronex-hamburger-close-btn:focus,
.eronex-hamburger-close-btn:hover {
	background: #fff;
    border-color: rgb(var(--eronex-dark-grey-color));
    color: rgb(var(--eronex-secondary-font-color));
}

.eronex-hamburger-close-btn:focus {
	box-shadow: 0 0 0 3px rgba(207, 207, 207, 0.20), 0 4px 4px 0 #F6F5F8 inset;
}

.eronex-hamburger-body{
	margin: 15px 0;
}

/*Hamburger Menu*/
.eronex-hamburger-wrapper nav > ul ul{
	display: none;
}

.eronex-hamburger-wrapper nav > ul{
	padding: 0;
	margin: 0;
	list-style: none;
}

.eronex-hamburger-wrapper nav ul > li span{
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 8px 0;
	gap: 5px;
}

.eronex-hamburger-wrapper .eronex-dropdown-icon{
	height: 30px;
	width: 30px;
	font-size: 95%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	padding: 0;
	border: none;
	background: transparent;
	color: inherit;
	font-family: inherit;
	border-radius: var(--eronex-border-radius);
	transition: all .3s;
}

.eronex-hamburger-wrapper .eronex-dropdown-icon::before{
	content: '\e972';
	position: relative;
	font-family: 'hero-icons';
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.eronex-hamburger-wrapper .eronex-dropdown-icon:hover,
.eronex-hamburger-wrapper .eronex-dropdown-icon:focus{
	background-color: var(--eronex-bg-alt-color);
}

.eronex-hamburger-wrapper .menu-item-back{
	margin-bottom: 8px;
}

.eronex-hamburger-wrapper .eronex-slide-menu-back{
	display: flex;
    gap: 8px;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 400;
	font-family: inherit;
	width: 32px;
	height: 32px;
	padding: 0;
	cursor: pointer;
    text-decoration: none !important;
    border-radius: var(--eronex-border-radius-md);
    border: 1px solid rgb(var(--eronex-grey-color));
    background: rgb(var(--eronex-light-grey-color));
    color: rgba(var(--eronex-secondary-font-color), 0.6);
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.eronex-hamburger-wrapper .eronex-slide-menu-back:hover,
.eronex-hamburger-wrapper .eronex-slide-menu-back:focus {
	background: rgb(var(--eronex-primary-color));
	border-color: rgb(var(--eronex-primary-color));
	color: #fff;
}

.eronex-hamburger-wrapper .eronex-slide-menu-back::before{
	content: '\e971';
	position: relative;
	font-family: 'hero-icons';
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.eronex-hamburger-wrapper nav ul > li a{
	font-size: 14px;
	font-weight: 400;
	text-decoration: none;
	color: var(--eronex-font-alt-color);
	transition: color .3s;
}

.eronex-hamburger-wrapper nav > ul > li a:hover,
.eronex-hamburger-wrapper nav > ul > li a:focus{
	color: rgb(var(--eronex-primary-color));
}

/*Sliding Menu*/
.eronex-sliding-menu{
	overflow: hidden;
	position: relative;
}

.eronex-sliding-menu ul {
	list-style: none;
	padding: 2px;
	margin: 0;
	float: left;
	width: 100%;
	overflow: hidden;
}

.eronex-sliding-menu .menu-panel {
	position: relative;
	display: block;
	padding: 0;
	margin: 0;
}

/*Hamburger Layout 1*/
.eronex-hamburger-layout-1 .eronex-hamburger-menu-wrapper{
	width: 320px;
	top: 0;
	right: 0;
	display: flex;
	flex-direction: column;
	visibility: visible;
	padding: 32px;
	transform: translateX(100%);
	transition: transform .5s;
}

.eronex-hamburger-layout-1.active .eronex-hamburger-menu-wrapper{
	transform: translateX(0);
}

/*Hamburger Layout 2*/
.eronex-hamburger-layout-2 .eronex-hamburger-menu-wrapper{
	width: 400px;
	top: 0;
	left: 0;
	display: flex;
	flex-direction: column;
	visibility: visible;
	padding: 16px;
	transform: translateX(-100%);
	transition: transform .5s;
}

.eronex-hamburger-layout-2.active .eronex-hamburger-menu-wrapper{
	transform: translateX(0);
}

/*Hamburger Layout 3*/
.eronex-hamburger-layout-3 .eronex-hamburger-menu-wrapper{
	opacity: 0;
	transition: opacity 0.2s, visibility 0.2s;
}

.eronex-hamburger-layout-3.active .eronex-hamburger-menu-wrapper{
	opacity: 1;
}

/*Hamburger Layout 4*/
.eronex-hamburger-layout-4 .eronex-hamburger-menu-wrapper{
	visibility: visible;
	-webkit-transform: translate3d(0, 100%, 0);
	transform: translate3d(0, 100%, 0);
	transition: transform .5s;
}

.eronex-hamburger-layout-4.active .eronex-hamburger-menu-wrapper{
	transform: translate3d(0, 0, 0);
}

/*Hamburger Layout 5*/
.eronex-hamburger-layout-5 .eronex-hamburger-menu-wrapper{
	visibility: visible;
	-webkit-transform: translate3d(0, -100%, 0);
	transform: translate3d(0, -100%, 0);
	transition: transform .5s;
}

.eronex-hamburger-layout-5.active .eronex-hamburger-menu-wrapper{
	transform: translate3d(0, 0, 0);
}

/* ---------------------------------------------
	Banner
--------------------------------------------- */

.eronex-banner{
	position: relative;
	display: flex;
	align-items: center;
	min-height: 200px;
	padding: 60px 0;
	background-color: rgb(var(--eronex-light-grey-color));
	overflow: hidden;
}

.eronex-banner > div {
	position: relative;
}

.eronex-banner:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
}

.eronex-banner .eronex-banner-title{
	font-size: 32px;
	font-weight: 500;
	text-align: center;
	margin: 0;
}

/*Breadcrumb*/
.eronex-breadcrumbs{
	text-align: center;
	margin-top: 8px;
}

.eronex-breadcrumb-list{
	display: inline-flex;
	align-items: baseline;
	gap: 5px;
	font-size: 14px;
	flex-wrap: wrap;
	line-height: 1.5;
	font-weight: 500;
	text-align: center;
	justify-content: center;
}

.eronex-breadcrumb-list a{
	transition: color 0.3s ease-in-out;
}

.eronex-breadcrumb-separator{
	display: inline-block;
}

.eronex-breadcrumb-separator > i{
	position: relative;
	top: 1px;
	font-size: 90%;
	line-height:1;
}

/* ---------------------------------------------
	Content
--------------------------------------------- */

.eronex-row:has(.eronex-aside) .eronex-main {
	flex: 0 0 auto;
	width: 70%;
}

.eronex-aside {
	width: 30%;
}

.eronex-content-wrapper{
	padding:0px 0;
}

.eronex-no-content {
	width: 100%;
    min-height: 500px;
    background-color: rgb(var(--eronex-light-grey-color));
    border-radius: var(--eronex-border-radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
	padding: 30px;
}

.eronex-no-content .eronex-image {
	max-width: 400px;
    margin: 0 0 12px;
	width: 100%;
}

.eronex-no-content .eronex-title {
	font-size: 16px;
	margin: 0 0 4px;
	font-weight: 500;
	color: rgb(var(--eronex-secondary-font-color));
}

.eronex-no-content .eronex-description {
	font-size: 14px;
	margin: 0;
	max-width: 400px;
	color: rgb(var(--eronex-primary-font-color));
}

/* ---------------------------------------------
	Footer
--------------------------------------------- */

.eronex-footer{
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 30px 0;
	background: #2b2b2b;
}

.eronex-footer > .eronex-footer-text{
	color: #fff;
	margin: 0;
}

.eronex-footer > .eronex-footer-text a{
	text-decoration: none;
}

/* ---------------------------------------------
	Scroll Top
--------------------------------------------- */

.eronex-scroll-top {
	position: fixed;
	right: 20px;
	bottom: 20px;
	width: 35px;
	height: 35px;
	display: none;
}

.eronex-scroll-top > i {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #ffffff;
	font-size: 16px;
	cursor: pointer;
	border-radius: var(--eronex-border-radius-md);
	background-color: rgba(var(--eronex-primary-color));
}

/* ---------------------------------------------
	Animation
--------------------------------------------- */

@-webkit-keyframes topAppear {
	from {
		transform: translateY(-100%);
	}
	to {
		transform: translateY(0);
	}
}

@keyframes topAppear {
	from {
		transform: translateY(-100%);
	}
	to {
		transform: translateY(0);
	}
}

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

.theme-eronex.woocommerce .woocommerce-breadcrumb,
.theme-eronex.woocommerce .woocommerce-products-header__title.page-title {
	display: none;
}

/* Single product gallery */
.theme-eronex.woocommerce div.product div.images {
	float: none;
	width: 100%;
	margin: 0 0 36px;
}

.theme-eronex.woocommerce div.product div.summary {
	float: none;
	width: 100%;
	clear: none;
}

.theme-eronex.woocommerce div.product div.images .woocommerce-product-gallery {
	position: relative;
}

.theme-eronex.woocommerce div.product div.images .woocommerce-product-gallery__wrapper {
	margin: 0;
}

.theme-eronex.woocommerce div.product div.images .woocommerce-product-gallery__image {
	border-radius: var(--eronex-border-radius-lg);
	overflow: hidden;
}

.theme-eronex.woocommerce div.product div.images .woocommerce-product-gallery__image img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: var(--eronex-border-radius-lg);
}

.theme-eronex.woocommerce div.product div.images .woocommerce-product-gallery__trigger {
	position: absolute;
	top: 16px;
	right: 16px;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.92);
	color: rgb(var(--eronex-secondary-font-color));
	text-decoration: none;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.theme-eronex.woocommerce div.product div.images .woocommerce-product-gallery__trigger:hover {
	transform: scale(1.05);
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.16);
}

.theme-eronex.woocommerce div.product div.images .flex-control-thumbs {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin: 16px 0 0;
	padding: 0;
	list-style: none;
}

.theme-eronex.woocommerce div.product div.images .flex-control-thumbs li {
	width: calc(25% - 9px);
	margin: 0;
	padding: 0;
	list-style: none;
	line-height: 1;
}

.theme-eronex.woocommerce div.product div.images .flex-control-thumbs li img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: var(--eronex-border-radius-md);
	cursor: pointer;
	opacity: 0.65;
	border: 2px solid transparent;
	transition: opacity 0.2s ease, border-color 0.2s ease;
}

.theme-eronex.woocommerce div.product div.images .flex-control-thumbs li img.flex-active,
.theme-eronex.woocommerce div.product div.images .flex-control-thumbs li img:hover {
	opacity: 1;
	border-color: rgb(var(--eronex-primary-color));
}

.theme-eronex.woocommerce div.product div.images .flex-direction-nav {
	margin: 0;
	padding: 0;
	list-style: none;
}

.theme-eronex.woocommerce div.product div.images .flex-direction-nav a {
	position: absolute;
	top: 50%;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	margin-top: -18px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.92);
	color: rgb(var(--eronex-secondary-font-color));
	text-decoration: none;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.theme-eronex.woocommerce div.product div.images .flex-direction-nav .flex-prev {
	left: 16px;
}

.theme-eronex.woocommerce div.product div.images .flex-direction-nav .flex-next {
	right: 16px;
}

/* Listing */

dl,
ol,
ul {
	margin: 0 0 20px;
}
ul {
    padding: 0;
    list-style: disc inside none;
}
ul ul {
    list-style-type: revert;
    margin-left: 20px;
}
li {
	line-height: 2em;
}
ol {
	padding-left: 0;
	list-style: decimal inside none;
}
ol li {
	width: 100%;
}

ol ul,
ol ol,
ul ol,
ul ul {
  margin-left: 20px;
}

ol ol,
ol ul,
ul ol,
ul ul {
    margin-bottom: 0;
}

.eronex-post-meta {
	display: flex;
	flex-wrap: wrap;
	list-style: none;
	line-height: var(--eronex-line-height);
	padding: 0;
	margin: 0 0 8px;
}

.eronex-post-categories {
	margin: 0 0 8px;
}

.eronex-post-meta.eronex-post-categories a ~ a {
	margin-left: 4px;
}
.eronex-post-meta li {
    line-height: inherit;
    list-style-type: none;
    position: relative;
    margin: 0 8px 0 0;
	gap: 4px;
}
.eronex-post-meta li:not(:last-child)::after {
    top: 0;
    right: -3px;
    content: ",";
    color: rgb(var(--eronex-primary-color));
    font-size: 18px;
    position: absolute;
	line-height: 1;
}
.eronex-post-meta li:last-child {
    margin-right: 0;
}

.eronex-archive-layout-list > article ~ article {
	margin-top: 36px;
	border-top: 1px solid rgb(var(--eronex-grey-color));
	padding-top: 36px;
}

article .eronex-post-thumbnail {
	margin-bottom: 0;
	border-radius: var(--eronex-border-radius-lg);
}

article .eronex-post-thumbnail:has(img) {
	margin-bottom: 24px;
}

article .eronex-post-thumbnail img {
	border-radius: var(--eronex-border-radius-lg);
}

.eronex-archive-layout-grid {
    display: grid;
    grid-template-columns: repeat(var(--eronex-archive-grid-items), minmax(0, 1fr));
    gap: 24px;
}

.eronex-archive-layout-grid .eronex-post-content {
	overflow: hidden;
    -o-text-overflow: ellipsis;
       text-overflow: ellipsis;
    display: -webkit-box !important;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.eronex-archive-layout-grid .eronex-pagination {
    grid-column: 1 / -1;
    width: 100%;
	margin-top: 16px;
}

.eronex-pagination:has(.pagination-title) {
	justify-content: flex-start;
}

.eronex-main article.sticky {
	padding: 24px;
    background-color: rgb(var(--eronex-light-grey-color));
    border-radius: var(--eronex-border-radius-lg);
}

/* Theme Check recommended classes */
.gallery-caption {
	display: block;
	font-size: 0.875em;
	line-height: 1.5;
	margin-top: 0.5em;
	text-align: center;
	color: rgb(var(--eronex-primary-font-color));
}

.bypostauthor > .comment-body,
.comment-list .bypostauthor > .comment-body {
	position: relative;
}

/* Block styles */
.is-style-eronex-lead {
	font-size: 1.25em;
	line-height: 1.5;
	color: rgb(var(--eronex-secondary-font-color));
}

.wp-block-quote.is-style-eronex-highlight {
	border-left: 4px solid rgb(var(--eronex-primary-color));
	background-color: rgb(var(--eronex-light-grey-color));
	padding: 1em 1.25em;
	margin: 1.5em 0;
}

.wp-block-button.is-style-eronex-outline .wp-block-button__link {
	background: transparent;
	border: 2px solid rgb(var(--eronex-primary-color));
	color: rgb(var(--eronex-primary-color));
}

.wp-block-button.is-style-eronex-outline .wp-block-button__link:hover,
.wp-block-button.is-style-eronex-outline .wp-block-button__link:focus {
	background-color: rgb(var(--eronex-primary-color));
	color: #fff;
}

.wp-block-group.is-style-eronex-card {
	background-color: rgb(var(--eronex-light-grey-color));
	border-radius: var(--eronex-border-radius-lg);
	padding: 1.5em;
}

.eronex-main .eronex-archive-layout-list > article > .eronex-post-info {
	margin: 0;
}

.eronex-main article.sticky + article {
	padding-top: 0;
	border: 0;
}

.eronex-post-title {
	display: inline-block;
	word-break: break-word;
}

.eronex-post-title a {
	font-size: 20px;
	font-weight: 500;
	text-decoration: none;
	word-break: break-word;
	color: rgb(var(--eronex-secondary-font-color));
	transition: color .3s ease-in-out;
	display: block;
}

.eronex-post-info .eronex-link {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	margin: 20px 0 0;
	position: relative;
}

.eronex-post-info .eronex-link:after{
	left: 0;
	width: 0;
	height: 1px;
	bottom: 2px;
	content: '';
	position: absolute;
	-webkit-transition: width .2s ease-in-out;
	-o-transition: width .2s ease-in-out;
	transition: width .2s ease-in-out;
	background: rgba(var(--eronex-primary-color), .85);
}

.eronex-post-info .eronex-link:hover:after,
.eronex-post-info .eronex-link:focus:after {
    width: 100%;
}

figure {
    margin-bottom: 20px;
    position: relative;
}

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

.eronex-pagination {
	display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 40px;
    align-items: center;
    justify-content: center;
	clear: both;
}

.eronex-pagination:active,
.eronex-pagination:focus {
	background-color: transparent !important;
}

.eronex-pagination .page-numbers {
	gap: 16px;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	list-style: none;
	align-items: center;
}

.eronex-pagination .page-numbers li {
    list-style-type: none;
}

.eronex-pagination .post-page-numbers,
.eronex-pagination .page-numbers span,
.eronex-pagination .page-numbers a {
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 400;
    min-width: 32px;
    padding: 5px 10px;
    line-height: 20px;
    text-decoration: none !important;
    border-radius: var(--eronex-border-radius-md);
    border: 1px solid rgb(var(--eronex-grey-color));
    background: rgb(var(--eronex-light-grey-color));
    color: rgba(var(--eronex-secondary-font-color), 0.6);
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.eronex-pagination .post-page-numbers:hover,
.eronex-pagination .post-page-numbers.current,
.eronex-pagination .page-numbers .page-numbers.current,
.eronex-pagination .page-numbers a:hover {
    color: #fff;
    border-color: rgb(var(--eronex-primary-color));
    background-color: rgb(var(--eronex-primary-color));
}

.wp-block-cover, .wp-block-cover-image {
	margin-bottom: 20px;
}

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

.eronex-pagination .prev.page-numbers,
.eronex-pagination .next.page-numbers{
    padding-left: 16px;
    padding-right: 16px;
}

.eronex-pagination .next.page-numbers:after {
	font-family: 'hero-icons';
	content: "\e972";
	font-size: 16px;
}

.eronex-pagination .prev.page-numbers:before {
	font-family: 'hero-icons';
	content: "\e971";
	font-size: 16px;
}

.widget .widget-title,
.widget.widget_block .wp-block-heading,
.wp-block-search .wp-block-search__label {
    font-size: 16px;
    font-weight: 500;
    position: relative;
	line-height: 1;
    color: rgb(var(--eronex-secondary-font-color));
	display: block;
    margin: 0 0 8px;
}

.widget > nav > ul {
	margin: 0;
	padding: 0;
	line-height: 1.5;
}

.widget > nav > ul li {
	line-height: inherit;
}

.widget.widget_categories > nav > ul li,
.widget.widget_archive > nav > ul li {
	line-height: inherit;
	display: flex;
    flex-wrap: wrap;
	justify-content: space-between;
}

.widget.widget_categories > nav > ul li > a:before,
.widget.widget_archive > nav > ul li > a:before {
    width: 5px;
    height: 5px;
    content: '';
    background: #636363;
    border-radius: 50px;
	margin-right: 15px;
	display: inline-block;
    vertical-align: middle;
}

.widget.widget_categories > nav > ul li ol,
.widget.widget_categories > nav > ul li ul,
.widget.widget_archive > nav > ul li ol,
.widget.widget_archive > nav > ul li ul {
	margin-top: 8px;
	width: 100%;
}

.widget > nav > ul li + li {
	margin-top: 8px;
}

.widget.widget_rss > nav > ul li {
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	position: relative;
	padding-left: 20px;
}

.widget.widget_rss > nav > ul li:before {
	left: 0;
    top: 10px;
    width: 5px;
    height: 5px;
    content: '';
    line-height: 20px;
    background: #636363;
	flex: none;
    position: absolute;
    border-radius: 50px;
}

.widget cite,
.widget .rss-date {
    font-weight: 600;
}

.widget.widget_search .search-form {
	display: flex;
	gap: 10px;
    align-items: center;
}

.widget.widget_search .search-form label {
	margin: 0;
	flex-grow: 1;
}

.widget.widget_search .search-form label .search-field {
	margin: 0;
	background-color: #fff;
}

.widget.widget_search .search-form .search-submit {
	display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border: 1px solid transparent;
    width: 40px;
	height: 40px;
	padding: 0;
    outline: none;
    box-shadow: none;
    background-color: transparent;
    border-radius: var(--eronex-border-radius-lg);
    transition: all .15s ease-in-out;
    color: #fff;
    text-decoration: none !important;
    background-color: rgb(var(--eronex-primary-color));
    border-color: rgb(var(--eronex-primary-color));
}

.widget.widget_search .search-form .search-submit:hover {
	color: #fff;
    background-color: rgba(var(--eronex-primary-color), .95);
    border-color: rgba(var(--eronex-primary-color), .95);
}

.widget.widget_search .search-form .search-submit:focus {
	box-shadow: 0 4px 18px 0 rgba(232, 223, 255, 0.10) inset, 0 0 0 3px rgba(var(--eronex-primary-color), .2);
}

.widget.widget_text .textwidget p img,
.widget.widget_text .textwidget p strong {
	display: block;
}

.widget.widget_text .textwidget .wp-caption {
	margin: 0 0 20px;
}

.widget.widget_text .textwidget .wp-caption img{
	display: block;
	margin: 0 0 8px;
}

.widget.widget_text .textwidget .wp-caption p:empty {
	display: none;
}

.widget.widget_text .textwidget .wp-caption .wp-caption-text {
	text-align: center;
	font-size: 11px;
}

.widget.widget_text .textwidget .wp-caption + p strong {
	display: inline-block;
}

.widget.widget_nav_menu .menu li,
.widget.widget_nav_menu .menu {
	list-style: none;
}

.widget.widget_nav_menu .menu li ol,
.widget.widget_nav_menu .menu li ul {
	margin-top: 8px;
}

.widget.widget_nav_menu .menu a:not(:hover) {
	color: rgb(var(--eronex-secondary-font-color));
}

.calendar_wrap #wp-calendar {
    margin: 0;
    background: #fff
}

.calendar_wrap table#wp-calendar>thead>tr>th,
.calendar_wrap table#wp-calendar>tbody>tr>th,
.calendar_wrap table#wp-calendar>tfoot>tr>th,
.calendar_wrap table#wp-calendar>thead>tr>td,
.calendar_wrap table#wp-calendar>tbody>tr>td,
.calendar_wrap table#wp-calendar>tfoot>tr>td {
	padding: 9px 0;
}

input[type="submit"],
.eronex-comments-wrapper .comment-form .form-submit input[type="submit"] {
	color: #fff;
    text-decoration: none !important;
    background-color: rgb(var(--eronex-primary-color));
    border-color: rgb(var(--eronex-primary-color));
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border: 1px solid transparent;
    padding: 9px 18px;
    outline: none;
    box-shadow: none;
    border-radius: var(--eronex-border-radius-lg);
    transition: all .15s ease-in-out;
}

input[type="submit"]:hover,
input[type="submit"]:focus,
.eronex-comments-wrapper .comment-form .form-submit input[type="submit"]:hover,
.eronex-comments-wrapper .comment-form .form-submit input[type="submit"]:focus {
    color: #fff;
    background-color: rgba(var(--eronex-primary-color), .95);
    border-color: rgba(var(--eronex-primary-color), .95);
}

input[type="submit"]:focus,
.eronex-comments-wrapper .comment-form .form-submit input[type="submit"]:focus {
	box-shadow: 0 4px 18px 0 rgba(232, 223, 255, 0.10) inset, 0 0 0 3px rgba(var(--eronex-primary-color), .2);
}

textarea,
select,
.dc-select select,
.form-control,
input[type="text"],
input[type="password"],
input[type="datetime"],
input[type="datetime-local"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="week"],
input[type="number"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="tel"],
input[type="color"],
.uneditable-input,
.eronex-comments-wrapper .comment-list .comment-form-author input,
.eronex-comments-wrapper .comment-list .comment-form-email input,
.eronex-comments-wrapper .comment-list .comment-form-url input,
.eronex-post-content .comment-form .comment-form-author > input,
.eronex-post-content .comment-form .comment-form-email > input,
.eronex-post-content .comment-form .comment-form-url > input,
.eronex-post-content .comment-form .comment-form-comment textarea,
.eronex-comment-form-inputs input,
.eronex-comments-wrapper .comment-form-comment textarea,
.wp-block-search__input {
	font-size: 14px;
    line-height: var(--eronex-line-height);
    font-weight: 400;
    width: 100%;
    max-width: 100%;
    border: 1px solid rgba(var(--eronex-grey-color));
    outline: none;
    box-shadow: none;
    padding: 8px 14px;
    height: auto;
    min-height: 40px;
    color: rgb(var(--eronex-secondary-font-color));
    border-radius: var(--eronex-border-radius-lg);
    background-color: #fff;
    caret-color: rgb(var(--eronex-secondary-font-color));
}

input[type="password"],
textarea,
select,
.dc-select select,
.form-control,
input[type="text"],
input[type="password"],
input[type="datetime"],
input[type="datetime-local"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="week"],
input[type="number"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="tel"],
input[type="color"],
.uneditable-input,
.eronex-comments-wrapper .comment-list .comment-form-author input,
.eronex-comments-wrapper .comment-list .comment-form-email input,
.eronex-comments-wrapper .comment-list .comment-form-url input,
.eronex-post-content .comment-form .comment-form-author > input,
.eronex-post-content .comment-form .comment-form-email > input,
.eronex-post-content .comment-form .comment-form-url > input,
.eronex-comment-form-inputs input,
.eronex-comments-wrapper .comment-form-comment textarea {
	background-color: rgb(var(--eronex-light-grey-color));
}

textarea:hover,
select:hover,
.dc-select select:hover,
.form-control:hover,
input[type="text"]:hover,
input[type="password"]:hover,
input[type="datetime"]:hover,
input[type="datetime-local"]:hover,
input[type="date"]:hover,
input[type="month"]:hover,
input[type="time"]:hover,
input[type="week"]:hover,
input[type="number"]:hover,
input[type="email"]:hover,
input[type="url"]:hover,
input[type="search"]:hover,
input[type="tel"]:hover,
input[type="color"]:hover,
.uneditable-input:hover,
input[type="password"]:hover,
.eronex-comments-wrapper .comment-list .comment-form-author input:hover,
.eronex-comments-wrapper .comment-list .comment-form-email input:hover,
.eronex-comments-wrapper .comment-list .comment-form-url input:hover,
.eronex-post-content .comment-form .comment-form-author > input:hover,
.eronex-post-content .comment-form .comment-form-email > input:hover,
.eronex-post-content .comment-form .comment-form-url > input:hover,
.eronex-post-content .comment-form .comment-form-comment textarea:hover,
.eronex-comment-form-inputs input:hover,
.eronex-comments-wrapper .comment-form-comment textarea:hover,
.wp-block-search__input:hover {
	border-color: rgb(var(--eronex-dark-grey-color));
}

.theme-eronex textarea:focus,
.theme-eronex select:focus,
.theme-eronex .dc-select select:focus,
.theme-eronex .form-control:focus,
.theme-eronex input[type="text"]:focus,
.theme-eronex input[type="password"]:focus,
.theme-eronex input[type="datetime"]:focus,
.theme-eronex input[type="datetime-local"]:focus,
.theme-eronex input[type="date"]:focus,
.theme-eronex input[type="month"]:focus,
.theme-eronex input[type="time"]:focus,
.theme-eronex input[type="week"]:focus,
.theme-eronex input[type="number"]:focus,
.theme-eronex input[type="email"]:focus,
.theme-eronex input[type="url"]:focus,
.theme-eronex input[type="search"]:focus,
.theme-eronex input[type="tel"]:focus,
.theme-eronex input[type="color"]:focus,
.uneditable-input:focus,
.theme-eronex input[type="password"]:focus,
.eronex-comments-wrapper .comment-list .comment-form-author input:focus,
.eronex-comments-wrapper .comment-list .comment-form-email input:focus,
.eronex-comments-wrapper .comment-list .comment-form-url input:focus,
.eronex-post-content .comment-form .comment-form-author > input:focus,
.eronex-post-content .comment-form .comment-form-email > input:focus,
.eronex-post-content .comment-form .comment-form-url > input:focus,
.eronex-post-content .comment-form .comment-form-comment textarea:focus,
.eronex-comment-form-inputs input:focus,
.eronex-comments-wrapper .comment-form-comment textarea:focus,
.wp-block-search__input:focus {
	box-shadow: 0 0 0 3px rgba(var(--eronex-primary-color), 0.05);
	border-color: rgb(var(--eronex-primary-color));
	border-style: solid;
	outline: none;
}

.eronex-post-content .comment-form .comment-form-comment textarea,
.eronex-comments-wrapper .comment-form-comment textarea {
	display: block;
}

.eronex-post-content .comment-form .comment-form-comment textarea {
	background-color: rgb(var(--eronex-light-grey-color));
}

.eronex-post-content .comment-form .comment-form-comment {
	margin: 0;
	width: 100%;
}

.eronex-post-content .comment-form .comment-form-author > label,
.eronex-post-content .comment-form .comment-form-email > label,
.eronex-post-content .comment-form .comment-form-url > label,
.eronex-post-content .comment-form .comment-form-comment > label {
	margin: 0 0 8px;
    font-size: 14px;
    font-weight: 500;
    position: relative;
    display: block;
    line-height: var(--eronex-line-height);
    color: rgb(var(--eronex-secondary-font-color));
}

.eronex-post-content .wp-block-post-comments-form .comment-form .comment-form-cookies-consent {
	width: 100%;
	margin: 0;
}

.eronex-post-content .wp-block-post-comments-form .comment-form p{
	margin: 0;
}

.eronex-comment-form-inputs + .comment-form-comment {
	padding: 0;
}

.comment-respond .comment-form:has(>.comment-form-comment) .eronex-comment-form-inputs {
	margin: -8px;
}

.eronex-post-content .comment-form .comment-form-author,
.eronex-post-content .comment-form .comment-form-email,
.eronex-post-content .comment-form .comment-form-url {
	width: 100%;
	max-width: calc(33.33% - 10.7px);
}

.eronex-post-content .comment-form .comment-form-author > label .required,
.eronex-post-content .comment-form .comment-form-email > label .required,
.eronex-post-content .comment-form .comment-form-url > label .required,
.eronex-post-content .comment-form .comment-form-comment > label .required {
	color: rgb(var(--eronex-danger-color));
}

.eronex-post-content .comment-form .form-submit {
	width: 100%;
}

.eronex-post-content .comment-form .form-submit input[type="submit"] {
	color: #fff;
	text-decoration: none !important;
	background-color: rgb(var(--eronex-primary-color));
	border-color: rgb(var(--eronex-primary-color));
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	cursor: pointer;
	font-size: 14px;
	line-height: 20px;
	font-weight: 400;
	text-align: center;
	white-space: nowrap;
	vertical-align: middle;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	border: 1px solid transparent;
	padding: 9px 18px;
	outline: none;
	box-shadow: none;
	border-radius: var(--eronex-border-radius-lg);
	transition: all .15s ease-in-out;
}

.eronex-post-content .comment-form .form-submit input[type="submit"]:hover,
.eronex-post-content .comment-form .form-submit input[type="submit"]:focus {
	color: #fff;
	background-color: rgba(var(--eronex-primary-color), .95);
	border-color: rgba(var(--eronex-primary-color), .95);
}

.eronex-post-content .wp-block-comments + .wp-block-post-comments-form {
	margin-top: 24px;
}

.eronex-post-content .wp-block-comments + p {
	margin-top: 20px;
}

.eronex-post-content .wp-block-comments > .wp-block-comments-title {
	font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    margin-bottom: 24px;
    color: rgb(var(--eronex-secondary-font-color));
}

.eronex-post-content .wp-block-comments .wp-block-comment-template {
	margin-bottom: 20px;
}

.eronex-post-content .wp-block-comments .comment-form {
	margin-bottom: 20px;
}

.eronex-post-content .logged-out.wp-block-loginout,
.eronex-post-content .logged-in.wp-block-loginout {
	margin-bottom: 20px;
}

.wp-block-post-comments-form + p {
	margin-top: 16px;
}

.eronex-comments-wrapper > .title-comments {
	font-size: 16px;
	line-height: 24px;
	font-weight: 500;
	margin-bottom: 24px;
	color: rgb(var(--eronex-secondary-font-color));
}

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

.eronex-comments-wrapper .comment-list .comment-body > ul,
.eronex-comments-wrapper .comment-list .comment-body > ol {
	margin-left: 0;
	margin-bottom: 20px;
}

.eronex-comments-wrapper .comment-list > li + li {
	margin-top: 24px;
}

.eronex-comments-wrapper .comment-list > li .required-field-message {
	margin: 8px 0 0;
    font-size: 14px;
    font-weight: 500;
    position: relative;
    display: block;
    line-height: var(--eronex-line-height);
    color: rgb(var(--eronex-secondary-font-color));
}

.eronex-comments-wrapper .comment-list .comment-respond {
	margin-top: 16px;
	padding-top: 16px;
	border-top: 1px solid rgb(var(--eronex-grey-color));
}

/* .eronex-comments-wrapper .comment-list .comment-form-comment {
	margin: 0;
	padding: 8px;
} */

.eronex-comments-wrapper .comment-list > li .required-field-message .required {
	color: rgb(var(--eronex-danger-color));
}

.eronex-comments-wrapper .comment-list > li .children {
	margin-top: 16px;
	list-style: none;
	border-top: 1px solid rgb(var(--eronex-grey-color));
	padding: 16px 0 0 20px;
	margin-left: 0;
}

.eronex-comments-wrapper .comment-list > li .children > li + li {
	margin-top: 16px;
	padding-top: 16px;
	padding-left: 20px;
	border-top: 1px solid rgb(var(--eronex-grey-color));
}

.eronex-comments-wrapper .comment-author {
	display: flex;
	gap: 8px;
	align-items: center;
	margin-bottom: 16px;
}

.eronex-comments-wrapper .comment-author img {
	width: 42px;
	height: 42px;
	object-fit: cover;
	border-radius: 50%;
}

.eronex-comments-wrapper .comment-author-name {
	font-size: 14px;
	line-height: 20px;
	font-weight: 500;
	color: rgb(var(--eronex-secondary-font-color));
	margin: 0;
}

.eronex-comments-wrapper .comment-author-name a {
	color: rgb(var(--eronex-secondary-font-color));
}

.eronex-comments-wrapper .comment-reply-link {
	font-size: 14px;
	line-height: 20px;
	margin-left: auto;
	position: relative;
}

.eronex-comments-wrapper .comment-reply-link:after {
    left: 0;
    width: 0;
    height: 1px;
    bottom: 2px;
    content: '';
    position: absolute;
    -webkit-transition: width .2s ease-in-out;
    -o-transition: width .2s ease-in-out;
    transition: width .2s ease-in-out;
    background: rgba(var(--eronex-primary-color), .85);
}

.eronex-comments-wrapper .comment-reply-link:hover:after,
.eronex-comments-wrapper .comment-reply-link:focus:after {
    width: 100%;
}

.eronex-comments-wrapper .comment-meta {
	font-size: 12px;
	line-height: 16px;
	font-weight: 400;
	color: rgb(var(--eronex-secondary-font-color));
	margin-bottom: 16px;
}

.wp-block-search__inside-wrapper .wp-block-search__button {
	display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border: 1px solid transparent;
    padding: 9px 18px;
    outline: none;
    box-shadow: none;
    background-color: transparent;
    border-radius: var(--eronex-border-radius-lg);
    transition: all .15s ease-in-out;
	color: #fff;
    text-decoration: none !important;
    background-color: rgb(var(--eronex-primary-color));
    border-color: rgb(var(--eronex-primary-color));
}

.wp-block-search__inside-wrapper .wp-block-search__button.has-icon {
	width: 44px;
	height: 44px;
	flex: none;
	padding: 0;
}

.wp-block-search__inside-wrapper .wp-block-search__button:hover,
.wp-block-search__inside-wrapper .wp-block-search__button:focus {
    color: #fff;
    background-color: rgba(var(--eronex-primary-color), .95);
    border-color: rgba(var(--eronex-primary-color), .95);
}

.wp-block-search__inside-wrapper .wp-block-search__button:focus {
	box-shadow: 0 4px 18px 0 rgba(232, 223, 255, 0.10) inset, 0 0 0 3px rgba(var(--eronex-primary-color), .2);
}

.eronex-widgets > .widget + .widget {
	margin-top: 16px;
}

.widget.widget_block .wp-block-group__inner-container > .wp-block-archives-list {
	margin: 0;
	list-style: none;
}

.eronex-widgets.eronex-widgets-style-boxed > .widget {
	padding: 16px;
    background-color: rgb(var(--eronex-light-grey-color));
    border-radius: var(--eronex-border-radius-lg);
}

.eronex-widgets.eronex-widgets-style-boxed > .widget:empty {
	display: none;
}

.eronex-widgets.eronex-widgets-style-boxed > .widget .wp-block-search__input {
	background-color: #fff;
}

.wp-block-latest-posts.wp-block-latest-posts__list {
	margin: 0;
}

.wp-block-latest-posts.wp-block-latest-posts__list li {
	line-height: 1.5;
}

.wp-block-latest-posts.wp-block-latest-posts__list li ~ li {
	margin-top: 10px;
}

.wp-block-latest-comments__comment {
	margin-bottom: 0;
}

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

ol.wp-block-latest-comments .wp-block-latest-comments__comment + .wp-block-latest-comments__comment {
	margin-top: 20px;
}

ol.wp-block-latest-comments + .wp-block-paragraph {
	margin-top: 20px;
}

.wp-block-latest-posts.wp-block-latest-posts__list + .wp-block-paragraph {
	margin-top: 20px;
}

.wp-block-categories {
	margin-bottom: 0;
	list-style: none;
}

.eronex-comments-wrapper {
	margin-top: 36px;
	padding-top: 36px;
	border-top: 1px solid rgb(var(--eronex-grey-color));
}

.comment-list + .comment-respond {
	margin-top: 36px;
	padding-top: 36px;
	border-top: 1px solid rgb(var(--eronex-grey-color));
}

.comment-respond .comment-reply-title {
	display: flex;
	align-items: center;
	gap: 10px;
	justify-content: space-between;
	margin-bottom: 8px;
	font-size: 20px;
}

.required-field-message {
	margin: 20px 0 0;
	font-size: 14px;
	font-weight: 500;
	position: relative;
	display: block;
	line-height: var(--eronex-line-height);
	color: rgb(var(--eronex-secondary-font-color));
}

.required-field-message .required {
	color: rgb(var(--eronex-danger-color));
}

.eronex-post-content .wp-block-comment-template .wp-block-columns {
	margin-bottom: 0;
}

.eronex-post-content .wp-block-post-comments-form .comment-form {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
}

.eronex-post-content .wp-block-comments {
	margin-top: 36px;
	padding-top: 36px;
	border-top: 1px solid rgb(var(--eronex-grey-color));
}

.eronex-post-content .wp-block-post-comments-form .comment-form > .comment-notes {
	margin: 0;
}

.eronex-post-content .wp-block-post-comments-form .comment-form > .comment-notes .required-field-message {
	margin: 20px 0 0;
    font-size: 14px;
    font-weight: 500;
    position: relative;
    display: block;
    line-height: var(--eronex-line-height);
    color: rgb(var(--eronex-secondary-font-color));
}

.eronex-post-content .wp-block-post-comments-form .comment-form > .comment-notes .required-field-message .required {
	color: rgb(var(--eronex-danger-color));
}

.comment-respond .comment-reply-title #cancel-comment-reply-link{
	font-size: 14px;
}

.eronex-comments-wrapper .comment-list .comment-form-author label,
.eronex-comments-wrapper .comment-list .comment-form-email label,
.eronex-comments-wrapper .comment-list .comment-form-url label,
.eronex-comments-wrapper .comment-form-comment label,
.eronex-comment-form-inputs label {
	margin: 0 0 8px;
	font-size: 14px;
	font-weight: 500;
	position: relative;
	display: block;
	line-height: var(--eronex-line-height);
	color: rgb(var(--eronex-secondary-font-color));
}

.eronex-comments-wrapper .comment-list .comment-form-author label .required,
.eronex-comments-wrapper .comment-list .comment-form-email label .required,
.eronex-comments-wrapper .comment-list .comment-form-url label .required,
.eronex-comments-wrapper .comment-form-comment label .required,
.eronex-comment-form-inputs label .required {
	color: rgb(var(--eronex-danger-color));
}

.eronex-comment-form-inputs {
	display: flex;
	margin: -8px -8px 8px;
}

.eronex-comments-wrapper .comment-list .comment-form-author,
.eronex-comments-wrapper .comment-list .comment-form-email,
.eronex-comments-wrapper .comment-list .comment-form-url,
.eronex-comment-form-inputs p{
	margin-bottom: 0;
	padding: 8px;
	width: 100%;
	max-width: 33.33%;
}

.eronex-comments-wrapper .comment-form-comment {
	margin: 16px 0 0;
}

.eronex-comments-wrapper .form-submit {
	margin: 16px 0 0;
}

.eronex-btn {
	color: #fff;
    text-decoration: none !important;
    background-color: rgb(var(--eronex-primary-color));
    border-color: rgb(var(--eronex-primary-color));
	display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border: 1px solid transparent;
    padding: 9px 18px;
    outline: none;
    box-shadow: none;
    border-radius: var(--eronex-border-radius-lg);
    transition: all .15s ease-in-out;
}

.eronex-btn:hover,
.eronex-btn:focus {
    color: #fff;
    background-color: rgba(var(--eronex-primary-color), .95);
    border-color: rgba(var(--eronex-primary-color), .95);
}

.comment-form-cookies-consent {
	margin: 16px 0 0;
}

.comment-form-cookies-consent label{
	font-weight: 400;
    align-items: center;
    display: flex;
    line-height: 22px;
	gap: 10px;
	margin: 0;
	cursor: pointer;
	position: relative;
    color: rgb(var(--eronex-primary-font-color));
}

.comment-form-cookies-consent label:before {
    content: "";
    width: 18px;
    flex: none;
    height: 18px;
    background: #fff;
    border-radius: var(--eronex-border-radius-sm);
    border: 1.5px solid rgb(var(--eronex-grey-color));
}

.comment-form-cookies-consent label:after {
    left: 0;
    opacity: 0;
    font-size: 14px;
    visibility: hidden;
    position: absolute;
    color: #fff;
    font-family: 'hero-icons';
    content: "\e96b";
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    line-height: 1;
}

.comment-form-cookies-consent input[type=checkbox]:checked+label::before {
    border-color: rgb(var(--eronex-primary-color));
    background-color: rgb(var(--eronex-primary-color));
	margin: 0;
}

.comment-form-cookies-consent input[type=checkbox]:checked+label:after {
    opacity: 1;
    visibility: visible;
}

.comment-form-cookies-consent input[type='checkbox'] {
    display: none;
}

pre.wp-block-code,
.wp-block-preformatted,
pre.wp-block-verse {
	padding: 16px;
	background-color: rgb(var(--eronex-light-grey-color));
	border-radius: var(--eronex-border-radius-lg);
	margin: 0 0 16px;
	border: 1px solid rgb(var(--eronex-grey-color));
}

pre.wp-block-verse {
	color: #fff;
	border: 0;
	border-radius: 0;
	background-color: #323232;
	border-left: 2px solid rgb(var(--eronex-primary-color));
}

pre.wp-block-preformatted {
    margin-top: 16px;
}

.wp-block-preformatted {
    box-sizing: border-box;
    white-space: pre-wrap;
}

.eronex-post-content hr,
hr {
	margin: 20px 0;
	border: none;
	border-bottom: 1px solid rgb(var(--eronex-grey-color));
}

/* Button Style */

.gn-action-menu-wrapper>.gn-user-auth-buttons {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.gn-action-menu-wrapper>.gn-user-auth-buttons .gn-btn {
	padding-left: 6px;
	padding-right: 6px;
}

.gn-btn, a.gn-btn, button.gn-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border: 1px solid transparent;
    padding: 9px 18px;
    outline: none;
    box-shadow: none;
    fill: rgb(var(--eronex-dark-color));
    color: rgb(var(--eronex-dark-color));
    background-color: transparent;
    border-radius: var(--eronex-border-radius-lg);
    transition: all .15s ease-in-out;
}
.gn-btn.gn-btn-outline-grey {
    color: rgb(var(--eronex-primary-font-color));
    fill: rgb(var(--eronex-primary-font-color));
    border-color: rgb(var(--eronex-grey-color));
}

.gn-btn.gn-btn-primary {
    color: #fff;
    fill: #fff;
    text-decoration: none !important;
    background-color: rgb(var(--eronex-primary-color));
    border-color: rgb(var(--eronex-primary-color));
}

.gn-btn.gn-btn-outline-grey:focus, .gn-btn.gn-btn-outline-grey:hover {
    background: #FFF;
    color: rgb(var(--eronex-primary-font-color));
    border: 1px solid rgb(var(--eronex-grey-color));
    -webkit-box-shadow: 0 4px 18px 0 #F6F5F8 inset;
    box-shadow: 0 4px 18px 0 #F6F5F8 inset;
}

.gn-btn.gn-btn-outline-grey:focus {
    -webkit-box-shadow: 0 0 0 3px rgba(207, 207, 207, 0.20), 0 4px 4px 0 #F6F5F8 inset;
    box-shadow: 0 0 0 3px rgba(207, 207, 207, 0.20), 0 4px 4px 0 #F6F5F8 inset;
}

.gn-btn.gn-btn-primary:hover, .gn-btn.gn-btn-primary:focus {
    color: #fff;
    fill: #fff;
    background-color: rgba(var(--eronex-primary-color), .95);
    border-color: rgba(var(--eronex-primary-color), .95);
}

.eronex-post-tags-wrapper {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-top: 36px;
}

.eronex-post-tag-title {
	margin: 0;
}

.eronex-post-tags {
	display: flex;
    align-items: center;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 6px 12px;
}

.category-markup:has(>.eronex-post-content>p>.alignright) > .eronex-post-tags-wrapper  {
	float: left;
	width: 100%;
}

.eronex-post-tags a{
	color: rgb(var(--eronex-secondary-font-color));
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    flex-wrap: wrap;
    padding: 5px 11px 5px 9px;
    border-radius: 24px;
    background-color: rgb(var(--eronex-light-grey-color));
    border: 1px solid rgba(var(--eronex-grey-color));
}

.eronex-post-info:empty{
	display: none;
}

.eronex-post-info{
	margin-bottom: 36px;
}

.wp-block-group.has-background {
    padding: 20px;
    margin-bottom: 20px;
}

article.format-standard .wp-block-group {
	margin-bottom: 20px;
	color: rgb(var(--eronex-secondary-font-color));
}

.eronex-post-content .wp-block-query .wp-block-post-template li {
	line-height: 1.5;
}

.eronex-post-content .wp-block-query .wp-block-post-template li.tag-sticky-2 {
	padding: 24px;
	background-color: rgb(var(--eronex-light-grey-color));
	border-radius: var(--eronex-border-radius-lg);
}

.category-block .eronex-post-content > .wp-block-navigation {
	margin-bottom: 20px;
}

.eronex-post-content .wp-block-query .wp-block-post-template li.tag-sticky-2 + .wp-block-post {
    padding-top: 0;
    border: 0;
}

.eronex-post-content .wp-block-query .wp-block-post-template .wp-block-post-title {
	font-size: 20px;
    font-weight: 500;
    text-decoration: none;
    color: rgb(var(--eronex-secondary-font-color));
    transition: color .3s ease-in-out;
    display: block;
}

.eronex-post-content .wp-block-query .wp-block-query-pagination .wp-block-query-pagination-numbers {
	gap: 16px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}
.eronex-post-content .wp-block-query .wp-block-query-pagination {
	margin-top: 36px;
	padding-top: 36px;
	border-top: 1px solid rgb(var(--eronex-grey-color));
	gap: 16px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

.eronex-post-content .wp-block-query .wp-block-query-pagination .wp-block-query-pagination-numbers .page-numbers,
.eronex-post-content .wp-block-query .wp-block-query-pagination .wp-block-query-pagination-previous,
.eronex-post-content .wp-block-query .wp-block-query-pagination .wp-block-query-pagination-next {
	display: flex;
	gap: 8px;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	font-weight: 400;
	min-width: 32px;
	padding: 5px 16px;
	line-height: 20px;
	text-decoration: none !important;
	border-radius: var(--eronex-border-radius-md);
	border: 1px solid rgb(var(--eronex-grey-color));
	background: rgb(var(--eronex-light-grey-color));
	color: rgba(var(--eronex-secondary-font-color), 0.6);
	transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.eronex-post-content .wp-block-query .wp-block-query-pagination .wp-block-query-pagination-numbers .page-numbers {
	padding: 5px 10px;
}

.eronex-post-content .wp-block-query .wp-block-query-pagination .wp-block-query-pagination-numbers .page-numbers.current,
.eronex-post-content .wp-block-query .wp-block-query-pagination .wp-block-query-pagination-numbers .page-numbers:not(.dots):hover,
.eronex-post-content .wp-block-query .wp-block-query-pagination .wp-block-query-pagination-previous:hover,
.eronex-post-content .wp-block-query .wp-block-query-pagination .wp-block-query-pagination-next:hover {
    color: #fff;
    border-color: rgb(var(--eronex-primary-color));
    background-color: rgb(var(--eronex-primary-color));
}

.eronex-post-content .wp-block-query .wp-block-query-pagination .wp-block-query-pagination-previous:before {
    font-family: 'hero-icons';
    content: "\e971";
    font-size: 16px;
}

.eronex-post-content .wp-block-query .wp-block-query-pagination .wp-block-query-pagination-next:after {
    font-family: 'hero-icons';
    content: "\e972";
    font-size: 16px;
}

.eronex-post-content .wp-block-query:has(.wp-block-query-pagination) + p {
	margin-top: 20px;
}

.eronex-post-content .wp-block-query .wp-block-post-template li ~ li {
	margin-top: 36px;
    border-top: 1px solid rgb(var(--eronex-grey-color));
    padding-top: 36px;
}

.eronex-post-content .wp-block-post-author {
	margin-bottom: 20px;
}

.eronex-post-content .wp-block-post-excerpt + p {
	margin-top: 20px;
}

.eronex-post-content .wp-block-post-author + .wp-block-paragraph {
	margin-bottom: 0;
}

.eronex-post-content .wp-block-post-date + p {
	margin-top: 20px;
	margin-bottom: 0;
}

.eronex-post-content .taxonomy-category + p + p {
	margin-bottom: 0;
}

.eronex-post-content .wp-block-post-navigation-link + .wp-block-paragraph {
	margin-bottom: 0;
	margin-top: 20px;
}

.eronex-post-content .wp-block-read-more + .wp-block-paragraph {
	margin-bottom: 0;
	margin-top: 20px;
}

.eronex-post-content .wp-block-avatar + .wp-block-paragraph {
	margin-top: 20px;
}

.category-block .wp-block-archives-list.wp-block-archives {
	list-style: none;
}

.category-block .wp-block-archives-list.wp-block-archives li {
	display: flex;
	justify-content: space-between;
}

.wp-block-calendar caption {
	padding-top: 20px;
	padding-bottom: 20px;
}

.wp-block-categories + .wp-block-paragraph {
	margin-top: 20px;
}

.wp-block-search + .wp-block-search {
	margin-top: 20px;
}

.wp-block-search__inside-wrapper:where(.wp-block-search__button-inside .wp-block-search__inside-wrapper) {
	border-radius: var(--eronex-border-radius-lg);
	border: 1px solid rgba(var(--eronex-grey-color));
	padding: 0;
}

.wp-block-search__inside-wrapper:where(.wp-block-search__button-inside .wp-block-search__inside-wrapper) .wp-block-search__input {
	border: 0;
	box-shadow: none;
	border-radius: var(--eronex-border-radius-lg) 0 0 var(--eronex-border-radius-lg);
}

.wp-block-search__inside-wrapper:where(.wp-block-search__button-inside .wp-block-search__inside-wrapper):hover {
	border-color: rgb(var(--eronex-dark-grey-color));
}

.wp-block-search__inside-wrapper:where(.wp-block-search__button-inside .wp-block-search__inside-wrapper):focus {
	box-shadow: 0 0 0 3px rgba(var(--eronex-primary-color), 0.05);
    border-color: rgb(var(--eronex-primary-color));
    border-style: solid;
}

.wp-block-search__inside-wrapper:where(.wp-block-search__button-inside .wp-block-search__inside-wrapper) .wp-block-search__button {
	border-radius: 0 var(--eronex-border-radius-lg) var(--eronex-border-radius-lg) 0;
	margin: 0;
}

.wp-block-search + .wp-block-paragraph {
	margin-top: 20px;
}

.wp-block-buttons {
	margin-bottom: 20px;
}

.wp-block-pullquote {
	margin-top: 20px;
	margin-bottom: 20px;
    border-width: 2px;
	background-color: rgba(var(--eronex-primary-color),0.08);
    border-color: rgb(var(--eronex-primary-color));
}

.wp-block-table td,
.wp-block-table th {
	line-height: 1.5;
	text-align: left;
    padding: 7px 28px;
    border-color: rgb(var(--eronex-dark-grey-color));
}

.wp-block-image {
	margin-bottom: 20px;
}

em strong {
	color: rgb(var(--eronex-secondary-font-color));
}

.wp-block-image figcaption {
	text-align: center;
}

.tag-image.category-block:has(.wp-block-image .alignright) .eronex-post-tags-wrapper {
	float: left;
	width: 100%;
}

article:has(p>img.alignright) .eronex-comments-wrapper,
.tag-image.category-block:has(.wp-block-image .alignright) .eronex-comments-wrapper {
	float: left;
	width: 100%;
}

.wp-block-image :where(figcaption) {
	margin-bottom: 0;
}

.eronex-post-content .wp-block-button {
	margin-bottom: 20px;
}

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

.wp-block-button.alignright {
    float: right;
    margin-left: 2em;
}
.wp-block-button.alignleft {
    float: left;
    margin-right: 2em;
}

.alignright {
    float: right;
    margin: 5px 0 20px 20px;
    clear: both;
}

.wp-block-button__link {
    border-radius: 28px;
}

.widget.widget_block ol.wp-block-latest-comments .wp-block-latest-comments__comment + .wp-block-latest-comments__comment {
	margin-top: 0;
}

.wp-block-cover.alignleft {
	float: left;
	margin: 5px 20px 20px 0;
}

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

p a, p a:hover {
    text-decoration: underline;
}
.wp-block-gallery:not(.has-nested-images).alignleft,
.alignleft {
	float: left;
	margin: 5px 20px 20px 0;
}

.wp-block-gallery:not(.has-nested-images) figcaption {
	margin-bottom: 20px;
}

.blocks-gallery-caption, .wp-block-embed figcaption, .wp-block-image figcaption {
	text-align: center;
}

.wp-block-embed-wordpress-tv.alignfull iframe {
    width: 100%;
    border: 0;
}

label {
	margin: 0 0 8px;
    font-size: 14px;
    font-weight: 500;
    position: relative;
    display: block;
    line-height: var(--eronex-line-height);
    color: rgb(var(--eronex-secondary-font-color));
}

label > input {
	margin-top: 8px;
}

select {
	font-size: 14px;
	line-height: var(--eronex-line-height);
	font-weight: 400;
	width: 100%;
	max-width: 100%;
	border: 1px solid rgba(var(--eronex-grey-color));
	outline: none;
	box-shadow: none;
	padding: 8px 30px 8px 14px;
	height: auto;
	min-height: 40px;
	color: rgb(var(--eronex-secondary-font-color));
	background-color: rgb(var(--eronex-light-grey-color));
	border-radius: var(--eronex-border-radius-lg);
	background-color: #fff;
	caret-color: rgb(var(--eronex-secondary-font-color));
	background-color: #fff;
	appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;

    padding-right: 40px !important;

    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 18 18' fill='none'%3E%3Cpath d='M14.625 6.9375L9 12.5625L3.375 6.9375' stroke='%23636363' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 18px;
}

select:hover {
	border-color: rgb(var(--eronex-dark-grey-color));
}
select:focus {
	box-shadow: 0 0 0 3px rgba(var(--eronex-primary-color), 0.05);
    border-color: rgb(var(--eronex-primary-color));
    border-style: solid;
}

.wp-block-latest-posts.wp-block-latest-posts__list.is-grid li {
	margin-top: 0;
}

.post-password-form p label {
	display: flex;
	align-items: center;
	gap: 8px;
	margin: 0;
}

.post-password-form p:has(input[type="submit"]) {
	display: flex;
	align-items: center;
	gap: 10px 20px;
	flex-wrap: wrap;
}

.post-password-form p label input[type="password"] {
	margin-top: 0;
}

.post-password-form p label input[type="password"]{
	display: flex;
    gap: 20px;
    align-items: center;
}

.wp-block-navigation .wp-block-page-list {
	gap: 24px;
}

.wp-block-navigation .wp-block-navigation__submenu-icon {
	margin-left: 8px;
	width: auto;
	height: auto;
}

.wp-block-navigation .wp-block-navigation__submenu-icon svg {
	margin-left: 0;
	width: 14px;
    height: 14px;
}

.wp-block-navigation .has-child .wp-block-navigation-item {
	padding: 0 14px;
    margin: 14px 0;
}

.wp-block-navigation .has-child .wp-block-navigation-item:hover > a {
	color: rgb(var(--eronex-primary-color));
}

.wp-block-navigation .has-child .wp-block-navigation-item:not(:first-child) {
	margin-top: 0;
}

.wp-block-navigation .has-child .wp-block-navigation__submenu-container {
	border: 0;
    background-color: #fff;
    box-shadow: 0 4px 10px -2px rgba(0, 0, 0, .1);
    border-radius: 0 0 var(--eronex-border-radius-lg) var(--eronex-border-radius-lg);
}

.wp-block-navigation .has-child .wp-block-navigation__submenu-container>.wp-block-navigation-item>.wp-block-navigation-item__content,
.wp-block-navigation .wp-block-navigation-item__content.wp-block-navigation-item__content {
	padding: 0;
}

.wp-block-post-comments-form .comment-form-cookies-consent {
	width: 100%;
	margin: 0;
}

.comment-form:not(:has(.eronex-comment-form-inputs)) {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
}

.eronex-comments-wrapper .comment-form:not(:has(.eronex-comment-form-inputs)) .form-submit {
	margin: 0;
}

.comment-form:not(:has(.eronex-comment-form-inputs)) .comment-form-comment {
	width: 100%;
	margin: 0;
}

.error404 .eronex-not-found {
	display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    flex-direction: column;
	text-align: center;
	min-height: calc(100dvh - 551px);
}

.error404 .eronex-not-found .eronex-image {
	max-width: 480px;
	margin: 0 0 20px;
}

.error404 .eronex-not-found .eronex-title {
	font-size: 24px;
	margin: 0 0 8px;
}

.error404 .eronex-not-found .eronex-description {
	margin: 0;
	font-size: 16px;
    max-width: 320px;
}

.theme-eronex.woocommerce .woocommerce-result-count {
	padding: 10px 0;
    line-height: 20px;
	width: 100%;
	margin-bottom: 0;
}

.theme-eronex.woocommerce .woocommerce-ordering{
	float: left;
}

.theme-eronex.theme-eronex.woocommerce .products ul:after,
.theme-eronex.woocommerce ul.products:after,
.theme-eronex.woocommerce .products ul:before,
.theme-eronex.woocommerce ul.products:before {
	display: none;
}

.theme-eronex .wc-block-grid__products,
.theme-eronex.woocommerce .products ul,
.theme-eronex.woocommerce ul.products {
    display: grid;
    gap: 16px;
	margin: 0;
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

.theme-eronex .wc-block-grid__products {
	display: grid !important;
}

.theme-eronex .has-1-columns .wc-block-grid__products,
.theme-eronex.woocommerce .products ul.columns-1,
.theme-eronex.woocommerce ul.products.columns-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

.theme-eronex.woocommerce .products ul.columns-1,
.theme-eronex .has-2-columns .wc-block-grid__products,
.theme-eronex.woocommerce ul.products.columns-2 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

.theme-eronex.woocommerce .products ul.columns-3,
.theme-eronex .has-3-columns .wc-block-grid__products,
.theme-eronex.woocommerce ul.products.columns-3 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

.theme-eronex .has-4-columns .wc-block-grid__products,
.theme-eronex.woocommerce .products ul.columns-4,
.theme-eronex.woocommerce ul.products.columns-4 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

.theme-eronex.woocommerce ul.products li.product .price ins{
	font-weight: 500;
}

.theme-eronex .has-5-columns .wc-block-grid__products,
.theme-eronex.woocommerce .products ul.columns-5,
.theme-eronex.woocommerce ul.products.columns-5 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

.theme-eronex .has-6-columns .wc-block-grid__products,
.theme-eronex.woocommerce .products ul.columns-6,
.theme-eronex.woocommerce ul.products.columns-6 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

.theme-eronex .wc-block-grid .wc-block-grid__product,
.theme-eronex.woocommerce ul.products li.product,
.theme-eronex.woocommerce-page ul.products li.product {
	border-radius: var(--eronex-border-radius-xl);
	border: 1px solid rgb(var(--eronex-grey-color));
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 16px;
	width: auto;
	padding-bottom: 16px;
	max-width: 100%;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.theme-eronex .wc-block-grid .wc-block-grid__product {
	gap: 0;
	padding: 0 0 16px !important;
}

.theme-eronex.woocommerce ul.products li .attachment-woocommerce_thumbnail{
	border-radius: var(--eronex-border-radius-xl) var(--eronex-border-radius-xl) 0 0;
}

.theme-eronex.woocommerce ul.products li.product .woocommerce-loop-category__title,
.theme-eronex.woocommerce ul.products li.product .woocommerce-loop-product__title,
.theme-eronex.woocommerce ul.products li.product h3 {
	padding: 0 16px;
	font-size: 16px;
}

.theme-eronex .wc-block-grid__product .wc-block-grid__product-image:not(.wc-block-components-product-image),
.theme-eronex .wc-block-grid__product .wc-block-grid__product-title {
	padding: 0 16px;
	font-size: 16px;
	line-height: var(--eronex-line-height);
	text-align: left;
	font-weight: 500;
	color: rgb(var(--eronex-secondary-font-color));
}

.theme-eronex .wc-block-grid__product .wc-block-grid__product-title {
	margin: 0;
}

.theme-eronex .wc-block-grid__product .wp-block-button {
	width: calc(100% - 32px);
    text-align: center;
    margin: auto 16px 0;
}

.theme-eronex .wc-block-grid__product .wp-block-button .wp-block-button__link {
	background-color: rgb(var(--eronex-primary-color));
    border-color: rgb(var(--eronex-primary-color));
    border-radius: var(--eronex-border-radius-lg);
    min-height: 40px;
    color: #fff;
    font-weight: 400;
    font-size: 14px;
    line-height: 40px;
    padding: 0 16px 0;
	width: 100%;
}

.theme-eronex .wp-block-woocommerce-cart .wp-block-woocommerce-empty-cart-block .wp-block-heading:not(.with-empty-cart-icon) {
	font-size: 24px;
    margin: 0 0 24px;
}

.theme-eronex .wc-block-grid__product .wc-block-grid__product-price {
	padding: 0 16px;
    margin: 0 0 16px;
    font-size: 14px;
	text-align: left;
	color: rgb(var(--eronex-primary-font-color));
}

.theme-eronex .wc-block-grid__product .wc-block-grid__product-price .woocommerce-Price-amount{
	display: block;
}

.theme-eronex.woocommerce ul.products li.product .star-rating {
	margin: 0 16px 8px;
}

.theme-eronex.woocommerce ul.products li.product .star-rating span::before {
	top: -3px;
	color: rgb(var(--eronex-warning-color));
}

.theme-eronex.woocommerce ul.products li.product .price {
	padding: 0 16px;
	margin: 0;
	font-size: 14px;
}

.theme-eronex.woocommerce ul.products li.product .button {
	width: calc(100% - 32px);
    text-align: center;
    margin: auto 16px 0;
    background-color: rgb(var(--eronex-primary-color));
    border-color: rgb(var(--eronex-primary-color));
    border-radius: var(--eronex-border-radius-lg);
    min-height: 40px;
    color: #fff;
    font-weight: 400;
    font-size: 14px;
    line-height: 40px;
    padding: 0 16px 0;
}

.theme-eronex.woocommerce ul.products li.product a.added_to_cart {
	color: rgb(var(--eronex-primary-font-color));
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin: 0 16px 0;
	cursor: pointer;
	font-size: 14px;
	line-height: 20px;
	font-weight: 400;
	text-align: center;
	white-space: nowrap;
	vertical-align: middle;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	border: 1px solid rgb(var(--eronex-grey-color));
	padding: 9px 18px;
	outline: none;
	box-shadow: none;
	background-color: transparent;
	width: calc(100% - 32px);
	border-radius: var(--eronex-border-radius-lg);
	transition: all .15s ease-in-out;
}
.theme-eronex.woocommerce ul.products li.product a.added_to_cart:focus,
.theme-eronex.woocommerce ul.products li.product a.added_to_cart:hover {
	background: #FFF;
    color: rgb(var(--eronex-primary-font-color));
    border: 1px solid rgb(var(--eronex-grey-color));
    -webkit-box-shadow: 0 4px 18px 0 #F6F5F8 inset;
    box-shadow: 0 4px 18px 0 #F6F5F8 inset;
}

.theme-eronex.woocommerce ul.products li.product .button:hover,
.theme-eronex.woocommerce ul.products li.product .button:focus {
	color: #fff;
    background-color: rgba(var(--eronex-primary-color), .95);
    border-color: rgba(var(--eronex-primary-color), .95);
}

.theme-eronex.woocommerce ul.products li.product .button:focus {
	box-shadow: 0 4px 18px 0 rgba(232, 223, 255, 0.10) inset, 0 0 0 3px rgba(var(--eronex-primary-color), .2);
}

.theme-eronex.woocommerce ul.products li.product .button.loading:after {
	line-height: 22px;
}

.theme-eronex.woocommerce:where(body:not(.woocommerce-uses-block-theme)) ul.products li.product .price {
	color: rgb(var(--eronex-primary-font-color));
}

.eronex-theme.woocommerce ul.products li.product .onsale {
	margin: 0;
	top: -18px;
	right: -18px;
}

.theme-eronex .wc-block-grid__product .wc-block-grid__product-image,
.theme-eronex.woocommerce ul.products li.product a img {
	width: 100%;
	margin-bottom: 16px;
	border-bottom: 1px solid rgb(var(--eronex-grey-color));
	border-radius: var(--eronex-border-radius-xl) var(--eronex-border-radius-xl) 0 0;
}

.theme-eronex .wc-block-grid__products .wc-block-grid__product-image img {
	border-radius: var(--eronex-border-radius-xl) var(--eronex-border-radius-xl) 0 0
}

.theme-eronex.woocommerce:where(body:not(.woocommerce-uses-block-theme)) div.product p.price {
	color: rgb(var(--eronex-primary-font-color));
}

.theme-eronex.woocommerce:where(body:not(.woocommerce-uses-block-theme)) div.product .stock,
.theme-eronex.woocommerce:where(body:not(.woocommerce-uses-block-theme)) div.product span.price {
	color: rgb(var(--eronex-primary-font-color));
}

.theme-eronex.woocommerce div.product .entry-summary .product_title{
	font-size: 24px;
}

.theme-eronex.woocommerce div.product .summary.entry-summary form.cart div.quantity {
	min-width: 100px;
	margin-right: 16px;
	max-width: 100px;
}

.theme-eronex.woocommerce div.product .summary.entry-summary form.cart div.quantity .qty {
	width: 100%;
}

.theme-eronex.woocommerce div.product .summary.entry-summary form.cart .button {
	background-color: rgb(var(--eronex-primary-color));
	border-color: rgb(var(--eronex-primary-color));
	color: #fff;
	font-size: 14px;
	padding: 10px 22px;
	font-weight: 400;
	border-radius: var(--eronex-border-radius-lg);
	transition: all .15s ease-in-out;
	line-height: 20px;
}

.eronex-theme.woocommerce div.product div.summary .price {
	margin: 0 0 16px;
	font-weight: 500;
}

.eronex-theme.woocommerce div.product div.summary .woocommerce-product-details__short-description {
	margin-bottom: 16px;
}

.eronex-theme.woocommerce div.product form.cart .woocommerce-variation-description p {
	margin: 0 0 16px;
}

.eronex-theme.woocommerce div.product form.cart .reset_variations {
	font-size: 14px;
}

.eronex-theme .wc-block-components-product-badge {
	font-size: 14px;
	border-radius: var(--eronex-border-radius-md);
	padding: 1.5px 10px;
}

.eronex-theme .wc-block-cart__main .wc-block-cart-items td {
	border-color: rgb(var(--eronex-grey-color));
}

.editor-styles-wrapper table.wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__quantity .wc-block-cart-item__remove-link,
table.wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__quantity .wc-block-cart-item__remove-link {
	border: 1px solid rgb(var(--eronex-grey-color));
    width: 40px;
    height: 40px;
	display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--eronex-border-radius-lg);
}

.editor-styles-wrapper table.wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__quantity .wc-block-cart-item__remove-link:hover,
table.wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__quantity .wc-block-cart-item__remove-link:hover {
	background-color: rgb(var(--eronex-danger-color));
	border-color: rgb(var(--eronex-danger-color));
}

.editor-styles-wrapper table.wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__quantity .wc-block-cart-item__remove-link:hover svg,
table.wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__quantity .wc-block-cart-item__remove-link:hover svg {
	fill: #fff;
}

.eronex-theme.woocommerce div.product div.summary .woocommerce-product-rating {
	margin: 0 0 16px;
}

.eronex-theme.woocommerce div.product div.summary .woocommerce-product-rating .woocommerce-review-link {
	color: rgb(var(--eronex-primary-font-color));
}

.eronex-theme.woocommerce div.product div.summary .woocommerce-product-rating .star-rating span::before {
	top: -3px;
	color: rgb(var(--eronex-warning-color));
}

.eronex-theme.woocommerce div.product div.summary .price ins:has(.woocommerce-Price-amount.amount) {
	text-decoration: none;
	font-weight: 500;
}

.eronex-theme.woocommerce span.onsale {
	background-color: rgb(var(--eronex-primary-color));
	min-width: 36px;
    min-height: 36px;
    padding: 0;
    font-size: 12px;
    font-weight: 500;
    line-height: 36px;
    top: -18px;
    left: -18px;
	border-color: rgb(var(--eronex-primary-color));
}

.eronex-theme.woocommerce div.product div.images .woocommerce-product-gallery__trigger::before {
	left: 11px;
	top: 12px;
}

.eronex-theme.woocommerce div.product div.images .woocommerce-product-gallery__trigger::after{
	left: 24px;
	top: 21px;
}

.eronex-theme.woocommerce img.pswp__img {
	border-radius: var(--eronex-border-radius-lg);
}

.eronex-theme.woocommerce div.product p.stock {
	margin: 0 0 16px;
	font-size: 14px;
}

.eronex-theme.woocommerce div.product form.cart {
	margin-bottom: 16px;
}

.eronex-theme.woocommerce div.product form.cart .variations .label {
	vertical-align: middle;
	padding-left: 0;
}

.eronex-theme.woocommerce div.product form.cart .variations .label label {
	margin: 0;
	font-weight: 500;
}

.eronex-theme.woocommerce div.product form.cart .variations td,
.eronex-theme.woocommerce div.product form.cart .variations th {
	text-align: left;
	padding-top: 0;
	padding-bottom: 0;
}

.eronex-theme.woocommerce div.product form.cart .variations tr + tr th,
.eronex-theme.woocommerce div.product form.cart .variations tr + tr td {
	padding-top: 16px;
}

.eronex-theme.woocommerce div.product form.cart .variations select {
	max-width: calc(100% - 50px);
}

.theme-eronex.woocommerce div.product .summary.entry-summary form.cart .button:hover,
.theme-eronex.woocommerce div.product .summary.entry-summary form.cart .button:focus {
    color: #fff;
    fill: #fff;
    background-color: rgba(var(--eronex-primary-color), .95);
    border-color: rgba(var(--eronex-primary-color), .95);
}

.theme-eronex.woocommerce div.product .summary.entry-summary form.cart .button:focus {
    -webkit-box-shadow: 0 4px 18px 0 rgba(232, 223, 255, 0.10) inset, 0 0 0 3px rgba(var(--eronex-primary-color), .2);
    box-shadow: 0 4px 18px 0 rgba(232, 223, 255, 0.10) inset, 0 0 0 3px rgba(var(--eronex-primary-color), .2);
}

.theme-eronex.woocommerce div.product .woocommerce-tabs ul.tabs {
	padding: 4px;
	display: inline-flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 4px;
	list-style: none;
	margin: 0 0 16px;
	overflow: auto;
	border-radius: var(--eronex-border-radius-lg);
	background: rgb(var(--eronex-light-grey-color));
}

.theme-eronex.woocommerce div.product .woocommerce-tabs ul.tabs li {
	padding: 0;
	margin: 0;
	border-radius: 0;
	border: none;
	width: 100%;
	background: transparent;
	transition: none;
}

.theme-eronex.woocommerce div.product .woocommerce-tabs ul.tabs li a {
	gap: 8px;
    display: flex;
    padding: 8px 14px;
    align-items: center;
    list-style-type: none;
    border-radius: var(--eronex-border-radius-md);
    cursor: pointer;
	justify-content: center;
	text-align: center;
    background-color: transparent;
    -webkit-transition: color .3s ease-in-out, background-color .3s ease-in-out;
    -o-transition: color .3s ease-in-out, background-color .3s ease-in-out;
    transition: color .3s ease-in-out, background-color .3s ease-in-out;
    font-size: 14px;
    font-weight: 400;
    color: rgb(var(--eronex-primary-font-color));
    outline: none;
    white-space: nowrap;
    line-height: 20px;
}

.theme-eronex.woocommerce div.product .woocommerce-tabs ul.tabs::before,
.theme-eronex.woocommerce div.product .woocommerce-tabs ul.tabs::after {
	display: none;
}

.theme-eronex.woocommerce div.product .woocommerce-tabs ul.tabs li::before,
.theme-eronex.woocommerce div.product .woocommerce-tabs ul.tabs li::after {
	display: none;
}

.theme-eronex.woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
	box-shadow: 0 1px 1px 0 rgba(var(--eronex-primary-font-color), 0.05), 0 2px 5px 0 rgba(var(--eronex-primary-font-color), 0.08);
	background-color: #fff;
	color: rgb(var(--eronex-primary-color));
}

.theme-eronex.woocommerce div.product .woocommerce-tabs .entry-content {
	margin: 0 0 36px;
}

.theme-eronex.woocommerce div.product .woocommerce-tabs .entry-content > h2 {
	font-size: 20px;
	margin: 0 0 16px;
}

.theme-eronex.woocommerce div.product .woocommerce-tabs .entry-content > p {
	margin: 0 0 16px;
	font-size: 14px;
}

.theme-eronex.woocommerce div.product .woocommerce-tabs .entry-content > ul {
	margin-bottom: 0;
}

.eronex-theme.woocommerce div.product .woocommerce-product-gallery.images {
	border: 1px solid rgb(var(--eronex-grey-color));
	border-radius: var(--eronex-border-radius-lg);
}

.eronex-theme.woocommerce div.product .woocommerce-product-gallery.images:has(.flex-control-nav) {
	border: 0;
}

.eronex-theme.woocommerce div.product .woocommerce-product-gallery.images:has(.flex-control-nav) .flex-viewport {
	border: 1px solid rgb(var(--eronex-grey-color));
	border-radius: var(--eronex-border-radius-lg);
}

.eronex-theme.woocommerce table.shop_attributes {
	border: 0;
	margin: 0;
	border-collapse: separate;
}

.eronex-theme.woocommerce table.shop_attributes th,
.eronex-theme.woocommerce table.shop_attributes td {
	border: 1px solid rgb(var(--eronex-grey-color));
	border-top: 0;
}

.eronex-theme.woocommerce table.shop_attributes td p {
	padding: 0;
}

.eronex-theme.woocommerce table.shop_attributes tr:first-child th {
	border-top: 1px solid rgb(var(--eronex-grey-color));
}

.eronex-theme.woocommerce table.shop_attributes tr:first-child th:first-child{
	border-top-left-radius: var(--eronex-border-radius-lg);
	border-top-right-radius: var(--eronex-border-radius-lg);
}

.eronex-theme.woocommerce table.shop_attributes tr:last-child td:last-child{
	border-bottom-right-radius: var(--eronex-border-radius-lg);
	border-bottom-left-radius: var(--eronex-border-radius-lg);
}

.eronex-theme.woocommerce table.shop_attributes td,
.eronex-theme.woocommerce table.shop_attributes th {
	vertical-align: middle;
	text-align: left;
	padding: 16px;
}

.eronex-theme.woocommerce table.shop_attributes th {
	font-weight: 500;
	color: rgb(var(--eronex-secondary-font-color));
}

.eronex-theme.woocommerce div.product .related.products > h2 {
	margin: 0 0 16px;
	font-size: 20px;
}

.eronex-theme.woocommerce div.product #reviews #comments > h2 {
	font-size: 20px;
	margin: 0 0 16px;
}

.theme-eronex.woocommerce div.product .woocommerce-tabs .entry-content #review_form_wrapper {
	padding: 16px;
	border-radius: var(--eronex-border-radius-xl);
	margin-top: 16px;
	border: 1px solid rgb(var(--eronex-grey-color));
}

.theme-eronex.woocommerce div.product .woocommerce-tabs .entry-content #review_form_wrapper .comment-reply-title {
	font-size: 16px;
	font-weight: 500;
	color: rgb(var(--eronex-secondary-font-color));
	margin: 0 0 16px;
}

.theme-eronex.woocommerce div.product .woocommerce-tabs .entry-content #review_form_wrapper .comment-form .required {
	color: rgb(var(--eronex-danger-color));
}

.theme-eronex.woocommerce div.product .woocommerce-tabs .entry-content > p:last-child {
	margin-bottom: 0;
}

.theme-eronex.woocommerce #review_form #respond .stars {
	margin: 0;
}

.theme-eronex.woocommerce .comment-form-rating .stars span{
	display: flex;
	gap: 4px;
}

.theme-eronex.woocommerce .comment-form-rating .stars a {
	width: 16px;
	height: 16px;
	color: rgb(var(--eronex-dark-grey-color));
}

.theme-eronex.woocommerce .comment-form-rating .stars a::before {
	width: 16px;
	height: 16px;
	font-size: 16px;
}
.theme-eronex.woocommerce .comment-form-rating .stars.selected a:hover,
.theme-eronex.woocommerce .comment-form-rating .stars.selected a.active,
.theme-eronex.woocommerce .comment-form-rating .stars.selected a:not(.active){
	color: rgb(var(--eronex-warning-color));
}

.theme-eronex.woocommerce .comment-form-rating .stars.selected a.active~a{
	color: rgb(var(--eronex-dark-grey-color));
}

.theme-eronex.woocommerce #review_form #respond p {
	margin: 0;
	width: 100%;
}

.theme-eronex.woocommerce #review_form #respond .comment-form-comment {
	margin: 0;
}

.theme-eronex.woocommerce #review_form #respond .comment-form-comment textarea {
	display: block;
	width: 100%;
	margin: 0
}

.theme-eronex.woocommerce #review_form #respond p.form-submit {
	margin: 0 0 0 auto;
	width: auto;
}

.theme-eronex.woocommerce #review_form #respond p.form-submit .submit {
	background-color: rgb(var(--eronex-primary-color));
	border-color: rgb(var(--eronex-primary-color));
	color: #fff;
	font-size: 14px;
	padding: 10px 22px;
	font-weight: 400;
	border-radius: var(--eronex-border-radius-lg);
	transition: all .15s ease-in-out;
	line-height: 20px;
}

.theme-eronex.woocommerce #review_form #respond p.form-submit .submit:hover,
.theme-eronex.woocommerce #review_form #respond p.form-submit .submit:focus {
    color: #fff;
    fill: #fff;
    background-color: rgba(var(--eronex-primary-color), .95);
    border-color: rgba(var(--eronex-primary-color), .95);
}

.theme-eronex.woocommerce #review_form #respond p.form-submit .submit:focus {
    -webkit-box-shadow: 0 4px 18px 0 rgba(232, 223, 255, 0.10) inset, 0 0 0 3px rgba(var(--eronex-primary-color), .2);
    box-shadow: 0 4px 18px 0 rgba(232, 223, 255, 0.10) inset, 0 0 0 3px rgba(var(--eronex-primary-color), .2);
}

.woocommerce #reviews #comments ol.commentlist li {
	margin: 0 0 16px;
}

.woocommerce #reviews #comments ol.commentlist li:last-child {
	margin: 0;
}

.woocommerce #reviews #comments ol.commentlist li img.avatar {
	width: 36px;
	height: 36px;
	padding: 0;
	border: none;
	border-radius: 50%;
}

.woocommerce #reviews #comments ol.commentlist li .comment-text {
	margin-left: 44px;
	border-radius: var(--eronex-border-radius-xl);
    border: 1px solid rgb(var(--eronex-grey-color));
	padding: 0;
}

.woocommerce #reviews #comments ol.commentlist li .comment-text p.meta {
	padding: 12px 16px;
    background-color: rgb(var(--eronex-light-grey-color));
    border-bottom: 1px solid rgb(var(--eronex-grey-color));
    margin: 0;
	font-size: 14px;
	line-height: var(--eronex-line-height);
	font-weight: 500;
	border-radius: var(--eronex-border-radius-xl) var(--eronex-border-radius-xl) 0 0;
}

.woocommerce #reviews #comments ol.commentlist li .comment-text p.meta strong {
	font-weight: 500;
}

.woocommerce #reviews #comments ol.commentlist li .comment-text .description {
	padding: 16px;
	font-size: 14px;
	line-height: var(--eronex-line-height);
}

.woocommerce #reviews #comments ol.commentlist li .comment-text .description p:last-child {
	margin: 0;
}

.woocommerce #reviews #comments ol.commentlist li .comment-text .star-rating {
	margin: 15px 16px 15px 0;
}

.woocommerce #reviews #comments ol.commentlist li .comment-text .star-rating::before {
	color: rgb(var(--eronex-dark-grey-color));
}

.woocommerce #reviews #comments ol.commentlist li .comment-text .star-rating span::before {
	color: rgb(var(--eronex-warning-color));
	top: -3px;
}

.theme-eronex .woocommerce-error,
.theme-eronex .woocommerce-info,
.theme-eronex .woocommerce-message {
	padding: 12px 16px 12px 46px;
    display: flex;
    align-items: center;
    border: 0;
	outline: none;
    border-radius: 12px;
    background-color: rgb(var(--eronex-light-grey-color));
}

.theme-eronex .woocommerce-error::before,
.theme-eronex .woocommerce-info::before,
.theme-eronex .woocommerce-message::before {
	top: 50%;
	margin-top: -10px;
	line-height: 20px;
	color: #17B26A;
	font-size: 16px;
	left: 16px;
}

.theme-eronex .woocommerce-error::before {
	color: rgb(var(--eronex-danger-color));
}
.theme-eronex .woocommerce-info::before{
	color: rgb(var(--eronex-info-color));
}

.theme-eronex .woocommerce-error .button,
.theme-eronex .woocommerce-info .button,
.theme-eronex .woocommerce-message .button {
	margin-left: auto;
    background-color: rgb(var(--eronex-primary-color));
    border-color: rgb(var(--eronex-primary-color));
    color: #fff;
    font-size: 14px;
	flex: none;
    padding: 10px 18px;
    font-weight: 400;
    border-radius: var(--eronex-border-radius-lg);
    transition: all .15s ease-in-out;
    line-height: 20px;
}

.theme-eronex .woocommerce-error .button:hover,
.theme-eronex .woocommerce-error .button:focus,
.theme-eronex .woocommerce-info .button:hover,
.theme-eronex .woocommerce-info .button:focus,
.theme-eronex .woocommerce-message .button:hover,
.theme-eronex .woocommerce-message .button:focus {
	color: #fff;
	fill: #fff;
	background-color: rgba(var(--eronex-primary-color), .95);
	border-color: rgba(var(--eronex-primary-color), .95);
}

.theme-eronex .woocommerce-error .button:focus,
.theme-eronex .woocommerce-info .button:focus,
.theme-eronex .woocommerce-message .button:focus {
	-webkit-box-shadow: 0 4px 18px 0 rgba(232, 223, 255, 0.10) inset, 0 0 0 3px rgba(var(--eronex-primary-color), .2);
	box-shadow: 0 4px 18px 0 rgba(232, 223, 255, 0.10) inset, 0 0 0 3px rgba(var(--eronex-primary-color), .2);
}

.theme-eronex .editor-styles-wrapper table.wc-block-cart-items .wc-block-cart-items__row .wc-block-components-product-name,
.theme-eronex table.wc-block-cart-items .wc-block-cart-items__row .wc-block-components-product-name {
	font-size: 16px;
	font-weight: 500;
	color: rgb(var(--eronex-secondary-font-color));
	line-height: var(--eronex-line-height);
}

.theme-eronex .editor-styles-wrapper table.wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__prices,
.theme-eronex table.wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__prices {
	font-size: 14px;
	color: rgb(var(--eronex-secondary-font-color));
	line-height: var(--eronex-line-height);
}

.theme-eronex .wc-block-components-product-metadata .wc-block-components-product-metadata__description>p,
.theme-eronex .wc-block-components-product-details.wc-block-components-product-details,
.theme-eronex .wc-block-components-product-metadata .wc-block-components-product-metadata__variation-data {
	font-size: 14px;
	color: rgb(var(--eronex-primary-font-color));
	line-height: var(--eronex-line-height);
	text-align: left;
}

.wc-block-components-totals-footer-item .wc-block-components-totals-item__label {
	font-size: 16px;
	color: rgb(var(--eronex-secondary-font-color));
	line-height: var(--eronex-line-height);
}

.theme-eronex .wc-block-components-quantity-selector input.wc-block-components-quantity-selector__input {
	min-height: 38px;
	outline: none;
	border: 0;
	box-shadow: none;
	padding-left: 0;
	padding-right: 0;
}

.theme-eronex .wc-block-components-quantity-selector {
	border-radius: var(--eronex-border-radius-lg);
	border: 1px solid rgba(var(--eronex-grey-color));
	background-color: rgb(var(--eronex-light-grey-color));
}

.theme-eronex .wc-block-components-quantity-selector .wc-block-components-quantity-selector__button {
	font-size: 20px;
	border-radius: 0;
	outline: none;
	box-shadow: none;
}

.theme-eronex .wc-block-components-formatted-money-amount {
	font-size: 14px;
	color: rgb(var(--eronex-secondary-font-color));
	line-height: var(--eronex-line-height);
}

.theme-eronex .wc-block-components-totals-item__description:empty {
	display: none;
}

.theme-eronex .wc-block-components-totals-footer-item .wc-block-components-totals-item__value .wc-block-formatted-money-amount {
	display: block;
}

.theme-eronex .wc-block-components-totals-coupon .wc-block-components-panel__button {
	font-size: 14px;
}

.theme-eronex .wc-block-components-totals-coupon__form .wc-block-components-totals-coupon__button,
.theme-eronex .wc-block-cart .wc-block-cart__submit-container .wc-block-components-button:not(.is-link) {
	font-size: 14px;
	padding: 10px 22px;
	color: #fff;
	line-height: 20px;
	border-radius: var(--eronex-border-radius-lg);
    text-decoration: none !important;
	min-height: inherit !important;
	transition: all .15s ease-in-out;
    background-color: rgb(var(--eronex-primary-color));
    border-color: rgb(var(--eronex-primary-color));
}

.theme-eronex .wc-block-components-totals-coupon__form .wc-block-components-totals-coupon__button:hover,
.theme-eronex .wc-block-components-totals-coupon__form .wc-block-components-totals-coupon__button:focus,
.theme-eronex .wc-block-cart .wc-block-cart__submit-container .wc-block-components-button:not(.is-link):hover,
.theme-eronex .wc-block-cart .wc-block-cart__submit-container .wc-block-components-button:not(.is-link):focus {
	background-color: rgba(var(--eronex-primary-color), .95);
    border-color: rgba(var(--eronex-primary-color), .95);
	color: #fff;
}

.theme-eronex .wc-block-components-totals-coupon__form .wc-block-components-totals-coupon__button:focus,
.theme-eronex .wc-block-cart .wc-block-cart__submit-container .wc-block-components-button:not(.is-link):focus {
	-webkit-box-shadow: 0 4px 18px 0 rgba(232, 223, 255, 0.10) inset, 0 0 0 3px rgba(var(--eronex-primary-color), .2);
	box-shadow: 0 4px 18px 0 rgba(232, 223, 255, 0.10) inset, 0 0 0 3px rgba(var(--eronex-primary-color), .2);
}

.theme-eronex .wc-block-components-totals-coupon .wc-block-components-panel__content .wc-block-components-text-input input[type=text] {
	height: 40px;
	font-size: 14px;
	padding: 11px 16px;
	border-radius: var(--eronex-border-radius-lg);
	border: 1px solid rgba(var(--eronex-grey-color));
}

.theme-eronex .wc-block-components-totals-coupon .wc-block-components-panel__content .wc-block-components-text-input.has-error input[type=text] {
	border-color: rgb(var(--eronex-danger-color)) !important;
	-webkit-box-shadow: 0 4px 18px 0 rgba(232, 223, 255, 0.10) inset, 0 0 0 3px rgba(var(--eronex-danger-color), .2) !important;
	box-shadow: 0 4px 18px 0 rgba(232, 223, 255, 0.10) inset, 0 0 0 3px rgba(var(--eronex-danger-color), .2) !important;
}

.theme-eronex .wc-block-components-totals-coupon .wc-block-components-panel__content .wc-block-components-text-input input[type=text]:focus {
	border-color: rgb(var(--eronex-primary-color));
	box-shadow: 0 0 0 3px rgba(var(--eronex-primary-color), 0.05);
}

.theme-eronex .wc-block-components-totals-coupon .wc-block-components-panel__content .wc-block-components-totals-coupon__form {
	gap: 16px;
}

.theme-eronex .wc-block-components-totals-coupon .wc-block-components-panel__content .wc-block-components-text-input label {
	left: 16px;
	top: 20px;
	font-size: 14px;
}

.theme-eronex .wc-block-components-totals-coupon .wc-block-components-panel__content .wc-block-components-text-input.is-active label {
	top: 2px;
}

.theme-eronex .wc-block-components-notice-snackbar-list {
	top: auto;
}

.theme-eronex .wc-block-components-totals-coupon .wc-block-components-panel__content .wc-block-components-text-input.is-active input[type=text] {
	padding-top: 24px;
}

body.theme-eronex:not(.woocommerce-block-theme-has-button-styles) .wc-block-components-button:not(.is-link):focus {
	outline: none;
	-webkit-box-shadow: 0 4px 18px 0 rgba(232, 223, 255, 0.10) inset, 0 0 0 3px rgba(var(--eronex-primary-color), .2);
	box-shadow: 0 4px 18px 0 rgba(232, 223, 255, 0.10) inset, 0 0 0 3px rgba(var(--eronex-primary-color), .2);
}

.theme-eronex .wc-block-components-totals-discount__coupon-list {
	display: flex;
	margin: 0;
	padding: 0;
	list-style: none;
	flex-wrap: wrap;
	gap: 8px;
}

.theme-eronex .wc-block-components-totals-discount__coupon-list .wc-block-components-chip {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	font-size: 14px;
	padding: 3px 10px;
	background-color: rgb(var(--eronex-light-grey-color));
	border-radius: 50px;
	color: rgb(var(--eronex-primary-font-color));
	border: 1px solid rgba(var(--eronex-grey-color));
	margin: 0;
}

.theme-eronex .wc-block-components-totals-discount__coupon-list .wc-block-components-chip .wc-block-components-chip__remove{
	background-color: transparent;
}

.theme-eronex .wc-block-components-totals-discount__coupon-list .wc-block-components-chip .wc-block-components-chip__remove .wc-block-components-chip__remove-icon {
	fill: rgb(var(--eronex-secondary-font-color));
}

.theme-eronex .wc-block-components-chip .wc-block-components-chip__text {
	padding: 0;
	line-height: 16px;
}

.theme-eronex .wc-block-components-order-summary .wc-block-components-order-summary-item__description .wc-block-components-product-metadata .wc-block-components-product-details,
.theme-eronex .wc-block-components-order-summary .wc-block-components-order-summary-item__description p {
	font-size: 12px;
}

.theme-eronex .wc-block-checkout__form .wc-block-components-textarea,
.theme-eronex .wc-block-checkout__form .wc-blocks-components-select .wc-blocks-components-select__select,
.theme-eronex .wc-block-checkout__form.wc-block-components-form .wc-block-components-text-input input {
	padding: 11px 16px;
    height: 40px;
	font-size: 14px;
	border: 1px solid rgba(var(--eronex-grey-color));
	border-radius: var(--eronex-border-radius-lg);
	background-color: rgb(var(--eronex-light-grey-color));
}

.theme-eronex .eronex-content-wrapper .wp-block-woocommerce-checkout {
	padding: 0;
}

.theme-eronex .wc-block-checkout__form .wc-block-components-textarea.has-error,
.theme-eronex .wc-block-checkout__form .wc-blocks-components-select .wc-blocks-components-select__select.has-error,
.theme-eronex .wc-block-checkout__form.wc-block-components-form .wc-block-components-text-input.has-error input {
	border-color: rgb(var(--eronex-danger-color)) !important;
	-webkit-box-shadow: 0 4px 18px 0 rgba(232, 223, 255, 0.10) inset, 0 0 0 3px rgba(var(--eronex-danger-color), .2) !important;
	box-shadow: 0 4px 18px 0 rgba(232, 223, 255, 0.10) inset, 0 0 0 3px rgba(var(--eronex-danger-color), .2) !important;
}

.theme-eronex .wc-block-checkout__form .wc-block-components-textarea:hover,
.theme-eronex .wc-block-checkout__form .wc-blocks-components-select .wc-blocks-components-select__select:hover,
.theme-eronex .wc-block-checkout__form.wc-block-components-form .wc-block-components-text-input input:hover {
	border-color: rgb(var(--eronex-dark-grey-color));
}

.theme-eronex .wc-block-checkout__form .wc-block-components-textarea:focus,
.theme-eronex .wc-block-checkout__form .wc-blocks-components-select .wc-blocks-components-select__select:focus,
.theme-eronex .wc-block-checkout__form.wc-block-components-form .wc-block-components-text-input input:focus {
	border-color: rgb(var(--eronex-primary-color));
	box-shadow: 0 0 0 3px rgba(var(--eronex-primary-color), 0.05);
}

.theme-eronex .wc-block-checkout__form .wc-block-components-textarea {
	height: inherit;
}

.theme-eronex .wc-block-checkout__form .wc-blocks-components-select .wc-blocks-components-select__label,
.theme-eronex .wc-block-components-form .wc-block-components-text-input input:-webkit-autofill+label,
.theme-eronex .wc-block-components-form .wc-block-components-text-input label {
	left: 16px;
	color: rgb(var(--eronex-primary-font-color));
	font-size: 14px;
	top: 20px;
}

.theme-eronex .wc-block-checkout__form .wc-blocks-components-select .wc-blocks-components-select__label,
.theme-eronex .wc-block-components-form .wc-block-components-text-input.is-active input:-webkit-autofill+label,
.theme-eronex .wc-block-components-form .wc-block-components-text-input.is-active label {
	top: 4px;
}

.theme-eronex .wc-block-checkout__form .wc-blocks-components-select .wc-blocks-components-select__label {
	transform: scale(.82);
	transform-origin: top left;
}

.theme-eronex .wc-block-checkout__form .wc-blocks-components-select .wc-blocks-components-select__select,
.theme-eronex .wc-block-checkout__form.wc-block-components-form .wc-block-components-text-input.is-active input{
	padding-top: 24px;
	padding-left: 16px;
}

.theme-eronex .wc-block-checkout__form .wc-blocks-components-select .wc-blocks-components-select__select {
	padding-bottom: 0;
    padding-top: 16px;
}

.theme-eronex .wc-block-components-radio-control--highlight-checked .wc-block-components-radio-control-accordion-option--checked-option-highlighted,
.theme-eronex .wc-block-components-radio-control--highlight-checked label.wc-block-components-radio-control__option--checked-option-highlighted {
	box-shadow: inset 0 0 0 1px rgb(var(--eronex-grey-color));
	border-radius: var(--eronex-border-radius-lg);
}

.theme-eronex .wc-block-components-radio-control--highlight-checked.wc-block-components-radio-control--highlight-checked--last-selected:after {
	display: none;
}

.theme-eronex .wc-block-components-address-card {
	font-size: 14px;
	border-radius: var(--eronex-border-radius-lg);
	border-color: rgb(var(--eronex-grey-color));
}

.theme-eronex .wc-block-components-address-card__edit {
	color: rgb(var(--eronex-primary-color));
}

.theme-eronex .wc-block-components-checkout-step__heading-container .wc-block-components-title.wc-block-components-title {
	font-size: 16px;

}

.theme-eronex .wc-block-components-skeleton.wc-block-components-skeleton--checkout-payment {
	border-color: rgb(var(--eronex-grey-color));
	border-radius: var(--eronex-border-radius-lg);
}

.theme-eronex .wc-block-components-radio-control .wc-block-components-radio-control__input:checked{
	border-color: rgb(var(--eronex-primary-color));
}
.theme-eronex .wc-block-components-radio-control .wc-block-components-radio-control__input:checked:before {
	background-color: rgb(var(--eronex-primary-color));
}

.theme-eronex .wc-block-checkout__actions .wc-block-checkout__actions_row .wc-block-components-checkout-place-order-button--full-width {
    font-size: 14px;
    padding: 10px 22px;
    color: #fff;
    line-height: 20px;
    border-radius: var(--eronex-border-radius-lg);
    text-decoration: none !important;
    transition: all .15s ease-in-out;
    background-color: rgb(var(--eronex-primary-color));
    border-color: rgb(var(--eronex-primary-color));
	min-height: inherit !important;
}

.theme-eronex .wc-block-checkout__actions .wc-block-checkout__actions_row .wc-block-components-checkout-place-order-button--full-width:hover,
.theme-eronex .wc-block-checkout__actions .wc-block-checkout__actions_row .wc-block-components-checkout-place-order-button--full-width:focus {
	background-color: rgba(var(--eronex-primary-color), .95);
    border-color: rgba(var(--eronex-primary-color), .95);
	color: #fff;
}

.theme-eronex .wc-block-checkout__actions .wc-block-checkout__actions_row .wc-block-components-checkout-place-order-button--full-width:focus {
	-webkit-box-shadow: 0 4px 18px 0 rgba(232, 223, 255, 0.10) inset, 0 0 0 3px rgba(var(--eronex-primary-color), .2);
	box-shadow: 0 4px 18px 0 rgba(232, 223, 255, 0.10) inset, 0 0 0 3px rgba(var(--eronex-primary-color), .2);
}

.theme-eronex .editor-styles-wrapper table.wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__image img,
.theme-eronex table.wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__image img {
	border-radius: var(--eronex-border-radius-lg);
    border: 1px solid rgb(var(--eronex-grey-color));
}

.theme-eronex .wp-block-woocommerce-checkout-order-summary-block .checkout-order-summary-block-fill,
.theme-eronex .wp-block-woocommerce-checkout-order-summary-block {
	border-radius: var(--eronex-border-radius-lg);
	border-color: rgb(var(--eronex-grey-color));
}

.theme-eronex .wp-block-woocommerce-checkout-order-summary-block .wc-block-components-checkout-order-summary__title .wc-block-components-checkout-order-summary__title-text {
	font-size: 16px;
	font-weight: 500;
	font-family: Figtree;
	color: rgb(var(--eronex-secondary-font-color));
}

.theme-eronex .wc-block-components-order-summary .wc-block-components-order-summary-item__image>img {
	border-radius: var(--eronex-border-radius-md);
    border: 1px solid rgb(var(--eronex-grey-color));
}

.theme-eronex .woocommerce-notice.woocommerce-notice--success.woocommerce-thankyou-order-received {
	border: 1px solid rgba(var(--eronex-success-color), 0.2);
	background: rgba(var(--eronex-success-color), 0.05);
	padding: 20px;
	gap: 15px;
	display: flex;
	align-items: center;
	border-radius: var(--eronex-border-radius-lg);
	margin-bottom: 30px;
}

.theme-eronex .woocommerce ul.order_details {
	margin: 0 0 36px;
    display: flex;
    justify-content: space-between;
    gap: 16px;
	flex-wrap: wrap;
}

.theme-eronex .woocommerce ul.order_details:before,
.theme-eronex .woocommerce ul.order_details::after {
	display: none;
}

.theme-eronex .woocommerce ul.order_details li {
	font-size: 14px;
	font-weight: 400;
	color: rgb(var(--eronex-primary-font-color));
	border-radius: var(--eronex-border-radius-lg);
	background-color: rgb(var(--eronex-light-grey-color));
	padding: 16px;
	margin: 0;
    border: 0;
	text-transform: none;
	width: 100%;
}

.theme-eronex .woocommerce ul.order_details li strong {
	font-size: 16px;
    margin: 4px 0 0;
    font-weight: 500;

}

.theme-eronex .woocommerce .woocommerce-customer-details .woocommerce-column__title,
.theme-eronex .woocommerce .woocommerce-order-details .woocommerce-order-details__title {
	font-size: 20px;
	margin: 0 0 16px;
}

.theme-eronex .woocommerce .woocommerce-order-details {
	margin: 0 0 36px;
}

.theme-eronex .woocommerce .woocommerce-customer-details {
	margin: 0;
}

.theme-eronex .woocommerce table.shop_table tbody th,
.theme-eronex .woocommerce table.shop_table tfoot td,
.theme-eronex .woocommerce table.shop_table tfoot th {
	color: rgb(var(--eronex-secondary-font-color));
	font-weight: 500;
}

.theme-eronex .woocommerce table.shop_table td {
	border-top: 0;
}

.theme-eronex .woocommerce table.shop_table {
	border: 0;
}

.theme-eronex .woocommerce table.shop_table tbody th,
.theme-eronex .woocommerce table.shop_table tfoot td,
.theme-eronex .woocommerce table.shop_table tfoot th {
	border-top: 0;
}

.theme-eronex .woocommerce table.shop_table >thead>tr>th,
.theme-eronex .woocommerce table.shop_table >tbody>tr>th,
.theme-eronex .woocommerce table.shop_table >tfoot>tr>th,
.theme-eronex .woocommerce table.shop_table >thead>tr>td,
.theme-eronex .woocommerce table.shop_table >tbody>tr>td,
.theme-eronex .woocommerce table.shop_table >tfoot>tr>td {
	text-align: left;
	padding: 16px;
}

.theme-eronex .woocommerce table.shop_table th {
	font-size: 14px;
    font-weight: 400;
}

.theme-eronex .woocommerce table.shop_table th strong,
.theme-eronex .woocommerce table.shop_table td strong {
	font-weight: 500;
}

.theme-eronex .woocommerce table.shop_table tfoot tr th + td,
.theme-eronex .woocommerce table.shop_table tbody tr td + td,
.theme-eronex .woocommerce table.shop_table thead tr th + th {
	border-left: 0;
}

.theme-eronex .woocommerce table.shop_table thead:first-child tr:first-child th:first-child {
    border-top-left-radius: var(--eronex-border-radius-lg);
}

.theme-eronex .woocommerce table.shop_table thead:first-child tr:first-child th:last-child {
    border-top-right-radius: var(--eronex-border-radius-lg);
}

.theme-eronex .woocommerce table.shop_table tfoot tr:last-child>th:first-child {
    border-bottom-left-radius: var(--eronex-border-radius-lg);
}

.theme-eronex .woocommerce table.shop_table tfoot tr:last-child>td:last-child {
    border-bottom-right-radius: var(--eronex-border-radius-lg);
}

.theme-eronex .woocommerce .woocommerce-customer-details address {
	border-radius: var(--eronex-border-radius-lg);
	border: 1px solid rgb(var(--eronex-grey-color));
	padding: 16px;
}

.theme-eronex .wc-block-components-totals-wrapper,
.theme-eronex .wp-block-woocommerce-checkout-order-summary-totals-block {
	border-color: rgb(var(--eronex-grey-color));
}

.theme-eronex .wc-block-components-form .wc-block-components-checkout-step{
	margin-bottom: 36px;
}

.theme-eronex .wc-block-checkout__terms.wc-block-checkout__terms--with-separator {
	border-top: 1px solid rgb(var(--eronex-grey-color));
	padding-top: 36px;
}

.eronex-theme.woocommerce div.product div.summary{
	margin-bottom: 36px;
}

.eronex-theme .wc-block-cart__sidebar{
	margin-bottom: 0;
}

.eronex-theme .wc-block-cart__submit {
	margin-bottom: 0;
}

.eronex-theme .wc-block-components-sidebar-layout.wc-block-cart {
	margin-bottom: 0;
}

.eronex-theme #dokan-store-listing-filter-wrap {
    padding: 0;
	box-shadow: none;
    border-radius: var(--eronex-border-radius-lg);
}

.eronex-theme #dokan-store-listing-filter-wrap .right .item.sort-by {
	margin-left: 10px;
	margin-right: 10px;
	display: flex;
	align-items: center;
	gap: 8px;
}

.eronex-theme #dokan-store-listing-filter-wrap .right .item select {
	min-height: 40px;
	padding-left: 16px;
	background-color: rgb(var(--eronex-light-grey-color));
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 18 18' fill='none'%3E%3Cpath d='M14.625 6.9375L9 12.5625L3.375 6.9375' stroke='%23636363' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 18px;
	cursor: pointer;
	border-color: rgb(var(--eronex-grey-color));
}

.eronex-theme #dokan-store-listing-filter-wrap .right .item select:hover {
	border-color: rgb(var(--eronex-dark-grey-color));
}

.eronex-theme #dokan-store-listing-filter-wrap .right .item select:focus {
	-webkit-box-shadow: 0 0 0 3px #F8F5FF;
    box-shadow: 0 0 0 3px #F8F5FF;
    border-color: rgb(var(--eronex-primary-color));
}

.eronex-theme #dokan-store-listing-filter-wrap .right .item .dokan-store-list-filter-button {
	line-height: 20px;
	padding-bottom: 10px;
	padding-top: 10px;
	border-radius: var(--eronex-border-radius-lg);
}

.eronex-theme #dokan-store-listing-filter-wrap .right .item .dokan-store-list-filter-button:hover {
	color: #fff;
    fill: #fff;
    background-color: rgba(var(--eronex-primary-color), .95);
    border-color: rgba(var(--eronex-primary-color), .95);
}

.eronex-theme #dokan-store-listing-filter-wrap .right .item .dokan-store-list-filter-button:focus {
	color: #fff;
    fill: #fff;
    background-color: rgba(var(--eronex-primary-color), .95);
    border-color: rgba(var(--eronex-primary-color), .95);
	box-shadow: 0 4px 18px 0 rgba(232, 223, 255, 0.10) inset, 0 0 0 3px rgba(var(--eronex-primary-color), .2);
}

.eronex-theme #dokan-store-listing-filter-wrap .right .toggle-view {
	display: flex;
	gap: 4px;
	height: auto;
}

.eronex-theme #dokan-store-listing-filter-wrap .right .toggle-view > span {
	color: rgb(var(--eronex-primary-font-color));
	border: 1px solid rgb(var(--eronex-grey-color));
	border-radius: var(--eronex-border-radius-lg);
	width: 40px;
	height: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 18px;
	transition: all .15s ease-in-out;
}

.eronex-theme #dokan-store-listing-filter-wrap .right .toggle-view > span:hover {
	background: #FFF;
    color: rgb(var(--eronex-primary-font-color));
    border: 1px solid rgb(var(--eronex-grey-color));
    -webkit-box-shadow: 0 4px 18px 0 #F6F5F8 inset;
    box-shadow: 0 4px 18px 0 #F6F5F8 inset;
}

.eronex-theme #dokan-store-listing-filter-wrap .right .toggle-view > span:focus {
	box-shadow: 0 0 0 3px rgba(207, 207, 207, 0.20), 0 4px 4px 0 #F6F5F8 inset;
}

.eronex-theme #dokan-store-listing-filter-form-wrap {
	border: 1px solid rgb(var(--eronex-grey-color));
	box-shadow: none;
	margin-top: 16px;
	padding: 16px;
	border-radius: var(--eronex-border-radius-lg);
	display: flex;
	gap: 16px;
}

.eronex-theme #dokan-store-listing-filter-form-wrap .store-search {
	flex: auto;
}

.eronex-theme #dokan-store-listing-filter-form-wrap .store-search .store-search-input {
	border-radius: var(--eronex-border-radius-lg);
	border: 1px solid rgb(var(--eronex-grey-color));
	background-color: rgb(var(--eronex-light-grey-color));
}

.eronex-theme #dokan-store-listing-filter-form-wrap .store-search .store-search-input:hover {
	border-color: rgb(var(--eronex-dark-grey-color));
}

.eronex-theme #dokan-store-listing-filter-form-wrap .store-search .store-search-input:focus {
	box-shadow: 0 0 0 3px rgba(var(--eronex-primary-color), 0.05);
	border-color: rgb(var(--eronex-primary-color));
	border-style: solid;
}

.eronex-theme #dokan-store-listing-filter-form-wrap .apply-filter {
	margin: 0;
	display: flex;
	align-items: center;
	gap: 8px;
}

.eronex-theme #dokan-store-listing-filter-form-wrap .apply-filter #cancel-filter-btn {
	display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    font-size: 14px;
	margin: 0;
    line-height: 20px;
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border: 1px solid rgb(var(--eronex-grey-color)) !important;
    padding: 9px 18px;
    outline: none;
	color: rgb(var(--eronex-primary-font-color)) !important;
    box-shadow: none;
    background-color: transparent !important;
    border-radius: var(--eronex-border-radius-lg);
    transition: all .15s ease-in-out;
}
.eronex-theme #dokan-store-listing-filter-form-wrap .apply-filter #cancel-filter-btn:focus,
.eronex-theme #dokan-store-listing-filter-form-wrap .apply-filter #cancel-filter-btn:hover {
	background: #FFF;
    color: rgb(var(--eronex-primary-font-color));
    border: 1px solid rgb(var(--eronex-grey-color));
    -webkit-box-shadow: 0 4px 18px 0 #F6F5F8 inset;
    box-shadow: 0 4px 18px 0 #F6F5F8 inset;
}

.eronex-theme #dokan-store-listing-filter-form-wrap .apply-filter #cancel-filter-btn:focus {
	box-shadow: 0 0 0 3px rgba(207, 207, 207, 0.20), 0 4px 4px 0 #F6F5F8 inset;
}

.eronex-theme #dokan-store-listing-filter-form-wrap .apply-filter #apply-filter-btn {
	border-radius: var(--eronex-border-radius-lg);
	padding: 10px 18px;
	line-height: 20px;
}

.eronex-theme #dokan-store-listing-filter-form-wrap .apply-filter #apply-filter-btn:hover {
	color: #fff;
    fill: #fff;
    background-color: rgba(var(--eronex-primary-color), .95);
    border-color: rgba(var(--eronex-primary-color), .95);
}

.eronex-theme #dokan-store-listing-filter-form-wrap .apply-filter #apply-filter-btn:focus {
	color: #fff;
    fill: #fff;
    background-color: rgba(var(--eronex-primary-color), .95);
    border-color: rgba(var(--eronex-primary-color), .95);
	box-shadow: 0 4px 18px 0 rgba(232, 223, 255, 0.10) inset, 0 0 0 3px rgba(var(--eronex-primary-color), .2);
}

.eronex-theme #dokan-store-listing-filter-form-wrap:before {
	display: none;
}

/*  Responsive */

@media (min-width: 371px) {
	.gn-action-menu-wrapper>.gn-user-auth-buttons .gn-btn {
		padding-left: 18px;
		padding-right: 18px;
	}
	.theme-eronex .woocommerce ul.order_details li {
		max-width: calc(50% - 8px);
	}
}

@media (min-width: 421px) {

	.comment-form:not(:has(.eronex-comment-form-inputs)) .comment-form-author,
	.comment-form:not(:has(.eronex-comment-form-inputs)) .comment-form-email,
	.comment-form:not(:has(.eronex-comment-form-inputs)) .comment-form-url {
		width: 100%;
		padding: 0;
		max-width: calc(50% - 8px);
	}
	.theme-eronex.woocommerce div.product .woocommerce-tabs ul.tabs {
		flex-wrap: nowrap;
	}

	.theme-eronex .has-4-columns .wc-block-grid__products,
	.theme-eronex .has-6-columns .wc-block-grid__products,
	.theme-eronex.woocommerce .products ul.columns-6,
	.theme-eronex .has-6-columns .wc-block-grid__products,
	.theme-eronex.woocommerce ul.products.columns-6,
	.theme-eronex.woocommerce .products ul.columns-5,
	.theme-eronex.woocommerce ul.products.columns-5,
	.theme-eronex .has-5-columns .wc-block-grid__products,
	.theme-eronex.woocommerce .products ul.columns-1,
	.theme-eronex.woocommerce ul.products.columns-2,
	.theme-eronex .has-2-columns .wc-block-grid__products,
	.theme-eronex.woocommerce .products ul.columns-3,
	.theme-eronex.woocommerce ul.products.columns-3,
	.theme-eronex .has-3-columns .wc-block-grid__products,
	.theme-eronex.woocommerce .products ul,
	.theme-eronex.woocommerce ul.products,
	.theme-eronex .wc-block-grid__products,
	.theme-eronex.woocommerce .products ul.columns-4,
	.theme-eronex.woocommerce ul.products.columns-4 {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
	.theme-eronex.woocommerce .woocommerce-result-count {
		width: auto;
		margin-bottom: 0 0 1em;
	}
	.theme-eronex.woocommerce .woocommerce-ordering{
		float: right;
	}
}

@media (min-width: 560px) {
	.eronex-hamburger-layout-1 .eronex-hamburger-menu-wrapper{
		width: 400px;
	}
	.theme-eronex.woocommerce .products ul.columns-6,
	.theme-eronex.woocommerce ul.products.columns-6,
	.theme-eronex.woocommerce .products ul.columns-5,
	.theme-eronex .has-6-columns .wc-block-grid__products,
	.theme-eronex .has-5-columns .wc-block-grid__products,
	.theme-eronex.woocommerce ul.products.columns-5 {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (min-width: 768px) {
	.eronex-theme #dokan-store-listing-filter-form-wrap .apply-filter #apply-filter-btn {
		font-size: 16px;
		padding: 14px 22px;
	}
	.eronex-theme #dokan-store-listing-filter-form-wrap .apply-filter #cancel-filter-btn {
		font-size: 16px;
		padding: 13px 22px;
	}
	.theme-eronex .woocommerce ul.order_details li {
		flex: 1;
		width: auto;
	}
	.theme-eronex .wc-block-checkout__actions .wc-block-checkout__actions_row .wc-block-components-checkout-place-order-button--full-width {
		font-size: 16px;
		padding: 13px 22px;
	}

	.theme-eronex .wc-block-checkout__form .wc-block-components-textarea,
	.theme-eronex .wc-block-checkout__form .wc-blocks-components-select .wc-blocks-components-select__select,
	.theme-eronex .wc-block-checkout__form.wc-block-components-form .wc-block-components-text-input input {
		height: 48px;
	}

	.theme-eronex .wc-block-checkout__form .wc-blocks-components-select .wc-blocks-components-select__label,
	.theme-eronex .wc-block-components-form .wc-block-components-text-input input:-webkit-autofill+label,
	.theme-eronex .wc-block-components-form .wc-block-components-text-input label {
		top: 24px;
	}

	.theme-eronex .wc-block-checkout__form .wc-blocks-components-select .wc-blocks-components-select__label,
	.theme-eronex .wc-block-components-form .wc-block-components-text-input.is-active input:-webkit-autofill+label,
	.theme-eronex .wc-block-components-form .wc-block-components-text-input.is-active label {
		top: 6px;
	}

	.theme-eronex .wc-block-components-totals-coupon .wc-block-components-panel__content .wc-block-components-text-input label {
		top: 25px;
	}

	.theme-eronex .wc-block-components-totals-coupon .wc-block-components-panel__content .wc-block-components-text-input.is-active label {
		top: 6px;
	}

	.theme-eronex .wc-block-components-totals-coupon .wc-block-components-panel__content .wc-block-components-text-input input[type=text] {
		height: 48px;
	}
	.theme-eronex .wc-block-components-totals-coupon__form .wc-block-components-totals-coupon__button,
	.theme-eronex .wc-block-cart .wc-block-cart__submit-container .wc-block-components-button:not(.is-link) {
		font-size: 16px;
		padding: 14px 22px;
	}
	.theme-eronex.woocommerce #review_form #respond p.form-submit .submit,
	.theme-eronex.woocommerce div.product .summary.entry-summary form.cart .button {
		font-size: 16px;
		padding: 14px 22px;
	}

	.theme-eronex.woocommerce div.product .woocommerce-tabs .entry-content{
		margin-bottom: 0;
	}
	.theme-eronex.woocommerce .woocommerce-result-count {
		padding: 14px 0;
	}
	.theme-eronex.woocommerce .products ul.columns-3,
	.theme-eronex .has-3-columns .wc-block-grid__products,
	.theme-eronex.woocommerce ul.products.columns-3 {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.theme-eronex .has-4-columns .wc-block-grid__products,
	.theme-eronex.woocommerce .products ul.columns-6,
	.theme-eronex .has-6-columns .wc-block-grid__products,
	.theme-eronex.woocommerce ul.products.columns-6,
	.theme-eronex.woocommerce .products ul.columns-5,
	.theme-eronex.woocommerce ul.products.columns-5,
	.theme-eronex .has-5-columns .wc-block-grid__products,
	.theme-eronex.woocommerce .products ul,
	.theme-eronex.woocommerce ul.products,
	.theme-eronex .wc-block-grid__products,
	.theme-eronex.woocommerce .products ul.columns-4,
	.theme-eronex.woocommerce ul.products.columns-4 {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
	.widget.widget_search .search-form .search-submit {
		font-size: 18px;
		width: 48px;
		height: 48px;
	}
	select {
		padding: 11px 30px 11px 16px;
		min-height: 48px;
	}

	textarea,
	select,
	.dc-select select,
	.form-control,
	input[type="text"],
	input[type="password"],
	input[type="datetime"],
	input[type="datetime-local"],
	input[type="date"],
	input[type="month"],
	input[type="time"],
	input[type="week"],
	input[type="number"],
	input[type="email"],
	input[type="url"],
	input[type="search"],
	input[type="tel"],
	input[type="color"],
	.uneditable-input,
	.eronex-comments-wrapper .comment-list .comment-form-author input,
	.eronex-comments-wrapper .comment-list .comment-form-email input,
	.eronex-comments-wrapper .comment-list .comment-form-url input,
	.eronex-post-content .comment-form .comment-form-author > input,
	.eronex-post-content .comment-form .comment-form-email > input,
	.eronex-post-content .comment-form .comment-form-url > input,
	.eronex-comment-form-inputs input,
	.eronex-comments-wrapper .comment-form-comment textarea,
	.wp-block-search__input {
		padding: 11px 16px;
		min-height: 48px;
	}
	.eronex-btn,
	input[type="submit"],
	.wp-block-search__inside-wrapper .wp-block-search__button {
        font-size: 16px;
        padding: 13px 22px;
    }

	.wp-block-search__inside-wrapper .wp-block-search__button.has-icon {
		width: 40px;
		height: 40px;
	}

	.gn-btn, a.gn-btn, button.gn-btn {
        font-size: 16px;
        padding: 13px 22px;
    }

	.eronex-header-search > .search-form .search-submit {
		width: 40px;
		height: 40px;
	}

	.eronex-hamburger-toggle-btn {
		width: 40px;
		height: 40px;
	}

	.eronex-header-search > .search-form input {
		padding: 11px 16px 11px 40px;
		min-height: 40px;
	}

	.eronex-header-search > .search-form label {
		height: 40px;
	}

	.eronex-post-content .comment-form .form-submit input[type="submit"],
	.eronex-comments-wrapper .comment-form .form-submit input[type="submit"] {
		font-size: 16px;
		padding: 13px 22px;
	}
	.eronex-theme.woocommerce div.product {
		display: grid;
		grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
		gap: 36px;
		align-items: start;
	}

	.eronex-theme.woocommerce div.product div.images,
	.eronex-theme.woocommerce div.product div.summary {
		width: auto;
		margin: 0;
	}

	.eronex-theme.woocommerce div.product .woocommerce-tabs,
	.eronex-theme.woocommerce div.product .related,
	.eronex-theme.woocommerce div.product .upsells {
		grid-column: 1 / -1;
	}
	.wp-block-search__inside-wrapper:where(.wp-block-search__button-inside .wp-block-search__inside-wrapper) .wp-block-search__button.has-icon,
	.wp-block-search__inside-wrapper:where(.wp-block-search__button-inside .wp-block-search__inside-wrapper) .wp-block-search__button {
		height: 46px;
	}

	.wp-block-search__inside-wrapper:where(.wp-block-search__button-inside .wp-block-search__inside-wrapper) .wp-block-search__input {
		min-height: 46px;
	}
}

@media (min-width: 769px) {
	.eronex-theme.woocommerce table.shop_attributes tr:last-child th:first-child{
		border-bottom-left-radius: var(--eronex-border-radius-lg);
	}

	.eronex-theme.woocommerce table.shop_attributes tr:first-child td:last-child{
		border-top-right-radius: var(--eronex-border-radius-lg);
	}

	.eronex-theme.woocommerce table.shop_attributes tr:first-child td {
		border-top: 1px solid rgb(var(--eronex-grey-color));
	}

	.eronex-theme.woocommerce table.shop_attributes tr:first-child th:first-child{
		border-top-right-radius: 0;
	}

	.eronex-theme.woocommerce table.shop_attributes td {
		border-left: 0;
	}

	.eronex-theme.woocommerce table.shop_attributes tr:last-child td:last-child {
		border-bottom-left-radius: 0;
	}
}

@media (min-width: 992px) {

	.theme-eronex.woocommerce .products ul.columns-6,
	.theme-eronex.woocommerce ul.products.columns-6,
	.theme-eronex .has-6-columns .wc-block-grid__products,
	.theme-eronex .has-5-columns .wc-block-grid__products,
	.theme-eronex.woocommerce .products ul.columns-5,
	.theme-eronex.woocommerce ul.products.columns-5 {
		grid-template-columns: repeat(5, minmax(0, 1fr));
	}
}

@media (min-width: 1080px) {
	.theme-eronex .has-6-columns .wc-block-grid__products,
	.theme-eronex.woocommerce .products ul.columns-6,
	.theme-eronex.woocommerce ul.products.columns-6 {
		grid-template-columns: repeat(6, minmax(0, 1fr));
	}
}

@media (max-width: 782px) {
	.admin-bar .eronex-appear .eronex-navbar {
		top: 44px;
	}
	.admin-bar .eronex-hamburger-wrapper{
		top: 44px;
	}
}

@media (max-width: 600px) {
	.admin-bar .eronex-appear .eronex-navbar {
		top: 0;
	}
	.admin-bar .eronex-hamburger-wrapper{
		top: 0;
	}
}

@media (max-width: 420px) {
	.theme-eronex .wc-block-components-order-summary .wc-block-components-order-summary-item {
		flex-wrap: wrap;
	}
	.theme-eronex .wc-block-components-order-summary .wc-block-components-order-summary-item__description {
		padding: 0;
		width: 100%;
	}

	.wc-block-components-order-summary .wc-block-components-order-summary-item__image {
		order: -1;
		padding-bottom: 8px !important;
	}

	.wc-block-components-order-summary .wc-block-components-order-summary-item__total-price {
		order: -1;
	}
}

@media (max-width: 536px) {

	.eronex-header .gn-action-menu-wrapper .gn-user-notifications {
		display: none;
	}

	.eronex-header-search > .search-form label {
		max-width: 280px;
        transform: none;
        margin-left: -150px !important;
        padding: 10px;
        background: #fff;
        height: auto;
        box-shadow: 0 4px 10px -2px rgba(0, 0, 0, .1);
        border-radius: 12px;
        right: auto;
		left: 0;
        top: 100%;
	}

	.eronex-header-search > .search-form label:before {
		left: 10px;
	}
}

@media screen and (min-device-width: 724px) and (max-device-width: 991px) {
	.theme-eronex .wc-block-components-order-summary .wc-block-components-order-summary-item {
		flex-wrap: wrap;
	}
	.theme-eronex .wc-block-components-order-summary .wc-block-components-order-summary-item__description {
		padding: 0;
		width: 100%;
	}

	.wc-block-components-order-summary .wc-block-components-order-summary-item__image {
		order: -1;
		padding-bottom: 8px !important;
	}

	.wc-block-components-order-summary .wc-block-components-order-summary-item__total-price {
		order: -1;
	}
}