#game-container
{
    position: relative;
}
.select-in-game {
    pointer-events: all;
    border: 0 !important; /*Removes border*/
    -webkit-appearance: none; /*Removes default chrome and safari style*/
    -moz-appearance: none; /* Removes Default Firefox style*/
    appearance: none;
    /*background: #7a968f url(../../images/desktop-animate-ready-select.png) no-repeat 0% center;*/
    background: rgba(0, 0, 0, 0);
    color: #fff;
    top: 0;
    left: 0;
    width: 235px; /*Width of select dropdown to give space for arrow image*/
    height: 22px;
    text-indent: 0.01px; /* Removes default arrow from firefox*/
    text-overflow: ""; /*Removes default arrow from firefox*/ /*My custom style for fonts*/
    text-shadow: 1px 1px rgba(0, 0, 0, 0.5);
    font-size: 15px;
    padding: 0 5px 0;
    cursor: pointer;
    cursor: hand;
    z-index: 1;
}

.select-in-game:disabled {
    cursor: default;
}

.select-in-game option {
    background: #7a968f;
    box-shadow: inset 0 0 10px 100px #7a968f
}

.select-in-game option:hover {
    color: #000;
    box-shadow: inset 0 0 10px 100px #A9B4B3;
}

.custom-option {
    color: #ff6060;
}

.default-option {
    color: #fff;
}

#game-tooltip {
    font: 12px Arial, Helvetica, sans-serif;
    line-height: 1;
    top: 0;
    left: 0;
    z-index: 9999;
    border: 1px solid #333;
    box-shadow: 1px 1px 2px #555;
    padding: 3px 5px 3px 5px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 1);
    background: -moz-linear-gradient(top, rgb(255, 255, 255) 0%, rgb(246, 246, 246) 47%, rgb(214, 214, 214) 100%);
    background: -webkit-linear-gradient(top, rgb(255, 255, 255) 0%, rgb(246, 246, 246) 47%, rgb(214, 214, 214) 100%);
    background: -o-linear-gradient(top, rgb(255, 255, 255) 0%, rgb(246, 246, 246) 47%, rgb(214, 214, 214) 100%);
    background: -ms-linear-gradient(top, rgb(255, 255, 255) 0%, rgb(246, 246, 246) 47%, rgb(214, 214, 214) 100%);
    background: linear-gradient(to bottom, rgb(255, 255, 255) 0%, rgb(246, 246, 246) 47%, rgb(214, 214, 214) 100%);
}