/* Header blur */
.elementor-sticky--effects {
    background-color: var(--blur-bg);
    backdrop-filter: var(--blur-saturation);
    -webkit-backdrop-filter: var(--blur-saturation);
}
/* Cart full height bugfix due to backdrop filter blur */
.elementor-menu-cart__container {
    height: 100vh!important;
}
/* Cart focused bg */
.elementor-kit-10 .elementor-button:focus {
    background-color: transparent;
}

/* Form fields cut off arrow */
.e-font-icon-svg.e-eicon-caret-down {
    overflow: visible;
}

/* Text selection color */
::selection {
    background: var(--e-global-color-accent);
    color: var(--e-global-color-primary);
}

/* Dropdown menu default cursor instead of selection
.menu-pointer {
    cursor: default;
} */

/* Accent heading box shape */
.heading-box::before {
    content: "";
    float: left;
    width: 12.5px;
    height: 12.5px;
    background: var(--e-global-color-accent);
    margin-right: var(--gap-s);
    border-radius: 0.125rem;
}

/* Button line */
.btn-hover:after {
    content: "";
    position: absolute;
    left: 0;
    top: 100%;
    width: 35%;
    height: 2px;
    background-color: var(--e-global-color-accent);
    transition: width 0.3s, background-color 0.3s;
}

/* Button hover state */
.btn-hover:hover:after {
    width: 100%;
    color: var(--e-global-color-accent);
}

/* Tab description text */
.tab-desc-text {
    top: 5px;
    color: var(--e-global-color-f8963f3);
    font-size: var(--e-global-typography-50b4c2a-font-size);
    margin: 0 var(--gap-m);
    flex-grow: 1;
}
/* Tab description arrow */
.elementor-widget-n-tabs .e-n-tab-title-text {
    flex-grow: 1;
}
@media (max-width: 1024px) {
    .tab-desc-text, .e-n-tab-icon {
        display: none !important;
    }
}

/* Accordion hover animation */
.elementor-widget-n-accordion .e-n-accordion-item-title {
    transition: all 0.3s ease-in-out;
}

/* Map compact table */
.compact-table {
    border-collapse: collapse;
}
.compact-table td {
    padding: 5px 10px 5px 10px;
}

/* H2 headings line */
.heading-h2 h2, .heading-h2 h1 {
    display: inline-block;
    margin-bottom: var(--gap-m);
}
/* Line center alignment */
.heading-h2-center::after {
    content: '';
    position: absolute;
    left: 50%;
    Top: 100%;
    transform: translateX(-50%);
    width: 30%;
    height: 2px;
    background-color: var(--e-global-color-accent);
    aria-hidden: true;
}
/* Line left alignment */
.heading-h2-left::after {
    content: '';
    position: absolute;
    left: 0;
    Top: 100%;
    width: 30%;
    height: 2px;
    background-color: var(--e-global-color-accent);
    aria-hidden: true;
}

/* Image box and icon box clickable */
.clickable-parent a:after {
    content: "";
    position: absolute;
    inset: -1rem;
    display: block !important;
    z-index: 1;
}

/* Checkbox alignment */
.contact-checkbox .elementor-field-option input {
    display: inline-block;
    vertical-align: middle;
    width: 25px;
    height: 15px;
}

/* Hotspot ripple padding */
.elementor-11 .elementor-element.elementor-element-7ec87f5,
.elementor-40 .elementor-element.elementor-element-ab4946e{
    --hotspot-padding: 2.5rem;
}
@media (max-width: 768px) {
    .elementor-11 .elementor-element.elementor-element-7ec87f5,
    .elementor-40 .elementor-element.elementor-element-ab4946e{
        --hotspot-padding: 1rem;
    }
}


/* Advanced product fields quantity buttons styles */
.wapf .apf-plusmin button {
	background-color: var(--e-global-color-primary);
}
.wapf .apf-plusmin input {
	border-left: 1px solid #505050;
	border-right: 1px solid #505050;
	border-radius: 0px!important;
}