/*---------- General Changes Options ----------*/
:root {
    --header-url: url(https://i.imgur.com/AVoKStB.png); /*- header background image -*/
    --main-color: #FFD935; /*- main color -*/
    --second-color: linear-gradient(141deg, #fd544d, #be413c); /*- gradient for store button, modules heading and buttons -*/
    --hover: #be413c; /*- hover color for buttons and borders -*/
	--logo-height: 260px;
}
/*------------------*/
/*---------- Light Mode ----------*/
.theme-light {
    --text-color: #4c4949; /*- text color LIGHT -*/
	--header-background: linear-gradient(transparent 0,#3a39394f 0%,var(--html-background) 96%); /*- header gradient background LIGHT -*/
    --panel-heading: #868181; /*- color for modules heading LIGHT -*/
    --panel-body: #fff; /*- color for modules body LIGHT -*/
    --scrollbar-color: #fd544d; /*- color for scrollbar LIGHT -*/
    --scrollbar-bg: #fff; /*- color for scrollbar background LIGHT -*/
	--html-background: #e7e6e6; /*- body and html backround LIGHT -*/
  }
/*------------------*/
/*---------- Dark Mode ----------*/
.theme-dark {
    --text-color: #fff; /*- text color DARK -*/
	--header-background: linear-gradient(transparent 0,#3a39394f 0%,var(--html-background) 96%); /*- header gradient background DARK -*/
    --panel-heading: #212121; /*- color for modules heading DARK -*/
    --panel-body: #2c2b2b; /*- color for modules body DARK -*/
    --scrollbar-color: #fd544d; /*- color for scrollbar -*/
    --scrollbar-bg: #212121; /*- color for scrollbar background DARK -*/
	--html-background: #161616; /*- body and html backround DARK -*/
  }
/*------------------*/

::-webkit-scrollbar {
	width: 8px;
	height: 30px;
}

::-webkit-scrollbar-thumb {
    background: var(--main-color);
    border-radius: 20px;
}

::-webkit-scrollbar-track {
	background-color: var(--panel-body);
}

::-webkit-scrollbar-corner {
    background-color: var(--main-color);
}
a {
    color: var(--text-color);
}

a:hover, a:focus {
    color: var(--main-color);
    text-decoration: none;
}

::selection {
    color: #fff;
    background-color: var(--main-color);
}

/*---------- HTML & BODY ----------*/
html,
body {
   margin:0;
   padding:0;
   height:100%;
}

html {
    overflow-x: unset !important;
}

body {
    background: no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    font: 15px / 1.4 sans-serif;
    font-family: 'Montserrat',sans-serif;
	overflow-x: hidden;
}

html {
    font: 15px / 1.4 sans-serif;
	font-weight: 400;
    margin: 0;
    padding: 0;
    word-wrap: break-word;
}
/*------------------*/
/*---------- SWAL ----------*/
.swal-footer {
    text-align: center;
}

.theme-light .swal-button {
    background-color: var(--main-color);
    color: #fff;
}
.swal-button:not([disabled]):hover {
    background-color: var(--hover);
}
/*------------------*/


/*---------- LIGHT MODE ----------*/
.theme-light .bg-primary {
    background-color: #ffff!important;
}
.theme-light .navbar {
    border: 1px solid rgb(255 255 255 / 60%);
}
.theme-light html {
	background: var(--html-background);
	color: var(--text-color);
}
.theme-light body {
	background: var(--html-background);
	color: var(--text-color);
}
.theme-light .part-header {
    background: var(--header-background);
}
.theme-light button#switch {
    background: #ffffff;
}
.theme-light .badge-secondary {
    background-color: #babbbc;
}
.theme-light .navbar-dark .navbar-nav .nav-link {
    color: var(--text-color);
}
.theme-light .table-striped tbody tr:nth-of-type(odd) {
    background: var(--panel-body);
}
.theme-light .table {
    color: var(--text-color);
}
.theme-light .jumbotron {
    background-color: #fff;
	border: 1px solid #fff;
}
/*------------------*/


/*---------- DARK MODE ----------*/
html.theme-dark {
	background: var(--html-background);
}
.theme-dark body {
    color: var(--html-background);
}
.theme-dark .part-header {
    background: linear-gradient(transparent 0%, rgba(0,0,0,0.18) 30%, var(--html-background) 100%);
}
.theme-dark .swal-modal {
    background-color: var(--panel-body);
}
.theme-dark .swal-icon--success:after, .swal-icon--success:before {
    background: var(--panel-body);
}
.theme-dark .swal-icon--success__hide-corners {
    background-color: var(--panel-body);
}
.theme-dark .swal-title {
    color: var(--text-color);
}
.theme-dark .swal-text {
    color: var(--text-color);
}
.theme-dark button#switch {
    background: var(--panel-heading);
}
.theme-dark .navbar-dark .navbar-nav .nav-link {
    color: var(--text-color);
}
.theme-dark .table {
	margin-bottom: 4rem;
    color: var(--text-color);
}
.theme-dark .bg-primary {
    background-color: var(--panel-body)!important;
}
.theme-dark .navbar {
    border: 1px solid transparent;
}
.theme-dark .badge-secondary {
    background-color: #5f5f5f;
}
.theme-dark .form-control {
    color: #fff;
    background-color: var(--panel-body);
    border: 1px solid var(--panel-body);
}
.theme-dark .jumbotron {
    color: var(--text-color);
    background-color: var(--panel-body);
	border: 1px solid var(--panel-body);
}
/*------------------*/


/*---------- HEADER ----------*/
.ipl-header {
    background: var(--header-url) no-repeat center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    margin: 0!important;
    z-index: 1;
    height: 300px;
	position: relative;
}

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

.top-bar {
    height: 60px;
    background: #2c2b2b4d;
    box-shadow: 0 0 5px #0003;
}

.part-header {
	height: 240px;
}
.left.ipCopy {
    margin-top: 12.5ch;
    float: left;

    text-align: center;
}

.left i {
    font-size: 39px;
    display: block;
	color: #fff;
}

.left big {
    display: block;
    font-size: 20px;
    font-weight: 600;
    display: inline-block;
    color: #fff;
    cursor: pointer;
    font-family: Kanit,sans-serif;
}

.players {
    display: block;
    font-size: 12px;
    letter-spacing: .015em;
    font-weight: 600;
    color: var(--main-color);
    font-family: Kanit,sans-serif;
    text-transform: uppercase;
}

.right {
    float: right;
    text-align: center;
    display: inline-block;
    color: #fff;
    cursor: pointer;
    margin-top: 12.5ch;
}

.right i {
    font-size: 39px;
    display: block;
	color: #fff;
}

big.ipCopy:hover {
    color: #fff;
}

big.ipCopy {
    display: block;
    font-size: 20px;
    font-weight: 600;
    font-family: Kanit,sans-serif;
}

.players a {
    display: block;
    font-size: 12px;
    letter-spacing: .015em;
    font-weight: 600;
    color: var(--main-color);
    font-family: Kanit,sans-serif;
    text-transform: uppercase;
}

span#players-mc {
    background: var(--main-color);
    border: 2px solid var(--main-color);
	box-shadow: 0 0 12px var(--hover);
    border-radius: 100px;
    position: absolute;
    padding: 3px 7px;
    margin-top: -4px;
    margin-left: 4px;
    color: #fff;
    align-items: center;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .2px;
}

span#members-discord {
    background: var(--main-color);
    border: 2px solid var(--main-color);
	box-shadow: 0 0 12px var(--hover);
    border-radius: 100px;
    position: absolute;
    padding: 3px 7px;
    margin-top: -5px;
    margin-left: -35px;
    color: #fff;
    align-items: center;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .2px;
}


.players-count {
    display: flex;
}

#logo {
    margin-left: auto;
    margin-right: auto;
	text-align: center;
    text-align: -webkit-center;
}

img.pulse {
	max-height: var(--logo-height)!important;
	height: var(--logo-height);
}

.header-menu {
    background: #2c2b2b4d;
    height: 60px;
    line-height: 60px;
}

@media screen and (min-width: 0px) {
.header-menu .dd-mobile {
    font-size: 0px;
    background: #ffffff1a;
    padding: 0px 0px;
    padding-left: 0px;
    margin-top: 11px;
    border-radius: 3px;
    width: auto;
    float: right;
    box-shadow: 0px 0px 10px #1f1f1fa6;
}

.header-menu .dd-mobile li {
    list-style: none;
}

hr {
    margin-top: 21px;
    margin-bottom: 21px;
    border: 0;
}

.header-menu .dd-mobile li a {
    font-size: 16px;
    padding: 5px 7px;
    display: block;
    text-align: right;
}

.header-menu .dd-mobile li a i.fas {
    display: inline-block;
    vertical-align: middle;
    font-size: 28px;
    color: white;
}

.header-menu .dd-mobile li a span {
    display: inline-block;
    vertical-align: middle;
    font-size: 16px;
    color: white;
    text-transform: uppercase;
    font-weight: 600;
    margin-left: 10px;
}

.dd-bg.active {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: #ffffff1a;
    z-index: -1;
    transition: .25s;
    opacity: 0;
}

.dd-bg.active {
    z-index: 99;
    opacity: 1;
}

ul#ipl-menu .dd-close {
    margin: 0px -20px;
    background: #2a3036;
    display: none;
}

ul#ipl-menu .dd-close a  {
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 600;
    line-height: 5;
    display: block;
		transition: 1s;
}

ul#ipl-menu .dd-close a:hover {
    color: #ff0000;
	transition: 1s;
}
}

@media all and (max-width: 750px) { 
.header-menu {
    background: unset;
    box-shadow: none;
    -webkit-box-shadow: none;
    height: 60px;
}

.header-menu ul#ipl-menu {
    display: block;
    position: fixed;
    right: 0;
    top: 0;
    height: 100%;
    z-index: 200;
    width: 250px;
    max-width: 75%;
    text-align: center;
    border-radius: 0px;
    transition: .25s;
    right: -280px;
}

ul#ipl-menu li {
    display: block;
    margin-top: 15px;
    height: 38px;
    border: none;
    background: transparent;
    color: #ffffff7a!important;
    padding: 0;
    line-height: 30px;
}

li.menu-link a#store {
    color: #ffffff7a!important;
}

.header-menu .dd-close {
    display: block;
}

.header-menu ul#ipl-menu.open {
    right: 0px;   
    font-size: 0px;
 	background: #333;
  	border-radius: 4px;
    padding: 0px 20px;
	box-shadow: 0px 0px 10px #1f1f1fa6;
	transition: 1s;
	margin-right: 0;
}
li.menu-link {
    display: block;
    width: 100%;
}
li#store-hover {
    background: none!important;
    border: none;
}
    
.header-menu .dd-mobile {
        display: block;
    }
    
.header-menu ul#ipl-menu li.menu-link.activ a {
   color: #fff;
   border-bottom: 0;
   height: 49px;
}

}
html  {
    overflow-x: hidden;
}
@media all and (min-width: 750px) {
    .header-menu .dd-mobile {
        display: none;
    }
}

ul#ipl-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
	justify-content: center;
	margin-right: 30px;
}

ul#ipl-menu li {
    display: inline-block;
    font-size: 15px;
    vertical-align: middle;
    padding: 0 14px;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 0.25px;
    font-family: Kanit,sans-serif;
}

li.menu-link a:hover {
    color: #fff;
    transition: 1s;
}
li.menu-link a {
    color: #ffffff7a;
    transition: 1s;
}

li#store-hover {
    background: var(--second-color)!important;
    height: 38px;
    line-height: 38px;
    padding: 0px 22px !important;
    border-radius: 5px;
    color: white !important;
    border-bottom: 2px solid #f54a7b;
    transition: 0.8s all;
}

li#store-hover:hover {
    box-shadow: var(--main-color) 0 0 16px;
    transition: 0.8s all;
}

li.menu-link a#store {
    color: #fff;
    transition: 1s;
}
/*------------------*/

.navbar {
    max-width: 1200px;
    margin: 0 auto;
}
.footer .container {
    display: flex;
    padding: 20px 10px;
}

img.copyright-img {
    margin-left: auto;
    height: 30px;
    opacity: 0.6;
    transition: 1s all;
    filter: grayscale(1);
}
img.copyright-img:hover {
    opacity: 1;
    transition: 1s all;
    filter: none;
}

.copyright-text {
    display: grid;
}

.copyright-text span.ff {
    font-size: 14px;
    color: #999999;
    font-weight: bold;
}

.copyright-text span {
    display: block;
    font-size: 12px;
    color: #999999;
}

button#switch {
    padding: 4px 6px;
    background: none;
    border: none;
    color: #a9a8a8;
    position: fixed;
    border-radius: 3px;
    bottom: 18px;
    right: 20px;
    width: 30px;
    height: 35px;
}

button:focus {
    outline: none;
}

button#switch i {
    font-size: 19px;
}

.navbar {
    height: 70px;
}

ul.navbar-nav.mr-auto {
    height: 70px;
    line-height: 39px;
    margin-left: auto;
}

.navbar .nav-item.active .nav-link {
    background-color: transparent;
    border-left: none;
    color: var(--main-color);
}

.badge, .badge-pill {
    font-weight: 600;
    text-shadow: none;
}

.badge-secondary {
    color: var(--main-color);
}
.navbar .nav-link:focus, .navbar .nav-link:hover {
    background-image: none;
	border-left: none;
}

.navbar .nav-link {
    border-right: none;
}
.navbar-dark .navbar-nav .nav-link:focus, .navbar-dark .navbar-nav .nav-link:hover {
    color: var(--main-color);
}

.navbar .nav-link {
    border-left: none;
    border-right: none;
}

a#discord_link {
    color: #fff;
}

li#store-hover a {
    color: #fff;
}

.table thead th {
	    color: #fff;
    border-bottom: 2px solid var(--hover);
    padding: 25px;
}

.table thead {
    background: var(--second-color);
}

.table-bordered {
    border: 1px solid transparent;
}

.table td, .table th {
    padding: .95rem;
}
h1.modal-header.litebans-header {
    margin-top: 10px;
    background: var(--second-color);
    border-bottom: 3px solid var(--hover);
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
	color: #fff;
}

.btn-primary {
    background: var(--panel-heading);
}
.btn {
    border-color: var(--panel-heading);
}
.btn-primary {
    color: #fff;
    background-color: var(--panel-heading);
    border-color: var(--panel-heading);
}

.btn:focus, .btn:hover, .btn:not([disabled]):not(.disabled).active:hover, .btn:not([disabled]):not(.disabled):active, .btn:not([disabled]):not(.disabled):active:hover {
    border-color: var(--panel-heading);
}
.btn-primary:hover {
    color: #fff;
    background-color: var(--panel-heading);
    border-color: var(--panel-heading);
}

.btn-primary:not([disabled]):not(.disabled).active:hover, .btn-primary:not([disabled]):not(.disabled):active:hover, .btn-primary:not([disabled]):not(.disabled):focus, .btn-primary:not([disabled]):not(.disabled):hover {
    background-image: var(--panel-heading);
}

.badge {
    color: #fff;
}

.avatar-name {
    font-size: 15px;
    font-weight: 700;
    transition: 0.5s;
}

.avatar-name:hover {
    color: var(--hover);
    transition: 0.5s;
}

.swal-button {
    background-color: var(--main-color);
}

@media (min-width: 1200px) {
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
}
}

@media screen and (max-width: 992px) {
.left.ipCopy {
    display: none;
}
.right {
    display: none;
}
.navbar .navbar-toggler {
    border-color: var(--text-color);
}
ul.navbar-nav.mr-auto {
    height: auto;
    line-height: auto;
    background: var(--panel-body);
    z-index: 9999;
    position: relative;
}
.navbar-toggler-icon {
    width: 2.5em;
    height: 2.3em;
}
.players-count {
    width: 100%;
}
.ipl-header {
    height: 400px;
}
.part-header {
	height: 341px;
}
li#store-hover {
    background: none!important;
    border: none;
}
.col-lg-12 {
    overflow: scroll;
}
}






.avatar {
    margin-bottom: 5px;
    margin-right: 5px;
    border-radius: 2px;
}

.avatar-name {
}

.avatar-name-left {
    display: flex;
}

/* header */
.litebans-header {
    display: block;
    text-align: center;
}

.col-lg-12 {
    text-align: center;
}

/* navbar */
.navbar {
    position: static;
    font-weight: bold;
	border-radius: 4px;
}

.navbar-brand {
    font-weight: normal;
}

.navbar-active {
    font-weight: bolder;
}

.my-lg-0 {
    font-weight: lighter;
}

/* tables */
th {
    text-align: center;
}

table tr td {
    padding-left: 0;
    padding-right: 0;
    vertical-align: middle !important;
    text-align: center;
}

p {
    margin-top: 2px;
}

/* table links */
a,
a:hover,
a:focus {
    text-decoration: none;
}

tr.hover {
    cursor: pointer;
}

/* check form */
.litebans-check {
    text-align: left;
}

.litebans-check-form {
    margin-left: 15px;
}

.litebans-check-output {
    margin-left: 3px;
}

/* pager */
.litebans-pager {
    font-size: 30px;
}

.litebans-pager-number {
    margin-top: 24px;
    text-align: center;
    font-size: 15px;
}

.litebans-pager-left {
    float: left;
}

.litebans-pager-right {
    float: right;
}

.litebans-pager-active {
    color: var(--text-color);
}

.litebans-pager-number {
    color: var(--text-color);
}

.table-bordered td, .table-bordered th {
    border: none;
}


.litebans-pager-inactive {
    visibility: hidden;
    pointer-events: none;
    cursor: default;
}

/* index.php */
.litebans-index {
    text-align: center;
}

.litebans-index-main {
    font-weight: bold;
}

.litebans-index-sub {
    font-weight: lighter;
}

/* info.php */
.badge, .badge-pill {
    font-weight: 600;
}

.litebans-label-container {
    display: inline-flex;
}

.litebans-label-info {
    margin-left: 15px;
    font-size: 17px;
    font-weight: 800;
}

.litebans-label-inactive {
    color: #fff;
    background-color: #f79720;
}

.litebans-label-expired {
    color: #fff;
    background-color: #777;
}

.litebans-label-active {
    color: #fff;
    background-color: #ee5555;
}

.litebans-label-permanent {
    color: #fff;
    background-color: #ee5555;
}

.litebans-label-ipban {
    color: #fff;
    background-color: #ee5555;
}

/* history.php */
.litebans-label-history {
    display: inline;
    font-size: 16px;
    font-weight: 800;
}

.litebans-label-ban {
    background-color: darkred;
}

.litebans-label-mute {
    background-color: dimgrey;
}

.litebans-label-warn {
    background-color: darkorange;
}

.litebans-label-kick {
    background-color: tomato;
}

/* prevent mouse selection */
.noselect {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* prevent alignment */
.noalign-w {
    width: 0;
}

.noalign-h {
    height: 0;
}
