@import url("https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap");

@font-face {
  font-family: dinpro-regular;
  font-weight: 400;
  src: url("../../fonts/DinPro/DINPro500Regular.otf");
}

@font-face {
  font-family: dinpro-medium;
  font-weight: 500;
  src: url("../../fonts/DinPro/DINProMedium.otf");
}

@font-face {
  font-family: dinpro-bold;
  font-weight: 700;
  src: url("../../fonts/DinPro/DINProBold.otf");
}

@font-face {
  font-family: dinpro-black;
  font-weight: 900;
  src: url("../../fonts/DinPro/DIN-Pro-Black.otf");
}


:root {
  --color-yellow-500: oklch(79.5% 0.184 86.047);
  --color-white: #fff;
  --spacing: 0.25rem;
  --text-xs: 0.75rem;
  --text-xs--line-height: calc(1 / 0.75);
  --text-sm: 0.875rem;
  --text-sm--line-height: calc(1.25 / 0.875);
  --text-base: 1rem;
  --text-base--line-height: calc(1.5 / 1);
  --text-lg: 1.125rem;
  --text-lg--line-height: calc(1.75 / 1.125);
  --text-xl: 1.25rem;
  --text-xl--line-height: calc(1.75 / 1.25);
  --text-2xl: 1.5rem;
  --text-2xl--line-height: calc(2 / 1.5);
  --text-3xl: 1.875rem;
  --text-3xl--line-height: calc(2.25 / 1.875);
  --text-4xl: 2.25rem;
  --text-4xl--line-height: calc(2.5 / 2.25);
  --font-weight-normal: 400;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  --radius-lg: 0.5rem;
  --drop-shadow-lg: 0 4px 4px rgb(0 0 0 / 0.15);
  --default-font-family: var(--font-sans);
  --default-mono-font-family: var(--font-mono);
  --color-blue: #4198CB;
  --color-blue1: #053B7A;
  --color-blue4: #3ACCFD;
  --color-dark: #162441;
  --color-dark1: #1B1464;
  --color-gray1: #BEBEBE;
  --color-gray2: #EDEDED;
  --color-gray4: #8989891A;
  --text-2xs: 11px;
  --text-3xs: 10px;
}

body {
  background-color: unset !important;
  font-family: "Roboto Condensed", sans-serif;
}

.home-btn {
  background-image: url(../../images/poker/b9-pokerking-2/home-btn.png);
  position: absolute;
  width: 80px;
  height: 80px;
  top: 30px;
  left: 30px;
  cursor: pointer;
}

#card-container {
  width: 100%;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.card .face {
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  position: absolute;
  width: 100%;
  height: 100%;
  transition: transform 0.35s cubic-bezier(0.13, 1.03, 0.39, 0.98),
    box-shadow 0.35s cubic-bezier(0.13, 1.03, 0.39, 0.98),
    border-width 0.35s cubic-bezier(0.13, 1.03, 0.39, 0.98);
  /* box-shadow: 0px 1.2vw 4vw -1vw rgba(0, 0, 0, 0.6); */
  background-position: 0 0;
  background-size: 21vw;
  background-repeat: no-repeat;
}

.card .front {
  background-image: url(/assets/images/poker/b9-pokerking-2/cards/card-front.png);
  transform: rotateY(0deg);
  background-size: 100% 100% !important;
}

.card .back {
  transform: rotateY(180deg);
  background-size: 100% !important;
}

.card.flipped .front {
  transform: rotateY(180deg);
}

.card.flipped .back {
  transform: rotateY(360deg);
}

.spin-started .card:not(.flipped) {
  cursor: pointer;
}

.card .back.c1 {
  background-image: url(/assets/images/poker/b9-pokerking-2/cards/club-1.png);
  margin: 0px;
}

.card .back.c2 {
  background-image: url(/assets/images/poker/b9-pokerking-2/cards/club-2.png);
  margin: 0px;
}

.card .back.c3 {
  background-image: url(/assets/images/poker/b9-pokerking-2/cards/club-3.png);
  margin: 0px;
}

.card .back.c4 {
  background-image: url(/assets/images/poker/b9-pokerking-2/cards/club-4.png);
  margin: 0px;
}

.card .back.c5 {
  background-image: url(/assets/images/poker/b9-pokerking-2/cards/club-5.png);
  margin: 0px;
}

.card .back.c6 {
  background-image: url(/assets/images/poker/b9-pokerking-2/cards/club-6.png);
  margin: 0px;
}

.card .back.c7 {
  background-image: url(/assets/images/poker/b9-pokerking-2/cards/club-7.png);
  margin: 0px;
}

.card .back.c8 {
  background-image: url(/assets/images/poker/b9-pokerking-2/cards/club-8.png);
  margin: 0px;
}

.card .back.c9 {
  background-image: url(/assets/images/poker/b9-pokerking-2/cards/club-9.png);
  margin: 0px;
}

.card .back.c10 {
  background-image: url(/assets/images/poker/b9-pokerking-2/cards/club-10.png);
  margin: 0px;
}

.card .back.cj {
  background-image: url(/assets/images/poker/b9-pokerking-2/cards/club-j.png);
  margin: 0px;
}

.card .back.cq {
  background-image: url(/assets/images/poker/b9-pokerking-2/cards/club-q.png);
  margin: 0px;
}

.card .back.ck {
  background-image: url(/assets/images/poker/b9-pokerking-2/cards/club-k.png);
  margin: 0px;
}

.card .back.h1 {
  background-image: url(/assets/images/poker/b9-pokerking-2/cards/heart-1.png);
  margin: 0px;
}

.card .back.h2 {
  background-image: url(/assets/images/poker/b9-pokerking-2/cards/heart-2.png);
  margin: 0px;
}

.card .back.h3 {
  background-image: url(/assets/images/poker/b9-pokerking-2/cards/heart-3.png);
  margin: 0px;
}

.card .back.h4 {
  background-image: url(/assets/images/poker/b9-pokerking-2/cards/heart-4.png);
  margin: 0px;
}

.card .back.h5 {
  background-image: url(/assets/images/poker/b9-pokerking-2/cards/heart-5.png);
  margin: 0px;
}

.card .back.h6 {
  background-image: url(/assets/images/poker/b9-pokerking-2/cards/heart-6.png);
  margin: 0px;
}

.card .back.h7 {
  background-image: url(/assets/images/poker/b9-pokerking-2/cards/heart-7.png);
  margin: 0px;
}

.card .back.h8 {
  background-image: url(/assets/images/poker/b9-pokerking-2/cards/heart-8.png);
  margin: 0px;
}

.card .back.h9 {
  background-image: url(/assets/images/poker/b9-pokerking-2/cards/heart-9.png);
  margin: 0px;
}

.card .back.h10 {
  background-image: url(/assets/images/poker/b9-pokerking-2/cards/heart-10.png);
  margin: 0px;
}

.card .back.hj {
  background-image: url(/assets/images/poker/b9-pokerking-2/cards/heart-j.png);
  margin: 0px;
}

.card .back.hq {
  background-image: url(/assets/images/poker/b9-pokerking-2/cards/heart-q.png);
  margin: 0px;
}

.card .back.hk {
  background-image: url(/assets/images/poker/b9-pokerking-2/cards/heart-k.png);
  margin: 0px;
}

.card .back.s1 {
  background-image: url(/assets/images/poker/b9-pokerking-2/cards/spade-1.png);
  margin: 0px;
}

.card .back.s2 {
  background-image: url(/assets/images/poker/b9-pokerking-2/cards/spade-2.png);
  margin: 0px;
}

.card .back.s3 {
  background-image: url(/assets/images/poker/b9-pokerking-2/cards/spade-3.png);
  margin: 0px;
}

.card .back.s4 {
  background-image: url(/assets/images/poker/b9-pokerking-2/cards/spade-4.png);
  margin: 0px;
}

.card .back.s5 {
  background-image: url(/assets/images/poker/b9-pokerking-2/cards/spade-5.png);
  margin: 0px;
}

.card .back.s6 {
  background-image: url(/assets/images/poker/b9-pokerking-2/cards/spade-6.png);
  margin: 0px;
}

.card .back.s7 {
  background-image: url(/assets/images/poker/b9-pokerking-2/cards/spade-7.png);
  margin: 0px;
}

.card .back.s8 {
  background-image: url(/assets/images/poker/b9-pokerking-2/cards/spade-8.png);
  margin: 0px;
}

.card .back.s9 {
  background-image: url(/assets/images/poker/b9-pokerking-2/cards/spade-9.png);
  margin: 0px;
}

.card .back.s10 {
  background-image: url(/assets/images/poker/b9-pokerking-2/cards/spade-10.png);
  margin: 0px;
}

.card .back.sj {
  background-image: url(/assets/images/poker/b9-pokerking-2/cards/spade-j.png);
  margin: 0px;
}

.card .back.sq {
  background-image: url(/assets/images/poker/b9-pokerking-2/cards/spade-q.png);
  margin: 0px;
}

.card .back.sk {
  background-image: url(/assets/images/poker/b9-pokerking-2/cards/spade-k.png);
  margin: 0px;
}

.card .back.d1 {
  background-image: url(/assets/images/poker/b9-pokerking-2/cards/diamond-1.png);
  margin: 0px;
}

.card .back.d2 {
  background-image: url(/assets/images/poker/b9-pokerking-2/cards/diamond-2.png);
  margin: 0px;
}

.card .back.d3 {
  background-image: url(/assets/images/poker/b9-pokerking-2/cards/diamond-3.png);
  margin: 0px;
}

.card .back.d4 {
  background-image: url(/assets/images/poker/b9-pokerking-2/cards/diamond-4.png);
  margin: 0px;
}

.card .back.d5 {
  background-image: url(/assets/images/poker/b9-pokerking-2/cards/diamond-5.png);
  margin: 0px;
}

.card .back.d6 {
  background-image: url(/assets/images/poker/b9-pokerking-2/cards/diamond-6.png);
  margin: 0px;
}

.card .back.d7 {
  background-image: url(/assets/images/poker/b9-pokerking-2/cards/diamond-7.png);
  margin: 0px;
}

.card .back.d8 {
  background-image: url(/assets/images/poker/b9-pokerking-2/cards/diamond-8.png);
  margin: 0px;
}

.card .back.d9 {
  background-image: url(/assets/images/poker/b9-pokerking-2/cards/diamond-9.png);
  margin: 0px;
}

.card .back.d10 {
  background-image: url(/assets/images/poker/b9-pokerking-2/cards/diamond-10.png);
  margin: 0px;
}

.card .back.dj {
  background-image: url(/assets/images/poker/b9-pokerking-2/cards/diamond-j.png?1);
  margin: 0px;
}

.card .back.dq {
  background-image: url(/assets/images/poker/b9-pokerking-2/cards/diamond-q.png);
  margin: 0px;
}

.card .back.dk {
  background-image: url(/assets/images/poker/b9-pokerking-2/cards/diamond-k.png);
  margin: 0px;
}

.game-tips {
  font-size: 16px;
  color: var(--color-dark1);
}

.deal-row {
  background-image: url(/assets/images/poker/b9-pokerking-2/desktop/table-bottom-bg.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  width: 792px;
  height: 95px;
  position: absolute;
  bottom: 6%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.deal-row.bm,
.deal-row.vn,
.deal-row.kh {
  transform: translate(-44%, 0);
}

.deal-row .deal-inner-wrap {
  position: relative;
  width: 100%;
  height: 100%;
}

.deal-row .deal-inner-wrap .deal-btn {
  background-image: url(/assets/images/poker/b9-pokerking-2/deal-btn.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  width: 179px;
  height: 179px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: dinpro-black;
  font-weight: 900;
  font-size: 42px;
  line-height: 53px;
  color: #fff;
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: #053B7A;
}

.deal-inner-wrap .tic-wrap,
.deal-inner-wrap .right-intro-wrap {
  height: 71px;
  width: 250px;
  background: #131220;
  border-radius: 8px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

#game-instruction.bm {
  font-size: 13px;
}

.deal-inner-wrap .tic-wrap {
  left: 15px;
}

.deal-inner-wrap .right-intro-wrap {
  right: 15px;
  font-family: dinpro-black;
  font-weight: 900;
  font-size: 16px;
  line-height: 23px;
  padding: 0px 15px;
}

.deal-inner-wrap .tic-wrap .tic-txt {
  font-family: dinpro-bold;
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
}

.deal-inner-wrap .tic-wrap .tic-balance-wrap img {
  height: 20px;
  width: 25px;
  object-fit: contain;
  margin: 0 4px 0px 0;
  transform: translate(0, -8px);
}

.deal-inner-wrap .tic-wrap .tic-balance-wrap span {
  font-family: dinpro-bold;
  font-weight: 700;
  font-size: 32px;
  line-height: 40px;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@-webkit-keyframes shine {
  0% { opacity: 0.05; }
  80% { opacity: 1; }
  100% { opacity: 1; }
}

@-moz-keyframes shine {
  0% { opacity: 0.05; }
  80% { opacity: 1; }
  100% { opacity: 1; }
}

@keyframes shine {
  0% { opacity: 0.05; }
  80% { opacity: 1; }
  100% { opacity: 1; }
}

.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

@keyframes draw-btn {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}

.live-wrap{
  width: 100%;
  max-width: 740px;
  margin: 0 auto;
}
.live-details{ width:100%; position: relative; /*margin-top: 348px;*/ padding-bottom: 30px}
.bg-cny-gamepg-en {
  background-position: center -50px;
  background-repeat: no-repeat;
}

.bg-cny-gamepg-cn {
  background-position: center -50px;
  background-repeat: no-repeat;
}
/****** Card game ******/
.card-lucky-content{ width: 100%; float: left; height: 220px}
.card-lucky-btn{ width:205px; float: left; margin-top: 380px; padding-left: 270px}
.card-lucky-img{ width:750px; float: left; padding-top: 110px}
.card-lucky-img2{ width:750px; float: left; padding-top: 88px}
.card-btn a {
    width: 82px;
    background-color: #f2f2f2;
    background-repeat: no-repeat;
    display: block;
    color: #000;
    border-radius: 2px;
    padding: 8px;
  text-align: center}
.card-btn a:hover {
    background-color: #ffa200}
.floating-cardimg {  
    animation-name: floating;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
    margin-left: 30px;
    margin-top: 5px;
}

@keyframes floating {
    from { transform: translate(0,  0px); }
    65%  { transform: translate(0, 10px); }
    to   { transform: translate(0, -0px); }    
}
.clearfix{clear: left; margin: 0}

@keyframes blinking {
  0%{
    color: #d5100f;
  }
  50%{
    color: #d5100f;
  }
  100%{
    color: #000;
  }
}

.gamepg-table{
  width:100%;
  float: left;
  margin-top: 14px;
  background-position:
  center top;
  background-repeat:
  no-repeat;
  background-size: 800px;
}
.game-content{ width:100%; float: left; margin: 0px 0 0}
.game-row-1{ width:100%; float: left; margin-bottom: 10px}
.game-row-1 h4{ width: 100%; font-size: 12px; float: right; color: yellow; margin: 0; padding: 0}
.game-row-1 h3{ width: 100%; font-size: 12px; float: right; color: white; margin: 0; padding: 0}
.game-row-2{
  width: 100%;
  margin: 0 0 20px;
}
#card-container {
  width: 88%;
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: auto;
}
.card {
  aspect-ratio: 0.7;
  perspective: 100vw;
  perspective-origin: 50% 50%;
  transform-style: preserve-3d;
  position: relative;
}
.game-card-aligncenter{ width:370px; margin: 0 auto}

.draw-btn-frame {
  width: 100%;
}
.draw-btn {
  animation: draw-btn 1s ease-in-out infinite;
  margin: auto;
  color: white;
  font-weight: bold;
  font-size: 20px;
}
.tickets-frame {
  font-size: 16px;
  font-weight: bold;
  margin-top: 20px;
}

.game-row-3{ 
  width:100%; 
  font-size: 12px; 
  font-weight: 400; 
  letter-spacing: 1px; 
  float: left; 
  text-align: center; 
  margin-bottom: 15px; 
  color: #fff; 
  background: rgb(0,0,0);
  background: linear-gradient(90deg, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 37%, rgba(0,0,0,1) 63%, rgba(0,0,0,0) 100%)
}
.game-row-3 span { 
  font-size: 18px; 
  font-weight: 600; 
  text-align: center; 
  color: #eecd19; 
  padding: 5px 0px; 
  margin-bottom: 30px;
  display: none;
}
.game-row-3a { /* visually same as .game-row-3 */
  width:100%; 
  font-size: 12px; 
  font-weight: 400; 
  letter-spacing: 1px; 
  float: left; 
  text-align: center; 
  margin-bottom: 15px; 
  color: #fff; 
  background: rgb(0,0,0);
  background: linear-gradient(90deg, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 37%, rgba(0,0,0,1) 63%, rgba(0,0,0,0) 100%)
}
.game-row-3a span{ /* visually same as .game-row-3 span */
  font-size: 18px; 
  font-weight: 600; 
  text-align: center; 
  color: #eecd19; 
  padding: 5px 0px; 
  margin-bottom: 30px;
}
.game-row-4{ width:100%; margin-bottom: 20px; float: left; text-align: center}
.game-btn-gray{font-weight: 600; padding:8px 20px; background: rgb(255,255,255);background: linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(189,189,189,1) 100%);-webkit-border-radius: 50px;-moz-border-radius: 50px;border-radius: 50px; -webkit-box-shadow: 0px 10px 15px -2px rgba(0,0,0,0.7);
-moz-box-shadow: 0px 10px 15px -2px rgba(0,0,0,0.7);
box-shadow: 0px 10px 15px -2px rgba(0,0,0,0.7);}
.game-btn-gold{color: #000; width:90%; margin: 0 8px 20px; font-size: 16px; font-weight: 600; padding:12px 0px; background: rgb(255,255,255);
    background: linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(255,162,0,1) 100%);-webkit-border-radius: 50px;-moz-border-radius: 50px;border-radius: 50px; border: none; -webkit-box-shadow: 0px 10px 15px -2px rgba(0,0,0,0.7);
-moz-box-shadow: 0px 10px 15px -2px rgba(0,0,0,0.7);
box-shadow: 0px 10px 15px -2px rgba(0,0,0,0.7);}
.game-btn-grey {
  color: #000;
  font-weight: 600;
  padding: 8px 20px;
  background: #fff;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 1) 0%,
    rgba(189, 189, 189, 1) 100%
  );
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  border-radius: 50px;
  -webkit-box-shadow: 0px 10px 15px -2px rgba(0, 0, 0, 0.7);
  -moz-box-shadow: 0px 10px 15px -2px rgba(0, 0, 0, 0.7);
  box-shadow: 0px 10px 15px -2px rgba(0, 0, 0, 0.7);
}

.modal {
  background-color: rgba(0, 0, 0, 0.5);
}

.error_tq .modal-dialog {
  width: 523px !important;
  height: 240px !important;
}

.error_tq .modal-content {
  background-image: url(/assets/images/poker/img-failed-popup.png);
  background-color: transparent;
  background-position: center top;
  background-repeat: no-repeat;
  box-shadow: none;
  -webkit-box-shadow: none;
  border: none;
  width: 523px;
  height: 240px;
  color: #ffffff;
  font-size: 20px;
  line-height: 30px;
}

.error_tq .modal-content span {
  color: #f7b005;
  font-weight: bold;
}

.error_tq .modal-content .btn-default {
  background-image: linear-gradient(#fcfb60, #a56e09);
  box-shadow: #000000 4px 4px 4px;
  -webkit-box-shadow: #000000 4px 4px 4px;
  border: none;
  border-radius: 15px;
}

.modal.error_win {
  background-image: url(/assets/images/poker/img-win-popup-bg.png);
}

.error_win .modal-dialog {
  width: 564px !important;
  height: 593px !important;
}

.error_win .modal-content {
  background-image: url(/assets/images/poker/b9-pokerking-2/img-win-popup.png);
  background-color: transparent;
  background-position: center top;
  background-repeat: no-repeat;
  box-shadow: none;
  -webkit-box-shadow: none;
  border: none;
  width: 564px;
  height: 593px;
  font-size: 20px;
  line-height: 30px;
  color: #f7b005;
}

.error_win .modal-content span {
  color: #fff;
  font-weight: 700;
  font-size: 38px;
}

.error_win .modal-content .btn-default {
  display: none;
}

.error_win .modal-dialog p {
  margin-top: 120px !important;
}
.alert-text a {
  display: block;
  width: 46%; 
  font-size: 16px; 
  color: #000; 
  background-color:#ffa200; 
  margin: 0 auto; 
  margin-top: 110px;
  padding: 10px 50px; 
  -webkit-border-radius: 100px;
  border-radius: 100px; 
  text-decoration: none;   
  cursor: pointer; 
  -webkit-animation: glowing 1500ms infinite;
  animation: glowing 1500ms infinite;
}
.alert-text a:hover {
  text-decoration: none;
}
@keyframes glowing {
  0% { background-color: #ffa200; box-shadow: 0 0 3px #ffa200; }
  50% { background-color: #FF0000; box-shadow: 0 0 40px #FF0000; }
  100% { background-color: #ffa200; box-shadow: 0 0 3px #ffa200; }
}

.poker-king-table-footer {
  display: flex;
  align-items: center;
  justify-content: space-around;
  width: 100vw;
  height: calc(100vw/428*85);
  font-family: dinpro-bold;
  background-image: url(/assets/images/poker/b9-pokerking-2/mobile/button-bg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100%;
  transform: translate(0, 24%);
}

.poker-king-table-ticket,
.poker-king-table-win {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 34vw;
    height: 16vw;
    padding: 0 2vw;
    background-color: #131220;
    text-align: center;
    border-radius: 8px;
    font-size: 1.1rem;
}
.poker-king-table-ticket-icon {
  width: 16%;
  transform: translate(0, -8%);
}
.poker-king-table-ticket {
  font-size: 14px;
}
.poker-king-table-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 25vw;
    height: 25vw;
    font-family: dinpro-black;
    font-weight: 900;
    font-size: 2.4rem;
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: #053B7A;
    background-image: url(/assets/images/poker/b9-pokerking-2/deal-btn.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100%;
}

@media (min-width: 540px) {
  .card {
    width: 19%;
  }
}
@media (max-width: 539px) {
  .card {
    width: 15%;
  }
}