.sound-control-box {
}

.sound-btn {
    border: none;
    background: none;
    outline: none;
    cursor: pointer;
}

.sound-btn svg path {
    fill: rgba(255, 255, 255, 0.2);
    transition: 0.3s ease-out all;
}

.sound-btn:hover svg path {
    fill: rgba(255, 255, 255, 0.8);
}

.sound-btn.active svg path {
    fill: white;
}

.sound-btn svg {
    width: 23px;
    height: 23px;
}

.baccarat-table {
    display: grid;
    grid-template-columns: 10fr 25fr 10fr;
    grid-template-rows: repeat(4, 150px);
    grid-template-areas:
      "player main banker"
      "player main banker"
      "tie main ppbp"
      "tie main ppbp";
    border: 1px solid black;
    overflow-y: hidden;
}

.baccarat-table .game-main {
    grid-area: main;
    background: linear-gradient(45deg, #196b5c, #2a5d58);
    display: grid;
    grid-template-rows: 55px auto 55px;
}

.baccarat-table .game-main .baccarat-header,
.baccarat-table .game-main .baccarat-footer {
    padding: 0 15px;
    color: white;
    background-color: #2F4652FF;
}

.baccarat-table .game-main .baccarat-header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 2;
}

.baccarat-table .game-main .baccarat-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.baccarat-table .batting-list {
    display: flex;
    flex-direction: column;
    justify-content: stretch;
}

.baccarat-table .batting-list .batting-title,
.baccarat-table .batting-list .batting-total-point {
    text-align: center;
}

.baccarat-table .batting-list .batting-member {
    flex-grow: 1;
    overflow-y: auto;
    padding: 5px;
    box-shadow: inset 0 0 8px rgba(0, 0, 0, .4);
}

.baccarat-table .batting-list .batting-member .batting-members > li{
    display: flex;
    justify-content: space-between;
}

.baccarat-table .batting-list .batting-member .batting-members .member-name {
    display: inline-block;
    text-align: left;
}

.baccarat-table .batting-list .batting-member .batting-members .member-batting-point {
    display: inline-block;
    text-align: right;
}

.baccarat-table .batting-list.player {
    grid-area: player;
    font-weight: bolder;
}

.baccarat-table .batting-list.player .batting-title {
    background: linear-gradient(45deg, #2980b9, #0f4961);
    color: #fff;
}

.baccarat-table .batting-list.tie {
    grid-area: tie;
    font-weight: bolder;
}

.baccarat-table .batting-list.tie .batting-title {
    background: linear-gradient(45deg, #2db400, #195f00);
    color: #fff;
}

.baccarat-table .batting-list.banker {
    grid-area: banker;
    font-weight: bolder;
}

.baccarat-table .batting-list.banker .batting-title {
    background: linear-gradient(225deg, #bd2130, #7f0713);
    color: #fff;
}

.baccarat-table .batting-list.ppbp {
    grid-area: ppbp;
    font-weight: bolder;
}

.baccarat-table .batting-list.ppbp .batting-title {
    background: linear-gradient(225deg, #6f6f6f, #222222);
    color: #fff;
}

.baccarat-table .batting-list .batting-total-point {
    background-color: gainsboro;
}

.baccarat-table .card {
    display: inline-block;
    padding: 2px;
    width: 100px;
    border-radius: 3px;
    box-shadow: 0 0 2px rgba(0, 0, 0, .1);

    transition: 0.7s ease-out;
    transform-style: preserve-3d;
    transform: rotateY(0deg);
}

.baccarat-table .card:hover {
    transform: rotateY(180deg);
}

.baccarat-game-table {
    position: relative;
    display: grid;
    grid-template-rows: 8fr 10fr;
    justify-content: center;
    align-items: center;
    perspective: 1500px;
}

.baccarat-game-table .next-game-info {
    position: relative;
    color: whitesmoke;
    text-align: center;
    padding: 20px 40px;
    margin: 0 30px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, .5);
    background-color: rgba(40, 6, 6, 0.7);
}

.baccarat-game-table .next-game-info {
    animation: fadeInNextGameInfo 0.6s forwards;
    animation-timing-function: cubic-bezier(0, 0.7, 1, 1);
}

.baccarat-game-table .next-game-info.fade-out {
    animation: fadeOutNextGameInfo 0.6s forwards;
    animation-timing-function: cubic-bezier(0, 0.7, 1, 1);
}

.baccarat-game-table .game-result {
    position: absolute;
    text-align: center;
    z-index: 10;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    animation: fadeInGameResult 0.6s forwards;
}

@keyframes fadeInGameResult {
    0% {
        opacity: 0;
        display: none;
    }

    100% {
        opacity: 1;
    }
}

.game-result .player-game-result {
    position: absolute;
    width: 100%;
    text-align: center;
    left: 50%;
    top: 150px;
    transform: translate(-50%, -50%);
    color: whitesmoke;
    font-size: 2rem;
    font-weight: bolder;
    text-shadow: 0 0 10px rgba(0, 0, 0, .5);
}

.game-result .banker-game-result {
    position: absolute;
    width: 100%;
    text-align: center;
    left: 50%;
    top: calc(100% - 35px - 240px);
    transform: translate(-50%, -50%);
    color: whitesmoke;
    font-size: 2rem;
    font-weight: bolder;
    text-shadow: 0 0 10px rgba(0, 0, 0, .5);
}

.game-result .win-game-result {
    position: absolute;
    width: 100%;
    text-align: center;
    left: 50%;
    top: calc(50% + 90px);
    transform: translate(-50%, -50%);
    color: whitesmoke;
    font-size: 3rem;
    font-style: italic;
    font-weight: bolder;
    text-shadow: 0 0 10px rgba(0, 0, 0, .5);
}

.game-result .point-result {
    position: absolute;
    width: 100%;
    text-align: center;
    left: 50%;
    top: calc(50% + 170px);
    transform: translate(-50%, -50%);
    color: whitesmoke;
    font-style: italic;
    font-size: 2.5rem;
    font-weight: bolder;
    text-shadow: 2px 2px 5px rgb(118, 0, 0);
}

@keyframes fadeInNextGameInfo {
    0% {
        opacity: 0;
        transform: translateY(-25px);
        display: none;
    }

    100% {
        opacity: 1;
    }
}

@keyframes fadeOutNextGameInfo {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: translateY(-25px);
        display: none;
    }
}

.baccarat-game-table .need-login-block {
    font-size: 1.3rem;
    font-weight: bold;
    padding: 15px 40px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, .5);
    background-color: #222222;
    text-align: center;
    color: whitesmoke;
}

.batting-table {
    padding: 15px;
    height: 100%;
}

.batting-table,
.need-login-block {
    animation: fadeInBattingTable 0.6s forwards;
    animation-timing-function: cubic-bezier(0, 0.7, 1, 1);
}

.batting-table.fade-out,
.need-login-block.fade-out{
    animation: fadeOutBattingTable 0.6s forwards;
    animation-timing-function: cubic-bezier(0, 0.7, 1, 1);
}

@keyframes fadeInBattingTable {
    0% {
        opacity: 0;
        transform: translateY(25px);
        display: none;
    }

    100% {
        opacity: 1;
    }
}

@keyframes fadeOutBattingTable {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: translateY(25px);
        display: none;
    }
}

.batting-table .batting-reset {
    height: 25px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    margin-bottom: 10px;
}

.batting-table .batting-reset-btn {
    visibility: hidden;
    border-radius: 5px;
    font-size: 1rem;
    color: whitesmoke;
    border: 1px solid #380000;
    margin: 0 1px;
    background-color: rgba(0, 0, 0, 0.8);
    font-weight: bolder;
    text-align: center;
    cursor: pointer;
    user-select: none;
    transition: 0.3s ease-out background-color;
}

.batting-table .batting-reset-btn.active {
    visibility: unset;
}

.batting-table .batting-reset-btn:hover {
    background-color: #380000;
}

.batting-table .batting-table-list {
    height: 75px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
}

.batting-table .batting-table-list .batting-item {
    font-size: 1rem;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-direction: column;
    padding: 4px;
    border-right: 1px solid seashell;
    border-top: 1px solid seashell;
    border-bottom: 1px solid seashell;
    color: seashell;
    font-weight: bolder;
    cursor: pointer;
    user-select: none;

    transition: 0.3s ease-out;
}

.batting-table .batting-table-list .batting-item span {
    /*font-size: 0.9rem;*/
    text-align: center;
}

.batting-table .batting-table-list .batting-item:hover {
    background-color: #380000;
    color: white;
}

.batting-table .batting-table-list .batting-item:first-child {
    border-radius: 5px 0 0 5px;
    border-left: 1px solid seashell;
    border-top: 1px solid seashell;
    border-bottom: 1px solid seashell;
}

.batting-table .batting-table-list .batting-item:last-child {
    border-radius: 0 5px 5px 0;
    border-right: 1px solid seashell;
    border-top: 1px solid seashell;
    border-bottom: 1px solid seashell;
}

.batting-table .batting-table-list .batting-item.active {
    font-weight: bolder;
    background-color: #130000;
    color: white;
}
.batting-table .batting-table-list .batting-item.batted {
    background-color: #800000;
    color: white;
    cursor: not-allowed;
}

.batting-table .batting-table-button {
    height: 60px;
    padding: 10px 0;
    display: flex;
    justify-content: space-between;
}

.batting-table .batting-table-button .batting-point-info {
    width: 45%;
    border: 1px solid #380000;
    background-color: #380000;
    border-radius: 5px;
    color: whitesmoke;
    display: flex;
    justify-content: center;
    align-items: center;
}

.batting-table .batting-table-button .batting-point-info .batting-point {
    font-size: 1.5rem;
    font-weight: bolder;
}

.batting-table .batting-table-button button {
    width: 17%;
    border-radius: 5px;
    font-size: 0.8rem;
    color: whitesmoke;
    border: 2px solid #380000;
    background-color: #222222;
    font-weight: bolder;
    cursor: pointer;
    user-select: none;
}

.batting-table .batting-table-chip {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    place-items: center;

}


.chip {
    position: relative;
    height: 60px;
    width: 60px;
    border-radius: 50%;
    border: 5px dashed white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: 'Lato', sans-serif;
    font-size: 26px;
    background-color: red;
    transition: 0.5s ease-out;
    transition-property: transform;
    user-select: none;
    box-shadow: 0 0 10px rgba(0, 0, 0, .5);
}

.chip span {
    background-color: red;
    position: absolute;
    font-size: 1rem;
    border: 3px dashed white;
    height: 47px;
    width: 47px;
    border-radius: 50%;
    text-align: center;
    line-height: 43px;
    font-weight: bolder;
}

.chip.red,
.chip.red span {
    background: linear-gradient(45deg, #e10000, #ff7300);
}

.chip.blue,
.chip.blue span {
    background: linear-gradient(45deg, #0000ff, #0000b2);
}


.chip.green,
.chip.green span {
    background: linear-gradient(45deg, #005a00, #008e00);
}

.chip.yellow,
.chip.yellow span {
    background: linear-gradient(45deg, #6a6a00, #8d8d00);
}

.chip.purple,
.chip.purple span {
    background: linear-gradient(45deg, #a500a5, #6a006a);
}

.chip.orange,
.chip.orange span {
    background: linear-gradient(45deg, #ff7300, #ff7300);
}

.chip:hover {
    transform: scale(1.3);
    cursor: pointer;
}

/*.baccarat-game-table .baccarat-player-cards {*/
/*    width: 100%;*/
/*    position: relative;*/
/*}*/

/*.baccarat-game-table .baccarat-banker-cards {*/
/*    width: 100%;*/
/*    position: relative;*/
/*}*/

.baccarat-card {
    position: absolute;
    /*top: 0px;*/
    top: -150px;
    left: calc(50% - 90px / 2);
    width: 90px;
    transform-style: preserve-3d;
    transition: 0.7s;
}

.baccarat-card img {
    position: absolute;
    width: 100%;
    backface-visibility: hidden;
}

/* 뒷면 */
.baccarat-card img:first-child {
    transform: rotateY(180deg);
}

.baccarat-card.p1 {
    animation: p1Draw 0.6s forwards;
    animation-timing-function: cubic-bezier(0, 0.7, 1, 1);
}

.baccarat-card.p1.open-card {
    animation: p1Open 0.6s forwards;
    animation-timing-function: cubic-bezier(0, 0.7, 1, 1);
}

.baccarat-card.p2 {
    animation: p2Draw 0.6s forwards;
    animation-timing-function: cubic-bezier(0, 0.7, 1, 1);
    animation-delay: 0.3s;
}

.baccarat-card.p2.open-card {
    animation: p2Open 0.6s forwards;
    animation-timing-function: cubic-bezier(0, 0.7, 1, 1);
}

.baccarat-card.p3 {
    animation: p3Draw 0.6s forwards;
    animation-timing-function: cubic-bezier(0, 0.7, 1, 1);
}

.baccarat-card.p3.open-card {
    animation: p3Open 0.6s forwards;
    animation-timing-function: cubic-bezier(0, 0.7, 1, 1);
}

.baccarat-card.b1 {
    animation: b1Draw 0.6s forwards;
    animation-timing-function: cubic-bezier(0, 0.7, 1, 1);
    animation-delay: 0.6s;
}

.baccarat-card.b1.open-card {
    animation: b1Open 0.6s forwards;
    animation-timing-function: cubic-bezier(0, 0.7, 1, 1);
}

.baccarat-card.b2 {
    animation: b2Draw 0.6s forwards;
    animation-timing-function: cubic-bezier(0, 0.7, 1, 1);
    animation-delay: 0.9s;
}

.baccarat-card.b2.open-card {
    animation: b2Open 0.6s forwards;
    animation-timing-function: cubic-bezier(0, 0.7, 1, 1);
}

.baccarat-card.b3 {
    animation: b3Draw 0.6s forwards;
    animation-timing-function: cubic-bezier(0, 0.7, 1, 1);
}

.baccarat-card.b3.open-card {
    animation: b3Open 0.6s forwards;
    animation-timing-function: cubic-bezier(0, 0.7, 1, 1);
}

@keyframes p1Draw {
    0% {
        left: calc(50% - 90px / 2);
    }

    100% {
        top: 60px;
        left: calc(20% - 90px / 2);
    }
}

@keyframes p1Open {
    0% {
        top: 60px;
        left: calc(20% - 90px / 2);
    }

    100% {
        top: 60px;
        left: calc(20% - 90px / 2);
        transform: rotateY(180deg);
    }
}

@keyframes p2Draw {
    0% {
        left: calc(50% - 90px / 2);
    }

    100% {
        top: 60px;
        left: calc(50% - 90px / 2);
    }
}

@keyframes p2Open {
    0% {
        top: 60px;
        left: calc(50% - 90px / 2);
    }

    100% {
        top: 60px;
        left: calc(50% - 90px / 2);
        transform: rotateY(180deg);
    }
}

@keyframes p3Draw {
    0% {
        left: calc(50% - 90px / 2);
    }

    100% {
        top: 60px;
        left: calc(80% - 90px / 2);
    }
}

@keyframes p3Open {
    0% {
        top: 60px;
        left: calc(80% - 90px / 2);
    }

    100% {
        top: 60px;
        left: calc(80% - 90px / 2);
        transform: rotateY(180deg);
    }
}

@keyframes b1Draw {
    0% {
        left: calc(50% - 90px / 2);
    }

    100% {
        top: calc(100% - 35px - 200px);
        left: calc(20% - 90px / 2);
    }
}

@keyframes b1Open {
    0% {
        top: calc(100% - 35px - 200px);
        left: calc(20% - 90px / 2);
    }

    100% {
        top: calc(100% - 35px - 200px);
        left: calc(20% - 90px / 2);
        transform: rotateY(180deg);
    }
}

@keyframes b2Draw {
    0% {
        left: calc(50% - 90px / 2);
    }

    100% {
        top: calc(100% - 35px - 200px);
        left: calc(50% - 90px / 2);
    }
}

@keyframes b2Open {
    0% {
        top: calc(100% - 35px - 200px);
        left: calc(50% - 90px / 2);
    }

    100% {
        top: calc(100% - 35px - 200px);
        left: calc(50% - 90px / 2);
        transform: rotateY(180deg);
    }
}

@keyframes b3Draw {
    0% {
        left: calc(50% - 90px / 2);
    }

    100% {
        top: calc(100% - 35px - 200px);
        left: calc(80% - 90px / 2);
    }
}

@keyframes b3Open {
    0% {
        top: calc(100% - 35px - 200px);
        left: calc(80% - 90px / 2);
    }

    100% {
        top: calc(100% - 35px - 200px);
        left: calc(80% - 90px / 2);
        transform: rotateY(180deg);
    }
}

.baccarat-game-table .text {
    position: absolute;
    width: 100%;
    color: #dedede;
    font-size: 1.7rem;
    text-align: center;
    font-style: italic;
    font-weight: bolder;
    text-shadow: 0 0 10px rgba(0, 0, 0, .5);
}

.baccarat-game-table .player-text {
    top: 15px;
}

.baccarat-game-table .banker-text {
    top: calc(100% - 280px);
}

.baccarat-game-table .draw-progress {
    width: 100%;
    text-align: center;
    position: absolute;
    top: calc(100% - 70px);
    color: #dedede;
}

.baccarat-game-table .draw-progress progress {
    background-color: rgba(255, 255, 255, 0);
    width: 80%;
}

.baccarat-game-table .draw-progress progress::-webkit-progress-bar {
    background-color: rgba(255, 255, 255, 0.2);
}

.baccarat-game-table .draw-progress progress::-webkit-progress-value {
    background: linear-gradient(45deg, #5e009b, #5f00ac);
}


.baccarat-chart {
}

.baccarat-chart .view .info {
    display: flex;
    /*justify-content: space-between;*/
    align-items: center;
    padding: 0 15px;
    height: 65px;
    background: linear-gradient(45deg, #0d3a32, #183532);
    color: whitesmoke;
    font-weight: bolder;
}

.baccarat-chart .view .info li {
    margin: 0 10px;
}

.baccarat-chart .chart-total {
    margin: 0 15px;
}

.baccarat-chart {
    /*border: 1px solid #727272*/
}

.baccarat-chart .view .info {
    /*margin-top: 10px;*/
    height: 51px;
    margin-bottom: 0;
    list-style: none;
    padding: 0;
}

.baccarat-chart .view .info li {
    float: left;
    line-height: 27px
}

.baccarat-chart .view .info .ic {
    float: left;
    margin: 0 10px 0 20px;
    width: 27px;
    height: 27px;
    text-align: center;
    border-radius: 16px;
    color: #fff
}

.baccarat-chart .view .info .tx {
    float: left;
    padding: 0;
    margin: 0
}

.baccarat-chart .view .info .player .ic {
    background-color: #3498db
}

.baccarat-chart .view .info .banker .ic {
    background-color: #e74c3c
}

.baccarat-chart .view .info .tie .ic {
    background-color: #44b517
}

.baccarat-chart .view .info .left4odd .ic {
    background-color: #3498db
}

.baccarat-chart .view .info .right3odd .ic {
    background-color: #2980b9
}

.baccarat-chart .view .info .left3even .ic {
    background-color: #e74c3c
}

.baccarat-chart .view .info .right4even .ic {
    background-color: #c0392b
}

.baccarat-chart .view .info .x .ic {
    background-color: #7b7b7b
}

.baccarat-chart .view .info .etc {
    float: right;
    padding-right: 20px
}

.baccarat-chart .view .box_area {
    position: relative;
    margin-top: -1px;
    width: 100%;
    overflow: hidden;
    overflow-x: scroll;
    border-top: 1px solid #d6d6d6
}

.baccarat-chart .view .inner {
    padding-bottom: 68px;
    position: relative;
    white-space: nowrap;
    overflow-x: scroll;
    overflow-y: hidden;
    font-size: 0;
    border: 1px solid #d6d6d6;
    background: #efefef;
}

.baccarat-chart .view:after {
    display: block;
    clear: both;
    content: ''
}

.baccarat-chart .view dl {
    display: inline-block;
    vertical-align: top;
    margin-bottom: 0
}

.baccarat-chart .view dl .length {
    position: absolute;
    bottom: 34px;
    background-color: #ececec;
    border-right: 1px solid #bebebe;
    border-top: 1px solid #bebebe;
}

.baccarat-chart .view dl .times {
    position: absolute;
    bottom: 0;
    background-color: #ececec;
    border-right: 1px solid #bebebe;
    border-top: 1px solid #bebebe;
}

.baccarat-chart .view dt,.baccarat-chart .view dd {
    width: 34px;
    height: 34px;
    line-height: 34px;
    padding: 0 1px 1px 0;
    text-align: center;
    font-size: 12px;
}

.baccarat-chart .view dt {
    position: relative;
    z-index: 1;
    background-color: #ffffff;
    border-right: 1px solid #bebebe;
    border-bottom: 1px solid #bebebe;
}

.baccarat-chart .view dt.p {
    color: #2980b9
}

.baccarat-chart .view dt.b {
    color: #c0392b
}

.baccarat-chart .view dt.TIE {
    color: #44b517
}

.baccarat-chart .view dd span {
    position: relative;
    display: inline-block;
    margin-top: 3px;
    width: 27px;
    height: 27px;
    line-height: 27px;
    border-radius: 16px;
    font-size: 9px;
    color: #fff;
    font-family: sans-serif
}

.baccarat-chart .view dd span.p {
    background-color: #3498db
}

.baccarat-chart .view dd span.b {
    background-color: #e74c3c;
    border-radius: 16px
}

.baccarat-chart .view dd span.t {
    background-color: #44b517;
    border-radius: 16px
}

#baccarat-rule-dialog:modal {
    width: 50vw;
    min-height: 500px;
    max-height: 70vh;
    border: 1px solid #2c0707;
    transition: opacity 0.4s ease-out;
    transition-property: opacity, transform;
}

#baccarat-rule-dialog:modal[open] {
    opacity: 1;
    /*transform: translateY(0);*/
}

@starting-style {
    #baccarat-rule-dialog:modal[open] {
        opacity: 0;
        transform: translateY(30px);
    }
}

::backdrop {
    background-color: rgba(0, 0, 0, 0.6);
    transition: opacity 0.4s ease-out;
    transition-property: opacity;
}

#baccarat-rule-dialog .close-dialog {

}

.baccarat-rule-container {
    display: grid;
    grid-template-rows: 70px 1fr;
}

.baccarat-rule-container .baccarat-rule-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #ffffff;
    font-weight: bolder;
}

.baccarat-rule-container .baccarat-rule-content h5 {
    margin-top: 40px;
    margin-bottom: 10px;
}

.baccarat-rule-container .baccarat-rule-content table {
    width: 100%;
    border-collapse: collapse;
}

.baccarat-rule-container .baccarat-rule-content table th,
.baccarat-rule-container .baccarat-rule-content table td {
    border: 1px solid #000000;
    padding: 5px;
    font-size: 0.9rem;
}

.bac-btn {
    display: inline-block;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 1rem;
    color: whitesmoke;
    border: 1px solid #0c0c0c;
    background-color: #202020;
    font-weight: bolder;
    cursor: pointer;
    outline: none;
}

.bac-btn.white {
    background-color: #ffffff;
    color: #0c0c0c;
}


@media screen and (max-width: 1024px) {
    .baccarat-table {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 600px 250px 250px;
        grid-template-areas:
          "main main"
          "player banker"
          "tie ppbp";
    }

    .baccarat-table .batting-list.player {
        border-right: 1px solid black;
    }

    .baccarat-table .batting-list.tie {
        border-right: 1px solid black;
    }

    .baccarat-chart .view .info {
        height: 80px;
        justify-content: space-around;
    }

    .baccarat-chart .view .info li {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .baccarat-chart .view .info .ic {
        margin: 0;
    }

    #baccarat-rule-dialog:modal {
        width: 90vw;
        min-height: 500px;
        max-height: 90vh;
        border: 1px solid #2c0707;
        transition: opacity 0.4s ease-out;
        transition-property: opacity, transform;
    }
}