
.coinflip-games {
    position: relative;
    width: 100%;
    cursor: default;
    display: flex;
    min-height: 510px;
}

.coinflip-games .actives {
    position: relative;
    height: 100%;
    width: 100%;
}

.scroll {
    height: 100%;
    overflow: auto;
}

.btn-join{
    background: var(--green);
    font-weight: 500;
    font-size: 14px;
    border-radius: 15px;
    padding: 12px 36px;
    outline: none;
    border: none;
}

.game-coin {
    flex-wrap: wrap;
    display: flex;
    width: calc(50% - 24px);
    float: left;
    margin-bottom: 15px;
    background: var(--background-navbar);
    border-radius: 15px;
    overflow: hidden;
    text-shadow: -7px 3px 1em rgba(0, 0, 0, 0.1);
    transition: 0.3s ease-in-out;
    background-repeat: no-repeat;
    background-position: right top;
    background-size: cover;
}

.game-coin:nth-child(even){
    margin-left: 24px;
}

.game-coin .top {
    width: 100%;
    display: flex;
    justify-content: space-between;
    min-height: 160px;
}

.game-coin .top .left, .game-coin .top .right {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 45%;
    background: var(--background-message);
    margin: 20px;
    border-radius: 15px;
}

.game-coin .top .left .players, .game-coin .top .right .players {
    width: 100%;
    /* padding: 10px; */
    display: flex;
    justify-content: center;
}

.game-coin .top .left .user, .game-coin .top .right .user {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.game-coin .top .right .user .title{
    color: #fff;
    opacity: 0.3;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    font-size: 12px;
    margin-top: 28px;
    margin-bottom: 12px;
}

.game-coin .top .right .user .bank{
    color: var(--main-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    font-size: 14px;
}

.game-coin .top .right .user .bank img{
    margin-right: 6px;
}

.game-coin .top .left .block h4, .game-coin .top .right .block h4 {
    padding-right: 15px;
    font-size: 12px;
}

.game-coin .top .left .user .ava, .game-coin .top .right .user .ava {
    width: 58px;
    height: 58px;
    display: inline-block;
    cursor: pointer;
    margin-bottom: 12px;
    border-radius: 15px;
    overflow: hidden;
    margin-top: 20px;
}

.game-coin .top .left .user .ava img, .game-coin .top .right .user .ava img {
    display: block;
    width: 100%;
    height: 100%;
}

.game-coin .top .left .user .info, .game-coin .top .right .user .info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.game-coin .top .left .user .info .name, .game-coin .top .right .user .info .name {
    color: #fff;
    font-weight: 500;
    font-size: 12px;
    opacity: 0.3;
    margin-bottom: 12px;
    cursor: pointer;
    -webkit-transition: all .3s;
    transition: all .3s;
    text-overflow: ellipsis;
    width: 80px;
    white-space: nowrap;
    overflow: hidden;
}

.game-coin .top .left .user .info .name:hover, .game-coin .top .right .user .info .name:hover {
    color: #fff!important;
}

.game-coin .top .left .user .info p svg, .game-coin .top .right .user .info p svg {
    margin-left: 2px;
    color: #5e6a7f;
}

.game-coin .top .left .user .info p, .game-coin .top .right .user .info p {
    font-size: 12px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 20px;
}

.game-coin .top .left .user .info p, .game-coin .top .right .user .info p{
    font-size: 14px;
    color: var(--main-color);
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
}

.game-coin .top .left .user .info p img, .game-coin .top .right .user .info p img{
    margin-right: 6px;
}

.game-coin .top .center {
    width: 77px;
    position: relative;
    display: flex;
    justify-content: center;
}

.game-coin .center .fixed-height {
    height: 2000px;
    position: absolute;
    top: -1802px;
}

.game-coin .center .slider {
    width: 52px;
    height: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
}

.game-coin .center::before{
    content: "";
    position: absolute;
    top: -20px;
    left: -25%;
    width: 150%;
    height: 45px;
    background: var(--background-navbar);
    filter: blur(14px);
    z-index: 11;
}

.game-coin .center::after{
    content: "";
    position: absolute;
    bottom: -20px;
    left: -25%;
    width: 150%;
    height: 45px;
    background: var(--background-navbar);
    filter: blur(14px);
    z-index: 11;
}

.game-coin .center .title{
    background: var(--main-color-10);
    color: var(--main-color);
    font-size: 12px;
    font-weight: 500;
    padding: 7px 14px;
    border-radius: 15px;
    height: max-content;
    margin-top: 20px;
    z-index: 1000;
}

.game-coin .center .vs {
    height: 45px;
    width: 45px;
    position: absolute;
    border-radius: 50%;
    top: calc(50% - 22.5px);
    left: calc(50% - 22.5px);
    z-index: 2;
    font-weight: 700;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 25px;
}

.game-coin .center .slider ul {
    height: 2000px;
    width: 45px;
}

.game-coin .center .slider ul li {
    list-style-type: none;
    float: left;
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 4px 0;
    border-radius: 15px;
    overflow: hidden;
    transition: .3s ease-in-out;
}

.game-coin .center .slider ul li img {
    width: 100%;
    height: 100%;
    border-radius: 3px;
}

.game-coin .center .slider ul li.winner {
    opacity: 1 !important;
}

.game-coin .bottom {
    width: 100%;
    background: #2d281c;
    position: relative;
    padding: 5px 0;
    min-height: 80px;
}

.game-coin .bottom .ticket {
    
}

.game-coin .bottom .block {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.game-coin .bottom .block .type {
    color: #898886;
    font-weight: 600;
}

.game-coin .bottom .block .bank, .game-coin .bottom .block .ticket {
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 25px;
}

.coinflip-games .scroll::-webkit-scrollbar-track {
    background: var(--background);
    border-radius: 15px;
}

.coinflip-games .scroll::-webkit-scrollbar-thumb {
    background: var(--background-navbar);
    border-radius: 15px;
}

.coinflip-games .scroll::-webkit-resizer {
    width: 1px;
}

.coinflip-games .scroll::-webkit-scrollbar {
    width: 1px;
}

.explode {-webkit-animation: explode 1s ease-out infinite;animation: explode 1s ease-out infinite;}

@media screen and (max-width: 1280px) {
    .progress-item {
        font-size:10px;
    }
    .coinflip-games {
        flex-direction: column;
    }
}

@media screen and (max-width: 340px) {
	.game-coin .top .left .user .info .name, .game-coin .top .right .user .info .name {
		max-width: 80px;
	}
}

@-webkit-keyframes explode {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes explode {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}


.progress-item {
    display: flex;
    align-items: center;
    flex-direction: row;
    color: #898886;
    padding: 8px 5px;
    -webkit-transition: all .3s;
    transition: all .3s;
    pointer-events: none;
}

.progress-item.left {
    border-radius: 0 0 15px 15px;
}

.progress-item .title {
    margin: 0 10px;
}
@media (max-width: 500px) {
	.game-stats .btn {
		padding: 2px;
	}
    .game-stats .table tr td:nth-child(1), .game-stats .table tr td:nth-child(1), .game-stats .table tr td:nth-child(2), .game-stats .table tr td:nth-child(2), .game-stats .table tr td:nth-child(5), .game-stats .table tr td:nth-child(5) {
        display: none;
    }
    .game-stats .table-heading .th:nth-child(1), .game-stats .table-heading .th:nth-child(1), .game-stats .table-heading .th:nth-child(2), .game-stats .table-heading .th:nth-child(2), .game-stats .table-heading .th:nth-child(5), .game-stats .table-heading .th:nth-child(5) {
        display: none;
    }
}

.center .arrows{
    position: absolute;
    top: calc(50% - 8px);
    z-index: 999;
} 

.center .arrows .left-arrow{
    transform: rotate(90deg);
    position: absolute;
    left: calc(-32px - 7px);
    width: 14px;
    opacity: 0;
    transition: .3s ease-in-out;
} 

.center .arrows .right-arrow{
    transform: rotate(-90deg);
    position: absolute;
    right: calc(-32px - 7px);
    width: 14px;
    opacity: 0;
    transition: .3s ease-in-out;
} 

@font-face { 
font-family: "Halvar Breitschrift"; 
src: url("/fonts/HalvarBreit-Bd.ttf") format("truetype"); 
} 