/*****************************************************
LESS compilation failed due a JavaScript error!

Input: /apps/fifth-third/components/velocity/slot/clientlibs/slots/css/slot-style.less
Error: RuntimeError: error evaluating function `rgb`: color functions take numbers as parameters in /apps/fifth-third/components/velocity/slot/clientlibs/slots/css/slot-style.less on line 15, column 34:
14     overflow: hidden;
15     box-shadow: 2px 2px 10px 3px rgb(0 0 0 / 19%);
16 }


(uncompiled LESS src is included below)
*****************************************************/
/* Debugging form */
#rv-slots-form {
    --border-radius: 12px;

    position: fixed;
    z-index: 1000;
    bottom: 0;
    right: 0;
    margin: 20px;
    min-width: 230px;
    background: transparent;
    border-radius: var(--border-radius);
    border: 1px solid #c6c6c6;
    overflow: hidden;
    box-shadow: 2px 2px 10px 3px rgb(0 0 0 / 19%);
}

.rv-slot-select-wrapper {
    display: block;
    background-color: white;
    border-radius: var(--border-radius);
    position: relative;
    height: 38px;

    select {
        display: block;
        width: 100%;
        height: 38px;
        padding: 8px 14px 9px;
        cursor: pointer;
        appearance: none;
        border: 0;
        border-bottom: 1px solid #c6c6c6;
        border-top-left-radius: var(--border-radius);
        border-top-right-radius: var(--border-radius);
    }

    &:after {
        content: '';
        display: block;
        width: 10px;
        position: absolute;
        right: 18px;
        bottom: 50%;
        transform: translateY(50%);
        background-color: #5d5d5d;
        /* Chevron polygon generator */
        --s: 2px; /* Chevron thickness */
        aspect-ratio: 5 / 3;
        clip-path: polygon(0 0, 0 var(--s), 50% 100%, 100% var(--s), 100% 0, 50% calc(100% - var(--s)));
    }
}

.rv-slot-input {
    display: block;
    background-color: white;
    height: 38px;
    padding: 0 14px;
    width: 100%;
    border: 0;
    border-bottom-left-radius: var(--border-radius);
    border-bottom-right-radius: var(--border-radius);
}