:root {
    background-color: var(--color-base-350);
}
* {
    scrollbar-width: thin
}
body {
    font-family: 'Play', sans-serif;
    color: var(--color-text100);
    background-color: var(--color-base-350);
    /* min-width: 1286px; */
    font-size: 14px;
}
main {
    /* max-width: var(--content-max-width); */
    
}

/* #region badge sub */
.badge-plus-bg-out {
    /*hexagon from https://bennettfeely.com/clippy/*/
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    width: 22px;
    height: 22px;
    background-color: var(--bg-color-gold-plus);
    position: relative;
}
    .badge-plus-bg-in {
    /*hexagon from https://bennettfeely.com/clippy/*/
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    position: absolute;
    top: 2px;
    left: 2px;
    width: 18px;
    height: 18px;
    background-color: #a50625;
}
    .badge-plus-center {
    clip-path: polygon(0 35%, 35% 35%, 35% 0%, 65% 0%, 65% 35%, 100% 35%, 100% 65%, 65% 65%, 65% 100%, 35% 100%, 35% 65%, 0 65%);
    width: 10px;
    height: 10px;
    background-color: var(--bg-color-gold-plus);
    position: absolute;
    top: 4px;
    left: 4px;
}
/* #endregion */
/* #region select */
select,
::picker(select) {
    appearance: base-select;
    outline: none;
}
select::picker(select) {
    margin-block: 8px;
    border: none;
    padding: 0.25rem;
    border-radius: 4px;
    cursor: default;
    background-color: var(--color-base-200);
    color: var(--color-text100);
    border: 1px solid color-mix(in oklab, var(--color-base-content) 20%, #0000);
}
select::picker-icon {
    display: none;
}
   
option::checkmark {
    color: var(--color-text100);
    order: 1;
    content: "";
    width: 1rem;
    height: 1.5rem;
    margin-left: auto;
    background: center / contain no-repeat
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23eeeeee' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'%3E%3C/path%3E%3C/svg%3E");
}
option.no-checkmark::checkmark {
    display: none !important;
}
option {
    padding-inline: 10px;
    display: flex;
    align-items: center;
    height: 34px;
    border-radius: 4px;
}
/* selector que selecciona el option hover y uqe option no sea checked */
option:hover:not(:checked),
option.no-checkmark:checked:hover {
    background-color: var(--color-base-100);
}
option:not(.no-checkmark):checked {
    background-color: var(--color-base-50);
}
/* #endregion */