/* CUSTOM TEXT INPUT ELEMENT */
.custom-number-input {
    height: 3rem;
    width: 8rem;
    font-size: 1.25rem;
    margin: 0.25rem 0;
}

/* CUSTOM RANGE ELEMENT */
.ratio-readout {
    color: rgba(0, 0, 0, 0.5);
}

.custom-range {
    position: relative;
    display: flex;
    text-align: center;
    margin: 1rem 0;
    height: 1rem;
}

.custom-range-margin {
    margin-bottom: 2rem;
}

.range-container {
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.range {
    transition: all 200ms ease-in-out;

    width: 100%;
    cursor: pointer;
    opacity: 0;
    height: 2.5rem;
}
.range::-ms-tooltip {
    display: none;
}

.track {
    width: 100%;
    height: 1rem;
    background: #dadada;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;

    border-radius: 1rem;
    overflow: hidden;

}
.track-inner {
    width: 0;
    height: 100%;
    background: rgba(214, 50, 48, 0.81);
}

.thumb {
    width: 3.5rem;
    height: 2.5rem;
    background: #404040;
    border-radius: 0.25rem;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(0%, -50%);
    pointer-events: none;

    color: white;
    line-height: 2.5rem;
    text-align: center;
    font-size: 1rem;
    font-family: 'Roboto', sans-serif;
    user-select: none;
}

.thumb:hover {
    background-color: #dadada;
}

/* results */
.results-list-item {
    border-radius: 0.5rem;
    background-color: white;
    display: flex;
    padding: 0.5rem;
    height: 4rem;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

.basic-list-item-row .form-group {
    margin-right: 1rem;
}

/* basic list */
.basic-list-item {
    border-radius: 0.5rem;
    background-color: white;
    display: flex;
    flex-direction: column;
    padding: 0.5rem;
    min-height: 4rem;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

.basic-list-item-row {
    width: 100%;
    display: flex;
}

.basic-list-item-row .form-group {
    margin-left: 1rem;
    flex-grow: 12;
}

.basic-list-item-column {
    font-size: 1.25rem;
    line-height: 3rem;
    font-family: 'Outfit', sans-serif;
    margin-left: 1rem;
}

.basic-list-item-column label {
    font-weight: bold;
}

.basic-button-container.basic-list-item-column {
    order: 2;
    margin-left: auto;
}

.basic-list-item .basic-button {
    margin: 0 0.5rem 0 0;
    min-width: 3rem;
    height: 2rem;
    line-height: 2rem;
}

/* basic information title */
.basic-information-title {
    text-align: center;
    font-size: 2rem;
}

/* Employee page */
.gender-ratio-range.track {
    background: var(--male-blue);
}

.gender-ratio-range.track-inner {
    background: var(--female-pink)
}

.employee-type-ratio-range.track {
    background: var(--employee-blue);
}

.employee-type-ratio-range.track-inner {
    background: var(--employee-red);
}

.game_page_hidden {
    display: none;
}

/* CUSTOM CHECKBOX TABLE */
.table-checkbox {
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    width: 100%;
}

.table-checkbox tr {
    height: 3rem;
}

.table-checkbox th {
    width: 7rem;
    text-align: center;
    font-weight: bold;
    padding: 0 0.5rem;
}

.table-checkbox th.main {
    width: 10rem;
    text-align: left;
}

.table-checkbox .checkbox-container {
    justify-content: center;
    margin-bottom: 0;
}