body {
    margin-left: 0;
    width: 100%;
    font-family: Inter, open sans, sans-serif !important;
    background: #fa8505;
    margin-bottom: 0;
    margin-top: 0;
}
::-webkit-scrollbar {
    display: none;
}
.join_wrapper {
    margin-top: 100px;
    width: 100%;
    display: flex;
    justify-content: center;
}
.join_wrapper .sign {
    max-width: 450px;
    width: 100%;
    border-radius: 6px;
    border: 1px solid #ddd;
    background-color: #fff;
}
.join_wrapper .sign img {
    margin-top: 25px;
    height: 43px;
}
.join_wrapper .sign h2 {
    text-align: center;
    font-weight: 500;
}
.join_wrapper .sign span {
    display: flex;
}
.join_wrapper .sign span input {
    margin-left: 20px;
    margin-right: 20px;
    width: 100%;
    height: 40px;
    padding-left: 13px;
    padding-right: 13px;
    font-size: 15px;
    border-radius: 7px;
    border: 1px solid #ddd;
    outline: none;
    font-family: Inter, open sans, sans-serif !important;
}
.join_wrapper .sign span select {
    margin-left: 20px;
    margin-right: 20px;
    width: 100%;
    height: 40px;
    padding-left: 13px;
    padding-right: 13px;
    font-size: 15px;
    border-radius: 7px;
    border: 1px solid #ddd;
    outline: none;
    font-family: Inter, open sans, sans-serif !important;
    background-color: #fff;
    cursor: pointer;
}
.join_wrapper .sign form span button {
    margin-left: 20px;
    margin-right: 20px;
    width: 100%;
    height: 42px;
    padding-left: 13px;
    padding-right: 13px;
    font-weight: 600;
    font-size: 13px;
    border-radius: 7px;
    color: #fff;
    border: 1px solid #0988d1;
    background-color: #0988d1;
    outline: none;
    font-family: Inter, open sans, sans-serif !important;
    cursor: pointer;
}
.join_wrapper .sign #s button {
    margin-left: 20px;
    margin-right: 20px;
    margin-bottom: 25px;
    width: 100%;
    height: 42px;
    padding-left: 13px;
    padding-right: 13px;
    font-weight: 600;
    font-size: 13px;
    border-radius: 7px;
    color: #0988d1;
    border: 1px solid #fff;
    background-color: #fff;
    outline: none;
    cursor: pointer;
    font-family: Inter, open sans, sans-serif !important;
}
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.header .centerize {
    max-width: 1140px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header .centerize .logo {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
}
.header .centerize .logo img {
    height: 44px;
}
.header .centerize .logo .btn {
    display: flex;
    align-items: center;
    gap: 10px;
}
.header .centerize .logo .btn li {
    background-color: green;
    list-style: none;
    border-radius: 3px;
    display: flex;
    align-items: center;
    font-size: 15px;
    cursor: pointer;
    padding: 10px;
    color: #fff;
    font-weight: 700;
}


/*desktop view*/


.header .centerize .menu {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    flex-direction: row-reverse;
}
.header .centerize .menu li {
    color: #fff;
    list-style: none;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    background: green;
    padding: 10px;
}
.header .centerize .menu #active {
    color: #fff;
}
.body {
    margin-top: 60px;
    width: 100%;
    display: flex;
    justify-content: center;
}
.body .centerize {
    max-width: 1140px;
    width: 100%;
}
.body .centerize .head {
    width: 100%;
}
.body .centerize .head .offer {
    display: flex;
    align-items: center;
    padding: 15px;
    background-color: #11a294;
}
.body .centerize .head img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}
.body .centerize .head .dotted {
    margin-top: -30px;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
}
.body .centerize .head .dotted .dot {
    width: 10px;
    height: 10px;
    background-color: #fff;
    border-radius: 100%;
}
.body .centerize .head .dotted .active {
    background-color: #4db23f;
}
.body .centerize .rows_allgames_wp {
    margin-top: 40px;
    min-height: 400px;
    width: 100%;
    display: grid;
    margin-bottom: 60px;
    gap: 30px;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}
.body .centerize .rows_allgames_wp .row {
    width: 100%;
    background-color: #fff;
    background: linear-gradient(#711616, #2664a6);
    background-clip: border-box;
    border: 1px solid rgba(0, 0, 0, 0.125);
}
.body .centerize .rows_allgames_wp .row img {
    height: 140px;
    margin-left: auto;
    margin-right: auto;
    display: block;
}
.body .centerize .rows_allgames_wp .row .flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #fff;
    height: 48px;
}
.body .centerize .rows_allgames_wp .row .flex small {
    color: #a87c5c !important;
    margin-left: 9px;
    font-size: 32px;
}
.body .centerize .rows_allgames_wp .row .flex li {
    margin-right: 9px;
    list-style: none;
    padding-left: 15px;
    padding-right: 15px;
    height: 39px;
    color: #fff;
    background-color: #007bff;
    border-radius: 5px;
    display: flex;
    align-items: center;
    cursor: pointer;
}
.body .centerize .profile_wrapper {
    width: 100%;
    background-color: #0fabbb;
    margin-bottom: 100px;
}
.body .centerize .profile_wrapper .center {
    margin: 20px;
    margin-top: 10px;
    margin-bottom: 10px;
    border-radius: 2px;
    border: 1px solid #fff;
}
.body .centerize .profile_wrapper .center .row {
    display: flex;
    width: 100%;
    height: 50px;
    border-bottom: 1px solid #fff;
}
.body .centerize .profile_wrapper .center .row .ques {
    padding-left: 20px;
    font-size: 15px;
    font-weight: 600;
    width: 370px;
    min-width: 370px;
    height: 100%;
    display: flex;
    align-items: center;
    border-right: 1px solid #fff;
}
.body .centerize .profile_wrapper .center .row .ans {
    padding-left: 20px;
    font-size: 15px;
    font-weight: 600;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    border-right: 1px solid #fff;
}
.body .centerize .statement {
    width: 100%;
    background-color: #11a294;
    margin-bottom: 18px;
}
.body .centerize .statement .head {
    width: 100%;
    height: 45px;
    background-color: #0fabbb;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 13px;
    font-weight: 600;
}
.body .centerize .statement .body_round {
    margin: 20px;
    margin-bottom: 10px;
    border: 1px solid #fff;
}
.body .centerize .statement .body_round .head_dp {
    width: 100%;
    height: 37px;
    border-bottom: 1px solid #fff;
    display: flex;
    align-items: center;
}
.body .centerize .statement .body_round .head_dp .box {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    border-right: 1px solid #fff;
}
.body .centerize .statement .body_round .row_dp {
    width: 100%;
    height: 37px;
    border-bottom: 1px solid #fff;
    display: flex;
    align-items: center;
}
.body .centerize .statement .body_round .row_dp .box {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 15px;
    border-right: 1px solid #fff;
}
.body .bet_bd {
    display: flex;
    justify-content: center;
    width: 100%;
}
.body .bet_bd .wrapper_bdt {
    margin-top: 20px;
    margin-bottom: 20px;
    border-radius: 10px;
    border: 1px solid #ddd;
    width: 100%;
    max-width: 400px;
}
.body .bet_bd .wrapper_bdt img {
    margin-top: 17px;
    height: 40px;
    border-radius: 5px;
}
.body .bet_bd .wrapper_bdt .qans {
    margin-top: 13px;
    margin-left: 20px;
}
.body .bet_bd .wrapper_bdt .qans p {
    margin: 0;
    font-size: 15px;
    font-weight: 600;
    color: #446376;
}
.body .bet_bd .wrapper_bdt .qans #ans {
    margin-top: 9px;
}
.body .bet_bd .wrapper_bdt .flex_wp {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-left: 20px;
    margin-right: 20px;
}
.body .bet_bd .wrapper_bdt .flex_wp p {
    margin: 0;
    font-size: 15px;
    font-weight: 600;
    color: #446376;
}
.body .bet_bd .wrapper_bdt .flex_wp input {
    margin-top: 10px;
    width: 100%;
    height: 35px;
    padding-left: 16px;
    padding-right: 16px;
    font-size: 16px;
    outline: none;
    border: 1px solid #ced4da;
    font-family: Inter, open sans, sans-serif !important;
    border-radius: 4px;
}
.body .bet_bd .wrapper_bdt .ror {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-left: 20px;
    margin-right: 20px;
    margin-bottom: -10px;
    border-bottom: 1px solid #ddd;
}
.body .bet_bd .wrapper_bdt .ror p {
    margin: 0;
    font-size: 15px;
    font-weight: 600;
    color: #446376;
    padding-bottom: 10px;
}
.body .bet_bd .wrapper_bdt .flex {
    margin-top: 30px;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}
.body .bet_bd .wrapper_bdt .flex button {
    margin-right: 20px;
    width: 100%;
    height: 45px;
    color: #f1f1f1;
    font-size: 14px;
    font-weight: 600;
    background-color: #0988d1;
    border: 1px solid #0988d1;
    border-radius: 5px;
    cursor: pointer;
    font-family: Inter, open sans, sans-serif !important;
}
.footer {
    width: 100%;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    justify-content: center;
    color: #fff;
}
@media screen and (max-width: 600px) {
    body {
        margin-left: 0;
        width: 100%;
        font-family: Inter, open sans, sans-serif !important;
        background: #fa8505;
        margin-bottom: 0;
        margin-top: 0;
    }
    ::-webkit-scrollbar {
        display: none;
    }
    .join_wrapper {
        margin-top: 100px;
        width: 100%;
        display: flex;
        justify-content: center;
    }
    .join_wrapper .sign {
        max-width: 450px;
        margin-left: 20px;
        margin-right: 20px;
        width: 100%;
        border-radius: 6px;
        border: 1px solid #ddd;
        background-color: #fff;
    }
    .join_wrapper .sign img {
        margin-top: 25px;
        height: 43px;
    }
    .join_wrapper .sign h2 {
        text-align: center;
        font-weight: 500;
    }
    .join_wrapper .sign span {
        display: flex;
    }
    .join_wrapper .sign span input {
        margin-left: 20px;
        margin-right: 20px;
        width: 100%;
        height: 40px;
        padding-left: 13px;
        padding-right: 13px;
        font-size: 15px;
        border-radius: 7px;
        border: 1px solid #ddd;
        outline: none;
        font-family: Inter, open sans, sans-serif !important;
    }
    .join_wrapper .sign span select {
        margin-left: 20px;
        margin-right: 20px;
        width: 100%;
        height: 40px;
        padding-left: 13px;
        padding-right: 13px;
        font-size: 15px;
        border-radius: 7px;
        border: 1px solid #ddd;
        outline: none;
        font-family: Inter, open sans, sans-serif !important;
        background-color: #fff;
        cursor: pointer;
    }
    .join_wrapper .sign form span button {
        margin-left: 20px;
        margin-right: 20px;
        width: 100%;
        height: 42px;
        padding-left: 13px;
        padding-right: 13px;
        font-weight: 600;
        font-size: 13px;
        border-radius: 7px;
        color: #fff;
        border: 1px solid #0988d1;
        background-color: #0988d1;
        outline: none;
        font-family: Inter, open sans, sans-serif !important;
        cursor: pointer;
    }
    .join_wrapper .sign #s button {
        margin-left: 20px;
        margin-right: 20px;
        margin-bottom: 25px;
        width: 100%;
        height: 42px;
        padding-left: 13px;
        padding-right: 13px;
        font-weight: 600;
        font-size: 13px;
        border-radius: 7px;
        color: #0988d1;
        border: 1px solid #fff;
        background-color: #fff;
        outline: none;
        cursor: pointer;
        font-family: Inter, open sans, sans-serif !important;
    }
    .header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: auto;
        display: block;
        justify-content: center;
        align-items: center;
    }
    .header .centerize {
        max-width: 1140px;
        width: 100%;
        display: block;
        align-items: center;
        justify-content: space-between;
    }
    
    /*Mobile view*/
    
    .header .centerize .logo {
        margin-top: 10px;
        margin-bottom: 10px;
        margin-left: 20px;
        margin-right: 20px;
        display: flex;
        align-items: center;
        gap: 8px;
        width: auto;
    }
    .header .centerize .logo img {
        height: 60px;
    }
    .header .centerize .logo .btn {
        display: flex;
        align-items: center;
        gap: 10px;
        width: 100%;
    }
    .header .centerize .logo .btn li {
        padding: 5px;
        height: 30px;
        width: 100%;
        background-color: green;
        list-style: none;
        border-radius: 5px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 13px;
        cursor: pointer;
        color: #fff;
    }
    
    
    
.header .centerize .menu {
    margin-top: 15px;
    display: flex;
    align-items: center;
    gap: 1px;
    width: auto;
    flex-direction: row-reverse;
    justify-content: center;
    background: #bef4f9;
}
    
    
    .header .centerize .menu li {
        color: #fff;
    list-style: none;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    background: green;
    padding: 10px;
    align-items: center;
    
    
    }
    .header .centerize .menu #active {
        color: #fff;
    }
    .body {
        margin-top: 95px;
        width: 100%;
        display: flex;
        justify-content: center;
    }
    .body .centerize {
        max-width: 1140px;
        width: 100%;
    }
    .body .centerize .head {
        width: 100%;
    }
    .body .centerize .head .offer {
        height: 35px;
        display: flex;
        align-items: center;
        padding: 6px 8px;
        background-color: #11a294;
        margin-top: 24px;
    }
    .body .centerize .head img {
        width: 100%;
        height: 220px;
        object-fit: cover;
    }
    .body .centerize .head .dotted {
        margin-top: -30px;
        display: flex;
        align-items: center;
        gap: 10px;
        justify-content: center;
    }
    .body .centerize .head .dotted .dot {
        width: 10px;
        height: 10px;
        background-color: #fff;
        border-radius: 100%;
    }
    .body .centerize .head .dotted .active {
        background-color: #4db23f;
    }
    .body .centerize .rows_allgames_wp {
        margin-top: 40px;
        min-height: 400px;
        margin-left: 20px;
        margin-right: 20px;
        width: auto;
        display: grid;
        margin-bottom: 60px;
        gap: 30px;
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    }
    .body .centerize .rows_allgames_wp .row {
        width: 100%;
        background-color: #fff;
        background: linear-gradient(#711616, #2664a6);
        background-clip: border-box;
        border: 1px solid rgba(0, 0, 0, 0.125);
    }
    .body .centerize .rows_allgames_wp .row img {
        height: 140px;
        margin-left: auto;
        margin-right: auto;
        display: block;
    }
    .body .centerize .rows_allgames_wp .row .flex {
        display: flex;
        align-items: center;
        justify-content: space-between;
        background-color: #fff;
        height: 48px;
    }
    .body .centerize .rows_allgames_wp .row .flex small {
        color: #a87c5c !important;
        margin-left: 9px;
        font-size: 32px;
    }
    .body .centerize .rows_allgames_wp .row .flex li {
        margin-right: 9px;
        list-style: none;
        padding-left: 15px;
        padding-right: 15px;
        height: 39px;
        color: #fff;
        background-color: #007bff;
        border-radius: 5px;
        display: flex;
        align-items: center;
        cursor: pointer;
    }
    .body .centerize .profile_wrapper {
        width: 100%;
        background-color: #0fabbb;
        margin-bottom: 100px;
    }
    .body .centerize .profile_wrapper .center {
        margin: 20px;
        margin-top: 10px;
        margin-bottom: 10px;
        border-radius: 2px;
        border: 1px solid #fff;
    }
    .body .centerize .profile_wrapper .center .row {
        display: flex;
        width: 100%;
        height: 50px;
        border-bottom: 1px solid #fff;
    }
    .body .centerize .profile_wrapper .center .row .ques {
        padding-left: 20px;
        font-size: 15px;
        font-weight: 600;
        width: 100px;
        min-width: 100px;
        height: 100%;
        display: flex;
        align-items: center;
        border-right: 1px solid #fff;
    }
    .body .centerize .profile_wrapper .center .row .ans {
        padding-left: 20px;
        font-size: 15px;
        font-weight: 600;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        border-right: 1px solid #fff;
    }
    .body .centerize .statement {
        width: 100%;
        background-color: #11a294;
        margin-bottom: 18px;
    }
    .body .centerize .statement .head {
        width: 100%;
        height: 45px;
        background-color: #0fabbb;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 13px;
        font-weight: 600;
    }
    .body .centerize .statement .body_round {
        margin: 20px;
        margin-bottom: 10px;
        border: 1px solid #fff;
        overflow-x: scroll;
        overflow-y: hidden;
    }
    .body .centerize .statement .body_round .head_dp {
        width: 100%;
        height: 37px;
        border-bottom: 1px solid #fff;
        display: flex;
        align-items: center;
    }
    .body .centerize .statement .body_round .head_dp .box {
        width: 100%;
        height: 100%;
        min-width: 170px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-size: 14px;
        font-weight: 600;
        border-right: 1px solid #fff;
        border-bottom: 1px solid #fff;
    }
    .body .centerize .statement .body_round .row_dp {
        width: 100%;
        height: 37px;
        border-bottom: 1px solid #fff;
        display: flex;
        align-items: center;
    }
    .body .centerize .statement .body_round .row_dp .box {
        width: 100%;
        height: 100%;
        min-width: 170px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-size: 15px;
        border-right: 1px solid #fff;
        border-bottom: 1px solid #fff;
    }
    .body .bet_bd {
        display: flex;
        justify-content: center;
        width: 100%;
    }
    .body .bet_bd .wrapper_bdt {
        margin-top: 20px;
        margin-bottom: 20px;
        border-radius: 10px;
        border: 1px solid #ddd;
        width: 100%;
        max-width: 400px;
    }
    .body .bet_bd .wrapper_bdt img {
        margin-top: 17px;
        height: 40px;
        border-radius: 5px;
    }
    .body .bet_bd .wrapper_bdt .qans {
        margin-top: 13px;
        margin-left: 20px;
    }
    .body .bet_bd .wrapper_bdt .qans p {
        margin: 0;
        font-size: 15px;
        font-weight: 600;
        color: #446376;
    }
    .body .bet_bd .wrapper_bdt .qans #ans {
        margin-top: 9px;
    }
    .body .bet_bd .wrapper_bdt .flex_wp {
        margin-top: 20px;
        display: flex;
        justify-content: space-between;
        gap: 20px;
        margin-left: 20px;
        margin-right: 20px;
    }
    .body .bet_bd .wrapper_bdt .flex_wp p {
        margin: 0;
        font-size: 15px;
        font-weight: 600;
        color: #446376;
    }
    .body .bet_bd .wrapper_bdt .flex_wp input {
        margin-top: 10px;
        width: 100%;
        height: 35px;
        padding-left: 16px;
        padding-right: 16px;
        font-size: 16px;
        outline: none;
        border: 1px solid #ced4da;
        font-family: Inter, open sans, sans-serif !important;
        border-radius: 4px;
    }
    .body .bet_bd .wrapper_bdt .ror {
        margin-top: 20px;
        display: flex;
        justify-content: space-between;
        gap: 20px;
        margin-left: 20px;
        margin-right: 20px;
        margin-bottom: -10px;
        border-bottom: 1px solid #ddd;
    }
    .body .bet_bd .wrapper_bdt .ror p {
        margin: 0;
        font-size: 15px;
        font-weight: 600;
        color: #446376;
        padding-bottom: 10px;
    }
    .body .bet_bd .wrapper_bdt .flex {
        margin-top: 30px;
        margin-bottom: 20px;
        display: flex;
        justify-content: center;
    }
    .body .bet_bd .wrapper_bdt .flex button {
        margin-right: 20px;
        width: 100%;
        height: 45px;
        color: #f1f1f1;
        font-size: 14px;
        font-weight: 600;
        background-color: #0988d1;
        border: 1px solid #0988d1;
        border-radius: 5px;
        cursor: pointer;
        font-family: Inter, open sans, sans-serif !important;
    }
    .footer {
        width: 100%;
        height: 45px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 15px;
        justify-content: center;
        color: #fff;
    }
}
