html {
     font-size: 10px;
     -webkit-tap-highlight-color: rgba(0,0,0,0);
}

body {
     font-family: Helvetica,Arial,sans-serif;
     font-size: 13px;
     line-height: 1.42857143;
     color: #ffffff;
     background-color: #1f2022;
}

a {
    color: #ffffff;
    cursor: pointer;
    text-decoration: none;
}

a:active, a:focus, a:hover {
    text-decoration: none;
}

hr {
    border-top: 1px solid #444;
}

pre {
    color: #ffffff;
}

.breadcrumb {
    gap: 1rem;
}

.flex-100 {
    flex: 1 100%;
}

@media (min-width: 768px) {
    .w-md-100 {
        width: 100% !important;
    }
    .w-md-auto {
        width: auto !important;
    }
}

.spinner-content {
    position: relative;
    width: 20px;
    height: 20px;
}
.spinner-overlay {
    position: absolute;
    top: 0;
    z-index: 999999;
    height: 100%;
    width: 100%;
}
.spinner-wrapper {
    font-size: 20px;
    position: relative;
    display: inline-block;
    width: 20px;
    height: 20px;
}
.spinner-wrapper.center {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}
.spinner-wrapper .spinner-blade {
    position: absolute;
    left: 0.4629em;
    bottom: 0;
    width: 0.074em;
    height: 0.2777em;
    border-radius: 0.0555em;
    background-color: transparent;
    -webkit-transform-origin: center -0.2222em;
    -ms-transform-origin: center -0.2222em;
    transform-origin: center -0.2222em;
    -webkit-animation: spinner-fade 1s infinite linear;
    animation: spinner-fade 1s infinite linear;
}
.spinner-wrapper .spinner-blade:nth-child(1) {
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
}
.spinner-wrapper .spinner-blade:nth-child(2) {
    -webkit-animation-delay: 0.083s;
    animation-delay: 0.083s;
    -webkit-transform: rotate(30deg);
    -ms-transform: rotate(30deg);
    transform: rotate(30deg);
}
.spinner-wrapper .spinner-blade:nth-child(3) {
    -webkit-animation-delay: 0.166s;
    animation-delay: 0.166s;
    -webkit-transform: rotate(60deg);
    -ms-transform: rotate(60deg);
    transform: rotate(60deg);
}
.spinner-wrapper .spinner-blade:nth-child(4) {
    -webkit-animation-delay: 0.249s;
    animation-delay: 0.249s;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}
.spinner-wrapper .spinner-blade:nth-child(5) {
    -webkit-animation-delay: 0.332s;
    animation-delay: 0.332s;
    -webkit-transform: rotate(120deg);
    -ms-transform: rotate(120deg);
    transform: rotate(120deg);
}
.spinner-wrapper .spinner-blade:nth-child(6) {
    -webkit-animation-delay: 0.415s;
    animation-delay: 0.415s;
    -webkit-transform: rotate(150deg);
    -ms-transform: rotate(150deg);
    transform: rotate(150deg);
}
.spinner-wrapper .spinner-blade:nth-child(7) {
    -webkit-animation-delay: 0.498s;
    animation-delay: 0.498s;
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}
.spinner-wrapper .spinner-blade:nth-child(8) {
    -webkit-animation-delay: 0.581s;
    animation-delay: 0.581s;
    -webkit-transform: rotate(210deg);
    -ms-transform: rotate(210deg);
    transform: rotate(210deg);
}
.spinner-wrapper .spinner-blade:nth-child(9) {
    -webkit-animation-delay: 0.664s;
    animation-delay: 0.664s;
    -webkit-transform: rotate(240deg);
    -ms-transform: rotate(240deg);
    transform: rotate(240deg);
}
.spinner-wrapper .spinner-blade:nth-child(10) {
    -webkit-animation-delay: 0.747s;
    animation-delay: 0.747s;
    -webkit-transform: rotate(270deg);
    -ms-transform: rotate(270deg);
    transform: rotate(270deg);
}
.spinner-wrapper .spinner-blade:nth-child(11) {
    -webkit-animation-delay: 0.83s;
    animation-delay: 0.83s;
    -webkit-transform: rotate(300deg);
    -ms-transform: rotate(300deg);
    transform: rotate(300deg);
}
.spinner-wrapper .spinner-blade:nth-child(12) {
    -webkit-animation-delay: 0.913s;
    animation-delay: 0.913s;
    -webkit-transform: rotate(330deg);
    -ms-transform: rotate(330deg);
    transform: rotate(330deg);
}
@-webkit-keyframes spinner-fade {
    0% {
        background-color: #69717d;
    }
    100% {
        background-color: transparent;
    }
}
@keyframes spinner-fade {
    0% {
        background-color: #69717d;
    }
    100% {
        background-color: transparent;
    }
}

.panel {
    color: #fff;
    background-color: #333437;
    border: 1px solid #444;
}
.panel-default > .panel-heading {
    color: #fff;
    background-color: #333437;
    border-bottom: 1px solid #444;
}

.bg-primary {
    background: #333437 !important;
}
.color-primary {
    color: #333437 !important;
}

img {
    width: 100%;
    height: auto;
}

.icon.icon-small img {
    width: 12px;
}

/* Page Spinner */
.page-spinner {
    position: fixed;
    top: 0;
    z-index: 999999;
    background: rgba(0,0,0,0.6);
    height: 100dvh;
    width: 100vw;
    display: none;
}
.loader {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    border: 10px solid #f3f3f3;
    border-top: 10px solid #007aff;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 2s linear infinite;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Button */
.btn {
    display: inline-block;
    font-weight: 500;
    line-height: 1.5;
    color: #fff;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    user-select: none;
    background-color: transparent;
    border: 0.0625rem solid transparent;
    padding: 0.5rem 1rem;
    font-size: 1.2rem;
    border-radius: 0.5rem;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

.btn:hover {
    color: #fff
}

.btn-check:focus+.btn,.btn:focus {
    outline: 0;
    box-shadow: 0 0 0 .18rem rgba(51,52,55,.25)
}

.btn-check:active+.btn,.btn-check:checked+.btn,.btn.active,.btn:active {
    box-shadow: inset 0 3px 5px rgba(27,28,30,.125)
}

.btn-check:active+.btn:focus,.btn-check:checked+.btn:focus,.btn.active:focus,.btn:active:focus {
    box-shadow: 0 0 0 .18rem rgba(51,52,55,.25),inset 0 3px 5px rgba(27,28,30,.125)
}

.btn.disabled,.btn:disabled,fieldset:disabled .btn {
    pointer-events: none;
    opacity: .65;
    box-shadow: none
}

.btn-primary {
    color: #fff;
    background-color: #333437;
    border-color: #333437;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(27,28,30,.075)
}

.btn-primary:hover {
    color: #fff;
    background-color: #2b2c2f;
    border-color: #292a2c
}

.btn-check:focus+.btn-primary,.btn-primary:focus {
    color: #fff;
    background-color: #2b2c2f;
    border-color: #292a2c;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(27,28,30,.075),0 0 0 .18rem rgba(82,82,85,.5)
}

.btn-check:active+.btn-primary,.btn-check:checked+.btn-primary,.btn-primary.active,.btn-primary:active,.show>.btn-primary.dropdown-toggle {
    color: #fff;
    background-color: #292a2c;
    border-color: #262729
}

.btn-check:active+.btn-primary:focus,.btn-check:checked+.btn-primary:focus,.btn-primary.active:focus,.btn-primary:active:focus,.show>.btn-primary.dropdown-toggle:focus {
    box-shadow: inset 0 3px 5px rgba(27,28,30,.125),0 0 0 .18rem rgba(82,82,85,.5)
}

.btn-primary.disabled,.btn-primary:disabled {
    color: #fff;
    background-color: #333437;
    border-color: #333437
}

.btn-secondary {
    color: #fff;
    background-color: #2b2c2e;
    border-color: #2b2c2e;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(27,28,30,.075)
}

.btn-secondary:hover {
    color: #fff;
    background-color: #252527;
    border-color: #222325
}

.btn-check:focus+.btn-secondary,.btn-secondary:focus {
    color: #fff;
    background-color: #252527;
    border-color: #222325;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(27,28,30,.075),0 0 0 .18rem rgba(75,76,77,.5)
}

.btn-check:active+.btn-secondary,.btn-check:checked+.btn-secondary,.btn-secondary.active,.btn-secondary:active,.show>.btn-secondary.dropdown-toggle {
    color: #fff;
    background-color: #222325;
    border-color: #202123
}

.btn-check:active+.btn-secondary:focus,.btn-check:checked+.btn-secondary:focus,.btn-secondary.active:focus,.btn-secondary:active:focus,.show>.btn-secondary.dropdown-toggle:focus {
    box-shadow: inset 0 3px 5px rgba(27,28,30,.125),0 0 0 .18rem rgba(75,76,77,.5)
}

.btn-secondary.disabled,.btn-secondary:disabled {
    color: #fff;
    background-color: #2b2c2e;
    border-color: #2b2c2e
}

.btn-tertiary {
    color: #fff;
    background-color: #1f2022;
    border-color: #1f2022;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(27,28,30,.075)
}

.btn-tertiary:hover {
    color: #fff;
    background-color: #1a1b1d;
    border-color: #191a1b
}

.btn-check:focus+.btn-tertiary,.btn-tertiary:focus {
    color: #fff;
    background-color: #1a1b1d;
    border-color: #191a1b;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(27,28,30,.075),0 0 0 .18rem rgba(65,65,67,.5)
}

.btn-check:active+.btn-tertiary,.btn-check:checked+.btn-tertiary,.btn-tertiary.active,.btn-tertiary:active,.show>.btn-tertiary.dropdown-toggle {
    color: #fff;
    background-color: #191a1b;
    border-color: #17181a
}

.btn-check:active+.btn-tertiary:focus,.btn-check:checked+.btn-tertiary:focus,.btn-tertiary.active:focus,.btn-tertiary:active:focus,.show>.btn-tertiary.dropdown-toggle:focus {
    box-shadow: inset 0 3px 5px rgba(27,28,30,.125),0 0 0 .18rem rgba(65,65,67,.5)
}

.btn-tertiary.disabled,.btn-tertiary:disabled {
    color: #fff;
    background-color: #1f2022;
    border-color: #1f2022
}

.btn-success {
    color: #1f2022;
    background-color: #10b981;
    border-color: #10b981;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(27,28,30,.075)
}

.btn-success:hover {
    color: #1f2022;
    background-color: #34c494;
    border-color: #28c08e
}

.btn-check:focus+.btn-success,.btn-success:focus {
    color: #1f2022;
    background-color: #34c494;
    border-color: #28c08e;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(27,28,30,.075),0 0 0 .18rem rgba(18,162,115,.5)
}

.btn-check:active+.btn-success,.btn-check:checked+.btn-success,.btn-success.active,.btn-success:active,.show>.btn-success.dropdown-toggle {
    color: #1f2022;
    background-color: #40c79a;
    border-color: #28c08e
}

.btn-check:active+.btn-success:focus,.btn-check:checked+.btn-success:focus,.btn-success.active:focus,.btn-success:active:focus,.show>.btn-success.dropdown-toggle:focus {
    box-shadow: inset 0 3px 5px rgba(27,28,30,.125),0 0 0 .18rem rgba(18,162,115,.5)
}

.btn-success.disabled,.btn-success:disabled {
    color: #1f2022;
    background-color: #10b981;
    border-color: #10b981
}

.btn-info {
    color: #fff;
    background-color: #2361ce;
    border-color: #2361ce;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(27,28,30,.075)
}

.btn-info:hover {
    color: #fff;
    background-color: #1e52af;
    border-color: #1c4ea5
}

.btn-check:focus+.btn-info,.btn-info:focus {
    color: #fff;
    background-color: #1e52af;
    border-color: #1c4ea5;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(27,28,30,.075),0 0 0 .18rem rgba(68,121,213,.5)
}

.btn-check:active+.btn-info,.btn-check:checked+.btn-info,.btn-info.active,.btn-info:active,.show>.btn-info.dropdown-toggle {
    color: #fff;
    background-color: #1c4ea5;
    border-color: #1a499b
}

.btn-check:active+.btn-info:focus,.btn-check:checked+.btn-info:focus,.btn-info.active:focus,.btn-info:active:focus,.show>.btn-info.dropdown-toggle:focus {
    box-shadow: inset 0 3px 5px rgba(27,28,30,.125),0 0 0 .18rem rgba(68,121,213,.5)
}

.btn-info.disabled,.btn-info:disabled {
    color: #fff;
    background-color: #2361ce;
    border-color: #2361ce
}

.btn-danger {
    color: #fff;
    background-color: #e11d48;
    border-color: #e11d48;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(27,28,30,.075)
}

.btn-danger:hover {
    color: #fff;
    background-color: #bf193d;
    border-color: #b4173a
}

.btn-check:focus+.btn-danger,.btn-danger:focus {
    color: #fff;
    background-color: #bf193d;
    border-color: #b4173a;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(27,28,30,.075),0 0 0 .18rem rgba(230,63,99,.5)
}

.btn-check:active+.btn-danger,.btn-check:checked+.btn-danger,.btn-danger.active,.btn-danger:active,.show>.btn-danger.dropdown-toggle {
    color: #fff;
    background-color: #b4173a;
    border-color: #a91636
}

.btn-check:active+.btn-danger:focus,.btn-check:checked+.btn-danger:focus,.btn-danger.active:focus,.btn-danger:active:focus,.show>.btn-danger.dropdown-toggle:focus {
    box-shadow: inset 0 3px 5px rgba(27,28,30,.125),0 0 0 .18rem rgba(230,63,99,.5)
}

.btn-danger.disabled,.btn-danger:disabled {
    color: #fff;
    background-color: #e11d48;
    border-color: #e11d48
}

/* Navbar */
.navbar {
    position: relative;
    min-height: 50px;
    margin-bottom: 18px;
    border: 1px solid transparent;
}
.navbar-default {
    background-color: #333437;
    border-color: #333437;
}
.navbar-default .navbar-brand, .navbar-default .navbar-nav > li > a {
    color: #ffffff;
}
.navbar-default .navbar-nav > li > a:hover, .navbar-default .navbar-nav > li > a:focus {
    color: #ffffff;
}
.navbar-default .navbar-brand:hover,.navbar-default .navbar-brand:focus {
    color: #fefefe;
}
.container > .navbar-header, .container-fluid > .navbar-header, .container > .navbar-collapse, .container-fluid > .navbar-collapse {
    margin-right: -15px;
    margin-left: -15px;
}
@media (min-width: 768px) {
    .container > .navbar-header, .container-fluid > .navbar-header, .container > .navbar-collapse, .container-fluid > .navbar-collapse {
        margin-right: 0;
        margin-left: 0;
    }
}
@media (max-width: 767px) {
    .container > .navbar-header, .container-fluid > .navbar-header, .container > .navbar-collapse {
        width: 100%;
    }
}
.navbar-toggle {
    position: relative;
    float: right;
    margin-right: 15px;
    padding: 9px 10px;
    margin-top: 8px;
    margin-bottom: 8px;
    background-color: transparent;
    background-image: none;
    border: 1px solid transparent;
    border-radius: 4px;
}
@media (min-width: 768px) {
    .navbar-toggle {
        display: none;
    }
}
.navbar-default .navbar-toggle {
    border-color: #ddd;
}
.nav > li {
    position: relative;
    display: block;
}
.nav > li > a {
    position: relative;
    display: block;
    padding: 10px 15px;
}
.navbar-nav > li > a {
    padding-top: 10px;
    padding-bottom: 10px;
    line-height: 18px;
}
@media (min-width: 768px) {
    .navbar-nav > li {
        float: left;
    }
    .navbar-nav > li > a {
        padding-top: 16px;
        padding-bottom: 16px;
    }
}
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}
.navbar-toggle .icon-bar {
    display: block;
    width: 22px;
    height: 1px;
    border-radius: 1px;
}
.navbar-toggle .icon-bar:not(:last-child) {
    margin-bottom: 5px;
}
.navbar-default .navbar-toggle .icon-bar {
    background-color: #ffffff;
}
.navbar-brand {
    float: left;
    padding: 16px 25px;
    font-size: 20px;
    line-height: 18px;
    height: 50px;
}
@media (min-width: 768px) {
    .navbar > .container .navbar-brand, .navbar > .container-fluid .navbar-brand {
        margin-left: -15px;
    }
}
.navbar-default .navbar-collapse, .navbar-default .navbar-form {
    border-color: #e7e7e7;
}
.navbar-collapse {
    overflow-x: visible;
    padding-right: 15px;
    padding-left: 15px;
    border-top: 1px solid transparent;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.1);
    -webkit-overflow-scrolling: touch;
}
@media (min-width: 768px) {
    .navbar-collapse {
        width: auto;
        border-top: 0;
        box-shadow: none;
    }
}
@media (min-width: 768px) {
    .navbar-collapse.collapse {
        flex-basis: auto;
        flex-grow: 0;
        display: block !important;
        height: auto !important;
        padding-bottom: 0;
        overflow: visible !important;
    }
}
@media (min-width: 768px) {
    .navbar-fixed-top .navbar-collapse, .navbar-static-top .navbar-collapse, .navbar-fixed-bottom .navbar-collapse {
        padding-left: 0;
        padding-right: 0;
    }
}
.container>.navbar-header, .container-fluid>.navbar-header, .container>.navbar-collapse, .container-fluid>.navbar-collapse {
    margin-right: -15px;
    margin-left: -15px;
}
@media (min-width: 768px) {
    .container > .navbar-header, .container-fluid > .navbar-header, .container > .navbar-collapse, .container-fluid > .navbar-collapse {
        margin-right: 0;
        margin-left: 0;
    }
}
@media (min-width: 768px) {
    .navbar-nav {
        flex-direction: row;
        margin: 0;
    }
}
@media (min-width: 768px) {
    .navbar-right {
        float: right !important;
        margin-right: -15px;
    }
}

.nav-tabs {
    border-bottom: 1px solid #444;
}
.nav-tabs > li > a, .nav-tabs > li > a:hover, .nav-tabs > li > a:focus{
    border-color: #444;
    background-color: #333437;
}
.nav-tabs > li.active > a, .nav-tabs > li.active > a:hover, .nav-tabs > li.active > a:focus {
    color: #fff;
    background-color: #222;
    border-color: #444;
    border-bottom: 1px solid #1f2022;
}
.nav-tabs .nav-link {
    border: 0;
    padding: 1rem 1rem;
    background-color: transparent;
    margin-bottom: -0.0625rem;
    border-top-left-radius: 0.5rem;
    border-top-right-radius: 0.5rem;
    color: #fff;
}
.nav-link.active, .nav-link:hover {
    color: #fff;
}
.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
    color: #fff;
    background-color: #333437;
    border-color: #333437;
}
.nav-tabs .nav-link.active {
    color: #fff;
    background-color: #333437;
}

/* Dropdown Menu */
.dropdown-menu {
    min-width: 10rem;
    padding: 0.5rem 0;
    margin: 0.125rem 0 0;
    color: #fff;
    font-size: inherit;
    background-color: #222;
    background-clip: padding-box;
    border: 1px solid #444;
    border-radius: 0.25rem;
}
.dropdown-item {
    color: #fff;
    padding: 0.5rem 1rem;
}
.dropdown-item.active, .dropdown-item:active {
    color: #fff;
    text-decoration: none;
    background-color: lightgrey;
}
.dropdown-item:hover, .dropdown-item:focus {
    color: #fff;
    text-decoration: none;
    background-color: #333437;
}
.dropdown-menu > li > a:hover, .dropdown-menu > li > a:focus {
    text-decoration: none;
    color: #fff;
    background-color: #333437;
    border-color: #333437;
}
.dropdown-menu > .active > a, .dropdown-menu > .active > a:hover, .dropdown-menu > .active > a:focus {
    color: #fff;
    text-decoration: none;
    outline: 0;
    background-color: #333437;
    border-color: #333437;
}
.dropdown-menu > .disabled > a, .dropdown-menu > .disabled > a:hover, .dropdown-menu > .disabled > a:focus {
    color: #777;
}
.dropdown-menu > .disabled > a:hover, .dropdown-menu > .disabled > a:focus {
    text-decoration: none;
    background-color: transparent;
    background-image: none;
    filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
    cursor: not-allowed;
}

/* Info Box */
.info-card {
    margin-bottom: 20px;
}
.info-box {
    border-radius: 10px;
    background-color: #444;
    border: none;

}
.info-box .info-box-header {
    border-radius: 10px 10px 0 0;
    padding: 1.5rem 2rem;
    margin-bottom: 0;
    background-color: #333437;
    border-bottom: 1px solid #444;
}
.info-box .info-box-body {
    padding: 2rem;
    background-color: #292a2f;
}
@media (min-width: 768px) {
    .info-box .info-box-body {
        display: flex;
        gap: 2rem;
    }
}

.game-card {
    border-radius: 10px;
    background-color: #444;
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}
.game-card .game-card-title,
.game-card .game-card-description {
    text-align: center;
    padding: 1.5rem 2rem;
}
.game-card .game-card-title {
    font-weight: bold;
}
.game-card-cover {
    max-width: 60%;
    margin: auto;
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    filter: drop-shadow(0px 0px 5px rgba(0, 0, 0, 0.5));
}

/* Table */
.table {
    color: white;
}
.table-striped > tbody > tr:nth-of-type(odd) {
    background-color: transparent;
}
.table-bordered > thead > tr > th, .table-bordered > tbody > tr > th,
.table-bordered > tfoot > tr > th, .table-bordered > thead > tr > td,
.table-bordered > tbody > tr > td, .table-bordered > tfoot > tr > td {
    border: 1px solid #444;
}
.table-border {
    border: 1px solid #444;
}
.table > thead {
    background-color: #333437;
}
.table > thead > tr {
    background-color: #333437;
}
.table > thead > tr > th {
    border-radius: 0;
    border: 1px solid #303030;
    background-color: #333437;
}
.table > thead > tr > th:first-child {
    border: none;
}
.table > thead > tr > th:last-child {
    border: none;
}
.table > tbody > tr > th, .table > tfoot > tr > th, .table > thead > tr > td, .table > tbody > tr > td, .table > tfoot > tr > td {
    border-bottom: 1px solid #444;
    background-color: transparent;
}
.table tr.selected {
     background-color: #333437;
}
table.dataTable > tbody > tr.selected > * {
    box-shadow: unset;
}
.table.table-row-group tbody tr {
    display: none;
}
.table.table-row-group tbody tr.active,
.table.table-row-group tbody tr.dtrg-group {
    display: table-row;
}
.table.table-row-group tbody tr.dtrg-group {
    padding-left: 0.5rem;
    cursor: pointer;
}
.table.table-row-group tbody tr.dtrg-group th {
    position: relative;
    padding-left: 2.5rem;
}
.table.table-row-group tbody tr.dtrg-group th:before {
    position: absolute;
    left: 0.5rem;
    content: "";
    width: 1.5rem;
    height: 1.5rem;
    background-image: url(../img/right.svg);
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat;
}
.table.table-row-group tbody tr.dtrg-group.collapsed th:before {
    background-image: url(../img/down.svg);
}
.table.table-td-wrap td {
    height: 18px
}
.table td input {
    padding: 0;
    border-radius: 0;
    border-color: #1f2022
}

.content {
    min-height: calc(100vh - 132px);
}
.content .container {
    position: relative;
}
@media (max-width: 992px) {
    .content {
        min-height: calc(100vh - 232px);
    }
}
@media (max-width: 1199px) {
    .content {
        min-height: calc(100vh - 192px);
    }
}
.page-header {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    padding: 1.5rem 2rem;
    background: #333437;
	border-bottom: 1px solid #444;
}
.page-description {
    background: #292a2f;
    padding: 1.5rem 2rem;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    margin-bottom: 2rem;
}

.input-with-tooltip {
    position: relative;
}
.input-with-tooltip .tooltip,
.input-with-tooltip .tooltip .tooltip-arrow {
    left: 50%;
    transform: translate(-50%, 0);;
}

.dns-list {
    word-break: break-all;
}
.dns-list .btn {
    color: #eef0ff;
    padding: 0.25rem 0.5rem;
    border: 0;
    text-align: left;
}
.dns-list .btn::before {
    width: 1em;
    line-height: 0;
    content: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='rgba%28245,251,255,1%29' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M5 14l6-6-6-6'/%3e%3c/svg%3e");
    transition: transform .35s ease;
    transform-origin: 50% 50%;
    vertical-align: middle;
    margin-right: 5px
}
.dns-list .btn:not(.collapsed)::before {
    content: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' transform='rotate(90)' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='rgba%28245,251,255,1%29' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M5 14l6-6-6-6'/%3e%3c/svg%3e")
}
.dns-list .btn:active, .dns-list .btn:focus, .dns-list .btn:hover {
    background-color: transparent !important;
    box-shadow: none
}
.dns-list .dns-list-header {
    background: #333437;
}
.dns-list .dns-row {
    display: flex;
    justify-content: space-between;
}
.dns-list .dns-list-body .dns-row.collapse:not(.show) {
    display: none;
}
.dns-list .dns-row > div {
    padding: 5px 10px;
    border-bottom: 1px solid #444;
    min-height: 35px;
    display: flex;
    align-items: center;
}
.dns-list .dns-row > div:nth-child(1),
.dns-list .dns-row > div:nth-child(3) {
    width: 20%;
}
.dns-list .dns-row > div:nth-child(2) {
    width: 60%;
}

.network-view {
    border: 1px solid #444;
    color: #fff;
}
.network-view .network-header {
    border-bottom: 1px solid #444;
    background-color: #444;
}

.fa.fa-pencil {
    font-size: 30px;
}
.text-center, .commit-body {
    text-align: center!important;
}

.form-group {
    margin-bottom: 1.5rem;
}
.form-control {
    display: block;
    width: 100%;
    padding: .5rem 1rem;
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.5;
    color: #fff;
    background-color: #333437;
    background-clip: padding-box;
    border: .0625rem solid #333437;
    -webkit-appearance: none;
    appearance: none;
    border-radius: 0.5rem;
    box-shadow: 0 1px 2px 0 rgba(0,0,0,.07);
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.form-control:focus {
    color: #fff;
    background-color: #333437;
    border-color: #707379;
    outline: 0;
    box-shadow: 0 1px 2px 0 rgba(0,0,0,.07),0 0 0 .18rem rgba(51,52,55,.25)
}
.form-control::placeholder,
.form-control::-webkit-input-placeholder,
.form-control::-moz-placeholder,
.form-control::-ms-input-placeholder,
input::placeholder,
input::-webkit-input-placeholder,
input::-moz-placeholder,
input::-ms-input-placeholder {
    color: #6c757d;
    opacity: 1
}
.form-control:disabled,.form-control[readonly] {
    background-color: #37383b;
    opacity: 1
}

.commit-view .commit-header {
    background-color: #333437;
}
.blame-view .commit {
    background-color: #292a2f;
    border-right: 1px solid #444;
}
.blame-view pre {
    color: #ffffff;
}

/* List Group */
.list-group-item {
    font-size: 16px;
    color: white;
    padding: 1rem;
    background-color: #292a2f;
    border-color: #1f2022;
    border-width: 1px;
}
.list-group-item-no-padding {
    padding: 0.15rem;
}
.list-group-item-cat a {
    font-weight: bold;
}
.list-group-item.border-top {
    border-top: 1px solid #1f2022 !important;
}

.badge-right {
    float: right;
}

.doc-header h1 {
    display: inline-block;
}
.doc-header .doc-actions {
    float: right;
    margin-top: 18px;
    margin-bottom: 9px;
    padding-top: 6px;
    display: inline-block;
}

.my-ip {
    color: #007aff;
    text-align: center;
}
.ip-wrap {
    font-size: 3em;
}

/* Search Form */
.search-form {
    max-width: 600px;
}
.search-form .col-form-label {
    display: flex;
    align-items: center;
    height: 32px;
}

/* Services */
.services {
    width: 100%;
}
.service-status {
    width: 20px;
    float: right;
    margin-left: 1rem;
}
.port-status {
    width: 2rem;
    margin-right: 0.5rem;
}
.service-ports {
    max-height: 350px;
    overflow: scroll;
    margin-bottom: 1rem;
}
.service-ports-header,
.service-ports .service-port {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.service-ports-header > div,
.service-ports .service-port .service-port-item {
    border: 1px solid #444;
    padding: 0.25rem 0.5rem;
    flex: 0 0 auto;
    height: 38px;
    display: flex;
    align-items: center;
}
.service-ports-header > div:nth-child(1),
.service-ports .service-port .service-port-item:nth-child(1) {
    width: 15%;
}
.service-ports-header > div:nth-child(2),
.service-ports .service-port .service-port-item:nth-child(2) {
    width: 25%;
}
.service-ports-header > div:nth-child(3),
.service-ports .service-port .service-port-item:nth-child(3) {
    width: 40%;
}
.service-ports-header > div:nth-child(4),
.service-ports .service-port .service-port-item:nth-child(4) {
    width: 20%;
}

@media (min-width: 576px) {
    #servicePortModal .modal-dialog {
        max-width: 600px;
        margin: 1.75rem auto;
    }
}

.service-ports-search {
    align-items: flex-end;
    justify-content: end;
    display: flex;
    width: 100%;
    margin-bottom: 1rem;
}
.service-ports-search input {
    width: 200px;
}

.port-input-wrapper {
    width: 300px;
    display: flex;
    align-items: center;
    gap: 2rem;
}
.port-input-wrapper .port-input {
    display: flex;
    align-items: center;
    border-radius: 1.5rem;
    overflow: hidden;
    border: 1px solid #333437;
    background: #333437;
}
.port-input-wrapper .port-input > * {
    flex: 0 0 auto;
    border-radius: 0;
    border: none;
}
.port-input-wrapper .port-input button:nth-child(1),
.port-input-wrapper .port-input button:nth-child(2) {
    width: 60px;
    box-shadow: unset;
    height: 30px;
}
.port-input-wrapper .port-input button:nth-child(1) {
    border-top-left-radius: 1.5rem;
    border-bottom-left-radius: 1.5rem;
}
.port-input-wrapper .port-input button:nth-child(2) {
    border-top-right-radius: 1.5rem;
    border-bottom-right-radius: 1.5rem;
}
.port-input-wrapper .port-input button.active {
    background-color: #1f2022;
}
.port-input-wrapper .port-input input {
    flex: 1 0;
    margin-bottom: 0 !important;
    border: 1px solid #333437;
}
.port-input-wrapper .btn-port-check {
    width: 100px;
    border-radius: 1.5rem;
}
.port-input-wrapper .port-input .btn-primary {
    background-color: #292a2f;
    border-color: #292a2f;
}

/* Modal Content */
.modal-header .btn-close {
    background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%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;
}
.modal-header .btn-close span {
    display: none;
}
.modal-content {
    word-break: break-all;
}
.modal-content {
    background-color: #1f2022;
    border-radius: 0.5em;
    border: 1px solid #333437;
}
.modal-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 1rem;
    border-bottom: 1px solid #333437;
    border-top-left-radius: 0.3rem;
    border-top-right-radius: 0.3rem;
}
.modal-footer {
    border-top: 1px solid #333437;
}
.modal-header:before, .modal-header:after, .modal-footer:before, .modal-footer:after {
    content: none;
    display: none;
}

/* Data Table */
.dataTables_wrapper .dataTables_length {
    display: none;
}
.dataTables_wrapper .dataTables_paginate .pagination .page-item a {
    padding: 6px;
    background-color: #292a2f;
    border-color: #444;
}

/* Games List */
.breadcrumb h3 {
    margin-bottom: 0;
}
.game-category,
.breadcrumb .game-category {
    display: none;
}

.games .game-item {
    cursor: pointer;
    text-align: center;
}
.games .game-item .game-avatar {
    width: 100%;
    max-width: 100%;
    height: auto;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.6);
}
.game-title {
    padding-top: 10px;
    padding-bottom: 10px;
}
@media (min-width: 992px) {
    .col-md-2:nth-child(6n+1) {
        clear: both;
    }
}

.game-content {
    display: flex;
    align-items: center;
    margin-top: 2rem;
}

.btn-check-again {
    margin-top: 1.5rem;
    padding: 0.75rem 2.5rem;
}

.tooltip {
    font-size: 16px;
}

/* Mail Server */
.mail-dns-records li div:first-child {
    width: 150px;
}
.mail-servers li div:first-child {
    width: 60px;
}
input[name="mail-sector"] {
    width: 100px;
}
#gamePortModal .modal-body {
    padding: 30px;
}

.port-ip {
    width: 200px;
    margin: auto;
}
.port-ip .nav {
    margin-bottom: 15px;
    border-radius: 10px;
    background: transparent;
    padding: 0;
    width: 100%;
    overflow: hidden;
}
.port-ip .nav .nav-item {
    flex: 1;
    text-align: center;
    border: none;
}
.port-ip .nav .nav-item .nav-link {
    background-color: #2b2c2e;
    color: #ffffff;
}
.port-ip .nav .nav-item .nav-link.active {
    background-color: #444444;
}
.port-ip .tab-content input {
    text-align: center;
}

.port-items {
    margin: 10px 0;
    border-radius: 10px;
    overflow: hidden;
}
.port-list .port-item {
    display: flex;
    align-items: center;
    gap: 30px;
    background-color: #333437;
    padding: 10px 15px;
    cursor: pointer;
}
.port-list .port-item:not(:last-child) {
    border-bottom: 1px solid #444;
}
.port-list .port-item .port-img {
    height: 50px;
    width: auto;
}

/* How to port forward */
.video-container {
    width: 90%;
    margin: auto;
}
.port-forward-card {
    max-width: 350px;
    margin: auto;
	padding-top: 20px;
}
.port-forward-card .port-forward-img {
    cursor: pointer;
}
.port-forward-card .info-box {
    background-color: #333437;
    border: 1px solid #292a2f;
    border-radius: 2.5rem;
}
.port-forward-card .info-box .info-box-body {
    border: 2px solid #292a2f;
    padding: 0.5rem;
}
.port-forward-card.select-router-isp .info-box .info-box-body {
    background-color: #333437;
    border: 2px solid #292a2f;
    border-radius: 2.5rem;
    padding: 0;
}
.port-forward-card .info-box .info-box-body div a {
    padding: 1.5rem;
    text-align: center;
    display: flex;
    align-items: center;
}
.port-forward-card .info-box .info-box-body div a:not(:last-child) {
    border-bottom: 1px solid #444;
}
.port-forward-card .info-box .info-box-body div a img {
    max-width: 200px;
    margin: auto;
}
.config-url {
    color: #007aff;
}
.port-forward-card .info-box .info-box-body .config-url {
    padding: 0;
    border-bottom: unset;
    font-weight: normal;
}
.config-url:focus,
.config-url:hover {
    color: #ffffff;
}
.back-btn {
    position: absolute;
    left: 0;
    width: 2rem;
    transform: rotate(180deg);
}
#hls-video {
    width: 100%;
    margin: 2rem auto;
    display: block;
}

.video-controls {
    position: relative;
    width: 160px;
    margin: 0 auto 5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.video-controls .video-btn,
.video-speed .video-btn {
    width: 4rem;
    background: transparent;
    border: none;
    padding: 0;
}
.video-speed-container {
    position: relative;
}
.video-speed .video-speed-container .video-btn {
    width: 2.5rem;
    position: absolute;
    left: 0.25rem;
    top: 50%;
    transform: translate(0, -50%);
}
.video-speed .video-speed-container select {
    padding-left: 3rem;
}
.video-controls .video-play-btn .video-pause {
    display: none;
}
.video-controls .video-play-btn.play .video-play {
    display: none;
}
.video-controls .video-play-btn.play .video-pause {
    display: block;
}
.video-progress {
    position: relative;
    width: calc(100% - 0.4rem);
    height: 2px;
    border-radius: 1em;
    touch-action: none;
    background-color: #fff;
    margin: 1rem auto;
    transition: width 1 scubic-bezier(.71, .21, .3, .95);
    cursor: pointer;
}
.video-progress .video-progress-filled {
    width: 0;
    height: 100%;
    display: flex;
    position: relative;
    align-items: center;
    border-radius: inherit;
    background-color: #fff;
    z-index: 2;
}
.video-progress .video-progress-filled::before {
    position: absolute;
    content: " ";
    right: 0;
    width: .2em;
    height: 1em;
    background-color: rgb(255 255 255);
}
.video-speed {
    position: absolute;
    right: calc(50% - 200px);
    top: 50%;
    transform: translate(0, -50%);
    border: 1px solid white;
    padding: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border-radius: 0.5rem;
}
.video-speed select {
    background: transparent;
    border: none;
    color: white;
    font-size: 1.5rem;
}
@media (max-width: 768px) {
    .video-controls {
        width: 120px;
    }
    .video-speed {
        right: -100px;
    }
}

.api-url {
    display: flex;
    align-items: center;
    background-color: #333437;
    background-clip: padding-box;
    border: .0625rem solid #333437;
    -webkit-appearance: none;
    appearance: none;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, .07);
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    margin-top: 2rem;
    margin-bottom: 1.5rem;
}
.api-url .url-wrapper {
    padding: .5rem 1rem;
    font-size: 1.35rem;
    display: flex;
    align-items: center;
}
.api-url .url-wrapper label {
    padding: .5rem 0;
}
.api-url .url-wrapper input {
    padding: .5rem 0;
    border: unset;
    box-shadow: unset;
    border-radius: 0;
}
.api-url .btn-wrapper {
    background-color: #5c5e66;
    border-radius: 0px;
}
.api-url .btn-wrapper .btn {
    padding: 1rem 2rem;
}
.color-grey {
    color: rgb(126, 126, 126);
}
.color-cyan {
    color: rgb(14, 216, 253);
}
.color-green {
    color: rgb(69, 224, 84);
}
.color-orange {
    color: rgb(255, 108, 2);
}
.color-red {
    color:  rgb(255, 0, 0);
}
.api-result {
    font-family: monospace;
    background-color: #333437;
    border-radius: 0.5rem;
    padding: 1rem;
}

.tooltip-wrapper {
    position: relative;
}
.tooltip-wrapper .tooltip {
    display: none;
}
.tooltip-wrapper .tooltip.fade,
.tooltip-wrapper .tooltip.show {
    display: block;
}
.tooltip[data-tooltip-placement="center"] {
    left: 50%;
    transform: translate(-50%, 0);
}
.tooltip[data-arrow-placement="center"] .tooltip-arrow {
    left: 50%;
    transform: translate(-50%, 0);
}
.tooltip-icon {
    width: 2rem;
}
.btn-copy-clipboard {
    font-weight: bold;
}