/**
 * Focusable
 */
*:focus-visible {
    border-radius: 2px;
    outline: 2px solid #2282e2 !important;
}

/**
 * Content Skip Link
 */
.skip-link.screen-reader-text:focus-visible {
    width: auto;
    height: auto;
    margin: 0;
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 999;
    background-color: var(--e-global-color-accent);
    font-family: var(--e-global-typography-accent-font-family), sans-serif;
    font-weight: var(--e-global-typography-accent-font-weight);
    font-size: 16px;
    color: var(--e-global-color-text);
    line-height: var(--e-global-typography-accent-line-height);
    text-transform: var(--e-global-typography-accent-text-transform);
    text-decoration: none;
    clip: auto;
}

/**
 * Screen-reader only!
 */
body:not(.elementor-editor-active) .c3-screen-reader {
    width: 1px;
    height: 1px;
    position: absolute;
    padding: 0;
    border: 0;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(0px 0px 99.9% 99.9%);
    -webkit-clip-path: inset(0px 0px 99.9% 99.9%);
}

.elementor-editor-active .c3-screen-reader {
    height: 40px;
    position: relative;
    overflow: hidden;
    opacity: 0.5;
}

.elementor-editor-active .c3-screen-reader:before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: repeating-linear-gradient(-45deg, #f2a417, #f2a417 15px, #141617 15px, #141617 30px) !important;
}

.elementor-editor-active .c3-screen-reader:after {
    content: 'screen-reader only';
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
    padding: 5px;
    background-color: #141617;
    font-family: monospace;
    font-weight: bold;
    font-size: 10px;
    color: #f2a417;
    line-height: 1;
}

/**
 * Skip button for Elements
 */
.c3-skippable {
    position: relative;
}

.c3-element-skip-button {
    display: block;
    width: 60px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
    padding: 4px 8px;
    border-radius: 2px;
    background-color: #2282e2;
    font-family: var(--e-global-typography-accent-font-family), sans-serif;
    font-weight: var(--e-global-typography-accent-font-weight);
    font-size: 12px;
    color: #fff;
    line-height: 1;
    text-align: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 300ms;
}

.c3-element-skip-button:focus-visible {
    opacity: 1;
    pointer-events: auto;
    transition: opacity 300ms;
}

.c3-element-skip-anchor {
    position: relative;
    top: -96px;
}