.stork-wrapper-dark {
    position: relative;
    font-family: inherit;
    box-sizing: border-box;
    font-size: 1em;

    --stork-blue-2: #5bf;

    --stork-violet-4: rgb(118, 238, 85);
    --stork-violet-5: white;
    --stork-violet-10: rgba(118, 238, 85, 0.27);

    --stork-lime-3: #f6ff00;

    --stork-gray-1: #fafafa;
    --stork-gray-3: #dee2e6;
    --stork-gray-7: #fafafa;
    --stork-gray-8: #141414;

    --stork-border-color: var(--stork-gray-7);
    --stork-background-color: var(--stork-gray-8);
    --stork-text-color: var(--stork-gray-1);

    --stork-input-border-radius: 0px;
}

.stork-wrapper-dark *,
.stork-wrapper-dark *:before,
.stork-wrapper-dark *:after {
    box-sizing: border-box;
}

.stork-wrapper-dark .stork-input {
    width: 100%;
    height: 2.7em;
    font-size: 1em;
    padding: 0.4em 0.8em;
    position: relative;
    box-shadow: inset 0 0.1em 0.3em hsla(0, 0%, 0%, 0.1);
    border: 1px solid var(--stork-border-color);
    border-radius: var(--stork-input-border-radius);
    background-color: var(--stork-background-color);
    color: var(--stork-text-color);
    font-family: inherit;
}

.stork-wrapper-dark .stork-input:focus {
outline: none;
}



.stork-wrapper-dark .stork-output {
    position: absolute;
    width: 100%;
    margin-top: 0.5em;
    border-radius: var(--stork-input-border-radius);
    display: flex;
    flex-direction: column;
    z-index: 100;
    color: var(--stork-text-color);
    font-weight: 400;
    font-family: inherit;
}

.stork-wrapper-dark .stork-attribution a:link,
.stork-wrapper-dark .stork-attribution a:visited {
    color: var(--stork-blue-2);
}

.stork-wrapper-dark .stork-output-visible {
    border: 1px solid var(--stork-border-color);
    box-shadow: 0px 0.4px 2.2px rgba(0, 0, 0, 0.011),
        0px 1px 5.3px rgba(0, 0, 0, 0.016), 0px 1.9px 10px rgba(0, 0, 0, 0.02),
        0px 3.4px 17.9px rgba(0, 0, 0, 0.024), 0px 6.2px 33.4px rgba(0, 0, 0, 0.029),
        0px 15px 80px rgba(0, 0, 0, 0.04);
    background: var(--stork-background-color);
}

.stork-wrapper-dark .stork-message {
    width: 100%;
    padding: 0.5em 1em;
    color: var(--stork-text-color);
}

.stork-wrapper-dark .stork-attribution {
    display: none;
}

.stork-wrapper-dark .stork-results {
    margin: 0;
    padding: 0;
    width: 100%;
    list-style-type: none;
    max-height: 25em;
    overflow-y: auto;
    border-top: 1px solid var(--stork-border-color);
    border-bottom: 1px solid var(--stork-border-color);
    box-shadow: inset 0em 0.7em 0.2em -0.5em hsla(0, 0%, 0%, 0.08),
        inset 0em -0.7em 0.2em -0.5em hsla(0, 0%, 0%, 0.08);
}

.stork-wrapper-dark .stork-result:not(:last-child) {
    border-bottom: 1px solid var(--stork-border-color);
}

.stork-wrapper-dark .stork-result:last-child {
    border-bottom: 1px solid var(--stork-border-color);
}

.stork-wrapper-dark .stork-result.selected {
    background: var(--stork-violet-10);
}

.stork-wrapper-dark .stork-result a:link {
    padding: 1em;
    display: block;
    color: currentcolor;
    text-decoration: none;
}

.stork-wrapper-dark .stork-result p {
    margin: 0;
}

.stork-wrapper-dark .stork-title {
    font-weight: bold;
    font-size: 0.95em;
    margin: 0;
    color: var(--stork-text-color);

/* Flexbox container for the title and the score, when debugging */
    display: flex;
    justify-content: space-between;
}

.stork-wrapper-dark .stork-excerpt-container {
    margin-top: 0.75em;
}

.stork-wrapper-dark .stork-excerpt {
    font-size: 0.8em;
    line-height: 1;
    margin: 0;
    color: var(--stork-gray-3);

    /* Flexbox container for the title and the score, when debugging */
    display: flex;
    justify-content: space-between;
}

.stork-wrapper-dark .stork-excerpt:not(:last-of-type) {
    margin-bottom: 0.6em;
}

.stork-wrapper-dark .stork-highlight {
    background-color: var(--stork-lime-3);
    padding: 0 0.1em;
}

.stork-wrapper-dark .stork-error {
    outline: 2px solid #c92a2a;
}

.stork-wrapper-dark .stork-close-button {
    position: absolute;
    /* bottom: 0; */
    right: 0;
    margin: 0.7em 0.6em;
    height: 1.3em;
    width: 1.3em;
    padding: 0px;
    background: #c92a2a;
    border: 1px solid #fafafa;
    font-size: 1em;
    color: #fafafa;
    border-radius: var(--stork-input-border-radius);
    line-height: 1;
}

.stork-wrapper-dark .stork-close-button svg {
    width: 0.8em;
    position: relative;
    top: 1px;
}

.stork-wrapper-dark .stork-close-button:hover {
    background: #c92a2a99;
    cursor: pointer;
}

.stork-wrapper-dark .stork-close-button:active {
    background: hsla(0, 0%, 65%);
} 

.stork-excerpt-container {
    display: none;
}