/* Generic styles which are applied to ALL promotion pages (How to Play, Prizes, Rules, etc.) */
/* This is deprecated. */


/* -- In-game navigation ---------------------------------------------------------------------------------------------*/

#gameNav {
    background: var(--promotion-background);
}

#gameNav a {
    color: white !important;
}

#gameNav ul li {
    border-right: 1px #fff solid;
    border-left: 1px #fff solid;
}

.disabled-game-nav-item {
    opacity: 75%;
    cursor: default;
}

/* -- Tables -------------------------------------------------------------------------------------------------------- */

.promotion table > thead {
    background: var(--promotion-background);
    color: white;
}

.promotion table {
    font-size: 14px;
    font-weight: bold;
    border: none;
    box-shadow: none;
    width: 100%;
}

.promotion table td {
    padding-left: 10px;
    padding-right: 10px;
    height: 50px;
    vertical-align: middle;
}

.promotion table th {
    padding-left: 10px;
    padding-right: 10px;
    height: 50px;
    vertical-align: middle;
}

.promotion table > tbody > tr {
    background-color: lightgray;
}

.promotion table > tbody > tr:nth-child(2n) {
    background-color: white;
}

table > caption {
    font-weight: bold;
    color: #000000;
    font-size: 1.2em;
    text-transform: uppercase;
    padding-bottom: 15px;
}

/* -- Headings ------------------------------------------------------------------------------------------------------ */

.promotion h1 {
    color: var(--promotion-primary-color) !important;
    font-size: 2em;
    text-transform: uppercase;
    margin-bottom: 20px !important;
}

.promotion h2 {
    color: var(--promotion-primary-color);
    font-size: 1.8em;
    text-transform: uppercase;
    margin-bottom: 10px !important;
}

/* -- Main ---------------------------------------------------------------------------------------------------------- */

.promotion main {
    padding-top: 25px;
    padding-bottom: 25px;
    padding-left: 40px;
    padding-right: 40px;
}