

@keyframes loader{
  from {
    transform: rotate(360deg);
  }
}

.slider {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.game-section{
    display: flex;
}

.slider:before{
    content: "" ;
    height: 100%;
    width: 20px;
    position: absolute;
    background: var(--background-navbar);
    filter: blur(14px);
    left: 0;
    top: 0;
    z-index: 999;
}

.slider:after{
    content: "" ;
    height: 100%;
    width: 20px;
    position: absolute;
    background: var(--background-navbar);
    filter: blur(20px);
    right: 0;
    top: 0;
    z-index: 999;
}

.slider .carousel .fixed-width {
    width: 1882px;
    position: absolute;
    left: 50%;
    margin-left: -941px;
}

.slider .arrow {
    transition: all .2s ease;
    position: absolute;
    transform: rotate(-180deg);
    z-index: 2;
    left: calc(50% - 12px);
}

.slider .carousel {
    position: relative;
    z-index: 1;
    overflow: hidden;
    width: 100%;
    height: 72px;
}

.slider .carousel .scroll {
    width: 9999px;
    position: relative;
}

.slider .carousel .user {
    width: 72px;
    height: 72px;
    display: inline-block;
    position: relative;
    margin: 0 2px;
	transition: .5s;
}

.slider .carousel .user .summ {
    text-align: center;
    height: 60px;
}

.slider .carousel .user .summ b {
    padding-top: 10px;
    display: inline-block;
}

.slider .carousel .user .summ p {
    font-size: 12px;
    color: #fff;
    position: absolute;
    bottom: 0;
    text-align: center;
    width: 100%;
    height: 25px;
    background: #545c73;
    border-radius: 0px 0px 5px 5px;
    line-height: 25px;
    cursor: default;
}

.slider .carousel .user .image {
    width: 100%;
    height: 100%;
    border-radius: 5px;
}

.slider .carousel .user .color {
    position: absolute;
    bottom: 0;
    width: 100%;
    box-shadow: 0px 0px 1em rgba(0, 0, 0, 0.2);
    border-radius: 0px 0px 5px 5px;
}

.jackpot-hits {
    padding: 0 35px; 
}

.info-block{
    background: var(--background-navbar);
    border-radius: 15px;
    height: 100%;
}

.jackpot-hits .items-6 .item {
    width: calc(16.66% - 15px)
}

.jackpot-hits .items-5 .item {
    width: calc(20% - 15px)
}

.jackpot-hits .items-1 .item,.jackpot-hits .items-2 .item,.jackpot-hits .items-3 .item,.jackpot-hits .items-4 .item {
    width: calc(25% - 15px)
}

.jackpot-hits .item {
    color: var(--text);
    z-index: 2;
    -webkit-transition: all .3s;
    transition: all .3s;
    white-space: nowrap;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin: 0 5px;
    cursor: pointer;
    position: relative;
    background: var(--light-bg);
    width: 100px;
    border-radius: 15px;
    padding: 22px 0;
    padding-bottom: 13px;
}

.jackpot-hits .item .user {
    width: 66px;
    height: 66px;
    cursor: pointer;
    transition: all .3s ease-in-out;
    overflow: hidden;
    position: relative;
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.jackpot-hits .item .user img {
    border-radius: 15px;
    display: block;
    width: 100%;
}

.jackpot-hits .item .hit {
    font-size: 14px;
    font-weight: 700;
    margin: 2px;
}

.jackpot-hits .item.current {
    color: #fff;
    background: #62ca5b;
    border-color: #62ca5b
}

@media (max-width: 820px) {
    .jackpot-hits {
        padding:10px 30px
    }
}

@media (max-width: 820px) {
    .jackpot-hits .item .hit {
        font-size: 10px;
    }
}

.circle {
    text-align: center;
    height: 400px;
    width: 400px;
    display: block;
    position: relative;
    margin: 20px 0;
}

.fix-circle {
    position: relative;
    z-index: 2;
    /* transform: rotateY(-180deg); */
}

.circle_jackpot {
    max-width: 400px;
    max-height: 400px;
    margin: 0 auto;
    display: block;
    width: 400px;
    height: 400px;
    transition: all 0 ease 0;
    transform: rotate(0deg)
}

.time .spinner {
    position: absolute;
    left: 0;
    right: 0;
    top: 0px;
    z-index: 10;
    bottom: 0;
    display: block;
    margin: auto;
    width: 0px;
    -webkit-transition: -webkit-transform 4s cubic-bezier(0.1, 0.3, 0, 1);
    transition: -webkit-transform 4s cubic-bezier(0.1, 0.3, 0, 1);
    -o-transition: transform 4s cubic-bezier(0.1, 0.3, 0, 1);
    transition: transform 4s cubic-bezier(0.1, 0.3, 0, 1);
    transition: transform 4s cubic-bezier(0.1, 0.3, 0, 1), -webkit-transform 4s cubic-bezier(0.1, 0.3, 0, 1);
}

.time .spinner svg {
    display: block;
    margin: auto;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    cursor: default;
    z-index: 1;
    position: relative;
    bottom: 20px;
    width: 35px;
    height: 35px;
    right: calc(35px / 2);
}

.time .block {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    box-shadow: 0px 0px 20px 0px rgba(25, 29, 36, 0.20);
    border-radius: 100%;
    z-index: 1;
}

.avatars {
    width: 400px;
    height: 400px;
    position: absolute;
    top: 0;
}
.avatars .avatar {
    width: 100%;
    height: 100%;
    position: absolute;
    transform: rotate(19deg);
}
.avatars .avatar img {
    display: table;
    margin: 0 auto;
    width: 35px;
    border-radius: 50%;
    margin-top: 18px;
}

.time .block .line {
    width: 150px;
    height: 2px;
    background: rgba(255, 255, 255, 0.05);
    margin: 10px;
}

.winner-block {
    position: absolute;
    z-index: 5;
}

#carousel .carousel-inner .carousel-item{
    overflow: hidden;
    padding-bottom: 7px;
}

#carousel .carousel-inner {
    overflow-x: scroll ;
}

#carousel .carousel-inner::-webkit-scrollbar{
    height: 4px;
}

#carousel .carousel-inner::-webkit-scrollbar-thumb{
    border-radius: 15px;
    background: rgba(23, 24, 31, .45);
    width: 25%;
}

.chance-item{
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 4px;
    z-index: 99;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #DADADA;
    font-size: 13px;   
    opacity: 0.90;    
    transition: .2s ease-in-out;
    overflow: hidden;
}

.jackpot-hits .item .user::before{
    content: "";
    width: 148%; 
    height: 36px;   
    background: var(--background-navbar);
    filter: blur(10px);
    bottom: -12px;  
    left: calc(50% - 50px);
    position: absolute;   
    z-index: 1; 
    transition: .3s ease-in-out;
}

.jackpot-hits .item:hover .user::before{
    opacity: 0;
}

.jackpot-hits .item .user .chance-item div{
    transition: .2s ease-in-out;
    overflow: hidden;
}

.jackpot-hits .item .user .chance-item span{
    transition: .2s ease-in-out;
    bottom: 0;
    position: absolute;
}

.jackpot-hits .item:hover{
    background: #2C3151;
    box-shadow: 4px 4px 14px 0 rgba(0, 0, 0, .1);
}

.jackpot-hits .item:first-child{
    margin-left: 0;
}

.jackpot-hits .item img{
    transition: .2s ease-in-out;
}

.jackpot-hits .item .user .chance-item div{
    transition: .2s ease-in-out;
}

.jackpot-hits .item:hover .chance-item div span{
    bottom: -17px;
}

.carousel-item-bet-wrapper{
    margin-top: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
}

.carousel-item-bet{
    margin-bottom: 8px;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: .01rem;
    color: var(--main-color);
}

.carousel-item-bet-wrapper span{
    display: inherit;
}

.preload-carousel-item{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    color: var(--text);
}

.info-jack-block-wrapper .avatar-user-wrapper{
    width: 44px;
    height: 44px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--main-color-20);
    border-radius: 15px;
    overflow: hidden;
}

.info-jack-block-wrapper .avatar-user-wrapper img{
    width: 100%;
}

.info-jack-block-wrapper .user{
    display: flex;
    align-items: center;
}

.info-jack-block-wrapper {
    border-radius: 15px;
    overflow: hidden;
    position: relative;
}

.info-jack-block-wrapper::after{
    content: "";
    position: absolute;
    right: 0;
    top: calc(50% - 88px);
    height: 176px;
    width: 150px;
    background-image: url("/img/energy.svg");
    background-repeat: no-repeat;
}

.info-jack-block-wrapper .info-user .title{
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    opacity: 0.7;
}

.info-jack-wrapp{
    margin: 30px 40px;
}

.info-jack-block-wrapper .info-user{
    margin-left: 14px;
}

.info-jack-block{
    margin-top: 18px;
}

.info-jack-block-wrapper .info-user .secondary-title{
    display: flex;
    align-items: center;
    gap: 5px;
}

.info-jack-block-wrapper .info-user .secondary-title svg path{
    fill: #B3ADD9;
}

.lucky-day-wrpaper::before{
    content: "";
    width: 145px;
    height: 13px;
    right: 0;
    bottom: 0;
    position: absolute;
    background: var(--main-color);
    filter: blur(50px);
    opacity: .8;
}

.lucky-day-wrpaper .title div{
    width: 18px;
    height: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
}

.lucky-day-wrpaper .title{
    color: #fff;
    font-weight: 500;
    font-size: 20px;
}

.lucky-day-wrpaper .text{
    font-size: 14px;
    font-weight: 400;
    color: #fff;
    opacity: 0.7;
    margin-top: 5px;
}

.top-players-wrpaper::before{
    content: "";
    width: 93px;
    height: 90px;
    left: 50px;
    top: -64px;
    position: absolute;
    background: rgb(234, 150, 72);
    filter: blur(40px);
    opacity: .2;
}

.top-players-wrpaper .title div{
    width: 18px;
    height: 18px;
    background: rgba(234, 150, 72, .2);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
}

.top-players-wrpaper .title{
    color: rgb(234, 150, 72);
}

.top-players-info-wrapper .top-player{
    margin-top: 14px;
}

.top-info-content-wrapper{
    margin-bottom: 24px;
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
}

.sum-bets-room{
    background: var(--main-color);
    position: absolute;
    right: 10px;
    top: -11px;
    border-radius: 8px;
    padding: 2px 6px;
    color: rgba(255, 255, 255, .5);
    font-size: 12px;
    opacity: 0;
    pointer-events: none;
    transition: .3s ease-in-out;
}

.sum-bets-room.active{
    right: 14px;
    opacity: 1;
    pointer-events: visible;
}

.button-group__content .isActive .sum-bets-room{
    pointer-events: none;
    right: 10px;
    opacity: 0;
}

.stats-bet .bet-info-wrapp{
    display: flex;
    align-items: center;
    gap: 18px;
    position: relative;
}

.stats-bet .bet-info-wrapp::before{
    content: "";
    width: 250px;
    height: 250px;
    border-radius: 15px;
    position: absolute;
    left: 0;
    top: calc(50% - 125px);
    background: rgba(255, 255, 255, 0.05);
    transform: rotate(45deg);
    z-index: 1;
}

.stats-bet .bet-info-wrapp .bet-number-wrapp{
    padding: 9px 18px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px dashed #fff;
}

.stats-bet .bet-info-wrapp .bet-chance-wrapp{
    padding: 9px 18px;
    border-radius: 15px;
    background: var(--main-color-10);
    color: var(--main-color);
    border: 1px dashed var(--main-color);
}

.stats-round-block{
    display: flex;
    align-items: center;
}

.stats-round-block .name-room:first-letter{
    text-transform: uppercase;
}

.timer-round .timer-wrapper{
    width: max-content;
    margin: 0 auto;
}

.top-stats-round-wrapper .timer-round .title {
    color: rgba(255, 255, 255, .6);
    font-weight: 500;
    text-align: center;
    display: block;
    width: 100%;
}

.top-stats-round-wrapper .timer-round {
    font-size: 14px;
    width: 33%;
}

.timer-wrapper .value{
    color: #fff;
    font-weight: 500;
    font-size: 30px;
    text-align: center;
}

.top-stats-round-wrapper .stats-round .stats-round-block .value{
    font-size: 30px;
    font-weight: 500;
}

.top-stats-round-wrapper .stats-round .stats-round-block p{
    font-weight: 400;
}

.top-stats-round-wrapper .stats-round .players-round .value{
    color: var(--main-color);
}

.top-stats-round-wrapper .stats-round .players-round::before{
    content: "";
    position: absolute;
    width: 100px;
    height: 100%;
    left: 0;
    top: 0;
    background: var(--main-color);
    opacity: 0.5;
    filter: blur(108px);
}

.top-stats-round-wrapper .stats-round .bank-round::before{
    content: "";
    position: absolute;
    width: 100px;
    height: 100%;
    right: 0;
    top: 0;
    background: var(--green);
    opacity: 0.5;
    filter: blur(108px);
}

.top-stats-round-wrapper .stats-round .bank-round .value{
    color: var(--green);
}

.top-stats-round-wrapper .line-arrow{
    position: absolute;
    background: linear-gradient(90deg, rgba(5, 178, 246, 0), rgba(5, 178, 246, 1), rgba(5, 178, 246, 0));
    width: 250px;
    bottom: 0;
    left: calc(50% - 125px);
    height: 3px;
}

.top-stats-round-wrapper .line-arrow::before{
    content: "";
    position: absolute;
    width: 100%;
    height: 45px;
    left: 0;
    bottom: 0;
    background: var(--main-color);
    opacity: 0.5;
    filter: blur(108px);
}

.jack-arrow-wrapp{
    height: 0;
    width: 100%;
    z-index: 99;
    position: relative;
}

.jack-arrow-wrapp .jack-arrow{
    position: absolute;
    width: 0;
    left: calc(50% - 7px);
    top: -1px;
    height: 0;
    border-left: 11px solid transparent;
    border-right: 11px solid transparent;
    border-top: 14px solid var(--main-color);
}

.bottom-stats-round-wrapper{
    padding: 0px 24px;
    display: flex;
    justify-content: space-between;
}

.top-stats-round-wrapper .your-stats{
    display: flex;
    align-items: center;
}

.top-stats-round-wrapper .your-stats .your-stats-item{
    margin-left: 12px;
    color: #CED5E3;
    display: flex;
    font-weight: 600;
}

.top-stats-round-wrapper .your-stats .your-stats-item img{
    margin-right: 6px;
}

.top-stats-round-wrapper .your-stats .your-stats-item span{
    color: var(--main-color);
    margin-left: 4px;
    font-weight: 400;
}

.top-stats-round-wrapper .your-stats .your-stats-item:first-child{
    margin-left: 0;
}

.info-jack-block-wrapper .winner-cash{
    display: flex;
    color: var(--main-color);
    border-radius: 15px;
    font-size: 14px;
    font-weight: 400;
}

.lucky-day .winner-cash{
    color: var(--main-color);
}

.top-container-wrapp{
    margin-bottom: 24px;
    margin-top: 40px;
}

.bet-component .number-round-wrapp{
    width: 100%;
    display: flex;
    border-radius: 15px;
    padding: 12px 20px;
    align-items: center;
    justify-content: space-between;
    background: var(--background-navbar);
    font-size: 14px;
    margin-top: 14px;
}

.bet-component .number-round-wrapp .number-round{
    display: flex;
    align-items: center;
    gap: 5px;
    color: rgba(255, 255, 255, 0.6);
}

.bet-component .number-round-wrapp a{
    color: #fff;
    opacity: 0.3;
}

.bet-component .number-round-wrapp .number-round .text{
    display: flex;
    align-items: center;
    gap: 6px;
}

.bet-component .number-round-wrapp .number-round .text img{
    width: 18px;
    height: 18px;
}

.jack-bets-wrapp .flex-row{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    color: #DADADA;
}

.stats-round .stats-round-block:last-child{
    justify-content: end;
    text-align: end;
}

.jack-bets-wrapp .flex-row div{
    display: flex;
    justify-content: center;
}

.jack-bets-wrapp .flex-row div:first-child{
    justify-content: start;
}

.slider .winner-stats-wrapp{
    width: 100%;
    margin-top: 14px;
}

.slider .winner-stats-wrapp .loader{
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.slider .winner-stats-wrapp .loader img{
    animation: loader 3s linear infinite;
    width: 28px;
}

.slider .winner-stats{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 0;
    opacity: 0;
    overflow: hidden;
    transition: .3s ease-in-out;
}

.slider .winner-stats .winner-user{
    display: flex;
    align-items: center;
    color: var(--main-color);
    font-weight: 500;
}

.slider .winner-stats .winner-user .name{
    color: #DADADA;
    margin-right: 6px;
}

.slider .winner-stats .winner-cash{
    display: flex;
    align-items: center;
    margin-top: 6px;
    color: #DADADA;
    font-weight: 500;
}

.slider .winner-stats .winner-cash img{
    margin-right: 6px;
}