/* Randomizer Roller - scoped under #randomizer-roller-wrap */

#randomizer-roller-wrap {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: local;
}

#randomizer-roller-wrap *,
#randomizer-roller-wrap *::before,
#randomizer-roller-wrap *::after {
    box-sizing: border-box;
}

#randomizer-roller-wrap #randomizer {
    flex: 1;
}

#randomizer-roller-wrap #wrapper {
    max-width: 100%;
    min-width: 325px;
    padding: 1em;
    display: flex;
    flex-flow: column wrap;
    justify-content: flex-start;
    font-size: 0.65em;
}

#randomizer-roller-wrap #input,
#randomizer-roller-wrap #output-wrapper {
    background-color: rgba(241, 241, 241, 0.8);
    border: 1px solid rgba(0, 0, 0, .4);
    backdrop-filter: blur(.1em);
    color: #242323;
}

#randomizer-roller-wrap #input + #output-wrapper {
    margin-top: 1em;
}

#randomizer-roller-wrap #input {
    padding: 1.2em;
    text-align: center;
}

#randomizer-roller-wrap #output-wrapper {
    padding: 1.2em;
}

#randomizer-roller-wrap #output-button-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    gap: 0.5em;
}

#randomizer-roller-wrap #output {
    padding: 1.2em;
    min-height: 120px;
    border: 1.5px solid rgba(0, 0, 0, .4);
    border-radius: .5em;
    color: #242323;
    text-align: center;
}

#randomizer-roller-wrap #output-button-wrapper + #output {
    margin-top: 1.2em;
}

#randomizer-roller-wrap #wrapperOptions {
    display: flex;
    justify-content: space-between;
}

#randomizer-roller-wrap #pillContainer {
    display: flex;
    flex-flow: column wrap;
    justify-content: flex-start;
    width: 25%;
    min-width: fit-content;
}

#randomizer-roller-wrap #options-spacer {
    border-right: 1px solid rgba(0, 0, 0, .4);
    margin: 0em 1em;
}

#randomizer-roller-wrap #selectContainer {
    display: flex;
    flex-flow: column wrap;
    width: 75%;
}

#randomizer-roller-wrap .container-header {
    margin-bottom: .3em;
    font-size: 1.5em;
    text-transform: uppercase;
    color: #242323;
}

/* pill select */
#randomizer-roller-wrap .pill,
#randomizer-roller-wrap .pillSelected {
    all: unset;
    user-select: none;
    margin: 0em 0em;
    margin-bottom: .5em;
    padding: .1em;
    font-size: 1em;
    white-space: nowrap;
    border-radius: 0px;
    border: .1em solid #720000;
    transition: 0.05s;
    cursor: pointer;
    display: block;
}

#randomizer-roller-wrap .pill {
    color: #720000;
}

#randomizer-roller-wrap .pillSelected,
#randomizer-roller-wrap .pill:hover,
#randomizer-roller-wrap .pillSelected:hover {
    background: #720000;
    color: #e48536;
}

#randomizer-roller-wrap .pill:active,
#randomizer-roller-wrap .pillSelected:active {
    background: #e48536;
}

#randomizer-roller-wrap .pill-spacer + .pill-spacer {
    margin-top: .6em;
}

/* selects */
#randomizer-roller-wrap select {
    border-radius: 5px;
    padding: .1em .5em;
    font-size: .8em;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: #242323;
    background: #fff;
    border: 1px solid #ccc;
}

#randomizer-roller-wrap select + select {
    margin-top: .6em;
}

/* button */
#randomizer-roller-wrap button {
    background-color: #720000;
    padding: .4em .6em .5em .6em;
    color: #e48536;
    font-size: 1.1em;
    letter-spacing: .1em;
    text-transform: uppercase;
    font-weight: bolder;
    border: none;
    cursor: pointer;
}

#randomizer-roller-wrap button:hover,
#randomizer-roller-wrap button:active {
    filter: brightness(125%);
}
