:root {
    --c-primary: #E10;
}
#tixtree-close {
    position: fixed;
    display: none;
    opacity: 0;
    justify-content: center;
    align-items: center;
    top: 0;
    right: 0;
    cursor: pointer;
    padding: 0.1em 0.5em;
    font-size: 2em;
    z-index: 99999999;
}

/* inline button */
.tixtree-btn {
    font-weight: bold;
    background-color: #0000;
    /* color: #900; */
    cursor: crosshair;
    font-size: 1.3em;
    font-family: 'akkurat-monoregular';
    border: none;
    z-index: 9999999;
}
.tixtree-btn:hover, .item1 {
    color: #eee;
    animation: flash 3s linear infinite;
}
.tixtree-btn:focus, .tixtree-bottom:focus {
    outline: none;
}
#tixtree-wrapper {
    height: 90vh;
    display: none; 
    position: fixed; 
    overflow: auto;
    &::-webkit-scrollbar {
    display: none;
    }
    scrollbar-width: none;
    -ms-overflow-style: none;
    z-index: 10000;
    transition: opacity 0.25s ease-in-out 0s; 
    opacity: 0; 
}

@keyframes flash {
    0% {
        color: var(--c-primary);
    }
    25% {
        color: rgb(23, 0, 0);
    }
    50% {
        color: var(--c-primary);
    }
    75% {
        color: rgba(234, 160, 160, 0);
    }
    100% {
        color: var(--c-primary);
    }
}
@keyframes pulse {
    0% {
        color: #eee;
    }
    25% {
        color: #ddfa;
    }
    50% {
        color: #eee;
    }
    75% {
        color: #ddfa;
    }
    100% {
        color: #eee;
    }
}
