#new-game-modal {
    height: 100%;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    display: none;
    z-index: 99;
}

.new-game {
    text-align: left;
    height: 450px;
    top: 15%;
    width: 300px;
    padding: 0;
    position: relative;
    margin: 0 auto;
    background: #ffffff;
    z-index: 11;
    border-radius: 6px;
    -moz-border-radius: 6px;
    -khtml-border-radius: 6px;
    -webkit-border-radius: 6px;
}

.new-points select {
    width: 100%;
}
.new-how-much select {
    width: 100%;
}
.new-tournament-game select {
    width: 100%;
}

.bg-new-game-modal {
    position: absolute;
    width: 100%;
    height: 100%;
    background: #000000;
    z-index: 10;
    top: 0;
    left: 0;
    opacity: 0.8;
    filter: alpha(opacity=80);
    -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
}

.new-game .modal-title {
    padding: 15px;
    background: #ebebeb;
    border-radius: 6px 6px 0 0;
    -moz-border-radius: 6px 6px 0 0;
    -khtml-border-radius: 6px 6px 0 0;
    -webkit-border-radius: 6px 6px 0 0;
}

.new-game .modal-title {
    font-weight: bold;
    text-align: center;
}
.new-game > div {
    padding: 5px 20px;
}

.new-game > div:last-child {
    padding: 0;
    margin-top: 20px;
}
#start {
    background-color: #ff684f;
}

#start:hover {
    background-color: #4da5f5;
}

.new-game .title {
    font-size: 14px;
    font-weight: 700;
}

.closeModal {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 24px;
    height: 24px;
    opacity: 0.2;
    cursor: pointer;
    transition: opacity ease 0.5s;
    padding: 0 !important;
}

.closeModal:hover {
    opacity: 1;
}

.closeModal::before,
.closeModal::after {
    content: '';
    position: absolute;
    top: 10px;
    display: block;
    width: 24px;
    height: 3px;
    background: #000;
}

.closeModal::before {
    transform: rotate(45deg);
}

.closeModal::after {
    transform: rotate(-45deg);
}