.poker {
    display: grid;
    grid-gap: .75rem;
    margin-bottom: .5rem
}

.poker__banner {
    display: block;
    height: 60px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    width: calc(100% + 1rem);
    transform: translateX(-.5rem)
}

.poker__banner img {
    display: block;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

.poker__banner:last-child {
    margin-top: .75rem
}

.poker__username {
    display: flex;
    align-items: center;
    padding: .5rem;
    border-radius: 2px;
    background-color: #0d047a
}

.poker__username h5 {
    pointer-events: none
}

.poker__username>i {
    margin-right: .5rem
}

.poker__username span {
    margin-left: .5rem;
    font-size: .875rem;
    font-weight: 500
}

.poker__username .poker__username__btn-copy {
    padding: 0 .5rem;
    margin-left: auto
}

.poker__username .poker__username__btn-copy i {
    margin-left: .25rem
}

.poker__grid {
    display: grid;
    grid-gap: .75rem;
    align-items: start;
    grid-auto-flow: dense;
    grid-auto-rows: 1fr;
    grid-template-columns: repeat(2,minmax(0,1fr))
}

.poker__actions {
    grid-row: 4/5;
    display: grid;
    grid-gap: .75rem;
    justify-content: center;
    grid-template-columns: repeat(2,minmax(0,1fr))
}

.poker__game {
    position: relative;
    height: 0;
    overflow: hidden;
    border-radius: 5px;
    background-color: #110142;
    padding-bottom: 50%
}

.poker__game img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain
}
.poker__game amp-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain
}

.poker__game--maintenance {
    color: hsla(0,0%,100%,.38)
}

.poker__game span {
    display: none
}

.poker .poker__game--exclusive {
    height: 100%;
    grid-row: 1/3;
    grid-column: 2/3
}

.poker .poker__game-placeholder img {
    padding-bottom: 1rem
}
.poker .poker__game-placeholder amp-img {
    padding-bottom: 1rem
}

.poker .poker__game-placeholder span {
    position: absolute;
    display: block;
    left: 50%;
    bottom: .25rem;
    font-weight: 700;
    font-size: .75rem;
    transform: translateX(-50%);
    white-space: nowrap
}

.poker__maintenance {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    padding: .5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #0d047a;
    border-bottom-right-radius: 5px
}

.poker__maintenance i {
    color: #fdd835
}

.poker--d {
    margin: .5rem 0 1rem
}

.poker--d .poker__banner {
    width: auto;
    height: auto;
    transform: unset;
    overflow: hidden;
    border-radius: 5px
}

.poker--d .poker__banner img {
    width: 100%;
    height: auto;
    -o-object-fit: unset;
    object-fit: unset
}

.poker--d .poker__banner amp-img {
    width: 100%;
    height: auto;
    -o-object-fit: unset;
    object-fit: unset
}

.poker--d .poker__actions,.poker--d .poker__grid {
    grid-gap: 1rem;
    grid-template-columns: repeat(6,minmax(0,1fr))
}

.poker--d .poker__actions a,.poker--d .poker__actions button {
    grid-column: span 2
}

.poker--d .poker__actions :first-child {
    grid-column: 2/4
}

.poker--d .poker__game {
    cursor: pointer
}

.poker--d .poker__game--exclusive {
    grid-row: 1/4;
    grid-column: 4/7
}

.poker--d .poker__game--exclusive img {
    -o-object-fit: cover;
    object-fit: cover
}

.poker--d .poker__game--exclusive amp-img {
    -o-object-fit: cover;
    object-fit: cover
}

.poker--d .poker__username__btn-copy {
    margin-left: 1rem;
    padding: 0 1rem
}