/* base styles
================================================== */
* {
    margin: 0;
    padding: 0;
    outline: 0;
}

body,
html {
    height: 100%;
}

body {
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    line-height: 1.5;
    color: #fff;
    background-color: #fff;
}

.roulette img {
    max-width: 100%;
    height: auto;
    display: inline-block;
    vertical-align: middle;
    border: none;
}

.roulette {
    height: 100%;
}

.roulette p {
    color: #555;
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.5;
}

.roulette .btn {
    border: 0;
    padding: 24px 55px;
    outline: none;
    box-shadow: none;
}

.roulette .space {
    padding: 0 15px;
}

.roulette .heading {
    margin: 0 0 15px 0;
    color: #0F0D0E;
    font-size: 20px;
    line-height: 26px;
    font-weight: bold;
    text-transform: uppercase;
}

.roulette .btn-primary {
    background-color: #423f58;
}

.roulette .btn-primary:hover {
    background-color: #18616d;
}

.roulette .btn-primary:active {
    background-color: #18616d !important;
    box-shadow: none !important;
}


/* chat */
.roulette .chat {
    padding: 15px;
    background-color: #423f58;
}

.roulette .chat .heading {
    color: #fff;
}

.roulette .chat .heading span {
    float: right;
}

.roulette .chat ul li {
    font-weight: bold;
    font-size: 30px;
    color: #fff;
}

.roulette .chat ul li .date {
    margin-right: 5px;
}

.roulette .chat ul li.join-room {color: #6a7d53; background-color: transparent; font-size: 22px;}
.roulette .chat ul li.join-table {color: #6a7d53; background-color: transparent; font-size: 22px;}
.roulette .chat ul li.left-table { color: #a04e4e; background-color: transparent; font-size: 22px;}
.roulette .chat ul li.left-room { color: #a04e4e; background-color: transparent; font-size: 22px;}

/* cards */
.roulette .card-box {
    padding: 10px 15px;
    text-align: center;
    border-radius: 2px;
    color: #444c7d;
    border: 1px solid rgba(0,0,0,.1);
}

.roulette .card-box-label {
    text-transform: uppercase;
    color: #0f0d0e;
    font-size: 14px;
}

.roulette .card-box-body {
    font-size: 20px;
    color: #423f58;
    text-transform: uppercase;
    font-weight: bold;
}

.roulette .card-box .dealer-name span {
    font-size: 14px;
    color: #fff;
    font-weight: normal;
    display: block;
}

/* number history */
.roulette .number-history {
    margin: 15px 0 0;
}

.roulette .number-history .heading {
    text-align: center;
}

.roulette .number-history ul {
    padding: 25px 0;
    text-align: center;
    font-size: 0;
}

.roulette .number-history ul li {
    width: 100px;
    height: 55px;
    line-height: 55px;
    text-align: center;
    position: relative;
    display: inline-block;
    font-size: 38px;
    font-weight: bold;
    color: #fff;
    margin: 0 3px;
}

.roulette .number-history ul li:before {
    content: "";
    position: absolute;
    top: -25px;
    left: 0;
    width: 0;
    height: 0;
    border-left: 50px solid transparent;
    border-right: 50px solid transparent;
    border-bottom: 25px solid transparent;
}

.roulette .number-history ul li:after {
    content: "";
    position: absolute;
    bottom: -25px;
    left: 0;
    width: 0;
    height: 0;
    border-left: 50px solid transparent;
    border-right: 50px solid transparent;
    border-top: 25px solid transparent;
}


/* black */
.roulette .number-history ul li.black {
    background-color: #0F0D0E;
}

.roulette .number-history ul li.black:after {
    border-top-color: #0F0D0E;
}

.roulette .number-history ul li.black:before {
    border-bottom-color: #0F0D0E;
}


/* red */
.roulette .number-history ul li.red {
    background-color: #F4282B;
}

.roulette .number-history ul li.red:after {
    border-top-color: #F4282B;
}

.roulette .number-history ul li.red:before {
    border-bottom-color: #F4282B;
}


/* green */
.roulette .number-history  ul li.green {
    background-color: #0d9d46;
}

.roulette .number-history ul li.green:after {
    border-top-color: #0d9d46;
}

.roulette .number-history ul li.green:before {
    border-bottom-color: #0d9d46;
}


/* timer */
.roulette .timer {
    margin: 15px 0 0;
}

.roulette .timer .heading {
    text-align: center;
}

.roulette .timer .counter {
/*    border: 2px dotted #9a9a9a;*/    
    color: #0F0D0E;
    text-align: center;
    width: 100%;
    font-size: 10rem;
    line-height: 165px;
    font-weight: bold;
    border-radius: 100%;
    margin: 0 auto;
    display: table;
}


/* current win */
.roulette .current-win {
    margin: 15px 0 0;
}

.roulette .current-win .heading {
    text-align: center;
}

.roulette .current-win .number {
    width: 140px;
    height: 75px;
    line-height: 75px;
    text-align: center;
    position: relative;
    font-size: 85px;
    font-weight: bold;
    color: #fff;
    margin: 62px auto 0;
    display: table;
}

.roulette .current-win .number:before {
    content: "";
    position: absolute;
    top: -35px;
    left: 0;
    width: 0;
    height: 0;
    border-left: 70px solid transparent;
    border-right: 70px solid transparent;
    border-bottom: 35px solid transparent
}

.roulette .current-win .number:after {    
    content: "";
    position: absolute;
    bottom: -35px;
    left: 0;
    width: 0;
    height: 0;
    border-left: 70px solid transparent;
    border-right: 70px solid transparent;
    border-top: 35px solid transparent;
}


/* red */
.roulette .current-win .number.red {
    background-color: #F4282B;
}

.roulette .current-win .number.red:after {
    border-top-color: #F4282B;
}

.roulette .current-win .number.red:before {
    border-bottom-color: #F4282B;
}

/* black */
.roulette .current-win .number.black {
    background-color: #0F0D0E;
}

.roulette .current-win .number.black:after {
    border-top-color: #0F0D0E;
}

.roulette .current-win .number.black:before {
    border-bottom-color: #0F0D0E;
}

/* green */
.roulette .current-win .number.green {
    background-color: #0d9d46;
}

.roulette .current-win .number.green:after {
    border-top-color: #0d9d46;
}

.roulette .current-win .number.green:before {
    border-bottom-color: #0d9d46;
}

.roulette .support-msg {
    padding: 20px;
    font-size: 24px;
    line-height: 28px;
    background-color: #ffc107;
    margin: 0 0 10px 0;
    text-transform: uppercase;
    font-weight: bold;
    color: #423f58;
}

.roulette .dealer-msg {
    text-align: center;
    font-size: 50px;
    line-height: 44px;
    padding: 25px 0;
    font-weight: bold;
    margin: 0px 0 40px;
    color: #fff;
    border: 1px solid rgba(0,0,0,.1);
    border-right:0;
    position: relative;
    background-color: rgba(66,63,88, 1);
}


/* bottom nav */
.roulette nav ul {
    text-align: center;
    margin: 30px 0 0 0;
}

.roulette nav ul li {
    display: inline-block;
    margin: 0 20px;
}


.roulette .progress {
    border-radius: 0;
    margin-top:25px;
    height:2.5rem;
}

.roulette .full-page-overlay {
    background:rgba(0,0,0,0.8);
    z-index:2;
}

.roulette .full-page-overlay h3 {
    font-size:24px;
    color:#000;
    font-weight:bold;
}

.roulette .list-group {
    max-height: 430px;
    margin-bottom: 10px;
    overflow-y:scroll;
    -webkit-overflow-scrolling: touch;
}

.roulette .list-group-item.active {
    background-color:#423f58;
}

.roulette .page-login #login-form .btn {
    border:1px solid #ced4da;
    font-weight:bold;
    font-size:2rem;
    padding: 24px 55px
}

.roulette .page-login h3 {
    font-size:1.5rem;
}

.roulette .page-login #password {
    font-size:3.5rem;
    font-weight:bold;
    
}

.roulette .page-login .alert {
    font-size:1.5rem;
    text-align:center;
}

.roulette #manual-modal .number-select {
    text-align: center;
    font-size: 38px;
    font-weight: bold;
    color:#fff;
    margin:10px 10px;
    padding:0;    
    width:133px;
}

.roulette #manual-modal .number-select.green {
    background:#0d9d46;
}

.roulette #manual-modal .modal-title {
    font-size:1.5rem;
    text-align: center;
}

.roulette #manual-modal .number-select.red {
    background:#F4282B;
}

.roulette #manual-modal .number-select.black {
    background:#0F0D0E;
}

.roulette #manual-modal .number-select.selected {
    background:#ffc107;
    border-left:5px solid #000;
    border-right:5px solid #000;
}