:root {
    --color-white: #FFF;
    --color-dark-cyan-blue: #0E1116;
    --color-medium-light-cyan-blue: #9AA3AE;
    --color-cyan-blue: #22D1B8;
    --color-cyan-blue-15: #46DEC4;
    --color-dark-cyan-blue-2: #171C22;
    --color-black: #000;
    --color-black-70: #000000B3;
    --color-transparent: transparent;
    --header-height: 176.5px;
    --button-form-width: 265px;
    --transition-color: color .15s ease-in-out;
    --transition-background-color: background-color .15s ease-in-out;
    --transition-color-border-color: color .15s ease-in-out, border-color .15s ease-in-out;
}

html, body {
    height: 100%;
    margin: 0;
}

body {
    background-color: var(--color-dark-cyan-blue);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow-x: hidden;
}

html {
    scrollbar-width: auto;
    scrollbar-color: var(--color-cyan-blue) var(--color-dark-cyan-blue);
}

body::-webkit-scrollbar {
    width: 12px;
}

body::-webkit-scrollbar-track {
    background-color: var(--color-dark-cyan-blue) !important;
}

body::-webkit-scrollbar-thumb {
    background-color: var(--color-cyan-blue);
    border: 3px solid var(--color-dark-cyan-blue);
    border-radius: 20px;
}

.container {
    padding-left: 20px;
    padding-right: 20px;
}

#serverMessage:focus,
#serverMessage:focus-visible {
    outline: none;
    box-shadow: none;
}

.message {
    font-size: 14px;
    margin-bottom: 10px;
    margin-left: 5px;
}

.message-success,
.message-error {
    color: var(--color-medium-light-cyan-blue);
}

.message-success i,
.message-error i {
    color: var(--color-cyan-blue);
}

.message-success a,
.message-error a {
    color: var(--color-cyan-blue) !important;
    cursor: pointer;
}

.message-success a:hover,
.message-error a:hover {
    color: var(--color-cyan-blue-15) !important;
    transition: var(--transition-color);
}

a {
    cursor: pointer;
}

main {
    flex: 1;
    padding-top: var(--header-height);
}

header {
    box-shadow: 0 0 20px 0 var(--color-black-70);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1;
    height: var(--header-height);
}

#top {
    padding: 12px 0 9px 0;
}

.bg-color-cyan-blue {
    background-color: var(--color-cyan-blue);
}

.bg-color-dark-cyan-blue {
    background-color: var(--color-dark-cyan-blue);
}

.bg-color-dark-cyan-blue-2 {
    background-color: var(--color-dark-cyan-blue-2);
}

.social-media a {
    text-decoration: none;
}

.social-media a:first-child {
    margin-right: 10px;
}

.social-media a i {
    color: var(--color-dark-cyan-blue);
}

.social-media a i:hover {
    color: var(--color-white);
    transition: var(--transition-color);
}

.menu {
    padding: 25px 0;
}

.navbar-brand {
    margin-right: 0;
    padding-bottom: 0;
    padding-top: 0;
}

.navbar-dark .navbar-toggler {
    color: var(--color-medium-light-cyan-blue);
    border-color: var(--color-medium-light-cyan-blue);
}

.navbar-dark .navbar-toggler:hover {
    color: var(--color-white);
    border-color: var(--color-white);
    transition: var(--transition-color-border-color);
}

.navbar-dark .navbar-toggler-icon {
    -webkit-mask: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='black' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") center/contain no-repeat;
    mask: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='black' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") center/contain no-repeat;
    background-color: var(--color-medium-light-cyan-blue);
    background-image: none;
    opacity: inherit !important;
}

.navbar-dark .navbar-toggler:hover .navbar-toggler-icon {
    background-color: var(--color-white);
    transition: var(--transition-background-color);
}

.navbar-dark .navbar-toggler.is-open {
    color: var(--color-white);
    border-color: var(--color-white);
}

.navbar-dark .navbar-toggler.is-open .navbar-toggler-icon {
    background-color: var(--color-white);
}

.navbar-dark .navbar-nav .nav-link {
    font-size: 18px;
    font-weight: bold;
}

.navbar-dark .navbar-nav .nav-link,
.navbar-dark .navbar-nav .nav-link:focus {
    color: var(--color-white);
}

.navbar-dark .navbar-nav .nav-link:hover {
    color: var(--color-cyan-blue);
    transition: var(--transition-color);
}

.navbar-dark .navbar-nav .nav-item .nav-link {
    display: initial;
    padding-left: 23px;
    padding-right: 23px;
}

#navbarCollapse > ul {
    margin: 0 auto !important;
}

#navbarCollapse ul li.active a {
    border-bottom: solid 2px var(--color-cyan-blue);
    color: var(--color-white);
}

#dropdownMenuButton1 {
    color: var(--color-transparent);
    padding-left: 0px;
    padding-right: 0px;
    width: 32px;
}

#dropdownMenuButton1:focus {
    box-shadow: none;
}

#dropdownMenuButton1 img {
    float: right;
}

.dropdown-menu-center {
    left: 50% !important;
    transform: translateX(-50%) !important;
    right: auto !important;
}

#locale-switcher {
    background-color: var(--color-dark-cyan-blue-2) !important;
    border: none;
    border-radius: 5px;
    box-shadow: 0 0 20px 0 var(--color-black-70);
    min-width: 0;
    padding: 0;
    width: 145px;
    text-align: center;
    z-index: 1;
}

#locale-switcher li a {
    padding: 10px 25px;
}

#locale-switcher li a:focus,
#locale-switcher li a:active {
    background-color: var(--color-dark-cyan-blue-2);
}

#locale-switcher li a:hover {
    background-color: var(--color-cyan-blue);
    transition: var(--transition-background-color);
}

#locale-switcher li a:hover span {
    color: var(--color-dark-cyan-blue);
    font-weight: bold;
}

#locale-switcher .dropdown-item img {
    margin-right: 15px;
}

#locale-switcher .dropdown-item span {
    color: var(--color-white);
}

.dropdown-menu li #en-us {
    border-radius: 5px 5px 0 0;
}

.dropdown-menu li #pt-br {
    border-radius: 0 0 5px 5px;
}

#offcanvasWithBackdrop {
    background-color: var(--color-dark-cyan-blue-2);
    border-right: inherit;
    box-shadow: 0 0 20px 0 var(--color-black-70);
    z-index: 1;
}

#offcanvasWithBackdrop .btn-close {
    -webkit-mask: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;
    mask: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;
    background-color: var(--color-medium-light-cyan-blue);
}

#offcanvasWithBackdrop .btn-close:hover {
    background-color: var(--color-white);
    transition: var(--transition-background-color);
}

.btn-close {
    background: none;
    opacity: inherit !important;
}

.btn-close:focus {
    box-shadow: none;
}

.offcanvas-body {
    padding: 0;
}

.offcanvas-body ul li {
    padding-left: 16px;
    padding-right: 16px;
}

.offcanvas-body ul li:hover,
.offcanvas-body ul li:focus,
.offcanvas-body ul li:active,
.offcanvas-body ul li:target,
.offcanvas-body ul li.active {
    background-color: var(--color-dark-cyan-blue);
}

.offcanvas-body ul li:hover {
    transition: var(--transition-background-color);
}

.offcanvas-body ul li a {
    color: var(--color-medium-light-cyan-blue);
}

.offcanvas-body ul li a:hover,
.offcanvas-body ul li a:focus,
.offcanvas-body ul li a:active,
.offcanvas-body ul li.active a {
    color: var(--color-white);
    font-weight: bold;
}

.offcanvas-body ul li a:hover {
    transition: var(--transition-color);
}

.image-float {
    position: absolute;
    z-index: 1;
}

@media (max-width: 1140px) {
    .image-float {
        display: none;
    }
}

.image-coin-lt {
    height: 330px;
    left: 0;
    top: 140px;
}

.image-coin-rt {
    right: 0;
    top: 110px;
}

@media (max-width: 540px) {
    .image-coin-lt {
        top: 3500px !important;
    }    
    .bg-dark-2 .image-coin-lt {
        width: 25%;
    }
    .image-coin-rt {
        top: 4000px !important;
    }
    .bg-dark-2 .image-coin-rt {
        width: 40%;
    }
}

@media (min-width: 541px) and (max-width: 768px) {
    .bg-dark-2 .image-coin-lt {
        width: 15%;
    }
    .bg-dark-2 .image-coin-rt {
        width: 25%;
    }
}

.center {
    align-items: center;
    display: flex;
    justify-content: center;
}

#preload {
    background: url(../image/pre-load.opt.gif) center no-repeat;
    display: none;
    height: 30px;
    margin-top: 20px;
}

.register-form {
    max-width: 600px;
    width: 100%;
}

.register-form .data {
    padding: 40px 0;
}

.register-form .data h1 {
    color: var(--color-white);
    font-weight: bold;
}

.register-form .data div:first-child p {
    color: var(--color-medium-light-cyan-blue);
}

.register-form .data .field {
    padding: 10px 12px;
}

.register-form .data .field:nth-child(10) {
    color: var(--color-white);
    line-height: 20px;
    margin-left: 5px;
}

.register-form .data .field label {
    color: var(--color-white);
    font-weight: bold;
    margin-bottom: 10px;
    margin-left: 5px;
}

.register-form .data .field .form-control {
    background-color: var(--color-dark-cyan-blue);
    border: 1px solid var(--color-medium-light-cyan-blue);
    border-radius: 15px;
    line-height: 3.2;
    padding: 6px 30px;
    color: var(--color-white);
}

.register-form .data .field .form-control:focus {
    border: 1px solid var(--color-cyan-blue);
    outline: none;
}

.register-form .data .field .form-control::placeholder {
    color: var(--color-medium-light-cyan-blue);
}

.register-form .data .field .form-control:-webkit-autofill,
.register-form .data .field .form-control:-webkit-autofill:hover,
.register-form .data .field .form-control:-webkit-autofill:focus,
.register-form .data .field .form-control:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0px 1000px var(--color-dark-cyan-blue) inset !important;
    -webkit-text-fill-color: var(--color-white) !important;
    background-color: var(--color-dark-cyan-blue) !important;
    transition: var(--transition-background-color);
}

.register-form .data .field select {
    line-height: 3.2;
    padding: 6px 30px;
}

.register-form .data .field-button,
.register-form .data .field-button-3 {
    padding-top: 30px;
}

.register-form .data .field-button button {
    padding: 15px 100px;
}

.register-form .data .field-button-2 {
    padding-top: 35px;
}

.register-form .data .field-button-4 {
    padding-top: 25px;
}

.register-form .data .field-button button,
.register-form .data .field-button-2 button,
.register-form .data .field-button-3 button,
.register-form .data .field-button-4 button {
    font-size: 22px;
}

.register-form .data .field-button-2 button,
.register-form .data .field-button-3 button,
.register-form .data .field-button-4 button {
    padding: 15px 0px;
    width: var(--button-form-width);
}

.register-form .data .field-2 {
    padding-top: 5px !important;
}

.register-form .data button {
    background-color: var(--color-cyan-blue);
    border: none;
    border-radius: 15px;
    color: var(--color-dark-cyan-blue);
    font-weight: bold;
}

.register-form .data button:hover {
    background-color: var(--color-cyan-blue-15);
    transition: var(--transition-background-color);
}

.register-form .data button:focus {
    box-shadow: none;
}

input:-moz-autofill {
    box-shadow: 0 0 0px 1000px var(--color-dark-cyan-blue) inset !important;
    -moz-text-fill-color: var(--color-white) !important;
}

input[type="checkbox"] {
    -webkit-appearance: none;
    background-color: var(--color-white);
    border-radius: 4px;
    width: 13px;
    height: 13px;
    padding: 0 !important;
}

input[type="checkbox"]:checked {
    background-color: var(--color-cyan-blue);
}

.info {
    padding-top: 10px;
    text-align: center;
}

.info p {
    color: var(--color-white);
    margin-bottom: 0;
}

.info p span {
    color: var(--color-white);
}

.info p a {
    color: var(--color-cyan-blue) !important;
    cursor: pointer;
    text-decoration: none !important;
}

.info p a:hover {
    color: var(--color-cyan-blue-15) !important;
    transition: var(--transition-color);
}

footer {
    background-color: var(--color-dark-cyan-blue-2);
    padding: 30px;
}

footer p {
    color: var(--color-medium-light-cyan-blue);
    font-weight: bold;
}

footer .social-media {
    text-align: right;
}

footer > .container > .row > .col-12:first-child,
footer > .container > .row > .col-12:nth-child(2) > .row > .col-12:first-child {
    padding-right: 0;
}

footer > .container > .row > .col-12:nth-child(2),
footer > .container > .row > .col-12:nth-child(2) > .row > .col-12:first-child,
footer > .container > .row > .col-12:nth-child(2) > .row > .col-12:nth-child(2) {
    padding-left: 0;
}

footer .social-media a i {
    color: var(--color-medium-light-cyan-blue);
}

footer .social-media a i:hover {
    color: var(--color-white);
    transition: var(--transition-color);
}

@media (max-width: 435px) {
    footer .text-center {
        font-size: 13px;
    }
}

@media (max-width: 575px) {
    footer > .container {
        padding-left: 0;
        padding-right: 0;
    }
    footer > .container > .row > .col-12:first-child {
        padding-left: 0;
    }
    footer > .container > .row > .col-12:nth-child(2),
    footer > .container > .row > .col-12:nth-child(2) > .row > .col-12:nth-child(2) {
        padding-right: 0;
    }
    footer > .container > .row > .col-12:first-child div {
        text-align: center;
    }        
}

@media (min-width: 576px) and (max-width: 767px) {
    footer .text-center {
        font-size: 14px;
    }
}

@media (max-width: 992px) {
    footer .social-media {
        padding-bottom: 0;
        text-align: center !important;
    }
    footer .social-media,
    footer .text-center {
        padding-top: 12px;
    }
}

#user_image {
    margin-top: 15px;
}

.filepond--root {
    margin: 0 auto;
    width: 170px;
}

.filepond--drop-label {
    background-color: var(--color-cyan-blue);
    cursor: pointer;
}

.filepond--drop-label:hover {
    background-color: var(--color-cyan-blue-15);
    transition: var(--transition-background-color);
}

.filepond--drop-label label {
    cursor: pointer;
    font-size: 2em;
}

.filepond--drop-label label i {
    color: var(--color-dark-cyan-blue);
}

.filepond--drop-label:hover label i {
    color: var(--color-white);
    transition: var(--transition-color);
}

.filepond--panel-root {
    background-color: var(--color-cyan-blue);
}

.filepond--file-action-button:focus,
.filepond--file-action-button:hover {
    box-shadow: inherit;
}

#countries {
    scrollbar-width: auto;
    scrollbar-color: var(--color-cyan-blue) var(--color-dark-cyan-blue);
}

#countries::-webkit-scrollbar {
    width: 12px;
}

#countries::-webkit-scrollbar-track {
    background-color: var(--color-dark-cyan-blue) !important;
}

#countries::-webkit-scrollbar-thumb {
    background-color: var(--color-cyan-blue);
    border: 3px solid var(--color-dark-cyan-blue);
    border-radius: 20px;
}

.register-user-tupp-2 {
    color: var(--color-cyan-blue);
    text-decoration: none;
}

.register-user-tupp-2:hover {
    color: var(--color-cyan-blue-15);
    transition: var(--transition-color);
}

#tupp,
#notification {
    cursor: pointer;
}

.checkbox-label {
    display: inline;
    font-weight: normal !important;
    margin: 0 !important;
}

.checkbox-label,
.checkbox-label span {
    cursor: pointer;
}




























.space button {
    background-color: #1B1F24 !important;
}

#navbarCollapse > button,
.bg-tournament button,
.element .symbol,
.pkg .focus .pkg-header,
.pkg .focus .btn-pack button,
.bg-dark .box-0 button {
    background-color: #B51A1A;
}

.bg-tournament button,
.pkg .focus .btn-pack button,
.bg-dark .box-0 button {
    padding: 15px 0;
}






#auth a {
    text-decoration: none;
}

#auth a,
#auth span,
#navbarCollapse > button,
.bg-tournament,
.bg-tournament button,
.bg-news,
.bg-gameplay,
.bg-our-prices,
.title-element,
.element i,
.bg-start-now .title,
.pkg .focus .pkg-header,
.pkg .focus .btn-pack button,
.bg-token .title,
.bg-blackpoker .title,
.text-3,
.bg-dark .box-0 button,
.space .text,
.space button {
    color: #FFF;
}

#auth span,
.pkg .focus .pkg-body .pkg-features ul li i {
    margin-right: 10px;
}

#auth a:hover {
    color: #1B1F24 !important;
}

#auth {
    text-align: right;
}

#auth a,
#auth span,
#navbarCollapse > button,
.bg-tournament .title,
.bg-news .title,
.novidades-text .title,
.bg-gameplay .title,
.bg-start-now .title,
.bg-our-prices,
.bg-tournament button,
.element .title-element,
.pkg .focus .pkg-header,
.pkg .focus .pkg-body .value .main,
.pkg .focus .btn-pack button,
.bg-token .title,
.bg-blackpoker .title,
.bg-dark .box-0 button,
.space .text,
.space button {
    font-weight: bold;
}

#auth a,
#auth span,
#navbarCollapse > button {
    font-size: 18px;
}

#auth span {
    margin-left: 10px;
}

.pkg .focus .pkg-body .value .main,
.pkg .focus .pkg-body .value .side .side-red,
.pkg .focus .pkg-body .pkg-features ul li i {
    color: #B51A1A;
}

.back,
.pkg .focus {
    position: relative;
}

.form-control:focus {
    box-shadow: none;
}

.pkg .focus,
.pkg .focus .pkg-body .value .main,
.pkg .focus .pkg-body .value .side {
    padding: 0;
}

#navbarCollapse > button,
.bg-tournament button,
.pkg .focus .btn-pack button,
.bg-dark .box-0 button,
.space button {
    border: none;
}

#navbarCollapse > button {
    border-radius: initial;
}

#navbarCollapse > button {
    padding: 13px 25px;
}

#navbarCollapse > button:hover,
.bg-tournament button:hover,
.bg-dark .box-0 button:hover,
.pkg .focus .btn-pack button:hover {
    background-color: #911515;
}

.pkg .focus .btn-pack {
    position: absolute;
}

.image-card-lt {
    left: 0;
}

.bg-tournament .image-card-lt,
.bg-news .image-card-lt {
    top: 20px;
}

.image-card-rt {
    right: 0;
}

.bg-tournament .image-card-rt,
.bg-news .image-card-rt {
    top: 370px;
}

.start-now .image-card-lt {
    top: 540px;
}
.start-now .image-card-rt {
    top: 0;
}

.bg-red-gradient {
    background: linear-gradient(90deg, rgba(171,32,29,1) 0%, rgba(87,4,4,1) 100%);
}

.pkg .focus .btn-pack,
.pkg .focus .btn-pack button {
    width: 100%;
}

.pkg .focus .pkg-header,
.space {
    padding: 40px 0;
}



#notification,
#tupp,
.message i,
.pkg .focus .pkg-body .value .side {
    margin-right: 5px;
}

#notification {
    margin-top: 15px;
}

.pkg .focus .btn-pack button,
.pkg .focus {
    border-radius: 15px;
}







.bg-tournament button,
.bg-dark .box-0 button {
    margin: 0 auto;
}

.element .symbol,
.pkg .focus .pkg-header,
.space .text {
    text-align: center;
}

.truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.navbar-toggler:focus {
    box-shadow: none;
}

a.disabled,
button.disabled {
    cursor: not-allowed;
    pointer-events: none;
}

.bg-tournament {
    background-image: url(../image/bg-tournament.opt.png);
    padding: 160px 0;
}

.bg-news {
    background-image: url(../image/bg-news.opt.png);
    padding: 160px 0;
}

.bg-token {
    background-image: url(../image/bg-token.opt.png);
    padding: 35px 0 35px 0;
}

.bg-blackpoker {
    background-image: url(../image/bg-blackpoker.opt.png);
    padding: 35px 0 35px 0;
}

.bg-gameplay {
    background-image: url(../image/bg-gameplay.opt.png);
}

.bg-our-prices {
    background-image: url(../image/bg-our-prices.opt.png);
}

.bg-start-now {
    background-image: url(../image/bg-get-started.opt.png);
    padding: 75px 0 100px 0;
}

.bg-tournament,
.bg-news,
.bg-start-now,
.bg-token,
.bg-blackpoker,
.bg-gameplay,
.bg-our-prices {
    background-position: center;
    background-repeat: no-repeat;
    background-size: 90%;
}

.bg-tournament .title,
.bg-news .title {
    font-size: 80px;
}

.bg-start-now .title,
.bg-gameplay .title,
.bg-our-prices .title,
.element .fa-gamepad,
.pkg .focus .pkg-body .value .main {
    font-size: 70px;
}

.bg-tournament .text,
.bg-tournament button,
.element .title-element,
.bg-dark .box-0 button {
    font-size: 23px;
}

.bg-tournament button,
.bg-dark .box-0 button {
    display: block;
    width: 275px;
}

.box {
    padding-bottom: 35px;
}

.bg-dark .back .bg-tournament .image-card-rt {
    top: 100px;
}

.bg-dark .back .bg-tournament .image-card-lt {
    top: 400px;
}

.bg-little-dark .back {
    padding-bottom: 50px;
}

#startExplorer {
    display: none;
}

.element .title-element {
    margin-top: 10px;
}

.element .title-element,
.pkg .focus .pkg-body .pkg-features ul,
.pkg .focus .pkg-body .pkg-features ul li:last-of-type,
.title {
    margin-bottom: 0 !important;
}

.element .fa-trophy,
.element .fa-hat-wizard {
    padding-top: 5px;
}

.element .fa-trophy,
.element .fa-hat-wizard {
    padding-bottom: 5px;
}

.element .fa-trophy,
.element .fa-hat-wizard {
    font-size: 60px;
}

.pkg .focus {
    height: 930px;
}

.pkg .focus .pkg-body {
    background-color: #FFF;
}

.pkg .focus .pkg-header {
    border-radius: 15px 15px 0 0;
    font-size: 29px;
}

.pkg .focus .pkg-body {
    border-radius: 0 0 15px 15px;
    padding: 40px 30px 10px 30px;
}

.pkg .focus .pkg-body .value {
    display: table;
    margin-left: auto;
    margin-right: auto;
}

.pkg .focus .pkg-body .value div {
    width: auto;
}

.pkg .focus .pkg-body .value .main,
.pkg .focus .pkg-body .value .main,
.pkg .focus .pkg-body .value .side {
    float: left;
}

.pkg .focus .pkg-body .value .main {
    line-height: 70px;
}

.pkg .focus .pkg-body .value .side:first-of-type {
    font-size: 30px;
    line-height: 45px;
}

.pkg .focus .pkg-body .value .side div,
.pkg .focus .btn-pack button {
    font-size: 25px;
}

.pkg .focus .pkg-body .value .side div {
    line-height: 35px;
}

.pkg .focus .pkg-body .pkg-features ul {
    list-style-type: none;
    padding: 40px 0 0 0;
}

.pkg .focus .pkg-body .pkg-features ul li {
    font-size: 17px;
    margin-bottom: 15px;
}

.pkg .focus .pkg-body .pkg-features ul li i,
.text-3 {
    font-size: 20px;
}

.pkg .focus .pkg-body .pkg-features ul li span {
    color: #1B1F24;
}

.pkg .focus .btn-pack {
    margin: auto;
    bottom: 0;
}

.pkg .focus .btn-pack {
    padding: 30px;
}

.black-coin {
    padding-top: 35px;
}

.box-0 {
    padding-left: 50px;
    padding-right: 50px;
}

.bg-token .title,
.bg-blackpoker .title {
    font-size: 50px;
}

.text-3 {
    margin-bottom: 35px;
}

.space .text {
    font-size: 46px;
}

.space button {
    font-size: 28px;
    padding: 28px 115px;
}

.space button:hover {
    background-color: #121417 !important;
}

.bg-dark-2 {
    background-color: #1B1F24;
    padding-bottom: 25px;
}

.clear {
    padding-top: 0 !important;
    margin-bottom: 35px;
}

.bg-dark-2 .element:first-child,
.bg-dark-2 .element:nth-child(2) {
    padding: 0 10px 30px 10px !important;
}

.bg-dark-2 .element:nth-child(3),
.bg-dark-2 .element:nth-child(4) {
    padding: 30px 10px 0 10px !important;
}

.element .symbol {
    border-radius: 0;
    float: left;
    margin-right: 20px;
    padding: 40px 0;
    width: 150px;
}

.element .symbol i {
    font-size: 50px;
}

.element .text {
    color: #FFF;
    border-radius: 0;
    line-height: initial !important;
}

.element .text .title {
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 0;
}

.element .text .description {
    font-size: 25px;
    margin-bottom: 0;
}

.bg-dark-2 img {
    top: 3000px;
}

.bg-dark .element {
    text-align: center;
}

.bg-dark .element div {
    background-color: #B51A1A;
    padding: 70px 0;
    border-radius: 15px;
}

#erro-404 {
    color: #B51A1A;
    text-decoration: none;
    position: fixed;
    z-index: 1;
    top: 0;
    width: 100%;
    opacity: 50%;
    background-color: #000;
    padding: 15px;
}

#erro-404:hover {
    opacity: 100%;
}

#erro-404 h1 {
    font-size: 22px;
    font-weight: bold;
    margin: 0;
}

#bg-404 {
    background: url(../image/bg-404.opt.png) center repeat;
}

#front-404 {
    display: block;
    margin: auto;
    padding: 70px;
    z-index: 1;
    max-height: 664px;
}

#erro-404 h1 .fa-home {
    margin-right: 5px;
}

.button-explorer {
    background-color: #B51A1A;
    border: none;
    color: #FFF;
    display: block;
    font-size: 18px;
    font-weight: bold;
    padding: 15px 0;
    width: 275px;
}

.button-explorer {
    margin: auto;
}

.button-explorer:hover {
    background-color: #911515;
}

.novidades-text hr {
    color: #FFF;
    margin-top: 60px;
}

.display-settings-explorer-title {
    color: #000;
    font-weight: bold;
    font-size: 35px;
    padding-top: 25px;
    text-align: center;
}

.display-settings-explorer-room-name {
    color: #000;
    font-weight: bold;
    font-size: 22px;
    margin: 15px 0;
}

.display-settings-explorer-room-description {
    color: #000;
    margin-bottom: 0;
}

.display-settings-explorer-container-head {
    background-color: #1C1C1C;
    padding: 50px 0 0 0;
}

.display-settings-explorer-container-body {
    background-color: #FFF;
    padding: 50px;
}

.display-settings-explorer-container-head path {
    fill: #FFF;
    fill-opacity: 0.501961;
}

.display-settings-explorer-container-head ul {
    margin-bottom: 0 !important;
}

.display-settings-explorer-container-head span {
    color: #FFF;
    opacity: 0.501961;
}

#pills-deck-tab,
#pills-room-tab,
#pills-preview-tab {
    background-color: inherit;
}

#pills-deck-tab.active path,
#pills-room-tab.active path,
#pills-preview-tab.active path {
    fill: #FFF;
    fill-opacity: 1;
}

#pills-deck-tab.active span,
#pills-room-tab.active span,
#pills-preview-tab.active span {
    color: #FFF;
    opacity: 1;
}

#pills-deck-tab span,
#pills-room-tab span,
#pills-preview-tab span {
    display: block;
}

.display-settings-explorer-panel {
    background-color: #FFF;
    padding: 25px;
    text-align: center;
}

#pills-tabContent {
    background-color: #FFF;
}

.selectedExplorer {
    background-color: #1C1C1C;
    border: solid 2px #B51A1A;
    border-radius: 12px;
    box-shadow: 0 0 20px 0 rgb(0 0 0 / 70%);
    color: white;
}

.selectedExplorer p {
    color: #FFF;
}

.selectedExplorerCard {
    cursor: pointer;
    padding: 30px;
    text-align: center;
}

#pills-preview-tab.active {
    color: #FFF;
    opacity: 0.501961;
}

@media (min-width: 992px) {
    .pkg .focus .pkg-body {
        height: 790px;
    }
    .pkg .focus .btn-pack button {
        margin-bottom: 20px;
    }
}

@media (max-width: 992px) {
    .bg-tournament,
    .bg-news {
        padding: 90px 0;
    }
    .bg-start-now {
        padding: 25px 0 50px 0;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    #navbarCollapse > ul {
        display: block;
        text-align: center;
    }
    #navbarCollapse > ul li {
        display: inline-block;
    }
    .bg-token .title,
    .bg-blackpoker .title {
        font-size: 30px !important;
    }
    .space .text {
        font-size: 40px;
    }

    .element .text .title {
        font-size: 26px !important;
    }
    .element .text .description {
        font-size: 21px !important;
    }
    .element .symbol {
        width: 120px !important;
    }
    .element .symbol i {
        font-size: 30px !important;
    }
    .pkg .focus .pkg-header {
        font-size: 22px !important;
    }
    .pkg .focus .pkg-header {
        padding: 25px 0;
    }
    .pkg .focus .pkg-body .pkg-features ul li {
        margin-bottom: 10px;
    }
    .pkg .focus .pkg-body .pkg-features ul li:last-child {
        margin-bottom: 0 !important;
    }
    .pkg .focus .pkg-body .pkg-features ul li {
        font-size: 14px;
    }
    .pkg .focus .pkg-body .value .main {
        font-size: 45px;
        line-height: 45px;
    }
    .pkg .focus .pkg-body {
        padding-top: 25px !important;
    }
    .pkg .focus .pkg-body .pkg-features ul {
        padding-top: 20px;
    }
    .pkg .focus .pkg-body {
        height: 850px;
    }
    .pkg .focus .btn-pack button {
        font-size: 16px;
    }
    .pkg .focus .pkg-body .value .side div {
        font-size: 20px;
        line-height: 20px;
    }
    .pkg .focus .pkg-body .value .side:first-of-type {
        font-size: 25px;
        line-height: 25px;
    }
}

@media (min-width: 768px) {
    .pkg .focus .pkg-body .value .side:nth-child(2) {
        padding-left: 5px !important;
        margin-right: 0 !important;
    }
    .bg-gameplay,
    .bg-our-prices {
        padding: 90px 0 !important;
    }
}

@media (max-width: 767px) {
    .bg-tournament .title,
    .bg-news .title,
    .novidades-text .title,
    .bg-gameplay .title,
    .bg-our-prices .title {
        font-size: 50px;
    }
    .bg-gameplay .title,
    .bg-our-prices .title,
    .bg-start-now .title {
        font-size: 40px;
    }
    .bg-tournament .text,
    .bg-tournament button,
    .element .title-element,
    .bg-dark .box button,
    .space button {
        font-size: 18px;
    }
    .start-now .element:first-child .title-element,
    .start-now .element:nth-child(2) .title-element {
        margin-bottom: 20px;
    }
    .pkg .focus {
        height: auto;
    }
    .pkg .focus .pkg-body .pkg-features {
        padding-bottom: 85px;
    }
    .pkg .focus .btn-pack {
        padding-bottom: 30px;
    }
    .bg-token .title,
    .bg-blackpoker .title {
        font-size: 30px;
    }
    .pkg .focus .pkg-body .pkg-features ul li span {
        font-size: 12.5px;
    }
    .pkg .focus .pkg-body .value .main {
        font-size: 40px;
        line-height: 40px;
    }
    .text-3 {
        font-size: 16px;
    }
    .space .text {
        font-size: 27px;
        margin-bottom: 35px;
    }
    .space button {
        padding: 15px 0;
        width: 275px;
    }
    .element .text .title {
        font-size: 20px !important;
    }
    .element .text .description {
        font-size: 15px !important;
    }
    .element .symbol i {
        font-size: 30px;
    }
    .element .symbol {
        width: 100px;
    }
    .bg-dark-2 .element:nth-child(3) {
        padding-top: 0 !important;
    }
    .pkg .focus .pkg-header {
        font-size: 25px !important;
    }
    .pkg .focus .pkg-header {
        padding: 20px 0;
    }
    .pkg .focus .pkg-body {
        padding: 20px 30px 0 30px;
    }
    .pkg .focus .pkg-body .pkg-features ul {
        padding-top: 20px;
    }
    .pkg .focus .pkg-body .pkg-features ul li i {
        font-size: 15.5px;
    }
    .pkg .focus .pkg-body .pkg-features ul li {
        margin-bottom: 5px;
    }
    .pkg .focus .pkg-body .pkg-features ul li:last-child {
        margin-bottom: 0 !important;
    }
    .pkg .focus .btn-pack button {
        padding: 7.5px 0;
        font-size: 16px;
        border-radius: 10px;
    }
    .bg-red-gradient .pkg:first-child,
    .bg-red-gradient .pkg:nth-child(2) {
        margin-bottom: 20px;
    }
    .pkg .focus .pkg-body .value .side div {
        font-size: 15px;
        line-height: 20px;
        margin-left: 5px;
    }
    .pkg .focus .pkg-body .value .side {
        font-size: 20px !important;
        line-height: 25px !important;
    }
    .start-now .element:first-child .title-element,
    .start-now .element:nth-child(2) .title-element {
        margin-bottom: 20px !important;
    }
    .start-now .element .title-element {
        margin-top: 20px !important;
    }
    .bg-dark .element div {
        padding: 35px 0;
    }
    .bg-dark .back .box {
        padding-bottom: 0;
    }
    .top-our-prices {
        padding-top: 35px;
    }
}

@media (min-width: 541px) and (max-width: 768px) {
    .bg-tournament .image-card-lt,
    .bg-news .image-card-lt {
        width: 15%;
    }
    .bg-tournament .image-card-rt,
    .bg-news .image-card-rt {
        width: 30%;
    }
}

@media (max-width: 540px) {
    .bg-tournament .title,
    .bg-news .title,
    .novidades-text .title,
    .bg-gameplay .title,
    .bg-our-prices .title {
        line-height: 60px;
    }
    .bg-gameplay .title,
    .bg-our-prices .title,
    .bg-start-now .title {
        line-height: 50px;
    }
    .bg-tournament .image-card-lt,
    .bg-news .image-card-lt,
    .start-now .image-card-rt {
        width: 20%;
    }
    .bg-tournament .image-card-rt,
    .bg-news .image-card-rt,
    .start-now .image-card-lt {
        width: 40%;
    }    
    .start-now .image-card-lt {
        top: 800px;
    }
    .box-0 {
        padding-left: 16px;
        padding-right: 16px;
    }
}

@media (max-width: 500px) {
    #bg-404 {
        background-attachment: fixed;
    }
}

@media (max-width: 376px) {
    .element .symbol {
        width: 90px !important;
    }
    .element .text .title {
        font-size: 16px !important;
    }
    .element .text .description {
        font-size: 14px !important;
    }
}

.novidades-text {
    padding: 70px 70px 0 70px;
}

.novidades-text h1 {
    font-size: 60px;
    font-weight: 800;
    margin-bottom: 15px;
}

.novidades-text h1,
.novidades-text p {
    color: #FFF;
}

.novidades-text .active {
    display: block;
}

.novidades-text .no-active {
    display: none;
}

.noticias .active {
    display: none;
}

.noticias .no-active {
    display: block;
}

.cover-image {
    text-align: center;
    margin-top: 60px;
}

#topbar {
    padding-top: 10px;
}

@media(max-width: 767px) {
    .novidades-text {
        padding: 0 !important;
    }
}

.roadmap {
    padding-top: 120px;
}

@media(max-width: 1365px){
    .roadmap .px-5 {
        padding: 0!important;
    }
}

@media(max-width: 991px) {
    .roadmap {
        padding-top: 60px;
    }
}