html, body {
    background: #f8f8f8;
    overflow-x: hidden;
}

ul, li {
    padding: 0;
    margin: 0;
    list-style-type: none
}


/*------------------------------------------
GLOBAL
------------------------------------------*/
.global-container {
    margin: 80px auto 0
}

.col-no-gutters [class*='col-'] {
    padding: 0 !important;
}

.global-fluid-container {
    padding: 0 25px
}

.bootbox-desc-game{color: #444}


/*------------------------------------------
HEADER
------------------------------------------*/
.kt-header {
    background: #e4032f;
    box-shadow: 0 0 12px 0 rgba(0, 0, 0, .15);
    z-index: 400;
    position: fixed;
    top: 0;
    width: calc(100% - 17px)
}

.kt-header.fullWidth{width: 100%!important;}

.kt-header .kt-container {
    height: 80px;
    display: flex;
    align-items: center;
}

.kt-header .kt-header__brand {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

/* -Topbar before */
.kt-header .topbar-before > *, .kt-header .topbar > *{
    color: #fff;
    text-shadow: 0 0 12px rgba(0, 0, 0, .1);
}

.topbar-before i{
    font-size: 30px;
}

.kt-header .topbar-before a{
    display: inline-block;
}

.topbar-before a:hover{
    color: #fff;
}

.kt-header .topbar-before a:first-child{
    margin-right: 15px;
}

/* -LOGO */
.kt-header .logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.kt-header .logo span {
    text-shadow: 0 0 12px rgba(0, 0, 0, .1);
    font: 700 19px 'Poppins' !important;
    margin-left: 15px;
    color: #fff;
}

.kt-header .kt-header__brand-logo{
    display: flex;
    align-items: center;
}

.kt-header .kt-header__brand-logo button{
    margin-left: 15px;
}

.kt-header .kt-header__brand-logo button i{
    font-size: 25px;
    text-shadow: 0 0 4px rgba(0,0,0,.1);
    transition: 0.4s;
}

.kt-header .kt-header__brand-logo button.rotate-button i{transform: rotate(180deg)}

/* -TOPBAR */
.kt-header .topbar {
    display: flex;
    align-items: center;
}

.kt-header .topbar button {
    padding: 0
}

.kt-header .topbar button > i {
    color: #fff;
    font-size: 30px !important
}

.kt-header .topbar button.btn-toggle-more{
    margin-left: 20px;
}

/* --NOTIFICATIONS */
.kt-header .notis {
    position: relative
}

.kt-header .notis > div {
    position: absolute;
    top: 0;
    right: 0;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: #444;
    z-index: 1;
    color: #fff;
    font-size: 10px;
    font-weight: bold;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* --HAMBURGER BTN NAV */
.hamburger {
    display: flex;
    margin-left: 20px;
    padding: 0 0 0 7px;
}

.hamburger-box {
    width: 25px
}

.hamburger-inner, .hamburger-inner:after, .hamburger-inner:before {
    width: 25px;
    background-color: #fff;
    height: 2px;
}

.hamburger.is-active .hamburger-inner, .hamburger.is-active .hamburger-inner:after, .hamburger.is-active .hamburger-inner:before {
    background-color: #fff
}

.hamburger.is-active:hover, .hamburger:hover {
    opacity: 1
}


/*------------------------------------------
QUERIES
------------------------------------------*/
@media screen and (max-width: 1023px) {
    .kt-container-full {
        padding: 15px !important
    }

    .kt-container-horizontally {
        padding: 0 15px !important;
    }

    .global-container {
        margin: 80px 0 0;
        padding: 0 !important;
    }

    .global-fluid-container {
        padding: 0 15px
    }

    /* HEADER */
    .kt-header .logo span {
        display: none
    }

    .kt-header .logo > img {
        height: 40px
    }

    .kt-header .kt-header__brand-logo button{display: none}
}

@media screen and (max-width: 768px){
    .kt-header{
        width: 100%;
    }
}

/***
Responsive & Scrollable Tables
***/
.table-scrollable {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  /*border: 1px solid #dddddd;*/
  margin: 10px 0 !important;
}
.table-scrollable.table-scrollable-borderless {
  border: 0;
}
.table-scrollable > .table {
  width: 100% !important;
  margin: 0 !important;
  margin-bottom: 0;
  background-color: #fff;
}
.table-scrollable > .table > thead > tr > th,
.table-scrollable > .table > tbody > tr > th,
.table-scrollable > .table > tfoot > tr > th,
.table-scrollable > .table > tfoot > tr > th,
.table-scrollable > .table > tfoot > tr > td {
  white-space: nowrap;
}
.table-scrollable > .table-bordered {
  border: 0;
}
.table-scrollable > .table-bordered > thead > tr > th:first-child,
.table-scrollable > .table-bordered > tbody > tr > th:first-child,
.table-scrollable > .table-bordered > tfoot > tr > th:first-child,
.table-scrollable > .table-bordered > thead > tr > td:first-child,
.table-scrollable > .table-bordered > tbody > tr > td:first-child,
.table-scrollable > .table-bordered > tfoot > tr > td:first-child {
  border-left: 0;
}
.table-scrollable > .table-bordered > thead > tr > th:last-child,
.table-scrollable > .table-bordered > tbody > tr > th:last-child,
.table-scrollable > .table-bordered > tfoot > tr > th:last-child,
.table-scrollable > .table-bordered > thead > tr > td:last-child,
.table-scrollable > .table-bordered > tbody > tr > td:last-child,
.table-scrollable > .table-bordered > tfoot > tr > td:last-child {
  border-right: 0;
}
.table-scrollable > .table-bordered > thead > tr:last-child > th,
.table-scrollable > .table-bordered > tbody > tr:last-child > th,
.table-scrollable > .table-bordered > tfoot > tr:last-child > th,
.table-scrollable > .table-bordered > thead > tr:last-child > td,
.table-scrollable > .table-bordered > tbody > tr:last-child > td,
.table-scrollable > .table-bordered > tfoot > tr:last-child > td {
  border-bottom: 0;
}

.dataTables_wrapper .dataTable.DTFC_Cloned {
    margin: auto !important;
}

input[type="checkbox"].form-control--checkbox {
	width: auto;
	height: auto;
}
