.et_pb_column {
    z-index: initial !important;
}
/**
 * Link styles
 */
#wad-link {
    position: relative;
    left: 2px;
    cursor: pointer;
}

#wad-link #play-contest {
    height: 47px;
    width: 228.45px;
    display: inline-block;
    color: #000000!important;
    border: 2px solid #ffd858;
    border-radius: 12px;
    padding: 0.7em .45em;
    font-size: 20px;
    font-family: 'Roboto',Helvetica,Arial,Lucida,sans-serif!important;
    font-weight: 700!important;
    line-height: 1em;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    transition: all 300ms ease 0ms;
    text-decoration: none;
    background-color: #ffd858;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;

}

#wad-link #play-contest:hover {
    color: #FFFFFF!important;
}

/**
 * Modal Styles
 */
#wad-modal, #rules-modal {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    width: 624px;
    height: 559px;;
    padding: 25px;
    min-width: 395px;
    position: relative;
    bottom: 5vh;
    right: 15vh;
    z-index: 3;
    overflow: hidden;
    background-color: #481d18;
    color: #37c80c;
    font-family: 'Roboto', sans-serif;
    border-radius: 2px;
}

#rules-modal {
    bottom: 613px;
}

#wad-modal header, #rules-modal header {
    display: flex;
    justify-content: space-between;
    font-weight: bold;
    width: 100%;
}

#wad-modal header h2, #rules-modal header h2 {
    color: #FFD858;
    font-weight: bold;
	font-family: 'ATMA';
}

#wad-modal header #subtitle {
    position: relative;
    bottom: 7px;
}

#wad-modal header .mute {
    font-size: 31px;
    color: #FFD858;
    position: absolute;
    right: 12%;
    top: 19px;
}

#wad-modal hr {
    width: 100%;
}

.close {
    cursor: pointer;
	color: #eee;
}

#wad-modal #game-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

#wad-modal #game-container #left-side {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#wad-modal #game-container #right-side {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#wad-modal #game-board {
    height: auto;
    width: 380px;
    min-width: 380px;
    position: relative;
    padding: 5.5px;
    border: 1px solid #160c0a;
}

#wad-modal #game-board #game-grid-container {
    height: auto;
    text-align: center;
}

#wad-modal #game-board #game-grid-container #game-grid {
    height: auto;
    text-align: center;
    background-image: url("board.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 139%;
}

#wad-modal #overlay {
    width: 100%;
    height: 100%;
    padding: 33px;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #481d18cc;
    z-index: 2;
    overflow: hidden;
}

#wad-modal #overlay h4 {
    color: #e7e7e7;
    position: relative;
    bottom: 47px;
    font-weight: bold;
}

#wad-modal #overlay .loading {
    border: 2px solid #f3f3f3;
    border-top: 2px solid #f3f3f3;
    border-radius: 50%;
    width: 14px;
    height: 14px;
    animation: spin 2s linear infinite;
    margin: 0 3px;
    display: inline-block;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

#wad-modal #overlay #story {
    color: #e7e7e7;
    margin: 10px 52px;
}

#wad-modal #overlay #winner-louie {
    height: 171px;
    position: relative;
    bottom: 34px;
    left: 78px;
}

#wad-modal #game-board #game-grid-container #stats {
    display: flex;
    justify-content: space-around;
    align-items: center;
    font-size: 17px;
    font-weight: 500;
}

#wad-modal #game-board .row {
    height: 123px;
    display: flex;
    cursor: url(wand.cur), auto !important;
}

#wad-modal #game-board .row .col {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

#wad-modal #game-board .row .col .head-container {
    height: 100%;
    width: 100%;
    padding-top: 10px;
}

#wad-modal #game-board .row .col .head {
    width: 75px;
    height: auto;
}

#wad-modal #game-board .row .col img.head:hover {
    width: 82px;
    bottom: 7px;
    position: relative;
}

#wad-modal button {
    display: inline-block;
    width: 123px;
    margin: 3px auto;
    padding: 5px 10px;
    font-size: 16px;
    font-weight: 300;
    color: #dadada;
    cursor: pointer;
    background-image: none;
    background-position: center;
    transition: background 0.8s;
    border-radius: 2px;
    text-decoration: none;
    text-transform: none;
    box-shadow: 0 1px 1px rgba(0, 0, 0, .05);
    outline: 0;
    background: #5F397BFF;
}

#wad-modal button:disabled {
    cursor: not-allowed;
}

#wad-modal button:hover {
    background: #674a7d radial-gradient(circle, transparent 1%, #674a7d 1%) center/15000%;
}

#wad-modal button:active {
    background-color: #6d577d;
    background-size: 100%;
    transition: background 0s;
}

#wad-modal button#enter-wager {
    bottom: 66px;
    position: relative;
}

#wad-modal small#instructions {
    align-self: flex-start;
    margin-top: 5px;
}

#wad-modal a, #rules-modal a {
    color: #c693f5;
    cursor: pointer;
}

#wad-modal #game-board #game-over-dt {
    display: flex;
    justify-content: space-around;
    align-items: center;
    position: relative;
    bottom: 59px;
    font-size: 10px;
}

/**
 * Responsive Styles
 */
@media only screen and (max-width: 965px) {

    #wad-modal, #rules-modal {
        width: 50vw;
        min-width: 410px;
        right: initial;
    }

    #rules-modal {
        height: auto;
    }

    #wad-modal #game-container .mascot {
        display: none;
    }

    #wad-modal #game-board {
        height: auto;
        width: 360px;
        min-width: 360px;
    }

    #wad-modal #game-board .row {
        height: 111px;
    }
}

@media only screen and (max-width: 506px) {

    #wad-modal, #rules-modal {
        position: relative;
        right: 56px;
    }
}
