@import url(main.css);

body {
    background: rgba(4, 24, 51, 1);
}

.nav-1 {
    position: fixed;
    top: 0;
    left: 0;
    border-bottom: 1.5px solid rgba(228, 228, 228, 0.1);
    bottom: 0;
    height: 70px;
    right: 0;
    background: rgba(4, 24, 51, 1);
    z-index: 30;
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-1 .div-1 {
    width: 95%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-1 .div-1 svg {
    float: left;
    width: 24px;
}

.nav-1 .div-1 img {
    width: 80px;
    object-fit: cover;
}

.nav-1 .div-1 button {
    min-height: 34px;
    padding-inline: 18px;
    padding-block: 14px;
    border-radius: 8px;
    background: rgba(17, 57, 119, 1);
    font-weight: 500;
    color: rgba(234, 216, 12, 1);
    border: none;
    white-space: nowrap;
}

.nav-1 .div-1 .btn {
    background: rgba(234, 216, 12, 1);
    color: rgba(0, 0, 0, 1);
}

.nav-1 .div-1 .bx {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    align-items: center;
}

.main {
    position: relative;
    top: 70px;
    width: 100%;
    float: left;
    padding-bottom: 150px;
}

.main .box-1 {
    float: left;
    width: 100%;
    position: relative;
    height: 250px;
    overflow: hidden;
}

.main .box-1 img {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 250px;
    object-fit: cover;
}

.main .box-1 .bg {
    background: url(../../images/bg-img.png);
    position: absolute;
    opacity: 0.8;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.main .box-1 .group {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main .box-1 .group .div {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 5px;
}

.main .box-1 .group h3 {
    color: rgb(255, 255, 255);
    font-weight: 700;
    font-size: 22px;
    text-align: center;
    float: left;
    width: 100%;
}

.main .box-1 .group .h3 {
    color: rgba(234, 216, 12, 1);
}

.main .box-1 .group p {
    float: left;
    width: 100%;
    text-align: center;
    margin-top: 14px;
    font-size: 13px;
    color: rgb(255, 255, 255);
}

.main .box-1 .group button {
    padding-inline: 20px;
    padding-block: 12px;
    font-weight: 500;
    font-size: 12px;
    color: rgba(0, 0, 0, 1);
    margin-inline: auto;
    display: block;
    margin-top: 14px;
    background: rgba(234, 216, 12, 1);
    border: none;
    border-radius: 5px;
}

.main .box-1 .group .div .bot {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    margin-top: 20px;
}

.main .box-1 .group .div .bot b {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
}

.nav-2 {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 280px;
    background: rgba(4, 24, 51, 1);
    z-index: 40;
    display: none;
    border-right: 1.5px solid rgba(228, 228, 228, 0.1);
    opacity: 0;
}

.nav-2 .top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-inline: 20px;
    height: 50px;
    top: 10px;
    left: 0;
    right: 0;
    position: absolute;
}

.nav-2 .top img {
    width: 80px;
}

.nav-2 .top  a {
    color: rgb(255, 255, 255);
    text-decoration: none;
    font-size: 13px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    border: 1px solid #8c8c8c;
    padding-inline: 5px;
    padding-block: 3px;
    border-radius: 6px;
    opacity: 0.8;
}

.nav-2 .top  a img {
    width: 25px;
}
.nav-2 ul {
    float: left;
    width: 100%;
    list-style-type: none;
    top: 60px;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: auto;
    position: absolute;
}

.nav-2 ul li {
    float: left;
    width: 100%;
    padding-inline: 10px;
}

.nav-2 ul li a {
    display: flex;
    justify-content: left;
    align-items: center;
    width: 100%;
    gap: 16px;
    padding-inline: 20px;
    height: 50px;
    text-decoration: none;
    border-radius: 12px;
}

.nav-2 ul li a span {
    color: rgba(128, 129, 145, 1);
    font-weight: 600;
    font-size: 14px;
}

.nav-2 ul li a.active {
    background: rgba(234, 216, 12, 1);
}

.nav-2 ul li a.active span {
    color: rgba(0, 0, 0, 1);
}

.form-log {
    position: fixed;
    overflow: auto;
    top: 70px;
    display: none;
    bottom: 70px;
    left: 0;
    right: 0;
    padding-inline: 15px;
    padding-block: 50px;
    background: rgba(4, 24, 51, 1);
    z-index: 30;
}

.form-log label {
    float: left;
    margin-bottom: 6px;
    width: 100%;
    font-weight: 500;
    font-size: 12px;
    color: rgba(128, 129, 145, 1);
}

.form-log .input {
    float: left;
    width: 100%;
    padding-inline: 14px;
    padding-block: 10px;
    color: rgba(255, 255, 255, 1);
    font-weight: 600;
    font-size: 14px;
    background: rgba(228, 228, 228, 0.1);
    border: none;
    outline: none;
    min-height: 50px;
    border-radius: 8px;
}

.form-log .input::placeholder {
    color: rgba(128, 129, 145, 1);
}

.form-log .remember {
    display: flex;
    float: left;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

.form-log .remember div {
    display: flex;
    float: left;
    justify-content: left;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: rgba(128, 129, 145, 1);
}

.form-log .remember input {
    accent-color: rgba(234, 216, 12, 1);
}

.form-log .remember a {
    font-size: 12px;
    color: rgba(128, 129, 145, 1);
    text-decoration: none;
}

.form-log button {
    background-color: rgba(234, 216, 12, 1);
    min-height: 50px;
    float: left;
    display: flex;
    justify-content: center;
    align-items: center;
    color: rgba(0, 0, 0, 1);
    font-weight: 700;
    font-size: 14px;
    border-radius: 8px;
    box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
    border: none;
    outline: none;
    gap: 12px;
    width: 100%;
}

.form-log .btn {
    float: left;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 16px;
    margin-top: 48px
}

.form-log .btx {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
}

.form-log .bty {
    display: none;
}

.form-log .btn-2 {
    background: rgb(255, 255, 255);
    color: rgba(52, 64, 84, 1);
}

.form-log p {
    float: left;
    width: 100%;
    color: rgb(249, 111, 111);
    font-size: 12px;
    margin-top: 10px;
    padding-left: 5px;
    display: none;
}

.form-log .bloc-1 {
    float: left;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 20px;
}

.form-log h1 {
    float: left;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 1);
    font-size: 20px;
    margin-bottom: 30px;
}

.form-log .bottom {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: rgba(128, 129, 145, 1);
    font-size: 12px;
    font-weight: 500;
    flex-wrap: wrap;
    margin-top: 34px;
    float: left;
    gap: 6px;
}

.form-log .bottom a {
    color: rgba(234, 216, 12, 1);
    font-weight: 600px;
    text-decoration: none;
    font-size: 14px;
}

.form-log::-webkit-scrollbar {
    display: none;
}

.bottom-nav {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 30;
    height: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-inline: 20px;
    background: rgba(4, 24, 51, 1);
    border-top: 1.5px solid rgba(228, 228, 228, 0.1);
}

.bottom-nav .bx {
    display: grid;
    grid-template-columns: 1fr;
     row-gap: 8px;
     position: relative;
}

.bottom-nav .bx b {
    position: absolute;
    background: yellow;
    top: -10px;
    transform: translate(70%, 60%);
    border-radius: 2em;
    display: none;
    justify-content: center;
    align-items: center;
    font-size: 13px;
    width: 23px;
    height: 23px;
    text-align: center;
    left: 10px;
    font-weight: 600;
}

.bottom-nav .bx svg, .bottom-nav .bx span {
    margin-inline: auto;
    display: block;
    color: rgba(128, 129, 145, 1);
}

.bottom-nav .bx span {
    font-size: 12px;
    font-weight: 400;
}

.nav-1 .div-1 .account {
    display: flex;
    justify-content: center;
    gap: 10px;
    align-items: center;
}

.nav-1 .div-1 .account .wallet {
    border-radius: 10px;
    min-width: 100px;
    padding-inline: 5px;
    height: 40px;
    position: relative;
    background: radial-gradient(90.16% 143.01% at 15.32% 21.04%, 
        rgba(165, 239, 255, 0.2) 0%, 
        rgba(110, 191, 244, 0.0448) 77.08%, 
        rgba(70, 144, 213, 0) 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    float: left;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.nav-1 .div-1 .account .wallet::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit; 
    padding: 1px; 
    background: 
      radial-gradient(80.38% 222.5% at -13.75% -12.36%, #A2A2A2 0%, rgba(191, 193, 193, 0) 100%), 
      radial-gradient(80.69% 208.78% at 108.28% 112.58%, rgba(238, 100, 42, 0.67) 0%, rgba(135, 38, 183, 0) 100%);
    
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none; 
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 10;
}

.nav-1 .div-1 .account .wallet svg {
    float: left;
    margin-right: 5px;
}

.nav-1 .div-1 .account .wallet .number {
    color: rgba(234, 216, 12, 1);
    opacity: 0.8;
    font-weight: 500;
    font-size: 13px;
    max-width: 100px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.nav-1 .div-1 .account .icon {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    float: left;
}

.nav-1 .div-1 .account .icon .ico {
    float: left;
    position: relative;
    cursor: pointer;
    border-radius: 50%;
    padding: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-1 .div-1 .account .icon .ico:hover {
    background: #48445e9c;
}

.nav-1 .div-1 .account .icon .ico:active {
    background: #48445e9c;
}

.nav-1 .div-1 .account .icon .ico .notice {
    position: absolute;
    background: linear-gradient(0deg, #FF544D 0%, #FF754C 100%);
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    display: flex;
    top: -2px;
    right: 5px;
    font-weight: 500;
    color: rgba(255, 255, 255, 1);
    width: 8px;
    height: 8px;
    font-size: 12px;
}

.nav-1 .div-1 .account .profil {
    justify-content: center;
    align-items: center;
    display: flex;
}

.nav-1 .div-1 .account .profil img {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 50%;
}

.main .title {
    float: left;
    width: 100%;
    padding-inline: 10px;
    color: rgb(255, 255, 255);
    margin-top: 20px;
    margin-bottom: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.main .title h4 {
    font-family: 'Poppins';
    font-weight: 600;
    font-size: 20px;
    display: flex;
    justify-content: left;
    align-items: center;
    gap: 20px;
}

.main .title a {
    color: rgb(255, 255, 255);
    text-decoration: none;
    font-family: 'Poppins';
    font-size: 13px;
    font-weight: 500;
}

main .title span {
    font-weight: 600;
    font-size: 14px;
    line-height: 16.94px;    color: rgba(234, 216, 12, 1);
}

.main .box-2  {
    float: left;
    width: 100%;
    overflow: auto;
    padding-inline: 10px;
}

.main .box-2 .group {
    float: left;
    min-width: 100%;
    max-width: 3000000vw;
    overflow: auto;
    white-space: nowrap;
    display: flex;
    gap: 10px;
    min-height: 148px;
    position: relative;
}

.skeleton-loader {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    background: linear-gradient(90deg, rgba(4, 24, 51, 0.8) 25%, rgba(1, 10, 27, 0.6) 50%, rgba(4, 24, 51, 0.8) 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite linear;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.skeleton-loader::after {
    content: "loading";
    color: rgb(255, 255, 255);
    animation: loading2 1s infinite linear;
}

@keyframes loading2 {
    0% {
       opacity: 0.2;
    }
    25% {
        opacity: 0.4;
    }
    50% {
        opacity: 0.6;
    }
    75% {
        opacity: 0.8;
    }
    100% {
        opacity: 1;
    }
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}
 
.main .box-2::-webkit-scrollbar {
    display: none;
}

.main .box-2 .box {
    float: left;
    width: 230px;
    position: relative;
    padding: 15px;
    border-radius: 15.1px;   
    overflow: hidden;
    background: radial-gradient(90.16% 143.01% at 15.32% 21.04%, 
        rgba(165, 239, 255, 0.2) 0%, 
        rgba(110, 191, 244, 0.0448) 77.08%, 
        rgba(70, 144, 213, 0) 100%);
}

.main .box-2 .box::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit; 
    padding: 1px; 
    background: 
      radial-gradient(80.38% 222.5% at -13.75% -12.36%, #A2A2A2 0%, rgba(191, 193, 193, 0) 100%), 
      radial-gradient(80.69% 208.78% at 108.28% 112.58%, rgba(238, 100, 42, 0.67) 0%, rgba(135, 38, 183, 0) 100%);
    
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none; 
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 10;
}

.main .box-2 .box .bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/bg-box.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.3; 
    z-index: -1; 
}

.main .box-2 .box .body {
    position: relative;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
}

.main .box-2 .box .league {
    width: 150px;
    font-weight: 600;
    font-size: 12px;
    color: rgba(255, 255, 255, 1);
    text-align: center;
    opacity: 0.8;
    margin-top: 10px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    margin-inline: auto;
    display: block;
}

.main .box-2 .box .col-1 {
    display: flex;
    float: left;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-top: 10px;
    cursor: pointer;
    padding-inline: 10px;
    min-height: 50px;
}

.main .box-2 .box .col-1 .team img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 30px;
}

.main .box-2 .box .col-1 .team p {
    text-align: center;
    width: 62px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    margin-top: 8px;
    font-weight: 600;
    font-size: 10px;
    color: rgba(255, 255, 255, 1);
}
.main .box-2 .box .col-1 .infos {
    width: 78px;
    float: left;
    height: auto;
}

.main .box-2 .box .col-1 .infos h1 {
    width: 70px;
    font-size: 18px;
    text-align: center;
    text-wrap: auto;
    color: rgba(255, 255, 255, 1);
}

.main .box-2 .box .col-1 .infos .date {
    font-weight: 600;
    font-size: 11px;
    color: rgba(255, 255, 255, 1);
    opacity: 0.5;
    text-align: center;
    line-height: 14.52px;
}

.main .box-2 .box .col-1 .infos .time-2 {
    font-weight: 600;
    font-size: 11px;
    color: rgba(255, 255, 255, 1);
    opacity: 0.5;
    text-align: center;
}

.main .box-2 .box .col-1 .bottom {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 10px;
    align-items: center;
}
.main .box-2 .box .col-1 .bottom .bot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-right: 10px;
    background: rgba(255, 75, 0, 1);
}

.main .box-2 .box .col-1 .bottom .time {
    color: rgba(255, 255, 255, 1);
    opacity: 0.5;
    font-size: 11px;
    position: relative;
}

.main .box-2 .box .col-2 {
    display: flex;
    float: left;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-top: 10px;
    font-size: 11px;
}

.main .box-2 .box .col-2 .row {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    background: rgba(0, 0, 0, 1);
    min-height: 30px;
    padding-inline: 8px;
    padding-block: 8px;
    font-weight: 400;
    cursor: pointer;
}

.main .box-2 .box .col-2 .row .option {
    color: rgba(170, 170, 167, 1);
    margin-right: 10px;
}

.main .box-2 .box .col-2 .row .odd {
    color: rgba(234, 216, 12, 1);
}

.main .box-2 .box .col-2 .row.active {
    background: rgb(25 47 109);
}

.main .box-2 .box .col-2 .row.active .option {
    color: rgb(255 255 113);
}

.main .box-2 .box .col-2 .row.active .odd {
    color: rgb(0 239 255);
}

.main .box-2 .box .tp {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 10;
}

.main .box-2 .box .tp.right-use {
    right: 10px;
    left: unset;
}

.main .box-2 .box .tp.top-live {
    background: rgba(255, 0, 0, 1);
    border-radius: 3.02px;
    width: 25px;
    height: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main .box-2 .box .tp.top-live span {
    font-family: 'Poppins';
    font-size: 8px;
    color: rgba(255, 255, 255, 1);
    width: 16px;
    font-weight: 600;
}

.main .box-3 {
    float: left;
    display: flex;
    justify-content: left;
    align-items: center;
    padding-inline: 10px;
    width: 100%;
    overflow: auto;
}

.main .box-3::-webkit-scrollbar {
    display: none;
}

.main .box-3 ul {
    float: left;
    display: flex;
    justify-content: center;
    align-items: center;
    list-style-type: none;
    gap: 10px;
}

.main .box-3 ul li {
    float: left;
    min-width: 120px;
    min-height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    position: relative;
}

.main .box-3 ul li span {
    font-weight: 600;
    color: rgba(138, 146, 161, 1);
    font-size: 12px;
}

.main .box-3 ul li.not::before {
    content: "";
    background: linear-gradient(270deg, rgba(234, 12, 16, 0.5) 0%, rgb(162, 145, 130)100%);
    color: white;
    position: absolute;
    right:5px;
    bottom: 0px;
    border-radius: 10px;
    padding-inline: 5px;
    font-size: 11px
}

.main .box-3 ul li.active {
    color: rgba(255, 255, 255, 1);
    background: linear-gradient(270deg, rgba(234, 216, 12, 0.5) 0%, #828EA2 100%);
    border-radius: 46px;
}

.main .box-3 ul li.active span {
    color: rgba(255, 255, 255, 1);
}


.main .box-sports {
    float: left;
    width: 100%;
    padding-inline: 5px;
    margin-top: 30px;
}

.main .box-sports .table {
    float: left;
    width: 100%;
    border-collapse: collapse;
}

.main .box-sports .top {
    background: rgba(7, 37, 72, 1);
    border-radius: 5px 5px 0px 0px;
    width: 100%;
    float: left;
    padding: 15px;
    display: flex;
    justify-content: left;
    align-items: center;
    gap: 10px;
    position: relative;
}

.main .box-sports .top a {
    position: absolute;
    right: 10px;
    color: rgb(255, 255, 255);
    font-weight: 500;
    text-decoration: none;
    font-size: 13px;
    
}

.main .box-sports .top img {
    width: 25px;
    height: 18px;
    object-fit: cover;
}

.main .box-sports .top span {
    font-weight: 600;
    font-size: 14px;
    color: rgb(255, 255, 255);
    overflow: hidden;
    white-space: nowrap;
    width: 190px;
    text-overflow: ellipsis;
}

.main .box-sports .table tbody {
    background: rgba(4, 24, 51, 1);
}

.main .box-sports .table tbody td {
    padding: 10px;
}


.main .box-sports .table tbody .important {
    cursor: pointer;
}

.main .box-sports .table tbody .important .card {
    display: grid;
    row-gap: 5px;
    grid-template-columns: 1fr;
}

.main .box-sports .table tbody .important .card .team {
    display: flex;
    justify-content: left;
    align-items: center;
    gap: 10px;
}

.main .box-sports .table tbody .important .card .team img {
    width: 20px;
}

.main .box-sports .table tbody .important .card .team h3 {
    color: rgba(255, 255, 255, 1);
    font-weight: 500;
    font-size: 12px;
    width: 50px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.main .box-sports .table tbody .important .card .vs {
    font-weight: 600;
    font-size: 12px;
    color: rgba(138, 146, 161, 1);
}

.main .box-sports .table tbody .goal h1 {
    width: 100%;
    text-align: center;
    font-size: 15px !important;
    font-weight: 700;
    color: rgba(255, 255, 255, 1) !important;
    margin-bottom: 5px;
}

.main .box-sports .table tbody .bx {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    gap: 5px;
}

.main .box-sports .table tbody .bx .time-2 {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 1);
    opacity: 0.5;
}

.main .box-sports .table tbody td .date-mix {
    font-weight: 600;
    font-size: 11px;
    color: rgba(255, 255, 255, 1);
    opacity: 0.5;
    text-align: center;
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 5px;
}

.main .box-sports .table tbody td .date-mix span {
    width: 100%;
    float: left;
    text-align: center;
}

.main .box-sports .table tbody .bx .bot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 75, 0, 1);
}

.main .box-sports .table tbody .row {
    display: flex;
    justify-content: left;
    column-gap: 5px;
    align-items: center;
}

.main .box-sports .table tbody .row .box {
    background: rgba(0, 0, 0, 1);
    backdrop-filter: blur(38.05845260620117px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding-inline: 10px;
    gap: 10px;
    padding-block: 10px;
    border-radius: 4px;
}

.main .box-sports .table tbody .row .box.active {
    background: rgb(25 47 109);
}
.main .box-sports .table tbody .row .box.active .option {
    color: rgb(255 255 113);
}
.main .box-sports .table tbody .row .box.active .odd {
    color: rgb(0 239 255);

}

.main .box-sports .table tbody .row .box .option {
    color: rgba(170, 170, 167, 1);
    font-weight: 400;
    font-size: 10px;
}

.main .box-sports .table tbody .row .box .odd {
    color: rgba(234, 216, 12, 1);
    font-weight: 400;
    font-size: 12px;
}

.main .box-sports .table tbody tr {
    border-bottom: 1px solid rgba(228, 228, 228, 0.1);
}

.main .footer {
    float: left;
    width: 100%;
    padding-inline: 20px;
    padding-top: 30px;
}

.main .footer .img {
    float: left;
    width: 100%;
}

.main .footer .img img {
    width: 100px;
    height: 50px;
    object-fit: cover;
    float: left;
}

.main .footer .txt {
    float: left;
    width: 100%;
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
    color: rgba(148, 163, 184, 1);
    padding-left: 10px;
}

.main .footer .links {
    display: flex;
    justify-content: left;
    align-items: center;
    gap: 20px;
    float: left;
    width: 100%;
    flex-wrap: wrap;
    margin-block: 20px;
}


.main .footer ul {
    float: left;
    width: 100%;
}

.main .footer ul li {
    float: left;
    width: 45%;
    list-style-type: none;
    margin-bottom: 30px;
}

.main .footer ul li a {
    display: block;
    text-decoration: none;
    margin-top: 15px;
    font-size: 13px;
    font-weight: 400;
    color: rgba(148, 163, 184, 1);
}

.main .footer ul li h3 {
    width: 100%;
    font-size: 14px;
    color: rgba(255, 255, 255, 1);
    font-weight: 600;
}

.main .footer .div-pay {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    float: left;
    width: 100%;
    gap: 10px;
    flex-wrap: wrap;
    padding-right: 30px;
}

.main .footer .div-pay svg {
    width: 40px;
}
.main .footer .end {
    margin-top: 40px;
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    width: 100%;
    float: left;
    padding-inline: 30px;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(209, 187, 222, 0.104) 25%, rgba(169, 168, 161, 0.104) 84.63%, rgba(0, 0, 0, 0) 100%);
    padding-top: 40px;
    padding-bottom: 20px;
}

.main .footer .end .left {
    color: rgba(251, 250, 242, 1);
    opacity: 1;
    font-weight: 500;
    font-size: 12px;
}

.main .footer .end .link {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
}

.main .footer .end .link a {
    text-decoration: none;
    font-size: 13px;
    font-weight: 400;
    color: rgba(251, 250, 242, 1);
    opacity: 0.6;
}

.main .betting {
    position: relative;
    padding-inline: 15px;
    padding-top: 30px;
    width: 100%;
    float: left;
    background: rgba(4, 24, 51, 1);
}

.main .betting h1 {
    color: rgba(255, 255, 255, 1);
    font-size: 22px;
    font-weight: 600;
    font-family: 'Poppins';
    position: relative;
}

.main .betting h1 svg {
    position: absolute;
    right: 10px;
    background: rgba(11, 45, 85, 1);
    border-radius: 100%;
    width: 40px;
    height: 40px;
    padding: 7px;
    top: -3px;
}

.main .betting h1 div {
    position: absolute;
    right: 5px;
    top: 40px;
    background: rgba(11, 45, 85, 1);
    padding: 10px;
    display: none;
}

.main .betting h1 button {
    padding-inline: 10px;
    padding-block: 15px;
    border-radius: 5px;
    outline: none;
    font-weight: 600;
    background: transparent;
    color: white;
    width: 100%;
    text-align: left;
    border: 1px solid #b5b5b533;
    margin-bottom: 10px;
}

.main .betting .div-1 {
    overflow: hidden;
    border-radius: 10px;
    margin-top: 20px;
    width: 100%;
    background: rgba(4, 24, 51, 1);
    padding-bottom: 10px;
}

.main .betting .div-1 .top {
    float: left;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main .betting .div-1 .top div {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 44px;
    background: rgba(7, 37, 72, 1);
    cursor: pointer;
}

.main .betting .div-1 .top div.active {
    background: linear-gradient(270deg, rgba(234, 216, 12, 0.5) 0%, #828EA2 100%);
}

.main .betting .div-1 .top div span {
    color: rgba(255, 255, 255, 1);
    font-size: 14px;
    font-weight: 500;
}

.main .betting .div-1 .top-2 {
    float: left;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-inline: 10px;
    border-bottom: 1px solid rgba(228, 228, 228, 0.1);
    height: 44px;
    margin-bottom: 20px;
}

.main .betting .div-1 .top-2 div {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 44px;
    cursor: pointer;
}

.main .betting .div-1 .top-2 div.active {
    border-bottom: 1px solid rgba(234, 216, 12, 1);
}

.main .betting .div-1 .top-2 div span {
    color: rgba(255, 255, 255, 1);
    font-size: 14px;
    font-weight: 400;
}

.main .betting .div-1 .box {
    float: left;
    width: 100%;
    padding-inline: 10px;
    padding-bottom: 10px;
}

.main .betting .div-1 .box .bets {
    float: left;
    width: 100%;
}

.main .betting .div-1 .box .bets .bet {
    float: left;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr minmax(0, auto);
    margin-top: -5px;
    background: rgba(7, 37, 72, 1);
    border-radius: 5px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.main .betting .div-1 .box .bet_empty_box {
    float: left;
    width: 100%;
    display: none;
    justify-content: center;
    align-items: center;
    height: 200px;
    color: rgb(255, 255, 255);
    font-size: 13px;
    font-weight: 600;
}

.main .betting .div-1 .box .bet_code_search {
    float: left;
    width: 100%;
    display: none;
    justify-content: center;
    align-items: center;
    height: 300px;
    color: rgb(255, 255, 255);
    font-size: 15px;
    font-weight: 600;
}

.main .betting .div-1 .box .bet_code_search div {
    width: 100%;
}

.main .betting .div-1 .box .bet_code_search input {
    display: flex;
    justify-content: left;
    align-items: center;
    width: 100%;
    background: rgba(228, 228, 228, 0.1);
    padding-left: 14px;
    padding-block: 15px;
    border: none;
    margin-top: 10px;
    color: rgb(255, 255, 255);
    border-radius: 8px;
    overflow: hidden;
    font-weight: 600;
    font-size: 16px;
    outline: none;
    margin-bottom: 10px;
}

.main .betting .div-1 .box .bet_code_search button {
    background: rgba(234, 216, 12, 1);
    box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
    color: rgba(0, 0, 0, 1);
    height: 45px;
    font-weight: 700;
    line-height: 20px;
    border-radius: 8px;
    border: none;
    outline: none;
    cursor: pointer;
    width: 100%;
    margin-top: 20px;
}

.main .betting .div-1 .box .bet_code_search input::placeholder {
    opacity: 0.5;
    color: rgb(177, 180, 183);
}

.main .betting .div-1 .box .bets .bet .bx-1 {
    padding-left: 5px;
    padding-right: 34px;
}

.main .betting .div-1 .box .bets .bet .bx-1 .option {
    display: flex;
    justify-content: left;
    align-items: center;
    gap: 3px;
    float: left;
    width: 100%;
    position: relative;
}

.main .betting .div-1 .box .bets .bet .bx-1 .option .option-date {
    position: absolute;
    right: 10px;
    color: rgb(255, 255, 255);
    font-size: 11px;
    opacity: 0.7;
}

.main .betting .div-1 .box .bets .bet .bx-1 .option .option-check {
    font-size: 12px;
    color: rgba(255, 255, 255, 1);
    font-weight: 500;
    line-height: 14.52px;
}

.main .betting .div-1 .box .bets .bet .bx-1 .title {
    float: left;
    width: 100%;
    display: block;
    margin-bottom: 10px;
    margin-top: 15px;
}

.main .betting .div-1 .box .bets .bet .bx-1 .type {
    float: left;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-top: -15px;
}

.main .betting .div-1 .box .bets .bet .bx-1 .type .index {
    color: rgba(131, 146, 163, 1);
    font-weight: 400;
    font-size: 12px;
    line-height: 14.52px;
}

.main .betting .div-1 .box .bets .bet .bx-1 .type h3 {
    font-weight: 600;
    font-size: 18px;
    color: rgba(255, 255, 255, 1);
    line-height: 21.78px;
    width: auto;
}


.main .betting .div-1 .box .bets .bet .bx-1 .title span {
    font-size: 14px;
    font-weight: 500;
    color: rgba(131, 146, 163, 1);
    line-height: 14.52px;
    float: left;
}

.main .betting .div-1 .box .bets .bet .bx-1 .title span.vs {
    margin-inline: 5px;
}

.main .betting .div-1 .box .bets .bet .bx-2 {
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(11, 45, 85, 1);
    width: 44px;
}

.main .betting .div-1 .box .bets .bet .bx-2 svg {
    cursor: pointer;
}

.main .betting .div-1 .box .stack-amount {
    float: left;
    margin-top: 30px;
    width: 100%;
}

.main .betting .div-1 .box .stack-amount h4 {
    font-size: 14px;
    line-height: 20px;
    float: left;
    width: 100%;
    color: rgba(255, 255, 255, 1);
    font-weight: 400;
    margin-bottom: 10px;
}

.main .betting .div-1 .box .stack-amount .input {
    display: flex;
    justify-content: left;
    align-items: center;
    width: 100%;
    background: rgba(228, 228, 228, 0.1);
    padding-left: 14px;
    padding-block: 15px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 10px;
}

.main .betting .div-1 .box .stack-amount .input input {
    border: none;
    outline: none;
    background: transparent;
    font-weight: 600;
    width: 100%;
    color: rgba(255, 255, 255, 1);
    font-family: 'Inter', serif;
    appearance: none;
    -moz-appearance: textfield;
    -webkit-appearance: none;
    margin-inline: 5px;
    font-size: 14px;
    text-align: right;
}
.main .betting .div-1 .box .stack-amount .input .name {
    margin-right: 14px;
}

.main .betting .div-1 .box .stack-amount .input span {
    font-weight: 600;
    color: rgba(255, 255, 255, 1);
    font-size: 14px;
}

.main .betting .div-1 .box .stack-amount .input input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.main .betting .div-1 .box .stack-amount .line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}

.main .betting .div-1 .box .stack-amount .line p {
    font-size: 14px;
    color: rgba(131, 146, 163, 1);
    font-weight: 400;
}

.main .betting .div-1 .box .stack-amount .line .bold {
    color: rgba(255, 255, 255, 1);
    font-weight: 600;
}

.main .betting .div-1 .box .stack-amount .line .bold b {
    color: rgba(255, 255, 255, 1);
    font-weight: 600;
}

.main .betting .div-1 .box .stack-amount .line b {
    font-size: 14px;
    color: rgba(131, 146, 163, 1);
    font-weight: 400;
}

.main .betting .div-1 .box .stack-amount .actions {
    float: left;
    width: 100%;
    display: grid;
    grid-template-rows: repeat(2, 1fr);
    row-gap: 10px;
    margin-top: 30px;
}

.main .betting .div-1 .box .stack-amount .actions button {
    height: 40px;
    font-weight: 700;
    line-height: 20px;
    color: rgba(255, 255, 255, 1);
    background: rgba(27, 35, 60, 1);
    box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
    border-radius: 8px;
    border: none;
    outline: none;
    cursor: pointer;
}

.main .betting .div-1 .box .stack-amount .actions .btn-1 {
    background: rgba(234, 216, 12, 1);
    box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
    color: rgba(0, 0, 0, 1);
}

.main .bet-list {
    float: left;
    width: 100%;
    padding: 10px;
    position: relative;
    min-height: 200px;
}

.main .bet-list .empty {
    float: left;
    width: 100%;
    padding: 30px;
    display: none;
}

.main .bet-list .empty img {
    width: 150px;
    margin-inline: auto;
    display: block;
    margin-top: 20px;
}

.main .bet-list .empty h3,.main .bet-list .empty p {
    float: left;
    width: 100%;
    text-align: center;
    color: rgb(255, 255, 255);
    margin-top: 30px;
    display: none;
}

.main .bet-list .empty p {
    color: rgb(177, 180, 183);
    margin-top: 20px;
    font-size: 15px;
    display: block;
}

.main .bet-list .box {
    float: left;
    width: 100%;
    background: rgba(7, 37, 72, 1);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 8px;
    display: none;
}

.main .bet-list .box .top, .main .bet-list .box .body, .main .bet-list .box .bottom {
    float: left;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: rgba(131, 146, 163, 1);
    font-weight: 400;
    flex-wrap: wrap;
}

.main .bet-list .box .top h3, .main .bet-list .box .bottom h3 {
    font-weight: 700;
    color: rgb(255, 255, 255);
    font-size: 13px;
}

.main .bet-list .box .top span {
    font-weight: 500;
}

.main .bet-list .box .top span.date {
    font-size: 12px;
    text-align: right;
}

.main .bet-list .box .top .center {
    margin-inline: 2px;
}

.main .bet-list .box .bottom span {
    border-radius: 3px;
}

.main .bet-list .box .up {
    float: left;
    width: 100%;
    padding: 15px;
    position: relative;
    background: rgba(7, 37, 72, 1);
}

.main .bet-list .box .contenair {
    grid-template-columns: 1fr;
    display: grid;
    padding: 15px;
    row-gap: 8px;
    background: rgba(26, 44, 69, 1);
    cursor: pointer;
}

.main .bet-list .box .contenair button {
    float: left;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 40px;
    margin-top: 20px;
    border: none;
    outline: none;
    font-weight: 600;
    font-size: 13px;
    background: #015848;
    border-radius: 6px;
    color: #ffffff;
    cursor: pointer;
    display: none;
    justify-content: center;
    align-items: center;
    gap: 4px;
}



.main .bet-list .box .contenair button:active {
    opacity: 0.8;
}

.main .bet-list .box .contenair button:hover {
    opacity: 0.4;
}

.main .bet-list .box .contenair button.not:active,.main .bet-list .box .contenair button.not:hover {
    opacity: 0.5;
}


.main .bet-list .box .contenair button.not {
    background: #8080805c;
    color: #cfcfcf;
    border: 1px solid #ffffff21;
    position: relative;
    opacity: 0.5;
}

.main .bet-list .box .contenair button.load {
    background: #8080805c;
    color: #cfcfcf;
    border: 1px solid #ffffff21;
    position: relative;
    opacity: 0.5;
}

.main .bet-list .box .contenair button.not::after {
    content: "";
    position: absolute;
    background-color: #2726268f;
    background-image: url("data:image/svg+xml, <svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' style='fill: white;transform: ;msFilter:;'><path d='M20 12c0-1.103-.897-2-2-2h-1V7c0-2.757-2.243-5-5-5S7 4.243 7 7v3H6c-1.103 0-2 .897-2 2v8c0 1.103.897 2 2 2h12c1.103 0 2-.897 2-2v-8zM9 7c0-1.654 1.346-3 3-3s3 1.346 3 3v3H9V7z'></path></svg>");
    background-repeat: no-repeat;
    background-position: center;
    left: 0;
    bottom: 0;
    right: 0;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main .bet-list .box .up svg {
    position: absolute;
    right: 15px;
}

.main .bet-list .box .up span.ok {
    background: rgba(101, 248, 139, 1);
    color: rgba(7, 37, 72, 1);
    padding-inline: 10px;
    font-weight: 600;
    font-size: 13px;
    border-radius: 4px;
    padding-block: 2px;
}

.main .bet-list .box .contenair button.ok {
    background: linear-gradient(90deg, #015848 25%, #015848 50%, #015848a3 75%);
    background-size: 200% 100%;
    animation: loading 2.5s infinite linear;
}

.main .bet-list .box .bottom h3.ok, .main .bet-list .box .top .ok {
    color: rgba(101, 248, 139, 1);
}

.main .bet-list .box .top .team {
    width: 250px;
}

.main .bet-list .box .up span.no {
    background: rgba(246, 56, 84, 1);
    color: rgb(255, 255, 255);
    padding-inline: 10px;
    padding-block: 2px;
    font-size: 13px;
    border-radius: 4px;
    font-weight: 600;
}

.main .bet-list .box .up span.load {
    background: rgb(170 170 170);
    color: rgba(7, 37, 72, 1);
    padding-inline: 10px;
    padding-block: 2px;
    font-size: 13px;
    border-radius: 4px;
    font-weight: 600;
}

.main .bet-list .box .bottom h3.no, .main .bet-list .box .top .no {
    color: rgba(246, 56, 84, 1);
}

.main .bet-list .box .bottom h3.remise {
    color: rgb(136, 136, 254);
}

.main .bet-list .box .body .x {
    color: rgb(255, 255, 255);
    font-weight: 500;
}

.main .bet-list .box .body .y {
    color: rgb(255, 255, 255);
    font-weight: 500;
}

.main .bet-list .box .bottom .id {
    padding-inline: 0;
    padding-block: 0;
    width: 150px;
}

.main .stand-box {
    float: left;
    width: 100%;
    padding-inline: 10px;
    margin-top: 10px;
    position: relative;
    min-height: 200px;
}

.main .standing {
    background: radial-gradient(90.16% 143.01% at 15.32% 21.04%, 
        rgba(165, 239, 255, 0.2) 0%, 
        rgba(110, 191, 244, 0.0448) 77.08%, 
        rgba(70, 144, 213, 0) 100%);
    position: relative;
    border-radius: 5px;
    padding-block: 30px;
    float: left;
    width: 100%;
    padding-inline: 30px;
    margin-bottom: 30px;
}

.main .standing:after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit; 
    padding: 1px; 
    background: 
      radial-gradient(80.38% 222.5% at -13.75% -12.36%, #A2A2A2 0%, rgba(191, 193, 193, 0) 100%), 
      radial-gradient(80.69% 208.78% at 108.28% 112.58%, rgba(238, 100, 42, 0.67) 0%, rgba(135, 38, 183, 0) 100%);
    
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none; 
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 10;
}

.main .standing .type {
    font-size: 8px;
    font-weight: 500;
    color: rgba(255, 255, 255, 1);
    font-family: 'Poppins';
    position: absolute;
    top: 14px;
    left: 18px;
    background: rgba(255, 0, 0, 1);
    width: 30px;
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main .standing .h4 {
    float: left;
    width: 100%;
    text-align: center;
    font-weight: 600;
    font-size: 14px;
    color: rgba(255, 255, 255, 1);
    opacity: 0.8;
}

.main .standing .long {
    float: left;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 68px;
}

.main .standing .long .team img {
    margin-inline: auto;
    display: block;
    margin-bottom: 7px;
    width: 80px;
}

.main .standing .long .team h5 {
    color: rgba(255, 255, 255, 1);
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 80px;
    white-space: nowrap;
}

.main .standing .long .main-z h1 {
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    color: rgba(255, 255, 255, 1);
    font-size: 22px;
    gap: 5px;
    margin-bottom: 8px;
    margin-top: 10px;
}

.main .standing .long .main-z .home {
    color: rgba(255, 255, 255, 1);
}

.main .standing .long .main-z .time {
    justify-content: center;
    align-items: center;
    display: flex;
    white-space: nowrap;
    font-size: 12px;
    font-weight: 400;
    gap: 4px;
}

.main .standing .long .main-z .time span {
    color: rgba(255, 255, 255, 1);
    opacity: 0.5;
}

.main .standing .long .main-z .time .bot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 75, 0, 1);
}

.main .standing .long .main-z .not-load {
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 5px;
}

.main .standing .long .main-z .not-load span {
    text-align: center;
    font-weight: 600;
    color: rgb(255, 255, 255);
    opacity: 0.6;
    font-size: 13px;
}

.main .standing .bx-down {
    float: left;
    width: 100%;
    margin-top: 18px;
}

.main .standing .bx-down h6 {
    float: left;
    width: 100%;
    font-size: 12px;
    font-weight: 600;
    color: rgba(161, 185, 212, 1);
}

.main .standing .bx-down .divise {
    float: left;
    width: 100%;
    text-align: center;
    font-weight: 400;
    font-size: 12px;
    margin-bottom: 4px;
    color: rgba(161, 185, 212, 1);
}
.main .standing .bx-down .line {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
    float: left;
    column-gap: 3px;
}

.main .standing .bx-down .line p {
    height: 4px;
    background: rgba(234, 216, 12, 1);
    border-radius: 3px;
    margin-bottom: 4px;
}

.main .standing .bx-down .svg-place {
    float: left;
    width: 100%;
    display: inline-flex;
    justify-content: left;
    align-items: center;
    gap: 16px;
    position: relative;
}

.main .standing .bx-down .svg-place svg {
    position: absolute;
    top: 1px;
}

.main .bet-box {
    float: left;
    width: 100%;
    padding-inline: 10px;
    margin-top: 20px;
    position: relative;
    min-height: 200px;
}

.main .bet {
    float: left;
    width: 100%;
    background: rgba(7, 37, 72, 1);
    padding-inline: 10px;
    padding-block: 10px;
    margin-bottom: 16px;
    border-radius: 5px;
    overflow: hidden
}

.main .bet h3 {
    float: left;
    width: 100%;
    font-weight: 400;
    font-size: 14px;
    color: rgba(255, 255, 255, 1);
    margin-bottom: 12px;
    padding: 10px;
    position: relative;
}

.main .bet h3 svg {
    position: absolute;
    right: 8px;
    top: 8px;
}

.main .bet .line {
    float: left;
    width: 100%;
    display: grid;
    column-gap: 8px;
    row-gap: 8px;
}

.main .bet .line.line-2 {
    grid-template-columns: repeat(2, 1fr);
}

.main .bet .line.line-3 {
    grid-template-columns: repeat(3, 1fr);
}


.main .bet .line div {
    background: rgba(4, 24, 51, 1);
    backdrop-filter: blur(60.392154693603516px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 5px;
    padding-inline: 23px;
    padding-block: 14px;
    cursor: pointer;
    overflow: hidden;
    position: relative;
}

.main .bet .line div span {
    font-weight: 400;
    font-size: 12px;
    color: rgba(170, 170, 167, 1);
}

.main .bet .line div span.right {
    color: rgba(234, 216, 12, 1);
}

.main .bet .line div.active {
    background: rgb(25 47 109);
}

.main .bet .line div.active span {
    color: rgb(255 255 113);
}

.main .bet .line div.active span.right {
    color: rgb(0 239 255);
} 

.main .bet.not-work .line div {
    opacity: 0.6;
}

.main .bet.not-work .line div::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' style='fill: gray;transform: ;msFilter:;'><path d='M12 2C9.243 2 7 4.243 7 7v3H6c-1.103 0-2 .897-2 2v8c0 1.103.897 2 2 2h12c1.103 0 2-.897 2-2v-8c0-1.103-.897-2-2-2h-1V7c0-2.757-2.243-5-5-5zm6 10 .002 8H6v-8h12zm-9-2V7c0-1.654 1.346-3 3-3s3 1.346 3 3v3H9z'></path></svg>");
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    bottom: 0;
    top: 0;
}


.main .bet-box {
    float: left;
    width: 100%;
    padding-inline: 10px;
    margin-top: -20px;
}

.main .card-bloc {
    float: left;
    width: 100%;
    padding-inline: 10px;
}

.main .card-bloc .h1-title {
    float: left;
    width: 100%;
    padding-top: 30px;
    font-family: 'Poppins';
    font-size: 22px;
    font-weight: 600;
    color: rgba(250, 250, 251, 1);
}

.main .card-bloc .notices {
    float: left;
    width: 100%;
    margin-top: 36px;
    grid-template-columns: 1fr;
    row-gap: 16px;
    display: grid;
    overflow: auto;
}


.main .card-bloc .notices .notice {
    float: left;
    padding-inline: 10px;
    width: 100%;
    border-radius: 10px;
    position: relative;
    display: flex;
    justify-content: left;
    background: radial-gradient(90.16% 143.01% at 15.32% 21.04%, 
        rgba(165, 239, 255, 0.2) 0%, 
        rgba(110, 191, 244, 0.0448) 77.08%, 
        rgba(70, 144, 213, 0) 100%);
    gap: 10px;
    color: rgba(255, 255, 255, 1);
    padding-top: 14px;
    padding-bottom: 50px;
}

.main .card-bloc .notices .notice:after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit; 
    padding: 1px; 
    background: 
      radial-gradient(80.38% 222.5% at -13.75% -12.36%, #A2A2A2 0%, rgba(191, 193, 193, 0) 100%), 
      radial-gradient(80.69% 208.78% at 108.28% 112.58%, rgba(238, 100, 42, 0.67) 0%, rgba(135, 38, 183, 0) 100%);
    
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none; 
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 10;
}

.main .card-bloc .notices .notice p {
    font-size: 14px;
    font-weight: 500;
    line-height: 21px;
    float: left;
}

.main .card-bloc .notices .notice .date {
    position: absolute;
    font-size: 10px;
    font-weight: 400;
    padding-bottom: 10px;
    left: 30px;
    bottom: 5px;
}

.main .card-bloc .notices .notice svg {
    width: 30px;
    height: 30px;
}

.main .card-bloc .bloc {
    float: left;
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    background: rgba(4, 24, 51, 1);
    min-height: 500px;
    margin-top: 20px;
}

.main .card-bloc .bloc .top {
    background: rgba(7, 37, 72, 1);
    display: flex;
    justify-content: left;
    align-items: center;
    width: 100%;
    height: 55px;
    padding-inline: 24px;
    color: rgba(250, 250, 251, 1);
    font-weight: 600;
    font-size: 14px;
}
.main .card-bloc .bloc .grid {
    float: left;
    width: 100%;
}

.main .card-bloc .grid .left {
    width: 100%;
    border-bottom: 2px solid rgba(228, 228, 228, 0.1);
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(70px, 1fr));
    column-gap: 10px;
    row-gap: 10px;
    padding-inline: 10px;
    padding-block: 30px;
}

.main .card-bloc .grid .left .div {
    display: flex;
    justify-content: center;
    align-items: center;
    background: radial-gradient(90.16% 143.01% at 15.32% 21.04%, 
    rgba(165, 239, 255, 0.2) 0%, 
    rgba(110, 191, 244, 0.0448) 77.08%, 
    rgba(70, 144, 213, 0) 100%);
    position: relative;
    border-radius: 10px;
    height: 55px;
    z-index: 10;
    width: auto;
    overflow: hidden;
    cursor: pointer;
}

.main .card-bloc .grid .left .div.soon::before {
    content: "";
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #05050561;
    z-index: 10000;
}

.main .card-bloc .grid .left .div svg {
    width: 40px;
}


.main .card-bloc .grid .left .div::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit; 
    padding: 1px; 
    background: 
      radial-gradient(80.38% 222.5% at -13.75% -12.36%, #A2A2A2 0%, rgba(191, 193, 193, 0) 100%), 
      radial-gradient(80.69% 208.78% at 108.28% 112.58%, rgba(238, 100, 42, 0.67) 0%, rgba(135, 38, 183, 0) 100%);
    
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none; 
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 10;
}

.main .card-bloc .grid .right .child-1 {
    padding-inline: 10px;
    padding-block: 30px;
    width: 100%;
    float: left;
    display: none;
}

.main .card-bloc .grid .right .child-1 h3 {
    color: rgba(255, 255, 255, 1);
    font-size: 16px;
    font-weight: 600;
    float: left;
    width: 100%;
    margin-bottom: 20px;
    margin-top: 10px;
}

.main .card-bloc .grid .right .child-1 label {
    float: left;
    width: 100%;
    font-size: 12px;
    font-weight: 500;
    color: rgba(128, 129, 145, 1);
    margin-bottom: 5px;
}

.main .card-bloc .grid .right .child-1 .col-y {
    width: 100%;
}

.main .card-bloc .grid .right .child-1 .col-y .input {
    height: 44px;
    border-radius: 8px;
    background: rgba(228, 228, 228, 0.1);
    display: flex;
    justify-content: left;
    align-items: center;
    float: left;
    padding-inline: 10px;
    width: 100%;
    margin-bottom: 20px;
}
.main .card-bloc .grid .right .child-1 .col-y .input svg {
    width: 45px;
}

.main .card-bloc .grid .right .child-1 .col-y .input img {
    width: 30px;
    height: 30px;
    object-fit: cover;
    margin-top: 5px;
}

.main .card-bloc .grid .right .child-1 .col-y .input input {
    border: none;
    outline: none;
    background-color: transparent;
    float: left;
    width: 100%;
    color: white;
    font-size: 14px;
    font-weight: 500;
    margin-right: 5px;
}

.main .card-bloc .grid .right .child-1 .col-y input::placeholder {
    color: rgba(131, 146, 163, 1);
    font-weight: 400;
}

.main .card-bloc .grid .right .child-1 .col-y .inp {
    height: 44px;
    border-radius: 8px;
    background: rgba(228, 228, 228, 0.1);
    display: flex;
    justify-content: left;
    align-items: center;
    float: left;
    padding-inline: 10px;
    width: 100%;
    margin-bottom: 20px;
    border: none;
    outline: none;
    color: rgba(255, 255, 255, 1);
    font-weight: 500;
    font-family: 'Inter';
}

.main .card-bloc .grid .right .child-1 .col-y .mix-1 {
    float: left;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 20px;
}

.main .card-bloc .grid .right .child-1 .col-y .mix-1 input {
    height: 44px;
    border-radius: 8px;
    background: rgba(228, 228, 228, 0.1);
    display: flex;
    justify-content: left;
    align-items: center;
    float: left;
    padding-inline: 10px;
    width: 100%;
    margin-bottom: 20px;
    border: none;
    outline: none;
    color: rgba(255, 255, 255, 1);
    font-weight: 500;
    font-family: 'Inter';
    text-align: center;
}

.main .card-bloc .grid .right .child-1 .col-y .mix-1 .sel {
    height: 44px;
    border-radius: 8px;
    background: rgba(228, 228, 228, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    float: left;
    padding-inline: 10px;
    width: 100%;
    margin-bottom: 20px;
    border: none;
    outline: none;
    color: rgba(255, 255, 255, 1);
    gap: 5px;
    color: rgba(131, 146, 163, 1);
    font-weight: 400;
}

.main .card-bloc .grid .right .child-1 .col-y .mix-1 .sel select {
    background: transparent;
    border: none;
    outline: none;
    appearance: none;
    color: rgba(131, 146, 163, 1);
    font-weight: 400;
}

.main .card-bloc .grid .right .child-1 .col-y .mix-2 {
    float: left;
    width: 100%;
    margin-top: 30px;
}

.main .card-bloc .grid .right .child-1 .col-y .mix-2 button {
    height: 44px;
    border-radius: 8px;
    background: rgba(234, 216, 12, 1);
    width: 100%;
    margin-bottom: 20px;
    border: none;
    outline: none;
    color: rgba(0, 0, 0, 1);
    font-weight: 700;
    font-size: 14px;
    margin-top: 10px;
    cursor: pointer;
}

.main .card-bloc .grid .right .child-1 .col-x {
    margin-right: 50px;
}

.main .card-bloc .grid .right .child-1 .col-x p {
    float: left;
    font-size: 14px;
    width: 100%;
    margin-bottom: 15px;
    color: rgba(148, 163, 184, 1);
}

.main .card-bloc .grid .right .child-1 .col-x .right-span {
    color: rgba(255, 255, 255, 1);
    margin-left: 10px;
}

.main .card-bloc .grid .right {
    width: 100%;
    float: left;
}

.main .card-bloc .bloc .bx-center {
    float: left;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 500px;
}

.main .card-bloc .bloc .bx-center .search {
    width: 100%;
    height: auto;
}

.main .card-bloc .bloc .bx-center .search .h4 {
    font-weight: 600;
    font-size: 20px;
    color: rgba(255, 255, 255, 1);
    float: left;
    width: 100%;
    margin-bottom: 15px;
}

.main .card-bloc .bloc .bx-center .search .input-search {
    float: left;
    width: 100%;
    display: flex;
    justify-content: left;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.main .card-bloc .bloc .bx-center .search .input-search input {
    outline: none;
    border: none;
    background: transparent;
    font-weight: 500;
    font-family: 'Inter', serif;
    font-size: 14px;
    width: 100%;
    background: rgba(228, 228, 228, 0.1);
    height: 60px;
    padding-inline: 14px;
    width: 100%;
    color: rgb(255, 255, 255);
    border-radius: 8px;

}

.main .card-bloc .bloc .bx-center .search .input-search input::placeholder {
    font-weight: 400;
    color: rgba(131, 146, 163, 1);
}

.main .card-bloc .bloc .bx-center .search .input-search button {
    width: auto;
    margin: 0;
    height: 60px;
    padding-inline: 20px;
    border-radius: 50px;
    background: #0749a6;
    color: white;
    border: none;
}

.main .card-bloc .bloc .bx-center .search .list-sugg {
    float: left;
    width: 100%;
    max-height: 170px;
    overflow: auto;
}

.main .card-bloc .bloc .bx-center .search .list-sugg .sugg {
    float: left;
    width: 100%;
    display: flex;
    justify-content: left;
    align-items: center;
    border-radius: 5px;
    gap: 10px;
    padding-inline: 20px;
    padding-block: 16px;
    cursor: pointer;
    margin-bottom: 10px;
    user-select: none;
    position: relative;
}

.main .card-bloc .bloc .bx-center .search .list-sugg .sugg svg {
    position: absolute;
    right: 28px;
    top: 33px;
    cursor: pointer;
    height: 18px;
    width: 18px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 3px;
}

.main .card-bloc .bloc .bx-center .search .list-sugg .sugg.active {
    background: rgba(228, 228, 228, 0.1);
}

.main .card-bloc .bloc .bx-center .search .list-sugg .sugg svg:hover {
    background: rgba(228, 228, 228, 0.1);
}

.main .card-bloc .bloc .bx-center .search .list-sugg .sugg img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
}

.main .card-bloc .bloc .bx-center .search .list-sugg .sugg div {
    float: left;
    width: 100%;
}

.main .card-bloc .bloc .bx-center .search .list-sugg .sugg h4 {
    float: left;
    width: 100%;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 1);
}

.main .card-bloc .bloc .bx-center .search .list-sugg .sugg p {
    float: left;
    width: 100%;
    font-size: 12px;
    font-weight: 500;
    color: rgba(128, 129, 145, 1);
}

.main .card-bloc .bloc .bx-center .search .list-sugg .sugg:hover {
    background: rgba(7, 37, 72, 1);
}

.main .card-bloc .bloc .bx-center .search .list-sugg .sugg.active {
    background: rgba(7, 37, 72, 1);
}

.main .card-bloc .bloc .bx-center .search .list-sugg .sugg:active {
    background: rgba(7, 37, 72, 1);
    opacity: 0.8;
}

.main .card-bloc .bloc .bx-center .search button {
    height: 45px;
    float: left;
    width: 100%;
    border-radius: 8px;
    background: rgba(234, 216, 12, 1);
    border: 1px solid rgba(76, 163, 13, 1);
    font-weight: 700;
    font-size: 14px;
    color: rgba(0, 0, 0, 1);
    margin-top: 100px;
    cursor: pointer;
}

.main .card-bloc .bloc .bx-center .search label {
    float: left;
    width: 100%;
    margin-bottom: 10px;
    font-size: 16px;
    color: rgb(255, 255, 255);
}

.main .card-bloc .bloc .bx-center .search form {
    float: left;
    width: 100%;
    margin-top: 20px;
}

.main .card-bloc .bloc .bx-center .search form label {
    float: left;
    width: 100%;
    color: rgba(255, 255, 255, 1);
    margin-bottom: 5px;
    font-weight: 600;
    font-size: 16px;
}

.main .card-bloc .bloc .bx-center .search form input {
    float: left;
    width: 100%;
    background: rgba(228, 228, 228, 0.1);
    height: 60px;
    border-radius: 8px;
    border: none;
    outline: none;
    padding-inline: 14px;
    font-weight: 500;
    font-size: 20px;
    color: rgba(255, 255, 255, 1);
}

.main .card-bloc .bloc .bx-center .search form input::placeholder {
    color: rgba(128, 129, 145, 1);
    font-size: 15px;
}

.main .card-bloc .bloc .bx-center .search form .notice {
    float: left;
    width: 100%;
    margin-bottom: 20px;
    font-size: 12px;
    color: rgba(128, 129, 145, 1);
    margin-top: 10px;
}

.main .card-bloc .bloc .bx-center .search form button {
    margin-top: 40px;
}

.main .card-bloc .bloc .bx-center .search form .a-center {
    text-align: center;
    color: rgba(128, 129, 145, 1);
    font-size: 14px;
    font-weight: 500;
    padding-inline: 20%;
    margin-bottom: 42px;
    margin-top: 55px;
}

.main .card-bloc .bloc .bx-center .search form .code-confirm {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    float: left;
    width: 100%;
    column-gap: 17px;
}

.main .card-bloc .bloc .bx-center .search form .code-confirm input {
    text-align: center;
    -moz-appearance: textfield;
    -webkit-appearance: none;
}

.main .card-bloc .bloc .bx-center .search .form button {
    margin-top: 85px;
}

.main .set-box {
    float: left;
    width: 100%;
    padding-inline: 20px;
}

.main .set-box h1 button {
    background: rgba(128, 129, 145, 1);
    color: rgba(255, 255, 255, 1);
    padding-inline: 10px;
    gap: 4px;
    padding-block: 7px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    border-radius: 5px;
}

.main .set-box h1 {
    display: flex;
    justify-content: space-between;
    color: rgba(255, 255, 255, 1);
    font-weight: 500;
    font-size: 16px;
    margin-top: 10px;
    width: 100%;
    float: left;
}

.main .set-box form {
    float: left;
    width: 100%;
    display: grid;
    margin-bottom: 30px;
    grid-template-columns: 1fr;
    row-gap: 20px;
    margin-top: 20px;
}

.main .set-box form .bx {
    float: left;
    width: 100%;
}

.main .set-box form .bx label {
    float: left;
    width: 100%;
    margin-bottom: 5px;
    font-size: 12px;
    font-weight: 500;
    color: rgba(128, 129, 145, 1);
}

.main .set-box form .bx input {
    float: left;
    width: 100%;
    background: rgba(228, 228, 228, 0.1);
    height: 50px;
    padding-inline: 10px;
    border: none;
    outline: none;
    border-radius: 8px;
    color: rgba(255, 255, 255, 1);
}

.main .set-box form .bx input::placeholder {
    color: rgba(128, 129, 145, 1);
    font-weight: 400;
}

.main .set-box form .bx input:disabled {
    color: #ababab;
    font-weight: 500;
}

.main .set-box form .bx p {
    float: left;
    font-size: 11px;
    color: rgb(249, 111, 111);
    width: 100%;
    margin-top: 8px;
    padding-left: 5px;
    display: none;
}

.main .set-box form button {
    background: rgba(234, 216, 12, 1);
    height: 50px;
    border-radius: 8px;
    border: none;
    outline: none;
    color: rgba(0, 0, 0, 1);
    font-weight: 600;
    padding-inline: 20px;
}

.main .set-box .statut {
    float: left;
    width: 100%;
    display: flex;
    justify-content: left;
    align-items: center;
    gap: 40px;
    font-size: 14px;
    color: rgba(128, 129, 145, 1);
    margin-top: 24px;
    font-weight: 500;
    margin-bottom: 30px;
}

.main .set-box .statut .sta {
    color: rgba(255, 255, 255, 1);
}

.main .set-box .statut .ok {
    color: rgba(101, 248, 139, 1);
}

.main .set-box .statut .load {
    color: rgb(241, 141, 0);
}

.main .set-box .statut .not {
    color: rgb(249, 111, 111);
}

.main .set-box ul {
    float: left;
    width: 100%;
    padding-inline: 10px;
}

.main .set-box ul h6 {
    float: left;
    width: 100%;
    font-size: 14px;
    color: rgba(255, 255, 255, 1);
    font-weight: 500;
    margin-bottom: 20px;
}

.main .set-box ul li {
    float: left;
    width: 100%;
    color: rgba(128, 129, 145, 1);
    font-size: 12px;
    margin-bottom: 10px;
}

.main .set-box .element {
    float: left;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 16px;
    margin-top: 20px;
    margin-bottom: 30px;
}

.main .set-box .element .el-bx {
    float: left;
    display: flex;
    justify-content: left;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.main .set-box .element .el-bx select {
    background: rgba(228, 228, 228, 0.1);
    height: 40px;
    border: none;
    padding-inline: 10px;
    border-radius: 8px;
    color: rgba(255, 255, 255, 1);
}

.main .set-box .element .el-bx select option {
    background: rgb(24, 40, 68);
}

.main .set-box .element button {
    background: rgba(234, 216, 12, 1);
    height: 50px;
    border-radius: 8px;
    border: none;
    outline: none;
    color: rgba(0, 0, 0, 1);
    font-weight: 600;
    margin-top: 20px;   
}

.main .set-box .element .el-bx div {
    color: rgba(128, 129, 145, 1);
    font-weight: 500;
    font-size: 12px;
    display: flex;
    justify-content: left;
    align-items: center;
    height: 40px;
}

.main .support {
    float: left;
    width: 100%;
    padding-inline: 20px;
    margin-top: 20px;
}

.main .support .lists {
    display: flex;
    justify-content: space-between;
    float: left;
    width: 100%;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.main .support .lists .l-li {
    display: flex;
    justify-content: left;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
}

.main .support .lists .l-li div  h5 {
    color: rgba(255, 255, 255, 1);
    font-weight: 500;
    font-size: 14px;
}

.main .support .lists .l-li div  span {
    color: rgba(128, 129, 145, 1);
    font-weight: 400;
    font-size: 12px;
}

.main .support p {
    float: left;
    width: 100%;
    font-size: 14px;
    color: rgba(234, 236, 240, 1);
    font-weight: 400;
}

.main .card-bloc .txt.first {
    margin-top: 30px;
    margin-bottom: 5px;
}

.main .card-bloc .txt {
    float: left;
    width: 100%;
    margin-top: 15px;
    color: rgba(234, 236, 240, 1);
    font-weight: 400;
    font-size: 14px;
}

.main .card-bloc .faq {
    float: left;
    width: 100%;
    margin-top: 30px;
    padding-inline: 10px;
}

.main .card-bloc .faq h3 {
    float: left;
    width: 100%;
    color: rgba(128, 129, 145, 1);
    font-weight: 500;
    font-size: 16px;
    cursor: pointer;
}

.main .card-bloc .faq svg {
    cursor: pointer;
}

.main .card-bloc .faq h3 svg {
    float: right;
}

.main .card-bloc .faq .active h3 {
    color: rgba(255, 255, 255, 1);
    float: left;
    width: 100%;
    cursor: default;
    font-size: 15px;
}

.main .card-bloc .faq .active p {
    margin-top: 20px;
    float: left;
    width: 100%;
    font-size: 13px;
    color: rgba(234, 236, 240, 1);
    padding-right: 35px;
    line-height: 24px;
}


.main .card-bloc .faq div {
    width: 100%;
    padding: 10px;
    border-radius: 10px;
    float: left;
    margin-bottom: 20px;
}

.main .card-bloc .faq .active {
    background: rgba(4, 13, 41, 1);
}

.dialog {
    position: fixed;
    top: 70px;
    bottom: 70px;
    left: 0;
    right: 0;
}

.dialog .top {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 50px;
    display: flex;
    justify-content: left;
    align-items: center;
    border-bottom: 1px solid rgba(7, 37, 72, 1);
    padding-inline: 20px;
    gap: 10px;
}

.dialog .top img {
    width: 35px;
    height: 35px;
    border-radius: 50%;
}

.dialog .top .img {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    position: relative;
}

.dialog .top .img b {
    background: rgba(40, 195, 69, 1);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    position: absolute;
    bottom: 1px;
    right: 1px;
}

.dialog .top h3 {
    color: rgba(255, 255, 255, 1);
    font-weight: 500;
    font-size: 14px;
}

.dialog .corps {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 50px;
    top: 50px;
    padding-inline: 10px;
    padding-block: 30px;
    overflow: auto;
}

.dialog .corps .left {
    float: left;
    width: 100%;
    display: flex;
    justify-content: left;
    gap: 10px;
    position: relative;
    padding-bottom: 20px;
    padding-right: 50px;
    margin-bottom: 32px;
}

.dialog .corps .left span {
    font-size: 11px;
    position: absolute;
    bottom: 0;
    left: 50px;
    color: rgba(128, 128, 128, 1);
}


.dialog .corps p {
    background: rgba(27, 35, 60, 1);
    border-radius: 4px 18px 18px 18px;
    padding: 10px;
    color: rgba(255, 255, 255, 1);
    font-weight: 400;
    font-size: 12px;
    position: relative;
}

.dialog .corps .right {
    float: left;
    width: 100%;
    display: flex;
    justify-content: right;
    position: relative;
    padding-bottom: 20px;
    padding-left: 90px;
    margin-bottom: 32px;
}

.dialog .corps .left img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
}

.dialog .corps .right p {
    border-radius: 18px 4px 18px 18px;
}

.dialog .corps .right span {
    font-size: 11px;
    position: absolute;
    bottom: 0;
    right: 50px;
    color: rgba(128, 128, 128, 1);
}

.dialog .corps p.not::before {
    content: "";
    position: absolute;
    border: 4px solid #b0b0b0;
    border-right-color: #ec0df3;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    left: -30px;
    top: 5px;
    animation: rotate_animate 3s linear infinite;
    
}

.dialog .bottom {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 50px;
    display: flex;
    justify-content: left;
    align-items: center;
    padding-inline: 10px;
    border-top: 1px solid rgba(7, 37, 72, 1);
}

.dialog .bottom .input {
    display: flex;
    justify-content: left;
    align-items: center;
    width: 100%;
    height: 40px;
    background: rgba(228, 228, 228, 0.1);
    gap: 20px;
    padding-inline: 10px;
    border-radius: 8px;
}

.dialog .bottom .input textarea {
    font-weight: 500;
    color: rgba(255, 255, 255, 1);
    font-size: 14px;
    border: none;
    outline: none;
    width: 100%;
    resize: none;
    background: transparent;
    padding-top: 10px;
}

.dialog .bottom .input input::placeholder {
    font-weight: 400;
    color: rgba(146, 146, 157, 1);
}

.dialog .corps .right img {
    float: left;
    width: 100%;
}

.main .hist-bx {
    float: left;
    width: 100%;
    padding-inline: 10px;
}

.main .hist-bx h1 {
    float: left;
    width: 100%;
    font-family: 'Poppins';
    color: rgba(250, 250, 251, 1);
    font-size: 16px;
    margin-block: 20px;
}

.main .hist-bx .box {
    float: left;
    width: 100%;
    background: rgba(4, 24, 51, 1);
    margin-bottom: 10px;
    border-radius: 8px;
    overflow: hidden;
}

.main .hist-bx .box .one {
    float: left;
    background: rgba(7, 37, 72, 1);
    width: 100%;
    display: flex;
    justify-content: left;
    align-items: center;
    padding-inline: 10px;
    padding-block: 8px;
    color: rgba(128, 129, 145, 1);
    font-weight: 500;
    font-size: 12px;
    min-height: 30px;
}


.main .hist-bx .box .group {
    float: left;
    width: 100%;
    padding: 20px;
    background: rgba(4, 13, 41, 1);
}

.main .hist-bx .box .group .div {
    float: left;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    display: flex;
}

.main .hist-bx .box .group .div h3 {
    float: left;
    color: rgba(255, 255, 255, 1);
    font-size: 14px;
    font-weight: 400;
    display: flex;
    justify-content: left;
    align-items: center;
    gap: 8px;
}

.main .hist-bx .box .group .div h3 img {
    width: 16px;
    border-radius: 100%;
}

.main .hist-bx .box .group .div span {
    color: rgba(131, 146, 163, 1);
    font-weight: 400;
    font-size: 12px;   
}

.main .hist-bx .box .group .long {
    float: left;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    display: flex;
    margin-top: 12px;
}

.main .hist-bx .box .group .long span {
    color: rgba(131, 146, 163, 1);
    font-weight: 400;
    font-size: 12px;
}

.main .hist-bx .box .group .long .span-1 {
    color: rgba(191, 180, 19, 1);
}
.main .hist-bx .box .group .long .span-2 {
    color: rgba(101, 248, 139, 1);
    font-weight: 700;
}
.main .hist-bx .box .group .long .span-3 {
    color: rgba(255, 0, 0, 1);
    font-weight: 700;
}

.main .hist-bx .list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    float: left;
    width: 100%;
}

.main .hist-bx .list span {
    text-align: center;
    color: rgba(255, 255, 255, 1);
    font-size: 12px;
    padding: 10px;
    font-weight: 400;
    margin-bottom: 10px;
    border-bottom: 1px solid rgb(228 228 228 / 13%);
}

.main .hist-bx .list span.active {
    border-bottom: 1px solid rgba(234, 216, 12, 1);
}

.main .box-search {
    float: left;
    width: 100%;
    padding-inline: 10px;
    display: flex;
    gap: 10px;
}

.main .box-search button {
    padding-inline: 20px;
    font-weight: 600;
    border-radius: 30px;
    background: #0749a6;
    color: white;
    border: none;
    cursor: pointer;
}

.main .box-search button:active {
    opacity: 0.6;
}

.main .box-search .top {
    display: flex;
    justify-content: left;
    align-items: center;
    gap: 10px;
    background: rgba(228, 228, 228, 0.102);
    padding-inline: 10px;
    height: 50px;
    width: 100%;
    border-radius: 8px;
}

.main .box-search .top input {
    float: left;
    width: 100%;
    border: none;
    background: transparent;
    outline: none;
    font-size: 14px;
    font-weight: 500;
    color: rgb(255, 255, 255);
}

.main .box-search .top input::placeholder {
    color: rgb(103, 103, 103);
}

.main .box-promos {
    float: left;
    width: 100%;
    padding-inline: 20px;
}

.main .box-promos .box-cd {
    float: left;
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    background: radial-gradient(90.16% 143.01% at 15.32% 21.04%, rgba(165, 239, 255, 0.2) 0%, rgba(110, 191, 244, 0.0447917) 77.08%, rgba(70, 144, 213, 0) 100%);
    padding: 10px;
    position: relative;
    margin-bottom: 15px;
}

.main .box-promos .box-cd::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit; 
    padding: 1px; 
    background: 
      radial-gradient(80.38% 222.5% at -13.75% -12.36%, #A2A2A2 0%, rgba(191, 193, 193, 0) 100%), 
      radial-gradient(80.69% 208.78% at 108.28% 112.58%, rgba(238, 100, 42, 0.67) 0%, rgba(135, 38, 183, 0) 100%);
    
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none; 
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 10;   
}

.main .box-promos .box-cd .img {
    min-height: 130px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-inline: 10px;
    overflow: hidden;
    border-radius: 10px;
}

.main .box-promos .box-cd .img img {
    width: 109px;
}

.main .box-promos .box-cd .img h1 {
    font-weight: 700;
    font-size: 25px;
    line-height: 33px;}

.main .box-promos .box-cd .img-1 h1,.main .box-promos .box-cd .img-2 h1 {
    color: rgba(211, 231, 255, 1);
}

.main .box-promos .box-cd .img-3 h1 {
    color: rgba(62, 115, 177, 1);
}


.main .box-promos .box-cd .img-1 {
    background:  url("../../images/bg-box-1.png");
    background-size: cover;
}

.main .box-promos .box-cd .img-2 {
    background:  url("../../images/bg-box-3.png");
    background-size: cover;
}

.main .box-promos .box-cd .img-3 {
    background:  url("../../images/bg-box-2.png");
    background-size: cover;
}

.main .box-promos .box-cd .infos {
    float: left;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.main .box-promos .box-cd .infos span {
    color: rgb(255, 255, 255);
    font-weight: 500;
    font-size: 13px;
    line-height: 19.36px;
}

.main .box-promos .box-cd .infos .bx {
    margin-block: 10px;
    background: rgba(0, 0, 0, 1);
    padding-inline: 5px;
    padding-block: 2px;
    border-radius: 6px;
}

.main .box-promos .box-cd p {
    float: left;
    width: 100%;
    color: rgba(255, 255, 255, 1);
    opacity: 0.5;
    font-weight: 500;
    font-size: 13px;
    line-height: 16.94px;
}

.main .box-ul-li {
    float: left;
    width: 100%;
    padding-inline: 20px;
}

.main .ul-li {
    float: left;
    background: radial-gradient(90.16% 143.01% at 15.32% 21.04%, rgba(165, 239, 255, 0.2) 0%, rgba(110, 191, 244, 0.0447917) 77.08%, rgba(70, 144, 213, 0) 100%);
    width: 100%;
    padding: 10px;
    border-radius: 8px;
    position: relative;
    margin-bottom: 10px;
}

.main .ul-li::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit; 
    padding: 1px; 
    background: 
      radial-gradient(80.38% 222.5% at -13.75% -12.36%, #A2A2A2 0%, rgba(191, 193, 193, 0) 100%), 
      radial-gradient(80.69% 208.78% at 108.28% 112.58%, rgba(238, 100, 42, 0.67) 0%, rgba(135, 38, 183, 0) 100%);
    
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none; 
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 10;  
}

.main .ul-li ul {
    float: left;
    width: 100%;
    padding-inline: 20px;
}

.main .ul-li ul li {
    float: left;
    width: 100%;
    color: rgba(255, 255, 255, 1);
    opacity: 0.5;
    font-weight: 500;
    font-size: 12px;
    line-height: 14.52px;
    margin-bottom: 10px;
}

.main .ul-li h3 {
    font-weight: 600;
    font-size: 14px;
    line-height: 16.94px;
    color: rgba(255, 255, 255, 1);
    margin-bottom: 10px;
}

.main .box-ul-li button {
    float: left;
    width: 100%;
    font-weight: 700;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0px;
    background: rgba(0, 0, 0, 1);
    height: 50px;
    border-radius: 8px;
    margin-top: 20px;
    background: rgba(234, 216, 12, 1);
    border: none;
    outline: none;
}

.main .box-1 .group .vid {
    padding-inline: 20px;
}

.main .box-1 .group .vid h3 {
    text-align: left;
}

.main .box-1 .group .vid p {
    text-align: left;
}

.main .box-1 .group .vid button {
    float: left;
    margin-inline: unset;
    width: auto;
    width: 150px;
}

.main .box-vip {
    float: left;
    width: 100%;
}

.main .box-vip ul {
    float: left;
    width: 100%;
    display: flex;
    justify-content: left;
    align-items: center;
    white-space: nowrap;
    overflow: auto;
    gap: 20px;
    list-style-type: none;
}

.main .box-vip ul::-webkit-scrollbar {
    display: none;
}

.main .box-vip ul li {
    background: radial-gradient(90.16% 143.01% at 15.32% 21.04%, rgba(165, 239, 255, 0.2) 0%, rgba(110, 191, 244, 0.0447917) 77.08%, rgba(70, 144, 213, 0) 100%);
    float: left;
    border-radius: 15.1px;
    position: relative;
    padding-block: 20px;
    padding-left: 20px;
    padding-right: 80px;
}

.main .box-vip ul li::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit; 
    padding: 1px; 
    background: 
      radial-gradient(80.38% 222.5% at -13.75% -12.36%, #A2A2A2 0%, rgba(191, 193, 193, 0) 100%), 
      radial-gradient(80.69% 208.78% at 108.28% 112.58%, rgba(238, 100, 42, 0.67) 0%, rgba(135, 38, 183, 0) 100%);
    
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none; 
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 10;
}

.main .box-vip ul li .check {
    float: left;
    margin-bottom: 13px;
    width: 100%;
    display: flex;
    justify-content: left;
    align-items: center;
}

.main .box-vip ul li span {
    padding-inline: 6px;
    padding-block: 4px;
    color: rgba(0, 0, 0, 1);
    font-weight: 500;
    font-size: 14px;
    line-height: 16.94px;
    float: left;
    border-radius: 6px;
}

.main .box-vip ul li .check-silver span     {
    background: rgba(178, 204, 204, 1);
}

.main .box-vip ul li .check-gold span   {
    background: rgba(234, 216, 12, 1);
}

.main .box-vip ul li .check-bronze span     {
    background: rgba(197, 156, 108, 1);
}

.main .box-vip ul li .check-platinum span{
    background: rgba(111, 220, 231, 1);
}

.main .box-vip ul li h1 {
    font-weight: 700;
    font-size: 30px;
    line-height: 36.31px;
    text-align: left;
    color: rgba(255, 255, 255, 1);
    margin-bottom: 4px;
    float: left;
    width: 100%;
}

.main .box-vip ul li p {
    font-weight: 600;
    font-size: 12px;
    line-height: 14.52px;
    color: rgba(255, 255, 255, 1);
    opacity: 0.5;
    width: 100%;
    float: left;
}

.main .box-vip ul li .menu {
    margin-top: 20px;
    float: left;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 8px;
}

.main .box-vip ul li .menu div {
    display: flex;
    justify-content: left;
    align-items: left;
    white-space: nowrap;
}

.main .box-vip ul li .menu span {
    font-weight: 500;
    font-size: 12px;
    line-height: 14.52px;
    letter-spacing: 0%;
    text-align: center;
    color: rgba(255, 255, 255, 1);
    opacity: 0.5;
}

.main .box-ul-li-no-style ul {
    list-style-type: none;
    padding-inline: 0;
}

.main .head-box-sports {
    float: left;
    width: 100%;
    padding-inline: 15px;
}

.main .head-box-sports .ul-1 {
    float: left;
    width: 100%;
    list-style-type: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    background: rgba(7, 37, 72, 1);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 16px;
}

.main .head-box-sports .ul-1 li {
    text-align: center;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    border-radius: 10px;
    color: rgb(255, 255, 255);
}

.main .head-box-sports .ul-1 li.active {
    background: linear-gradient(270deg, rgba(234, 216, 12, 0.5) 0%, #828EA2 100%);
}

.main .head-box-sports .bloc-li {
    float: left;
    width: 100%;
    margin-bottom: 8px;
    position: relative;
}

.main .head-box-sports .bloc-li.not-found:after {
    content: "";
    background: linear-gradient(270deg, rgba(234, 12, 16, 0.5) 0%, rgb(162, 145, 130) 100%);
    color: white;
    position: absolute;
    right: 5px;
    border-radius: 30px;
    padding-inline: 30px;
    font-size: 13px;
    top: 7.5px;
    padding-block: 10px;
}

.main .head-box-sports .bloc-li.not-found .top div:nth-child(2) {
    display: none;
}


.main .head-box-sports .bloc-li .top {
    float: left;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-inline: 16px;
    background: rgba(13, 46, 85, 1);
    height: 50px;
    border-radius: 10px;
    cursor: pointer;
}

.main .head-box-sports .bloc-li .top div {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    color: rgba(138, 146, 161, 1);
    font-weight: 400;
    font-size: 14px;
}

.main .head-box-sports .bloc-li.active .top div{
    color: rgb(255, 255, 255);
}

.main .head-box-sports .bloc-li .list {
    float: left;
    width: 100%;
    display: none;
    grid-template-columns: 1fr;
    row-gap: 8px;
    margin-top: 8px;
}

.main .head-box-sports .bloc-li.active .list {
    display: grid;
}

.main .head-box-sports .bloc-li .list div {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 50px;
    padding-inline: 16px;
    font-weight: 400;
    font-size: 14px;
    line-height: 25.5px;
    background: rgba(27, 45, 69, 1);
    border-radius: 10px;
    cursor: pointer;
}

.main .head-box-sports .bloc-li .list div span:first-child {
    color: rgb(255, 255, 255);
}

.main .head-box-sports .bloc-li .list div span:last-child {
    color: rgba(128, 129, 145, 1);
}

.main .head-box-sports .bloc-li .svg-up, .main .head-box-sports .bloc-li.active .svg-down {
    display: none;
}

.main .head-box-sports .bloc-li.active .svg-up {
    display: block;
}

.main .box-2-box {
    overflow: unset;
}

.main .box-2-box .group {
    display: grid;
    white-space: wrap;
    padding-inline: 20px;
    position: relative;
    min-height: 100px;
}

.main .box-2-box .group .box {
    padding: 20px;
}

.main .box-2-box .box {
    width: 100%;
}

.main .box-2-box .box .col-2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 20px;
}

.main .box-2-box .box .col-2 .row {
    height: 40px;
    justify-content: space-between;
    padding-inline: 10px;
}

.form-log .input-1 {
    display: flex;
    justify-content: left;
    align-items: center;
    gap: 10px;
}

.form-log .input-1 img {
    width: 30px;
}

.form-log .input-1 select {
    width: 100%;
    border: none;
    outline: none;
    background: transparent;
    color: rgb(255, 255, 255);
}

.form-log .input-1 select option {
    background: rgb(24, 40, 68);
}

.form-log .input-1 .select-x {
    width: 60px;
}

.form-log .input-1 input {
    float: left;
    width: 100%;
    border: none;
    outline: none;
    background: transparent;
}

.bloc-hidden:nth-child(2){
    display: none;
}

.bloc-hidden {
    float: left;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 20px;
}

.article-load {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #000000c9;
    z-index: 100;
    display: none;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.article-load::after {
    content: "";
    width: 50px;
    height: 50px;
    border: 7px solid rgb(196, 195, 195);
    border-radius: 100%;
    border-left-color: rgb(103, 101, 101);
    animation: rotate_animate 2s linear infinite;
}

@keyframes rotate_animate {
    0% {
        transform: rotate(-360deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.check-infos, .alert-msg {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #000000c9;
    z-index: 110;
    display: none;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.alert-msg .center {
    width: 354px;
    background: rgb(255, 255, 255);
    border-radius: 15px;
    padding: 20px;
    display: block;
    position: relative;
}

.alert-msg .center h1, .alert-msg .center div {
    float: left;
    width: 100%;
    color: #b20e0e;
    font-size: 20px;
}

.alert-msg .center div::-webkit-scrollbar {
    background-color: rgb(224, 220, 220);
}

.alert-msg .center div::-webkit-scrollbar-thumb {
    background: rgb(103, 101, 101);
}

.alert-msg .center div {
    max-height: 150px;
    overflow: auto;
    margin-block: 15px;
    font-size: 14px;
    color: rgb(96, 96, 96);
    font-weight: 500;
    line-height: 21px;
}

.alert-msg .center a {
    float: right;
    text-decoration: none;
    font-weight: 700;
    background: rgba(0, 0, 0, 1);
    color: rgb(255, 255, 255);
    padding-inline: 20px;
    padding-block: 5px;
    border-radius: 4px;
}

.check-infos .center {
    width: 354px;
    background: rgba(36, 39, 49, 1);
    border-radius: 15px;
    padding-top: 50px;
    padding-inline: 20px;
    display: block;
    position: relative;
    padding-bottom: 20px;
}

.check-infos .center .svg {
    display: flex;
    justify-content: center;
    align-items: center;
    float: left;
    width: 100%;
    margin-top: 30px;
    margin-bottom: 20px;
}

.check-infos .center .btn, .check-infos .center .msg {
    float: left;
    width: 100%;
    text-align: center;
    color: rgba(255, 255, 255, 1);
    font-size: 14px;
    line-height: 21px;
}

.check-infos .center .btn button {
    margin-top: 40px;
    width: 100%;
    border-radius: 8px;
    background: rgba(234, 216, 12, 1);
    border: none;
    outline: none;
    font-weight: 700;
    font-size: 14px;
    line-height: 20px;
    color: rgba(0, 0, 0, 1);
    height: 50px;
}

.check-infos .center img {
    width: 81px;
    object-fit: cover;
    height: 31px;
    position: absolute;
    left: 50%;
    top: 30px;
    transform: translate(-50%, -50%);
}


#click-update-doc {
    float: left;
    width: 100%;
    text-align: center;
    background: rgb(255, 255, 255);
    font-size: 12px;
    border: 1px solid rgb(103, 101, 101);
    border-radius: 8px;
    color: rgb(0, 0, 0);
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
}

.show-img-bx {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #000000c9;
    z-index: 100;
    display: none;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.show-img-bx .center {
    width: 90%;
    background: rgba(36, 39, 49, 1);
    padding: 20px;
    border-radius: 10px;
}

.show-img-bx .center div {
    float: left;
    width: 100%;
}

.show-img-bx .center .img {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    overflow: hidden;
    border-radius: 10px;
}

.show-img-bx .center img {
    float: left;
    max-height: 150px;
    width: 100%;
    object-fit: cover;
}

.show-img-bx .center .img img:nth-child(3){
    grid-column: 2 span;
}

.show-img-bx .center .div {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}

.show-img-bx .center .div button {
    padding-inline: 26px;
    border-radius: 8px;
    padding-block: 12px;
    border: none;
    outline: none;
    color: rgb(0, 0, 0);
    font-weight: 700;
    font-size: 13px;
}

.show-img-bx .center .div button:first-child {
    background: rgb(255, 255, 255);
}

.show-img-bx .center .div button:last-child {
    background: rgba(234, 216, 12, 1);
}

.show-img-bx .center h1 {
    float: left;
    width: 100%;
    margin-bottom: 10px;
    color: rgb(255, 255, 255);
    font-size: 24px;
    text-align: center;
}

.main .not-not-x {
    float: left;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 300px;
}

.main .not-not-x div {
    width: 70%;
}

.main .not-not-x div p {
    float: left;
    width: 100%;
    text-align: center;
    font-size: 13px;
    color: rgb(103, 103, 103);
    font-weight: 500;
    margin-top: 20px;
}

.main .not-not-x div h1 {
    float: left;
    width: 100%;
    text-align: center;
    font-size: 22px;
    color: rgba(255, 255, 255, 1);
}

.main-wx {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-wx .article-wx {
    width: 500px;
    padding: 20px;
    background: #f6f6f6;
    border-radius: 12px;
    overflow: auto;
}

.main-wx .article-wx img {
    margin-inline: auto;
    display: block;
    border-radius: 12px;
    width: 80px;
}

.main-wx .article-wx h1 {
    float: left;
    width: 100%;
    text-align: center;
    margin-block: 30px;
}

.main-wx .article-wx div {
    float: left;
    width: 100%;
    margin-bottom: 10px;
    font-size: 13px;
    line-height: 21px;
    color: #031b21;
    padding-inline: 10px;
}

.main-wx .article-wx div label {
    float: left;
    width: 100%;
    font-size: 13px;
}

.main-wx .article-wx input {
    float: left;
    width: 100%;
    height: 40px;
    border-radius: 6px;
    outline: none;
    font-weight: 500;
    margin-top: 5px;
    border: 1px solid #d9d9d9;
    padding-inline: 20px;
    background: white;
}

.main-wx .article-wx .link {
    float: left;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
    margin-bottom: 0;
}

.main-wx .article-wx a {
    font-weight: 600;
    color: black;
    font-size: 15px;
}

.main-wx .article-wx .btn {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 20px;
    margin-top: 20px;
}

.main-wx .article-wx .btn button {
    font-weight: 600;
    color: white;
    background: #0c7745;
    border-radius: 6px;
    height: 45px;
    cursor: pointer;
    border: 1px solid #f6f6f6;
    outline: none;
}

.main-wx .article-wx .btn .btn-2 {
    grid-column: 2 span;
}

.main-wx .article-wx .btn button:nth-child(2) {
    background: #1d81c2;
}


.main-wx .article-wx .form {
    background: white;
    border-radius: 4px;
    box-shadow: 0px 0px 4px #00000012;
    padding-block: 10px;
}

.main-wx .article-wx .form-show-hide {
    display: none;
}

.main-wx .article-wx .form span {
    float: left;
    width: 100%;
    margin-top: 5px;
    color: #e50000;
    font-weight: 500;
    display: none;
}

.form-xlog {
    position: fixed;
    overflow: auto;
    top: 70px;
    display: none;
    bottom: 70px;
    left: 0;
    right: 0;
    padding-inline: 15px;
    padding-block: 50px;
    background: rgba(4, 24, 51, 1);
    z-index: 30;
}

.form-xlog h1 {
    float: left;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 1);
    font-size: 20px;
    margin-bottom: 30px;
}

.form-xlog label {
    float: left;
    margin-bottom: 6px;
    width: 100%;
    font-weight: 500;
    font-size: 12px;
    color: rgba(128, 129, 145, 1);
}

.form-xlog input {
    float: left;
    width: 100%;
    padding-inline: 14px;
    padding-block: 10px;
    color: rgba(255, 255, 255, 1);
    font-weight: 600;
    font-size: 14px;
    background: rgba(228, 228, 228, 0.1);
    border: none;
    outline: none;
    min-height: 50px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.form-xlog p {
    float: left;
    width: 100%;
    color: rgb(249, 111, 111);
    font-size: 12px;
    margin-top: -10px;
    margin-bottom: 20px;
    padding-left: 5px;
    display: none;
}

.form-xlog button {
    background-color: rgba(234, 216, 12, 1);
    min-height: 50px;
    float: left;
    display: flex;
    justify-content: center;
    align-items: center;
    color: rgba(0, 0, 0, 1);
    font-weight: 700;
    font-size: 14px;
    border-radius: 8px;
    box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
    border: none;
    outline: none;
    gap: 12px;
    width: 100%;
}

.form-xlog .text {
    float: left;
    width: 100%;
    text-align: center;
    margin-block: 25px;
    font-size: 14px;
    color: rgb(255, 255, 255);
}

.main .ll-sport-box, .main .ll-sport-box-2 {
    float: left;
    width: 100%;
    position: relative;
    min-height: 100px;
    margin-bottom: 20px;
}

.ll-sport-box-2 {
    display: none;
}

.main .head-box-sports .sport_list_chooes {
    float: left;
    width: 100%;
    position: relative;
    min-height: 200px;
}

.main .head-box-sports .sport_not_lives{
    display: none;
}


.main .head-box-sports .sport_list_chooes .bloc-li, .main .head-box-sports .sport_list_chooes.active .skeleton-loader {
    display: none;
}

.main .head-box-sports .sport_list_chooes.active .bloc-li {
    display: block !important;
}

.main .head-box-sports .bloc-li .list .check-league-sport div {
    width: auto;
    padding-inline: 0;
    color: rgb(255, 255, 255);
}

.main .head-box-sports .bloc-li .list .check-league-sport div span {
    color: rgb(255, 255, 255);
}

.main .head-box-sports .bloc-li .list .check-league-sport div img {
    width: 25px;
    height: 18px;
    object-fit: cover;
    margin-right: 10px;
    float: left;
}

.main .card-search {
    float: left;
    width: 100%;
    position: relative;
    min-height: 200px;
    margin-top: 20px;
}

.main .card-search .empty-vide {
    width: 100%;
    float: left;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 30%;
    height: 200px;
    font-size: 20px;
    line-height: 25px;
    color: rgb(255, 255, 255);
}

.main .card-search .list {
    float: left;
    width: 100%;
    padding-inline: 10px;
}

.main .card-search .list .div {
    float: left;
    width: 100%;
    margin-bottom: 20px;
}

.main .card-search .list .div .top {
    float: left;
    width: 100%;
    display: flex;
    justify-content: left;
    align-items: center;
    gap: 10px;
    background: rgba(7, 37, 72, 1);
    padding: 15px;
    position: relative;
}

.main .card-search .list .div .top h3 {
    font-weight: 600;
    font-size: 14px;
    color: rgb(255, 255, 255);
    overflow: hidden;
    white-space: nowrap;
    width: 200px;
    text-overflow: ellipsis;
}

.main .card-search .list .div .top svg {
    position: absolute;
    right: 15px;
}

.main .card-search .list .div .top img {
    width: 24px;
    height: 18px;
    object-fit: cover;
}

.main .card-search .list .div .line {
    float: left;
    width: 100%;
    display: flex;
    justify-content: left;
    align-items: center;
    white-space: nowrap;
    padding: 10px;
    gap: 5px;
    border-bottom: 1px solid rgba(228, 228, 228, 0.1);
}

.main .card-search .list .div .line .un {
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 10px;
}

.main .card-search .list .div .line .un span {
    color: rgba(255, 255, 255, 1);
    font-weight: 500;
    font-size: 12px;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 60px;
}

.main .card-search .list .div .line img {
    width: 24px;
    height: 18px;
    object-fit: cover;
    border-radius: 50%;
}

.main .card-search .list .div .line .un div {
    display: flex;
    justify-content: left;
    align-items: center;
    white-space: nowrap;
    color: rgb(255, 255, 255);
    font-size: 12px;
    font-weight: 500;
    gap: 10px;
}

.main .card-search .list .div .line .date, .main .card-search .list .div .line .score  {
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 5px;
    padding-inline: 10px;
}

.main .card-search .list .div .line .date h1 {
    color: rgb(255, 255, 255);
    font-size: 16px;
}

.main .card-search .list .div .line .date span {
    text-align: center;
    color: rgba(255, 255, 255, 1);
    opacity: 0.5;
    font-weight: 600;
    font-size: 11px;
}

.main .card-search .list .div .line .score h1 {
    width: 100%;
    text-align: center;
    font-size: 15px !important;
    font-weight: 700;
    color: rgba(255, 255, 255, 1) !important;
    margin-bottom: 5px;
}

.main .card-search .list .div .line .score div {
    display: flex;
    justify-content: left;
    align-items: center;
    gap: 5px;
}

.main .card-search .list .div .line .score .bot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-right: 10px;
    background: rgba(255, 75, 0, 1);
    opacity: 1;
}

.main .card-search .list .div .line .score span {
    color: rgba(255, 255, 255, 1);
    opacity: 0.5;
    font-size: 11px;
}

.main .card-search .list .div .line .flex {
    display: flex;
    justify-content: left;
    align-items: center;
    gap: 10px;
    width: 100%;
}

.main .card-search .list .div .line .flex .row {
    background: rgba(0, 0, 0, 1);
    backdrop-filter: blur(38.05845260620117px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding-inline: 10px;
    gap: 10px;
    padding-block: 10px;
    border-radius: 4px;
}

.main .card-search .list .div .line .flex .row .option {
    color: rgba(170, 170, 167, 1);
    margin-right: 10px;
    font-weight: 400;
    font-size: 10px;
}
.main .card-search .list .div .line .flex .row .odd {
    color: rgba(234, 216, 12, 1);
    font-size: 12px;
    font-weight: 400;
}


.slip_box {
    position: fixed;
    bottom: 70px;
    background: rgba(13, 46, 85, 1);
    left: 0;
    right: 0;
    z-index: 20;
    display: none;
    justify-content: left;
    align-items: center;
    padding: 10px;
    gap: 10px;
}

.slip_box .long {
    float: left;
    width: 100%;
    overflow: hidden;
}

.slip_box .odds {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    background: linear-gradient(270deg, rgba(234, 216, 12, 0.5) 0%, #828EA2 100%);
    color: rgb(255, 255, 255);
    font-weight: 700;
    height: 43px;
    padding-inline: 10px;
    text-shadow: 0px 0px 4px rgb(0, 0, 0);
}

.slip_box .long ul {
    float: left;
    width: 100%;
    display: flex;
    justify-content: left;
    align-items: center;
    white-space: nowrap;
    overflow: auto;
    list-style-type: none;
    gap: 20px;
    background: rgba(228, 228, 228, 0.1);
    padding: 15px;
    color: rgb(255, 255, 255);
    border-radius: 5px;
}

.slip_box .long ul::-webkit-scrollbar {
    display: none;
}


.slip_box .long ul li {
    font-size: 13px;
    font-weight: 600;
}

.main .betting .div-1 .box .bets .bet.checked {
    background: rgb(7, 72, 68);
}

.main .betting .div-1 .box .bets .bet.checked .bx-2 {
    background-color: rgb(11, 85, 82);
}

.main .betting .div-1 .box .bets .bet.checked .bx-1 .type h3 {
    color: rgb(105, 219, 13);
    position: relative;
}

.main .betting .div-1 .box .bets .bet.checked .bx-1 .type h3::after {
    content: "";
    color: rgb(105, 219, 13);
    width: 24px;
    height: 24px;
    position: absolute;
    background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' style='fill: rgb(143 255 52);transform: ;msFilter:;'><path d='m12 3.879-7.061 7.06 2.122 2.122L12 8.121l4.939 4.94 2.122-2.122z'></path><path d='m4.939 17.939 2.122 2.122L12 15.121l4.939 4.94 2.122-2.122L12 10.879z'></path></svg>");
    background-repeat: no-repeat;
    background-position: center;
    animation: top_top 1s linear infinite;
}

@keyframes top_top {
    0% {
        opacity: 0.3;
        top: 20px;
    }

    25% {
        opacity: 0.6;
        top: 15px;
    }

    50% {
        opacity: 0.9;
        top: 10px;
    }

    100% {
        opacity: 1;
        top: 5px;
    }
}


.main .betting .div-1 .box .bets .bet.noted {
    background: #6528623d;
}

.main .betting .div-1 .box .bets .bet.noted .bx-2 {
    background-color: rgba(182, 48, 48, 0.361);
}

.main .betting .div-1 .box .bets .bet.noted .bx-1 .type h3 {
    color: rgb(255, 107, 107);
    position: relative;
}

.main .betting .div-1 .box .bets .bet.noted .bx-1 .type h3::after {
    content: "";
    color: rgb(255, 107, 107);
    width: 24px;
    height: 24px;
    position: absolute;
    transform: rotate(-180deg);
    background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' style='fill: rgb(255, 107, 107);transform: ;msFilter:;'><path d='m12 3.879-7.061 7.06 2.122 2.122L12 8.121l4.939 4.94 2.122-2.122z'></path><path d='m4.939 17.939 2.122 2.122L12 15.121l4.939 4.94 2.122-2.122L12 10.879z'></path></svg>");
    background-repeat: no-repeat;
    background-position: center;
    animation: down_down 1s linear infinite;
}

@keyframes down_down {
    100% {
        opacity: 0.3;
        top: 20px;
    }

    50% {
        opacity: 0.6;
        top: 15px;
    }

    25% {
        opacity: 0.9;
        top: 10px;
    }

    0% {
        opacity: 1;
        top: 5px;
    }
}

.main .betting .div-1 .box .bets .bet.errs {
    background: #00000012;
    border: 1px solid #f9f9f936;
    opacity: 0.6;
}

@keyframes padd {
    from {
        width: 50px;
    }

    to {
        width: 70px;
    }
}

.main .betting .div-1 .box .bets .bet.errs .bx-2 {
    background: rgb(0 0 0 / 36%);
    animation: padd 2s infinite ease-in-out;
}

.main .betting .div-1 .box .bets .bet.errs .bx-1 .type h3 {
    color: #929292;
    position: relative;
}

.main .betting .div-1 .box .bets .bet.errs .bx-1 .type h3::after {
    content: "";
    width: 24px;
    height: 24px;
    position: absolute;
    background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' style='fill: rgb(255, 107, 107);transform: ;msFilter:;'><path d='m16.192 6.344-4.243 4.242-4.242-4.242-1.414 1.414L10.535 12l-4.242 4.242 1.414 1.414 4.242-4.242 4.243 4.242 1.414-1.414L13.364 12l4.242-4.242z'></path></svg>");
    background-repeat: no-repeat;
    background-position: center;
}

.reg_ticket {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #000000c9;
    z-index: 100;
    justify-content: center;
    align-items: center;
    height: 100vh;
    display: none;
}

.reg_ticket .center {
    width: 354px;
    background: rgba(36, 39, 49, 1);
    border-radius: 15px;
    padding-top: 50px;
    padding-inline: 20px;
    display: block;
    position: relative;
    padding-bottom: 20px;
}

.reg_ticket img {
    width: 81px;
    object-fit: cover;
    height: 31px;
    position: absolute;
    left: 50%;
    top: 30px;
    transform: translate(-50%, -50%);
}

.reg_ticket .svg {
    display: flex;
    justify-content: center;
    align-items: center;
    float: left;
    width: 100%;
    margin-top: 30px;
    margin-bottom: 20px;
}

.reg_ticket .msg {
    float: left;
    width: 100%;
    text-align: center;
    color: rgba(255, 255, 255, 1);
    font-size: 16px;
    line-height: 21px;
}

.reg_ticket p {
    float: left;
    width: 100%;
    text-align: center;
    font-size: 16px;
    color: rgb(255, 255, 255);
    background: rgb(0, 0, 0);
    padding: 20px;
    margin-block: 20px;
    font-weight: 700;
    border-radius: 5px;
}

.reg_ticket ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 10px;
    list-style-type: none;
    float: left;
    width: 100%;
    margin-top: 20px;
}

.reg_ticket ul button {
    width: 100%;
    border: none;
    padding-block: 15px;
    border-radius: 7px;
    background: rgb(255, 255, 255);
    color: rgb(0, 0, 0);
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
}

.reg_ticket ul button.copy {
    background: rgba(234, 216, 12, 1);
    color: rgb(0, 0, 0);
}

.main .card-bloc .grid .left .div img {
    width: 40px;
}

.main .card-bloc .grid .left .div.active {
    background: #215373;
}

.main .card-bloc .grid .right .child-1 .col-y .input select {
    background: #1d837c;
    margin-right: 10px;
    padding: 5px;
    border: none;
    outline: none;
    font-weight: 600;
    color: white;
    display: none;
    border-radius: 5px;
}

.main .card-bloc .grid .right .child-1 .col-y .input span {
    color: rgb(255, 255, 255);
}

.main .card-bloc .grid .right .info {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    float: left;
    margin-top: 30px;
}

.main .card-bloc .grid .right .info span {
    width: 80%;
    color: rgb(255, 255, 255);
    font-size: 14px;
    line-height: 25px;
    text-align: center;
}

.main .box_succ {
    float: left;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 400px;
    display: none;
}

.main .box_succ div {
    width: 90%;
}

.main .box_succ div img {
    width: 50px;
    margin-inline: auto;
    display: block;
}

.main .box_succ div h1, .main .box_succ div p {
    text-align: center;
    color: rgb(255, 255, 255);
    line-height: 30px;
    margin-top: 20px;
}

.main .card-bloc .bloc .bx-center .search form div.input {
    display: flex;
    justify-content: left;
    align-items: center;
    gap: 10px;
    width: 100%;
    float: left;
}

.main .card-bloc .bloc .bx-center .search form div.input b {
    color: rgb(255, 255, 255);
}

.main .card-bloc .bloc .bx-center .search form div.input input:disabled {
    color: rgb(255, 255, 255);
}