
#gameArea {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

#blotTable {
    width: 100%;
    height: 100%;
    background-image: url(/images/blot_table_lights.png), url(/images/blot_table.png);
    background-position: center top, center 68px;
    background-repeat: no-repeat, no-repeat;
    background-size: 98%, 90%;
    position: relative;
}

#blotTable.tournm {
    background-image: url(/images/blot_table_lights.png), url(/images/blot_table_tournm.png);
}

.game_area_bg1 {
    background-image: url(/images/bg/tablebg_purple.jpg);
}

.game_area_bg2 {
    background-image: url(/images/bg/tablebg_green.jpg);
}

.game_area_bg3 {
    background-image: url(/images/bg/tablebg_red.jpg);
}

.mask {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    /*display: none;*/
}

/**********************************************
****** TEST
**********************************************/

.test_click {
    position: fixed;
    top: 15px;
    left: 201px;
    padding: 10px;
    background-color: #d3d3d314;
    border: 1px solid #ffffff26;
    display: block;
    cursor: pointer;
    z-index: 4;
}

.test_data {
    position: fixed;
    top: 0;
    left: 0;
    width: 190px;
    height: 100%;
    padding: 8px;
    background: #00000061;
    z-index: 9;
    overflow-y: auto;
}

.test_data#testServerData {
    left: auto;
    right: 0;
}

.test_data > p {
    margin: 11px 5px;
}

.test_data > p.title {
    font-size: 17px;
    font-weight: bold;
    text-align: center;
}

.test_data > p > b {
    float: right;
}

.test_data > p.object > b {
    float: none;
    margin-left: 8px;
}

.test_data > p.object > b > span {
    margin-left: 10px;
    font-weight: normal;
}

/**********************************************
****** User Bar
**********************************************/

#game_userbar {
    position: absolute;
}

.userbar1 {
    top: calc(98% - 100px);
    margin-left: 10px;
}

.userbar2 {
    top: 240px;
    left: 28px;
}

.userbar3 {
    top: 10px;
    margin-left: calc(50% - 115px);
}

.userbar4 {
    top: 240px;
    right: 127px;
}

.game_preloader {
    position: absolute;
    top: -8px;
    left: -8px;
    z-index: 2;
    width: 116px;
    height: 116px;
}

.game_preloader.hide {
    display: none;
}

.game_userimg {
    position: absolute;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    z-index: 3;
    overflow: hidden;
    margin: 5px;
    background: #263f54;
}

.game_userimg img, .game_preloader img {
    width: 100%;
    height: 100%;
    border-radius: 50px;
    /*border: 2px solid #f7f7f6;*/
}

.game_username {
    background-color: #263f54;
    border: 1px solid rgba(204, 204, 204, 0.17);
    border-left: 3px solid rgba(204, 204, 204, 0.09);
    border-right: 3px solid rgba(204, 204, 204, 0.09);
    border-radius: 4px;
    position: absolute;
    width: 189px;
    box-shadow: 0 0 5px 1px rgba(0, 0, 0, 0.31);
    height: 30px;
    line-height: 28px;
    font-size: 14px;
    text-align: center;
    z-index: 1;
    margin-top: 37px;
    margin-left: 50px;
    padding-left: 40px;
    overflow: hidden;
    white-space: nowrap;
    cursor: default;
    transition: background-color .3s;
}

.userbar2 > .game_username, .userbar4 > .game_username {
    margin-top: 91px;
    margin-left: -26px;
    z-index: 3;
    width: 150px;
    line-height: 25px;
    padding-left: 0;
    text-align: center;
    height: 27px;
}

.game_username.active {
    background-color: #a57100;
    color: white;
}

.game_vip {
    position: absolute;
    top: -9px;
    left: -9px;
    width: 40px;
    height: 40px;
    z-index: 3;
    border: 1px solid #4a2e3d;
    border-radius: 50%;
    padding: 5px;
    background-color: #5a3656;
    box-shadow: 1px 1px 2px 1px #0000006b;
    display: none;
}

.game_vip > img {
    width: 100%;
    height: 100%;
}

/*=============================================
    Deck Playing Cards
==============================================*/

#cards_area {
    position: relative;
    top: 0;
    left: 0;
}

#card {
    position: absolute;
    background-image: url(/images/deck_playing_cards.png);
    background-repeat: no-repeat;
    width: 176px;
    height: 246px;
    border-radius: 15px;
    zoom: 0.85;
    box-shadow: 0px 0px 4px 2px rgba(0, 0, 0, 0.29);
    transition: transform cubic-bezier(0.19, 1, 0.22, 1) .3s, zoom cubic-bezier(0.19, 1, 0.22, 1) .3s, left cubic-bezier(0.19, 1, 0.22, 1) .3s, top cubic-bezier(0.19, 1, 0.22, 1) .3s, margin-top .1s;
}

#card.indeck {
    top: -76px;
    left: 924px;
    transform: scale(.28, .28);
}

#card.dealing {
    transform: rotate(30deg) scale(.5, .5);
    top: 10px;
    left: 850px;
}

#card.inmyhand {
    cursor: pointer;
    transform-origin: center center !important;
    transition: transform cubic-bezier(0.175, 0.885, 0.32, 1.275) .3s, zoom cubic-bezier(0.175, 0.885, 0.32, 1.275) .3s, left cubic-bezier(0.175, 0.885, 0.32, 1.275) .3s, top cubic-bezier(0.175, 0.885, 0.32, 1.275) .3s, margin-top .1s;
}

/*------------------------------------*/

#card.cards8.inmyhand1 {
    top: 584px; left: 326px; transform: rotate(-8deg) scale(1, 1);
}

#card.cards8.inmyhand2 {
    top: 574px; left: 402px; transform: rotate(-6deg) scale(1, 1);
}

#card.cards8.inmyhand3 {
    top: 566px; left: 478px; transform: rotate(-4deg) scale(1, 1);
}

#card.cards8.inmyhand4 {
    top: 560px; left: 554px; transform: rotate(-2deg) scale(1, 1);
}

#card.cards8.inmyhand5 {
    top: 560px; left: 630px; transform: rotate(2deg) scale(1, 1);
}

#card.cards8.inmyhand6 {
    top: 566px; left: 706px; transform: rotate(4deg) scale(1, 1);
}

#card.cards8.inmyhand7 {
    top: 574px; left: 782px; transform: rotate(6deg) scale(1, 1);
}

#card.cards8.inmyhand8 {
    top: 584px; left: 858px; transform: rotate(8deg) scale(1, 1);
}

/*------------------------------------*/

#card.cards7.inmyhand1 {
    top: 586px; left: 364px; transform: rotate(-6deg) scale(1, 1);
}

#card.cards7.inmyhand2 {
    top: 576px; left: 441px; transform: rotate(-4deg) scale(1, 1);
}

#card.cards7.inmyhand3 {
    top: 568px; left: 518px; transform: rotate(-2deg) scale(1, 1);
}

#card.cards7.inmyhand4 {
    top: 562px; left: 595px; transform: rotate(0deg) scale(1, 1);
}

#card.cards7.inmyhand5 {
    top: 568px; left: 672px; transform: rotate(2deg) scale(1, 1);
}

#card.cards7.inmyhand6 {
    top: 576px; left: 749px; transform: rotate(4deg) scale(1, 1);
}

#card.cards7.inmyhand7 {
    top: 586px; left: 826px; transform: rotate(6deg) scale(1, 1);
}

/*------------------------------------*/

#card.cards6.inmyhand1 {
    top: 578px; left: 399px; transform: rotate(-6deg) scale(1, 1);
}

#card.cards6.inmyhand2 {
    top: 570px; left: 478px; transform: rotate(-4deg) scale(1, 1);
}

#card.cards6.inmyhand3 {
    top: 564px; left: 555px; transform: rotate(-2deg) scale(1, 1);
}

#card.cards6.inmyhand4 {
    top: 564px; left: 634px; transform: rotate(2deg) scale(1, 1);
}

#card.cards6.inmyhand5 {
    top: 570px; left: 713px; transform: rotate(4deg) scale(1, 1);
}

#card.cards6.inmyhand6 {
    top: 578px; left: 792px; transform: rotate(6deg) scale(1, 1);
}

/*------------------------------------*/

#card.cards5.inmyhand1 {
    top: 580px; left: 431px; transform: rotate(-4deg) scale(1, 1);
}

#card.cards5.inmyhand2 {
    top: 572px; left: 513px; transform: rotate(-2deg) scale(1, 1);
}

#card.cards5.inmyhand3 {
    top: 566px; left: 593px; transform: rotate(0deg) scale(1, 1);
}

#card.cards5.inmyhand4 {
    top: 572px; left: 675px; transform: rotate(2deg) scale(1, 1);
}

#card.cards5.inmyhand5 {
    top: 580px; left: 757px; transform: rotate(4deg) scale(1, 1);
}

/*------------------------------------*/

#card.cards4.inmyhand1 {
    top: 574px; left: 469px; transform: rotate(-4deg) scale(1, 1);
}

#card.cards4.inmyhand2 {
    top: 568px; left: 555px; transform: rotate(-2deg) scale(1, 1);
}

#card.cards4.inmyhand3 {
    top: 568px; left: 641px; transform: rotate(2deg) scale(1, 1);
}

#card.cards4.inmyhand4 {
    top: 574px; left: 727px; transform: rotate(4deg) scale(1, 1);
}

/*------------------------------------*/

#card.cards3.inmyhand1 {
    top: 576px; left: 497px; transform: rotate(-2deg) scale(1, 1);
}

#card.cards3.inmyhand2 {
    top: 570px; left: 588px; transform: rotate(0deg) scale(1, 1);
}

#card.cards3.inmyhand3 {
    top: 576px; left: 679px; transform: rotate(2deg) scale(1, 1);
}

/*------------------------------------*/

#card.cards2.inmyhand1 {
    top: 572px; left: 519px; transform: rotate(-2deg) scale(1, 1);
}

#card.cards2.inmyhand2 {
    top: 572px; left: 626px; transform: rotate(2deg) scale(1, 1);
}

/*------------------------------------*/

#card.cards1.inmyhand1 {
    top: 574px; left: 567px; transform: rotate(0deg) scale(1, 1);
}

/*------------------------------------*/


#card.opphand2 {
    top: 225px; left: -190px; transform: scale(.7, .7);
}

#card.opphand3 {
    top: -250px; left: 400px; transform: scale(.7, .7);
}

#card.opphand4 {
    top: 225px; left: 1190px; transform: scale(.7, .7);
}

#card.ontable {
    
}

#card.ontablep1 {
    top: 325px; left: 495px; transform: rotate(-10deg) scale(.8, .8);
}

#card.ontablep2 {
    top: 240px; left: 400px; transform: rotate(80deg) scale(.8, .8);
}

#card.ontablep3 {
    top: 170px; left: 495px; transform: rotate(-170deg) scale(.8, .8);
}

#card.ontablep4 {
    top: 240px; left: 595px; transform: rotate(100deg) scale(.8, .8);
}

#card.ontablez1 { z-index: 1; }
#card.ontablez2 { z-index: 2; }
#card.ontablez3 { z-index: 3; }
#card.ontablez4 { z-index: 4; }

/*------------------------------------*/

#card.cards8.rotateback1 {
    transform: rotate(-8deg) rotateY(-90deg) scale(1, 1);
}

#card.cards8.rotateback2 {
    transform: rotate(-6deg) rotateY(-90deg) scale(1, 1);
}

#card.cards8.rotateback3 {
    transform: rotate(-4deg) rotateY(-90deg) scale(1, 1);
}

#card.cards8.rotateback4 {
    transform: rotate(-2deg) rotateY(-90deg) scale(1, 1);
}

#card.cards8.rotateback5 {
    transform: rotate(2deg) rotateY(-90deg) scale(1, 1);
}

#card.cards8.rotateback6 {
    transform: rotate(4deg) rotateY(-90deg) scale(1, 1);
}

#card.cards8.rotateback7 {
    transform: rotate(6deg) rotateY(-90deg) scale(1, 1);
}

#card.cards8.rotateback8 {
    transform: rotate(8deg) rotateY(-90deg) scale(1, 1);
}

/*------------------------------------*/

#card.cards7.rotateback1 {
    transform: rotate(-6deg) rotateY(-90deg) scale(1, 1);
}

#card.cards7.rotateback2 {
    transform: rotate(-4deg) rotateY(-90deg) scale(1, 1);
}

#card.cards7.rotateback3 {
    transform: rotate(-2deg) rotateY(-90deg) scale(1, 1);
}

#card.cards7.rotateback4 {
    transform: rotate(0deg) rotateY(-90deg) scale(1, 1);
}

#card.cards7.rotateback5 {
    transform: rotate(2deg) rotateY(-90deg) scale(1, 1);
}

#card.cards7.rotateback6 {
    transform: rotate(4deg) rotateY(-90deg) scale(1, 1);
}

#card.cards7.rotateback7 {
    transform: rotate(6deg) rotateY(-90deg) scale(1, 1);
}

/*------------------------------------*/

#card.cards6.rotateback1 {
    transform: rotate(-6deg) rotateY(-90deg) scale(1, 1);
}

#card.cards6.rotateback2 {
    transform: rotate(-4deg) rotateY(-90deg) scale(1, 1);
}

#card.cards6.rotateback3 {
    transform: rotate(-2deg) rotateY(-90deg) scale(1, 1);
}

#card.cards6.rotateback4 {
    transform: rotate(2deg) rotateY(-90deg) scale(1, 1);
}

#card.cards6.rotateback5 {
    transform: rotate(4deg) rotateY(-90deg) scale(1, 1);
}

#card.cards6.rotateback6 {
    transform: rotate(6deg) rotateY(-90deg) scale(1, 1);
}

/*------------------------------------*/

#card.cards5.rotateback1 {
    transform: rotate(-4deg) rotateY(-90deg) scale(1, 1);
}

#card.cards5.rotateback2 {
    transform: rotate(-2deg) rotateY(-90deg) scale(1, 1);
}

#card.cards5.rotateback3 {
    transform: rotate(0deg) rotateY(-90deg) scale(1, 1);
}

#card.cards5.rotateback4 {
    transform: rotate(2deg) rotateY(-90deg) scale(1, 1);
}

#card.cards5.rotateback5 {
    transform: rotate(4deg) rotateY(-90deg) scale(1, 1);
}

/*------------------------------------*/

#card.cards4.rotateback1 {
    transform: rotate(-4deg) rotateY(-90deg) scale(1, 1);
}

#card.cards4.rotateback2 {
    transform: rotate(-2deg) rotateY(-90deg) scale(1, 1);
}

#card.cards4.rotateback3 {
    transform: rotate(2deg) rotateY(-90deg) scale(1, 1);
}

#card.cards4.rotateback4 {
    transform: rotate(4deg) rotateY(-90deg) scale(1, 1);
}

/*------------------------------------*/

#card.cards3.rotateback1 {
    transform: rotate(-2deg) rotateY(-90deg) scale(1, 1);
}

#card.cards3.rotateback2 {
    transform: rotate(0deg) rotateY(-90deg) scale(1, 1);
}

#card.cards3.rotateback3 {
    transform: rotate(2deg) rotateY(-90deg) scale(1, 1);
}

/*------------------------------------*/

#card.cards2.rotateback1 {
    transform: rotate(-2deg) rotateY(-90deg) scale(1, 1);
}

#card.cards2.rotateback2 {
    transform: rotate(2deg) rotateY(-90deg) scale(1, 1);
}

/*------------------------------------*/

#card.cards1.rotateback1 {
    transform: rotate(0deg) rotateY(-90deg) scale(1, 1);
}

/*------------------------------------*/

#card.taken1 {
    top: 700px;
    left: 80px; 
    transform: scale(0.1);
}

#card.taken2 {
    top: 200px;
    left: -200px; 
    transform: scale(0.1);
}

#card.taken3 {
    top: -210px;
    left: 455px; 
    transform: scale(0.1);
}

#card.taken4 {
    top: 200px;
    left: 1130px; 
    transform: scale(0.1);
}

#card.hovered {
    margin-top: -20px;
}

#card.rotateBack {
    transform: rotateY(-180deg);
    transition: 0.1s;
}

#card.rotateFront {
    transform: rotateY(-180deg);
    transition: 0.3s;
}

/*#card.card_shadow {
    border-radius: 15px;
    box-shadow: 0px 0px 2px 1px rgba(0,0,0,.4) !important;
}*/

#card.card_back { background-position: -1629px -3px; }

#card.card_c7 { background-position: -1px -2px; }

#card.card_c8 { background-position: -205px -2px; }

#card.card_c9 { background-position: -408px -2px; }

#card.card_c10 { background-position: -611px -2px; }

#card.card_cJ { background-position: -816px -2px; }

#card.card_cQ { background-position: -1019px -2px; }

#card.card_cK { background-position: -1222px -2px; }

#card.card_cA { background-position: -1425px -2px; }


#card.card_h7 { background-position: -1px -509px; }

#card.card_h8 { background-position: -205px -509px; }

#card.card_h9 { background-position: -409px -509px; }

#card.card_h10 { background-position: -611px -509px; }

#card.card_hJ { background-position: -816px -509px; }

#card.card_hQ { background-position: -1019px -509px; }

#card.card_hK { background-position: -1222px -509px; }

#card.card_hA { background-position: -1425px -509px; }


#card.card_s7 { background-position: -1px -761px; }

#card.card_s8 { background-position: -205px -761px; }

#card.card_s9 { background-position: -408px -761px; }

#card.card_s10 { background-position: -611px -761px; }

#card.card_sJ { background-position: -816px -761px; }

#card.card_sQ { background-position: -1019px -761px; }

#card.card_sK { background-position: -1224px -761px; }

#card.card_sA { background-position: -1427px -761px; }


#card.card_d7 { background-position: -1px -254px; }

#card.card_d8 { background-position: -205px -254px; }

#card.card_d9 { background-position: -408px -254px; }

#card.card_d10 { background-position: -611px -254px; }

#card.card_dJ { background-position: -816px -254px; }

#card.card_dQ { background-position: -1019px -254px; }

#card.card_dK { background-position: -1222px -254px; }

#card.card_dA { background-position: -1425px -254px; }


.emotions_button {
    position: absolute;
    right: 10px;
    width: 88px;
    height: 44px;
    box-shadow: 0 0 5px 1px rgba(0, 0, 0, 0.3);
    border-radius: 5px;
    color: #222;
    line-height: 24px;
    text-align: center;
    padding-top: 20px;
    cursor: pointer;
}

@-webkit-keyframes pulsing {
  0% {
    -webkit-transform: scale(1.0, 1.0);
    transform: scale(1.0, 1.0)
  }
  50% {
    -webkit-transform: scale(1.2, 1.2);
    transform: scale(1.2, 1.2);
  }
  100% {
    -webkit-transform: scale(1.0, 1.0);
    transform: scale(1.0, 1.0);
  }
}

@keyframes pulsing {
  0% {
    -webkit-transform: scale(1.0, 1.0);
    transform: scale(1.0, 1.0)
  }
  50% {
    -webkit-transform: scale(1.2, 1.2);
    transform: scale(1.2, 1.2);
  }
  100% {
    -webkit-transform: scale(1.0, 1.0);
    transform: scale(1.0, 1.0);
  }
}

/*******************************************************************/
/****************** Emotions Smiles & Speech ***********************/
/*******************************************************************/

.emotions_button {
    bottom: 116px;
    padding-top: 0;
    overflow: hidden;
    z-index: 2;
}

.emotions_button > div {
    width: 50%;
    height: 100%;
    float: left;
    display: block;
    cursor: pointer;
}

.emotions_button > div:hover {
    opacity: 0.9
}

.emotions_smiles {
    background: #a77c00 url(/images/icon_emotions_smiles.svg) center no-repeat;
}

.emotions_speech {
    background: #4c1f56 url(/images/icon_emotions_speech.svg) center no-repeat;
}

.emotions_smiles_body, .emotions_speech_body {
    position: absolute;
    right: 10px;
    bottom: 165px;
    color: #222;
    text-align: center;
    transition: 0.3s;
    overflow: hidden;
    z-index: 4;
}

.emsmilesbody_back, .emspeechbody_back {
    background: rgba(0, 0, 0, 0.61);
    box-shadow: 0 0 5px 1px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    padding: 1px;
}

.emotions_smiles_body {
    height: 67px;
    width: 0;
}

.emotions_speech_body {
    width: 300px;
    height: 0;
}

.emsmilesbody_back {
    height: 52px;
    width: 708px;
}

.emspeechbody_back {
    height: calc(100% - 15px);
    width: 50%;
    float: left;
}

.emsmiles_body_show {
    width: 708px;
}

.emspeech_body_show {
    height: 107px;
}

.emotions_arrow {
    position: absolute;
    right: 11px;
    bottom: 0;
    background: url(/images/emotions_down_arrow.png) no-repeat;
    width: 24px;
    height: 15px;
}

.emotions_smiles_body > .emotions_arrow {
    right: 54px;
}

.emotions_smiles_body img {
    cursor: pointer;
    width: 50px;
    height: 50px;
    transition: background 0.3s, transform .15s;
}

.emotions_smiles_body img:hover {
    background: rgba(255, 255, 255, 0.09);
    transform: scale(1.2);
}

.emspeechbody_back > div {
    border-bottom: 1px solid rgba(255, 255, 255, 0.11);
    width: 100%;
    height: 30px;
    color: #ccc;
    text-align: left;
    padding: 0 10px;
    line-height: 28px;
    transition: 0.3s;
    cursor: pointer;
}

.emspeechbody_back:first-child {
    border-right: 1px solid rgba(241, 241, 241, 0.11);
}

.emspeechbody_back > div:last-child {
    border-bottom: none;
}

.emspeechbody_back > div:hover {
    padding-left: 15px;
    background-color: rgba(255, 255, 255, 0.06);
}

.emspeechbody_back > div input {
    background: transparent;
    width: 112%;
    height: 90%;
    position: relative;
    left: -6%;
    padding: 0 3px;
    color: #ccc;
}

/*****************************************************/

.last_hand, .score {
    position: absolute;
    top: 10px;
    background-color: #263f54;
    border: 1px solid #f1f1f10f;
    box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.2);
    width: 90px;
    overflow: hidden;
    z-index: 4;
    border-radius: 5px;
}

.last_hand {
    left: 10px;
    height: 100px;
    cursor: default;
}

.score {
    right: 10px;
    z-index: 6;
    cursor: pointer;
}

.last_hand > .top_title {
    position: absolute;
    background-color: #22384a;
    border-bottom: 1px solid #f1f1f10f;
    width: 88px;
    height: 21px;
    line-height: 20px;
    text-align: center;
    font-size: 12px;
}

.last_hand > .lhand_card {
    position: absolute;
    width: 24px;
    height: 33px;
    background: #efefef no-repeat center 13px;
    background-size: 15px 15px;
    border: 1px solid #1e3344;
    border-radius: 2px;
    padding: 0 1px;
    color: #222;
    overflow: hidden;
}

.last_hand > .lhand1 {
    bottom: 4px;
    left: 32px;
}

.last_hand > .lhand2 {
    top: 36px;
    left: 4px;
}

.last_hand > .lhand3 {
    top: 23px;
    left: 32px;
}

.last_hand > .lhand4 {
    top: 38px;
    right: 4px;
}

.last_hand #suits_h {
    background-size: 14px 14px;
    background-position-y: 16px;
}

#suits_c {
    background-image: url(/images/suits_c.svg);
}

#suits_h {
    background-image: url(/images/suits_h.svg);
    color: #ad0202;
}

#suits_s {
    background-image: url(/images/suits_s.svg);
}

#suits_d {
    background-image: url(/images/suits_d.svg);
    color: #ad0202;
}

#suits_a {
    background-image: url(/images/suite_a_white.png);
    color: #ad0202;
}

.last_hand > #suits_back {
    background: url(/images/suits_back.png) no-repeat;
}

.last_hand > .taken {
    border: 2px solid #d08828 !important;
}

.score > .score_main {
    font-size: 13px;
    width: 100%;
    overflow: hidden;
    cursor: pointer;
    font-size: 12px;
}

.score > .score_main > div, .score > .score_more > div {
    width: 50%;
    height: 21px;
    float: left;
    text-align: center;
}

.score > .score_main > div {
    font-weight: bold;
    height: 28px;
    line-height: 27px;
}

.score > .score_main > div:first-child {
    border-right: 1px solid #f1f1f10f;
    border-bottom: 1px solid #f1f1f10f;
}

.score > .score_main > div:nth-child(2) {
    border-bottom: 1px solid #f1f1f10f;
}

.score > .score_more {
    width: 100%;
    border-top: 1px solid #f1f1f10f;
    padding-top: 3px;
    display: none;
}

.score > .score_more > div {
    height: 21px;
    line-height: 20px;
}

.talk_value {
    position: absolute;
    height: 35px;
    background: #00796e no-repeat 9px center;
    border: 1px solid rgba(255, 255, 255, 0.09);
    box-shadow: 0 0 5px 1px rgba(14, 14, 14, 0.1);
    background-size: 25px;
    color: #fff !important;
    border-radius: 5px 5px 5px 0;
    text-shadow: -1px 0 1px rgba(0, 0, 0, 0.3);
    z-index: 4;
    padding-left: 38px;
    padding-right: 10px;
    line-height: 33px;
    overflow: hidden;
    display: none;
}

.talk_value span {
    
}

.talk_value1 {
    bottom: 90px;
    left: 86px;
}

.talk_value2 {
    top: 227px;
    left: 107px;
}

.talk_value3 {
    top: 4px;
    left: 465px;
}

.talk_value4 {
    top: 227px;
    right: 102px;
    border-radius: 5px 5px 0 5px;
}

.first_step {
    position: absolute;
    background: url(/images/first_step_player.svg) no-repeat;
    width: 30px;
    height: 30px;
    display: none;
}

#first_step1 {
    bottom: 8px;
    left: 221px;
}

#first_step2 {
    top: 200px;
    left: 25px;
}

#first_step3 {
    top: 9px;
    left: 595px;
}

#first_step4 {
    top: 201px;
    right: 23px;
}


.taken_score {
    position: absolute;
    top: 80px;
    right: 10px;
    width: 90px;
    height: 33px;
    background: #009688 url(/images/taken_score_img.png) no-repeat center;
    border: 1px solid rgba(241, 241, 241, 0.25);
    box-shadow: 0 0 5px 1px rgba(0, 0, 0, 0.1);
    color: #fff !important;
    z-index: 3;
    text-align: center;
    line-height: 31px;
    overflow: hidden;
    display: none;
}

.taken_score div {
    width: 42%;
    float: left;
    text-align: center;
}

.taken_score2 {
    float: right !important;
}


.say_alert {
    position: absolute;
    width: 126px;
    height: 114px;
    background: url(/images/say_alert_bg.png) no-repeat 2px center;
    z-index: 4;
    text-align: center;
    text-shadow: -1px 0 1px rgba(165, 165, 165, 0.56);
    line-height: 19px;
    overflow: hidden;
    color: #333;
    font-weight: bold;
    font-size: 20px;
    cursor: default;
    display: none;
}

.say_alert1 {
    background-position: 0 0;
    bottom: 125px;
    left: 100px;
}

.say_alert2 {
    background-position: 0 0;
    top: 120px;
    left: 125px;
}

.say_alert3 {
    background-position: -126px 0;
    top: 110px;
    left: 432px;
}

.say_alert4 {
    background-position: -253px 0;
    top: 127px;
    right: 130px;
}

.say_alert span {
    position: absolute;
    top: 45px;
    left: 0;
    width: 120px;
    text-align: center;
    font-size: 20px;
    text-shadow: 0 0 0 #dcdcdc;
}

.say_alert3 span {
    padding-top: 2px;
    padding-left: 2px;
}

.say_alert span b {
    color: #8e0d0d;
}

.say_alert img {
    width: 30px;
    height: 30px;
    margin: 38px 10px 42px -8px;
}

.say_alert3 img {
    margin-top: 44px;
}

/*=============================================
    Step Say Choice
==============================================*/

.step_say, .contra_say, .recontra_say {
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    margin: auto;
    background: #182733;
    box-shadow: 2px 2px 6px 1px rgba(0,0,0,.4);
    color: #fff;
    z-index: 5;
    display: none;
}

.step_say {
    width: 340px;
    height: 200px;
}

.contra_say {
    width: 178px;
    height: 78px;
}

.recontra_say {
    width: 273px;
    height: 92px;
}

.comb_announce, .comb_show {
    position: absolute;
    right: 0;
    bottom: 210px;
    left: 0;
    margin: 0 auto;
    background: #182733;
    box-shadow: 2px 2px 6px 1px rgba(0,0,0,.4);
    color: #fff;
    z-index: 5;
    width: 230px;
    height: 78px;
    display: none;
}

.step_suit {
    position: absolute;
    top: 10px;
    float: left;
    width: 60px;
    height: 60px;
    background-image: url(/images/suits.png);
    background-color: rgb(193, 193, 193);
    background-repeat: no-repeat;
    background-size: 300px 100%;
    border-radius: 5px;
    cursor: pointer;
}

.step_suit:not(.step_suit_selected):hover {
    background-color: #dadada;
}

.step_suit[data-val=c] {
    left: 10px;
    background-position: -186px 0px;
}

.step_suit[data-val=h] {
    left: 75px;
    background-position: -62px 0px;
}

.step_suit[data-val=s] {
    left: 140px;
    background-position: 2px 0px;
}

.step_suit[data-val=d] {
    right: 75px;
    background-position: -124px 0px;
}

.step_suit[data-val=a] {
    right: 10px;
    background-position: -246px 0px;
}

.step_suit_selected {
    background-color: #009688;
}

.step_say > .step_number {
    position: absolute;
    top: 80px;
    left: 10px;
    width: 240px;
    height: 50px;
    background: rgba(0, 0, 0, 0.17);
    border: 1px solid #ffffff1f;
    line-height: 47px;
    text-align: center;
    border-radius: 5px;
    font-size: 22px;
}

.step_say .stepn_minus {
    position: absolute;
    top: 0;
    left: 0;
    width: 40px;
    height: 48px;
    border-right: 1px solid #ffffff1f;
    cursor: pointer;
    transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.step_say .stepn_num {
    position: absolute;
    top: 0;
    left: 60px;
    width: 120px;
    height: 48px;
    font-weight: bold;
    font-size: 25px;
    text-shadow: 0 0 3px rgba(255,255,255,0.2);
}

.step_say .stepn_capout {
    position: absolute;
    top: 0;
    left: 85px;
    width: 40px;
    height: 48px;
    font-weight: bold;
    font-size: 25px;
    text-shadow: 0 0 3px rgba(255,255,255,0.5);
    display: none;
}

.step_say .stnum_capout_left_margin {
    left: 80px;
}

.step_say .stepn_plus {
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    height: 48px;
    border-left: 1px solid #ffffff1f;
    cursor: pointer;
    transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.step_say .stepn_minus:hover, .step_say .stepn_plus:hover {
    background: rgba(0,0,0,.2);
    font-size: 24px;
    text-shadow: 1px 1px 1px rgba(255,255,255,0.5);
}

.step_say button, .contra_say button, .recontra_say button, .comb_announce button, .comb_show button {
    position: absolute;
    height: 50px;
    background: rgb(18, 29, 37);
    border-radius: 5px;
    border: 1px solid #ffffff1f;
    line-height: 47px;
    text-align: center;
    font-size: 16px;
    color: white;
    cursor: pointer;
    text-transform: uppercase;
    /* font-family: "comic sans ms"; */
    transition: font-size 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.step_say button:hover, .contra_say button:hover, .recontra_say button:hover {
    font-size: 18px;
}

.step_say button.but_capout {
    right: 10px;
    top: 80px;
    width: 70px;
    background-color: #056786;
    font-weight: bold;
    font-size: 30px;
}

.but_capout_selected, .but_capout_fixed {
    background-color: #0d7494 !important;
    color: white !important;

}

.step_say button.but_contra {
    left: 10px;
    top: 140px;
    width: 95px;
    background-color: #8e1a1a;
}

.step_say button.but_step {
    left: 115px;
    top: 140px;
    width: 110px;
    background-color: #347730;
}

.step_say button.but_pass {
    right: 10px;
    top: 140px;
    width: 95px;
    background-color: #a57100;
}

.contra_say button.but_contra {
    background-color: #8e0d0d;
    width: 150px;
    color: white;
    margin: auto;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}

.recontra_say button.but_recontra {
    background-color: #8e0d0d;
    left: 12px;
    top: 20px;
    width: 130px;
    color: white;
}

.recontra_say button.but_pass {
    background-color: #8e0d0d;
    right: 12px;
    top: 20px;
    width: 110px;
    color: white;
}

.comb_announce button, .comb_show button {
    background-color: #0b827f;
    left: 14px;
    top: 14px;
    width: 202px;
    color: white;
}

.progressbar {
    position: absolute;
    top: -6px;
    left: -6px;
    background-color: #31506b;
    z-index: 2;
    width: 112px;
    height: 112px;
    border-radius: 50%;
    box-shadow: 0 0 4px 2px rgba(12, 12, 12, 0.18);
    transition: box-shadow cubic-bezier(0.175, 0.885, 0.32, 1.675) .3s;
}

.show_combs {
    position: absolute;
    background: #1e344680;
    padding: 0px 33px;
    display: block;
    height: 155px;
    overflow: hidden;
    z-index: 5;
    display: none;
    box-shadow: 0px 0px 7px 1px rgba(0, 0, 0, 0.35);
}

.show_combs #card {
    transform: scale(0.7, 0.7);
    position: relative;
    top: -23px;
    float: left;
    margin: 0 -58px;
    zoom: 0.77;
    box-shadow: 0px 0px 4px 2px rgba(0, 0, 0, 0.7);
}

#combs1 {
    top: 409px;
    left: 50px;
    border-radius: 10px 10px 10px 0;
}

#combs2 {
    top: 130px;
    left: 80px;
    border-radius: 10px 10px 10px 0;
}

#combs3 {
    top: 90px;
    left: 425px;
    border-radius: 0 10px 10px 10px;
}

#combs4 {
    top: 135px;
    right: 80px;
    border-radius: 10px 10px 0 10px;
}

.teams_results {
    width: 380px;
    height: 250px;
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    margin: auto;
    background: rgba(59, 150, 130, 0.54);
    border: 1px solid rgba(241, 241, 241, 0.4);
    box-shadow: 0 0 7px 2px rgba(0,0,0,.2);
    color: #fff;
    z-index: 6;
    padding: 10px 20px;
    display: none;
}

.teams_results > div {
    float: left;
    width: 50%;
    font-size: 17px;
    text-shadow: -1px 0 1px #0d4422;
}

.teams_results > div b {
    color: wheat;
}

.teams_results > div:last-child {
    text-align: right;
}

.teams_results > div div {
    width: 100%;
    
}

.teams_results > div > div:first-child {
    font-size: 17px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: inset 0px -1px 0px 0px rgb(12, 86, 41);
    margin-bottom: 10px;
}

.teams_results > div > div#total {
    font-size: 17px;
    padding-top: 4px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0px -1px 0px 0px rgb(12, 86, 41);
    margin-top: 10px;
}

.teams_results > div > div.cont {
    height: 150px;
}

.teams_results > div div.lose {
    text-align: center;
    font-size: 28px;
    padding-top: 45px;
}

.window {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    background: #16290e;
    box-shadow: 0px 0px 2px 2px rgba(0, 0, 0, 0.23);
    color: #fff;
    z-index: 5;
    font-size: 16px;
}

.window_wait_for_players {
    width: 360px;
    height: 80px;
    top: -60px;
    cursor: default;
    display: none;
}

.window_wait_for_players > div {
    background: rgba(255, 255, 255, 0.09) url(/images/wait_for_players.svg) no-repeat 4px center;
    text-align: center;
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 94%;
    height: 70%;
    line-height: 51px;
    padding-left: 40px;
}

.window_wait_for_players > #waitWindowTimer {
    display: none;
}

.window_wait_for_players span {
    color: #ce7a7a;
    font-size: 23px;
    font-weight: bold;
    position: relative;
    bottom: -4px;
}

.window_end_game {
    width: 450px;
    height: 300px;
    z-index: 7;
    display: none;
}

.window_end_game .you_win, .window_end_game .you_lose {
    width: 448px;
    height: 179px;
    background-repeat: no-repeat;
    background-position: top center;
    background-size: contain;
    padding-top: 110px;
    text-align: center;
    font-size: 28px;
}

.window_end_game .you_win {
    background-image: url(/images/you_win_icon.png);
}

.window_end_game .you_lose {
    background-image: url(/images/you_lose_icon.png);
}

.window_end_game .win_chips {
    font-size: 30px;
    font-weight: bold;
    text-align: center;
}

.window_end_game .button_again {
    width: 48%;
    margin-left: 5%;
    margin-top: 10px;
    float: left;
}

.window_end_game .button_quit {
    width: 38%;
    margin-right: 5%;
    margin-top: 10px;
    float: right;
}

.duble_comb {
    position: relative;
    top: -22px;
    font-size: 17px;
    line-height: 9px;
}

/*.window_levelup_congrats {
    width: 300px;
    height: 250px;
}

.congrats {
    background: url(/images/ribbon.png) no-repeat center;
}

.congrats div {
    width: 100px;
    height: 100px;
    background: url(/images/level_bg.svg) no-repeat center;
}*/

.game_info {
    position: absolute;
    top: 10px;
    left: 110px;
    z-index: 4;
}

.game_info > div {
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.7);
    font-size: 12px;
    color: #ffffffe0;
    cursor: default;
    text-shadow: 0 0 1px #0000008a;
}

.game_info > div b {
    float: right;
    font-size: 14px;
    line-height: 16px;
}

.ginfo_type {
    position: absolute;
    top: 0;
    left: 0;
    width: 40px;
    height: 54px;
    background-color: #b98100;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 30px;
    border-radius: 5px 0 0 5px;
    text-align: center;
    line-height: 50px;
    font-size: 32px !important;
    font-weight: bold;
}

.ginfo_bet {
    position: absolute;
    top: 0px;
    left: 44px;
    width: 190px;
    height: 25px;
    background: #007e90 url(/images/bet_icon.svg) no-repeat 7px center;
    padding: 4px 10px 8px 31px;
    border-radius: 0 5px 0 0;
}

.ginfo_till {
    position: absolute;
    top: 29px;
    left: 44px;
    width: 190px;
    height: 25px;
    background: #007e90 url(/images/till_icon.svg) no-repeat 7px center;
    padding: 4px 10px 8px 31px;
    border-radius: 0 0 5px 0;
}

/*****************************************************************/

.say_emotions {
    position: absolute;
    padding: 10px 15px;
    background: rgba(16, 16, 16, 0.8);
    z-index: 4;
    border: 1px solid rgba(0, 0, 0, 0.16);
    box-shadow: 0 0 4px 1px rgba(0, 0, 0, 0.51);
    color: #b7b7b7;
    font-size: 17px;
    display: none;
}

.sayem1 {
    bottom: 133px;
    left: 65px;
    border-radius: 30px 30px 30px 0;
}

.sayem2 {
    bottom: 440px;
    left: 102px;
    border-radius: 30px 30px 30px 0;
}

.sayem3 {
    top: 90px;
    left: 422px;
    border-radius: 0 30px 30px 30px;
}

.sayem4 {
    bottom: 435px;
    right: 92px;
    border-radius: 30px 30px 0 30px;
}

.say_emotions img {
    width: 70px;
    height: 70px;
    margin: -13px -12px;
}
