
::-webkit-input-placeholder {
    color: #515b74;
}

::-moz-placeholder {
    color: #515b74;
}

:-moz-placeholder {
    color: #515b74;
}

:-ms-input-placeholder {
    color: #515b74;
}

input,
button,
textarea {
    background: 0;
    border: 0;
    outline: 0;
    box-sizing: border-box;
    font-family: ExoSoft;
    font-size: 14px;
    resize: none;
    color: #fff;
}

* {
    padding: 0;
    margin: 0;
    outline: 0;
}

html,
body {
    background: #1a1f2d;
    font-family: ExoSoft;
    font-size: 14px;
    color: #fff;
}

a {
    color: #fff;
    text-decoration: none;
}

ul,
li {
    display: block;
    padding: 0;
    margin: 0;
    list-style: none;
}

em {
    font-style: normal;
}

b {
    font-family: ExoSoftBold;
}

td {
    text-align: left;
    padding: 8px;
}

th {
    font-size: 24px;
    font-family: arial, sans-serif;
}

/* ===HEADER=== */
.header {
    height: 100px;
    position: relative;
    display: flex;
    justify-content: space-between;
    background-color: rgba(8, 10, 25, 0.6);
    transition: height 1s;
    top: -100px;
    backdrop-filter: blur(10px);
}

.header.fixed {
    height: 55px;
    top: 0;
    width: 100%;
    z-index: 999;
    transition: height 1s;
}

.header-banner {
    margin-left: 20px;
    display: flex;
    align-items: center;
    transition: 1s;
    overflow: hidden;
}

.header-banner:hover {
    filter: brightness(1.25) saturate(1.1);
    transform: scale(1.1);
}

.header-banner-image {
    width: auto;
    max-height: 60px;
    transition: max-height 1s;
}

.header.fixed .header-banner-image {
    max-height: 40px;
    width: auto;
}

.header-menu {
    display: flex;
    align-items: center;
    padding: 10px;
    font-family: Komikax;
}

.header-wallet {
    text-align: right;
    margin-right: 10px;
    color: rgb(255, 255, 255);
    height: auto;
}

.header-profile {
    display: flex;
    align-items: center;
    margin-left: auto;
}

.header-secondary-menu {
    text-align: right;
    margin-right: 10px;
    color: rgb(255, 255, 255);
    height: auto;
}

.header.fixed .header-profile .header-secondary-menu {
    display: flex;
    border-right: 1.5px solid;
}

.header-user {
    text-align: center;
    height: 100%;
    margin-right: 20px;
    width: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-user p {
    height: 35px;
    width: 90px;
}

.header-user-login {
    display: inline-block;
    margin-top: 15px;
    width: 55px;
    height: 55px;
    box-sizing: border-box;
    border-radius: 50%;
    border: 6px solid rgb(255, 240, 0);
    position: relative;
    box-shadow: 0 0 10px rgb(255, 240, 0);
    transition: width 0.5s, height 0.5s, box-shadow 0.5s, border 0.5s;
}

.header.fixed .header-user-login {
    width: 45px;
    height: 45px;
}

.header-user-login-logo {
    width: 51px;
    height: 51px;
    border-radius: 50%;
    position: absolute;
    top: -4px;
    left: -4px;
    transition: width 0.5s, height 0.5s;
}

.header.fixed .header-user-login-logo {
    width: 41px;
    height: 41px;
}

.header-user-login-vip {
    width: 35px;
    left: 25px;
    top: 25px;
    position: relative;
}

.header.fixed .header-user-login-vip {
    left: 18px;
    top: 15px;
    transition: 1s linear;
}

.header-user-login:hover:before {
    opacity: 1;
    transform: scale(1);
}

.header-user-login:hover {
    box-shadow: 0 0 40px rgb(8, 112, 223);
    border: 6px solid rgb(8, 112, 223);
}

.header.fixed .header-profile .header-user a p {
    max-height: 0;
    transition: max-height 1s cubic-bezier(.05,.44,.75,1.24);
}

.header.fixed .header-wallet {
    display: flex;
}

.header.fixed .header-wallet .wallet img {
    margin-right: 10px;
}

.header-text {
    margin-left: 5px;
    white-space: nowrap;
    overflow: clip;
    max-width: 125px;
    transition: max-width 0.5s ease-in-out;
    display: inline-block;
}

@media only screen and (max-width: 1500px) {
    .header-text {
        margin-left: 5px;
        white-space: nowrap;
        overflow: clip;
        max-width: 100px;
        transition: max-width 0.5s ease-in-out;
        display: none;
    }
}

.header.fixed .menu a .header-text,
.header.fixed .header-wallet .wallet .header-text {
    max-width: 0;
    transition: max-width 0.5s ease-in-out;
}

.header-text-user {
    margin-left: 5px;
    overflow: hidden;
    max-height: 35px;
    transition: max-height 1s ease-in-out;
    display: inline-block;
}

.header.fixed .header-text-user {
    max-height: 0;
    transition: max-height 0s ease-in;
}

.header-secondary-profile-menu {
    width: 100%;
    font-size: 16px;
    display: block;
    margin-bottom: 5px;
    margin-right: 10px;
    transition: transform 0.3s ease;
}

.header-secondary-profile-menu.active {
    color: rgb(8, 112, 223);
}

.header-secondary-profile-menu:hover {
    color: rgb(8, 112, 223);
    text-decoration: underline;
}

/* ===END=HEADER=== */

.left {
    float: left;
}

.right {
    float: right;
}

.center {
    text-align: center;
}

.hidden {
    overflow: hidden;
}

.clear {
    clear: both;
}

.ell {
    text-overflow: ellipsis;
}

.select-none {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.wrapper {
    min-width: 1280px;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    /*background-color: rgb(255, 240, 0);*/
    background: rgba(255, 255, 255, 0.5) url(../images/general/website/be5858a4a28d3efd95c1d734dbae55e0.webp);
    background-attachment: fixed;
    background-size: cover;
}

.panel {
    width: 310px;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.container {
    margin: 0 auto;
        height: 425px;
}

.container-body {
    min-height: 50vh;
    margin: 0 auto;
    width: 80%;
}

.line {
    background: rgb(8, 112, 223);
    height: 5px;
    margin: 0 40px;
    border-radius: 20px;
}

.menu {
    width: 100%;
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
}

.menu li {
    margin-right: 20px;
}

.menu li:hover .header-text,
.menu .active .header-text {
    max-width: 125px !important;
    display: inline-block;
}

.menu li a {
    font-size: 22px;
    text-decoration: none;
    color: white;
    display: flex;
    align-items: center;
	transition: 0.5s;
}

.menu a:hover {
    color: rgb(8, 112, 223);
    transition: 0.5s;
}

.menu .active a {
    color: rgb(8, 112, 223);
}

.c-title {
    font-size: 24px;
    font-family: ExoSoftMedium;
    padding-bottom: 25px;
    margin-bottom: 30px;
    position: relative;
    color: rgb(200, 213, 242);
    margin-top: 20px;
    font-weight: bold;
}

.c-title:after {
    width: 32px;
    height: 5px;
    background: rgb(8, 112, 223);
    position: absolute;
    bottom: 0;
    left: 0;
    content: "";
    border-radius: 5px;
}

.c-title.nw {
    text-align: center;
}

.c-title.nw:after {
    left: 50%;
    margin-left: calc(-32px / 2);
}

.arcticmodal-overlay,
.arcticmodal-container {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
}

.arcticmodal-container {
    overflow: auto;
    margin: 0;
    padding: 0;
    border: 0;
    border-collapse: collapse;
}

*:first-child + html .arcticmodal-container {
    height: 100%;
}

.arcticmodal-container_i {
    height: 100%;
    margin: 0 auto;
}

.arcticmodal-container_i2 {
    padding: 24px;
    margin: 0;
    border: 0;
    vertical-align: middle;
}

.arcticmodal-error {
    padding: 20px;
    border-radius: 10px;
    background: #000;
    color: #fff;
}

.arcticmodal-loading {
    width: 80px;
    height: 80px;
    border-radius: 10px;
}

.modal-wp {
    width: 283px;
    height: 284px;
    line-height: 284px;
    margin: 0 auto;
    position: relative;
}

.modal-wp img {
    vertical-align: middle;
    max-width: 283px;
    max-height: 284px;
    position: relative;
    z-index: 3;
}

.modal-wp-name {
    font-size: 24px;
    text-align: center;
    padding: 44px 0 0 0;
}

.modal-wp-name span {
    color: rgb(200, 213, 242);
}

.modal-wp-name-chance {
    font-size: 24px;
}

.modal-wp-name-chance span {
    color: rgb(200, 213, 242);
}

.item-loop {
    position: relative;
    display: flex;
    justify-content: left;
    flex-wrap: wrap;
    margin: 0 -20px;
    margin-bottom: -20px;
    width: 100%;
}

.icon {
    padding-right: 5px;
}

.show-win {
    color: #fff;
}

/* CRIADO POR MIM */

.space {
    margin-top: 40px;
}

.wallet {
    height: 20px;
    line-height: 20px;
    margin-bottom: 3px;
}

.wallet img {
    width: 18px;
    vertical-align: middle;
}

.pointer {
    cursor: pointer;
}

.social-network {
    display: inline-block;
    margin-right: 10px;
}

.copyright {
    padding-top: 10px;
}

.break {
    height: 50px;
    width: 100%;
}

.btn a {
    display: inline-block;
    height: 80px;
    border: 5px solid rgb(0, 0, 0);
    background: rgb(8, 112, 223);
    width: 500px;
    border-radius: 50px;
    margin: 0 50px;
    font-size: 18px;
    font-family: ExoSoftLight;
    box-sizing: border-box;
    padding: 9px 0 0 0;
    transition: 0.5s;
    cursor: pointer;
}

.btn a:hover {
    box-shadow: 0 0 30px rgb(8, 112, 223);
    transition: 0.5s;
}

/* ===TWITCH=== */
.btn-login-twitch {
    color: #ffffff;
    background-color: #6441a5;
    display: inline-block;
    padding: 5px 10px;
    line-height: 20px;
    border-radius: 4px;
    transition: 0.5s;
    font-size: 20px;
}

.btn-login-twitch:hover {
    background-color: #472e75;
    border-color: #2f1f4e;
    transition: 0.5s;
}
/* ===END=TWITCH=== */

/* ===HOME=== */
.main {
    display: flex;
}

.main-live {
    margin: 10px;
    height:auto;
    width: 75%;
    border: 2px solid rgb(8, 112, 223);
    background-color: rgb(0, 0, 0);
}

.main-partnership {
    width: 250px;
    margin: 10px;
}

.main-partnership a img{
    width: 100%;
    object-fit: contain;
    /* border: 2px solid rgb(8, 112, 223) */
}
/* ===END=HOME=== */

/* ===LAST=WINNERS=== */
.icons-last-winners {
    width: 50px;
    float: left;
    height: 120px;
    z-index: 1;
    position: relative;
}

.icon-last-winners {
    position: relative;
    font-size: 30px;
    height: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-shadow: -1px -1px 0 rgb(0, 0, 0), 1px -1px 0 rgb(0, 0, 0), -1px 1px 0 rgb(0, 0, 0), 1px 1px 0 rgb(0, 0, 0);
    background-color: rgb(83, 83, 83);
}

.icon-last-winners.active {
    color: rgb(8, 112, 223);
    background-color: rgb(10, 15, 36);
    filter: brightness(1.7) saturate(1.3);
}

.icon-last-winners.not-active {
    opacity: 0.5;
}

.csgonet-winners {
    margin-bottom: 90px;
    top: -5px;
    left: -109px;
    position: relative;
    width: 20000px;
    z-index: 0;
}

.live {
    height: 120px;
    overflow: hidden;
    position: relative;
    background-color: rgb(8, 10, 25);
    z-index: 1;
    }

.live-ul {
    width: 99999px;
}

.live-i:after {
    width: 146px;
    height: 140px;
    position: absolute;
    top: 0;
    left: -3px;
    content: "";
    z-index: 2;
}

.live-i-1 {
    width: 140px;
    height: 120px;
    background: url(../images/global/winner/live-1.webp) no-repeat 0 0;
    float: left;
    position: relative;
}

.live-i-2 {
    width: 140px;
    height: 120px;
    background: url(../images/global/winner/live-2.webp) no-repeat 0 0;
    float: left;
    position: relative;
}

.live-i-3 {
    width: 140px;
    height: 120px;
    background: url(../images/global/winner/live-3.webp) no-repeat 0 0;
    float: left;
    position: relative;
}

.live-i-4 {
    width: 140px;
    height: 120px;
    background: url(../images/global/winner/live-4.webp) no-repeat 0 0;
    float: left;
    position: relative;
}

.live-i-5 {
    width: 140px;
    height: 120px;
    background: url(../images/global/winner/live-5.webp) no-repeat 0 0;
    float: left;
    position: relative;
}

.live-i-6 {
    width: 140px;
    height: 120px;
    background: url(../images/global/winner/live-6.webp) no-repeat 0 0;
    float: left;
    position: relative;
}

.live-i-7 {
    width: 140px;
    height: 120px;
    background: url(../images/global/winner/live-7.webp) no-repeat 0 0;
    float: left;
    position: relative;
}

.live-i-8 {
    width: 140px;
    height: 120px;
    background: url(../images/global/winner/live-8.webp) no-repeat 0 0;
    float: left;
    position: relative;
}

.modal-wp-name.color-1,
.modal-wp-name-chance.color-1 {
    color: #ffea00;
}

.modal-wp-name.color-2,
.modal-wp-name-chance.color-2 {
    color: #ff0000;
}

.modal-wp-name.color-3,
.modal-wp-name-chance.color-3 {
    color: #ff00f7;
}

.modal-wp-name.color-4,
.modal-wp-name-chance.color-4 {
    color: #9315fe;
}

.modal-wp-name.color-5,
.modal-wp-name-chance.color-5 {
    color: #263ef3;
}

.modal-wp-name.color-6,
.modal-wp-name-chance.color-6 {
    color: #31f8f2;
}

.modal-wp-name.color-7,
.modal-wp-name-chance.color-7 {
    color: #686969;
}

.modal-wp-name.color-8,
.modal-wp-name-chance.color-8 {
    color: #4bd500;
}

.live-name {
    text-align: center;
    font-size: 14px;
    font-family: ExoSoftMedium;
    overflow: hidden;
    padding: 5px 5px;
    width: 125px;
}

.live-name span {
    color: rgb(200, 213, 242);
    top: -5px;
    position: relative;
    margin-left: 5px;
}

.live-winner-image {
    width: 20px;
    border-radius: 50%;
}

.live-wp {
    height: 84px;
    line-height: 84px;
    text-align: center;
}

.live-wp img {
    vertical-align: middle;
    width: 100%;
    height: auto;
    transition: 0.5s;
}

.live-wp-box {
    height: 84px;
    line-height: 84px;
    text-align: center;
}

.live-wp-box img {
    vertical-align: middle;
    width: 100px;
    max-height: 85px;
    transition: 0.5s;
}

.live-i:hover .live-wp img {
    transform: translate3d(0px, 5px, 0);
}

@keyframes rot3 {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.modal-wp.wp-1:after {
    background: url(../images/global/row-1-after.png) no-repeat 0 0;
}

.modal-wp.wp-1 {
    background: url(../images/global/row-1.png) no-repeat 0 0;
}

.modal-wp.wp-2:after {
    background: url(../images/global/row-2-after.png) no-repeat 0 0;
}

.modal-wp.wp-2 {
    background: url(../images/global/row-2.png) no-repeat 0 0;
}

.modal-wp.wp-3:after {
    background: url(../images/global/row-3-after.png) no-repeat 0 0;
}

.modal-wp.wp-3 {
    background: url(../images/global/row-3.png) no-repeat 0 0;
}

.modal-wp.wp-4:after {
    background: url(../images/global/row-4-after.png) no-repeat 0 0;
}

.modal-wp.wp-4 {
    background: url(../images/global/row-4.png) no-repeat 0 0;
}

.modal-wp.wp-5:after {
    background: url(../images/global/row-5-after.png) no-repeat 0 0;
}

.modal-wp.wp-5 {
    background: url(../images/global/row-5.png) no-repeat 0 0;
}

.modal-wp.wp-6:after {
    background: url(../images/global/row-6-after.png) no-repeat 0 0;
}

.modal-wp.wp-6 {
    background: url(../images/global/row-6.png) no-repeat 0 0;
}

.modal-wp.wp-7:after {
    background: url(../images/global/row-7-after.png) no-repeat 0 0;
}

.modal-wp.wp-7 {
    background: url(../images/global/row-7.png) no-repeat 0 0;
}

.modal-wp.wp-8:after {
    background: url(../images/global/row-8-after.png) no-repeat 0 0;
}

.modal-wp.wp-8 {
    background: url(../images/global/row-8.png) no-repeat 0 0;
}

/* ===END=LAST=WINNERS=== */

/* ===FOOTER=== */
.footer {
    text-align: center;
    padding: 40px 0;
    margin-top: 60px;
}

.footer ul {
    display: inline-block;
    margin: 0;
    padding: 0;
}

.footer ul li {
    float: none;
    font-size: 20px;
    color: #ffffff;
    font-family: ExoSoftLight;
    display: inline-block;
    margin: 0 10px;
}

.footer ul li a {
    float: none;
    font-size: 25px;
    color: #ffffff;
    font-family: ExoSoftLight;
}

.twitch:hover {
    color: rgb(145, 70, 255);
    transition: 0.5s;
}

.youtube:hover {
    color: rgb(255, 0, 0);
    transition: 0.5s;
}

.instagram:hover {
    color: rgb(225, 48, 108);
    transition: 0.5s;
}

.twitter:hover {
    color: rgb(29, 161, 242);
    transition: 0.5s;
}

.steam:hover {
    color: rgb(42, 71, 94);
    transition: 0.5s;
}

.facebook:hover {
    color: rgb(24, 119, 242);
    transition: 0.5s;
}

.tiktok:hover {
    color: rgb(0, 242, 234);
    transition: 0.5s;
}

.discord:hover {
    color: rgb(114, 137, 218);
    transition: 0.5s;
}

.kick:hover {
    color: rgb(0, 231, 1);
    transition: 0.5s;
}

.telegram:hover {
    color: rgb(36, 161, 222);
    transition: 0.5s;
}

.whatsapp:hover {
    color: rgb(37, 211, 102);
    transition: 0.5s;
}

/* ===END=FOOTER=== */