/* ==========================================================================
   Shared Jackpot Styles - Common across all template themes
   ========================================================================== */

.jackpots-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.25rem;
    max-width: 500px;
}

.jackpot-container__tickers {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.75rem;
}

.jackpot-ticker {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.jackpot-ticker .jackpot-ticker__label {
    font-size: 1rem;
    font-weight: bold;
}

.jackpot-ticker .jackpot-ticker__ticker-container {
    padding-left: 1rem;
}

.jackpot-ticker .jackpot-ticker__ticker {
    position: relative;
    border-radius: 0.5rem;
    padding: 0.25rem 0.625rem 0.25rem 1.25rem;
    background-color: #202630;
    border-top: 2px solid #000000;
}

.jackpot-ticker .jackpot-ticker__ticker .jackpot-ticker__ticker__coin {
    position: absolute;
    left: -1rem;
    top: 50%;
    transform: translateY(-50%);
    padding-bottom: 1px;
}

.jackpot-ticker .jackpot-ticker__ticker .jackpot-ticker__ticker__coin img {
    width: 2.25rem;
    height: 2.25rem;
}

.jackpot-ticker .jackpot-ticker__ticker .jackpot-ticker__ticker__amount {
    color: #F8EF7D;
    font-weight: bold;
    font-size: 1.0rem;
}

.jackpot-button-container {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: self-end;
}

.jackpot-button {
    border-radius: 0.5rem;
    background-color: #28BB2F;
    border: none;
    box-shadow: none;
    outline: none;
    border-bottom: 2px solid #148519;
    padding: 0.25rem 0.5rem 0.25rem;
    color: #FFFFFF;
    font-size: 0.875rem;
    font-weight: 900;
    text-transform: uppercase;
}

.jackpot-button.jackpot-button-large {
    outline: none;
    padding: 0.5rem 0.75rem;
    font-size: 1rem;
}

.jackpot-button:hover {
    background-color: #229927;
}

.jackpot-button:active {
    border-bottom: none;
    margin-top: 2px;
}

.jackpot-info-button {
    background: none;
    border: none;
    width: fit-content;
    padding: 0;
}

.jackpot-info-button i {
    color: #FFFFFF;
    font-size: 1.25rem;
    margin-right: 0;
}



.custom-control.material-switch.jackpot-switch {
    --color: #28BB2F;
    --color-inactive: #C2071C;
}

.custom-control.material-switch.jackpot-switch .material-switch-control-input:checked ~ .material-switch-control-indicator::after {
    background-color: var(--color);
    left: 14px;
}

.custom-control.material-switch.jackpot-switch .material-switch-control-indicator {
    margin: 0;
    top: 0;
    width: 26px;
    height: 14px;
    background: #202630;
    border-top: 1px solid #000000;
    border-radius: 7px;
}

.custom-control.material-switch.jackpot-switch .material-switch-control-indicator::after {
    top: 1px;
    left: 2px;
    width: 10px;
    height: 10px;
    background: var(--color-inactive);
    box-shadow: none;
}

/* ==========================================================================
   Shared Styles - custom-control.material-switch
   ========================================================================== */

.custom-control.material-switch {
    --color: #56bee9;
    padding-left: 0;
}

.custom-control.material-switch .material-switch-control-input {
    display: none;
}

.custom-control.material-switch .material-switch-control-input:checked ~ .material-switch-control-indicator::after {
    background-color: var(--color);
    left: 17px;
}

.custom-control.material-switch .material-switch-control-indicator {
    display: inline-block;
    position: relative;
    margin: 0 10px;
    top: 11px;
    width: 32px;
    height: 16px;
    background: #ddd;
    border-radius: 16px;
    transition: 0.1s;
}

.custom-control.material-switch .material-switch-control-indicator::after {
    content: '';
    display: block;
    position: absolute;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    transition: 0.1s;
    top: -1px;
    left: -1px;
    background: #56bee9;
    box-shadow: 0 2px 10px #aaa;
}    