
/*//////////////////////////
/////// MAIN CSS ////////
////////////////////////*/





/*/////////////////////////////
//////// GLOBAL STYLES ///////
///////////////////////////*/

body {
	font-family: 'Verdana';
	font-size: 0.8rem;
}

p {
	font-family: 'Verdana';
	font-size: 0.8rem;
	color: white;
}

p.no-margin {
	margin: 0;
}

.m-10 {
	margin: 10px!important;
}

.m-20 {
	margin: 20px!important;
}

.m-30 {
	margin: 30px!important;
}

.m-40 {
	margin: 40px!important;
}

.m-50 {
	margin: 50px!important;
}

.mt-10 {
	margin-top: 10px!important;
}

.mt-20 {
	margin-top: 20px!important;
}

.mt-30 {
	margin-top: 30px!important;
}

.mt-40 {
	margin-top: 40px!important;
}

.mt-50 {
	margin-top: 50px!important;
}

.mb-10 {
	margin-bottom: 10px!important;
}

.mb-20 {
	margin-bottom: 20px!important;
}

.mb-30 {
	margin-bottom: 30px!important;
}

.mb-40 {
	margin-bottom: 40px!important;
}

.mb-50 {
	margin-bottom: 50px!important;
}

.w-hundred {
    width: 100%!important;
}

td {
	font-family: 'Verdana';
	font-size: 0.9rem;
}

.small-text {
	font-size: 0.9rem!important;
}

a {
    color: silver;
    text-decoration: none;
}

a:hover {
    color: white;
    text-decoration: none;
}

ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: #333;
    vertical-align: top;
}

li {
	padding-left: 5px;
    /*float: left;*/
    display: inline-block;
    list-style-type: none;
}

li a {
    display: block;
    color: white;
    text-align: center;
    padding: 8px 5px;
    text-decoration: none;
}

ul.list {
	list-style-type: initial;
	margin: auto;
	padding: 0px;
	overflow: auto;
	background-color: transparent;
	font-family: 'Verdana';
	font-size: 0.8rem;
}

ul.list li {
	list-style-type: initial;
	padding: 1px 0;
	display: block;
}


h1 {
	font-size: 1.5rem;
	color: gold;
	font-weight: 600;
	font-family: 'Lato', sans-serif;
	font-variant: small-caps;
}
h2 {
	font-size: 1.5rem;
	color: gold;
	font-weight: 600;
	font-family: 'Lato', sans-serif;
}
h3 {
	font-size: 1.2rem;
	color: gold;
	font-weight: 600;
	font-family: 'Lato', sans-serif;
}
h4 {
	font-family: 'Lato', sans-serif;
	color: gold;
	font-size: 0.9rem;
}
h5 {
	color: silver;
	font-family: 'Verdana', sans-serif;
	font-size: 0.6rem;
}
h6 {
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 100;
    font-size: 0.7rem;
    margin: 0.4rem 8px;
    border-bottom: 1px solid #e2e2e2;
    border-top: 1px solid #e2e2e2;
    height: auto;
    padding: 3px;
    color: #e2e2e2;
    font-family: 'Verdana';
}

label {
	font-family: 'Verdana';
	font-size: 0.8rem;
	color: white;
}

.text-center {
	text-align: center!important;
}
.text-right {
	text-align: right!important;
}
.text-left {
	text-align: left!important;
}


.small, p.small, .inner-block p.small, b.small, a.small, li.small, ul.small {
	font-size: 0.6rem;
	margin: 0;
}

.titlecase {
	text-transform: capitalize;
}


.no-gutters {
  margin-right: 0;
  margin-left: 0;

  > .col,
  > [class*="col-"] {
    padding-right: 0;
    padding-left: 0;
  }
}


/* COLOURS */

.redcolor {
	color: #cc3535!important;
}

.red {
	color: #cc3535!important;
}

.hypercolor {
	color: #ff3131!important;
}

.orangecolor {
	color: #fb9900!important;
}

.gold {
	color: gold!important;
}
.gray {
	color: gray!important;
}
.silver {
	color: silver!important;
}
.white {
	color: white!important;
}

.credits {
	color: #4bb3d3!important;
}

.bronze {
	color: #A96C40!important;
}

.dark {
	color: #222222!important;
}

.inner-block p {
	font-family: 'Verdana';
	font-size: 1rem;
	color: white;		
}

.divider {
	width: 80%;
	height: 2px;
	border-top: dashed 1px #646464;
	margin: 30px 0;
}
.divider-solid {
	border-top: solid 0.5px #646464;
	margin: 2px auto;
	height: 1px;
	width: 290px;
}

.divider-solid-block {
	border-top: solid 0.5px #646464;
	margin: 2px auto;
	height: 1px;
	width: 22rem;
	display: block!important;
}

.divider-solid.wide {
    width: 100%;
}

.pulse {
	display: inline-block;
	color: white;
	background: gold;
	border-radius: 100%;
	height: 4px;
	width: 4px;
	right: 16px;
	position: absolute;
	margin-top: 4px;
	box-shadow: 0 0 0 rgba(255,215,0, 0.4);
	animation: pulse 2s infinite;
}

.pulse.white {
	background: white;
}

.pulse.limegreen {
	background: limegreen;
}


@-webkit-keyframes pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(255,215,0, 0.4);
  }
  70% {
      -webkit-box-shadow: 0 0 0 4px rgba(255,215,0, 0);
  }
  100% {
      -webkit-box-shadow: 0 0 0 0 rgba(255,215,0, 0);
  }
}
@keyframes pulse {
  0% {
    -moz-box-shadow: 0 0 0 0 rgba(255,215,0, 0.4);
    box-shadow: 0 0 0 0 rgba(255,215,0, 0.4);
  }
  70% {
      -moz-box-shadow: 0 0 0 10px rgba(255,215,0, 0);
      box-shadow: 0 0 0 4px rgba(255,215,0, 0);
  }
  100% {
      -moz-box-shadow: 0 0 0 0 rgba(255,215,0, 0);
      box-shadow: 0 0 0 0 rgba(255,215,0, 0);
  }
}


/* BUTTONS */

input[type=submit].tos-btn {
	background: #464646;
	border: 2px solid gold;
	font: 12px 'Verdana';
	padding: 4px 18px;
	margin: 4px 0;
	border-radius: 0;
	color: #fff;
	-webkit-appearance: none;
	border-radius: 0;
}

input[type=submit].tos-btn:hover {
	cursor: pointer;
	background: #575656;
}

.btn {
	background: #464646;
	border: 2px solid gold;
	font: 12px 'Verdana';
	padding: 4px 18px;
	margin: 4px 0;
	border-radius: 0;
	color: #fff;
	-webkit-appearance: none;
	border-radius: 0;
}

.btn:hover {
	cursor: pointer;
	background: #575656;
}

.btn.red {
	background: #464646;
	border: 2px solid #cc3535;
	font: 12px 'Verdana';
	padding: 4px 18px;
	margin: 4px 0;
	border-radius: 0;
	color: #fff;
	-webkit-appearance: none;
	border-radius: 0;
}

.btn.red:hover {
	background: #4d4d4d;
}

.btn.grey {
  border: 2px solid gray;
  color: silver;
}

.btn.credits {
	border: 2px solid #4bb3d3;
    color: #00F7FF;
}

.btn.btn-sml {
	padding: 0 18px;
	border: 1px solid gold;
	margin: 2px 0;
}

.btn.btn-lrg {
	padding: 24px 69px;
}

.btn:disabled {
    cursor: not-allowed;
	border-color: gray;
    color: gray!important;
}

.btn:visited, a.btn:active, a.btn:focus {
    color: #fff;
    text-decoration: none;
}

span.btn {
	background: #464646;
	border: 2px solid gold;
	font: 12px 'Verdana';
	padding: 4px 18px;
	margin: 4px 0;
	border-radius: 0;
	color: #fff;
	-webkit-appearance: none;
	border-radius: 0;
	display: block;
}

span.btn:hover {
	cursor: pointer;
	background: #575656;
}

.caret {
	display: inline-block;
	margin-left: 5px;
	width: 0; 
	height: 0; 
	vertical-align: middle;
	border-left: 4px solid transparent;
	border-right: 4px solid transparent;
	border-top: 4px solid;
}


/*Text input style*/

input[type=text].btn:focus, input[type=text].btn:focus-visible {
    outline: none;
}

input[type=text].btn {
    cursor: initial;
}


.cars-links-container {
	width: 90%;
	margin: 16px 4px;
}

.half {
	width: 50%;
}

.quarter {
	width: 25%;
}


/*Tables styles */

tr.header {
	background: #333;
	font-weight: bold;
}

.headlesstable {
	border-top: 1px solid #5b5b5b;
}

/* Forum replies */
.postinfo-dark {
	padding: 0 5%;
}

/*'textbox' buttons*/

input.textbox.btn {
	padding: 6px 26px;
	margin: 6px 0;
}


/* SPINNING LOADER */

.loader {
	width: 14px;
	height: 14px;
	border-radius: 50%;
	display: inline-block;
	position: relative;
	background: linear-gradient(0deg, rgba(23, 23, 23, 0.2) 33%, #ffd700 100%);
	box-sizing: border-box;
	animation: rotation 1s linear infinite;
	top: 3px;
}
.loader::after {
	content: '';
	box-sizing: border-box;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: #263238;
}
@keyframes rotation {
  0% { transform: rotate(0deg) }
  100% { transform: rotate(360deg)}
} 



/*TOP MENU*/


.top-menu {
	display: block;
	position: fixed;
	top: 0;
	left: 0px;
	height: 29px;
	width: 100%;
	max-width: 100%;
	z-index: 1;
	background-color: #333333;
	background-image: url("/more/menubg.png");
	background-repeat: repeat;
	overflow-x: auto;
	overflow-y: hidden;
	white-space: nowrap;
}
#top-menu p {
	font-family: "Verdana";
	font-size: 10px;
	padding: 0;
}

.top-menu-item {
	font-size: 10px;
	font-family: 'Verdana';
}


.bg {
	/*font-size: 0;*/
	position:fixed;
    padding:0;
    margin:0;
    top:0;
    left:0;
    width: 100%;
    height: 100%;
    background-color: #808080;
}

.bg div {
	display: inline-block;
}


/*LEFT MENU*/


.left-menu {
	position: absolute;
	background-color: #333333;
	left: 0;
	top: 28px;
	width: 162px;
	height: 100%;
	padding-bottom: 38px;
	float: left;
	overflow-x: hidden;
	overflow-y: scroll;
	vertical-align: top;
	-moz-box-shadow: 2px 0 10px 0 #000000;
	-webkit-box-shadow: 2px 0 10px 0 #000000;
	box-shadow: 2px 0 10px 0 #000000;
}

.left-menu ul{
	margin: 0;
	padding: 0;
}

.left-menu li {
	border-bottom: solid 1px white;
	width: 145px;
	margin-left: -9px;
	margin-right: -6px;
	display: block;
	border-left: solid 15px #777777;
	border-right: solid 15px #777777;
}

.last-li {
	border: none !important;
}

.left-menu li:hover {
	background-color: #2b2b2b;
	border-left: solid 15px #bbbbbb;
	border-right: solid 15px #bbbbbb;
}

.left-menu li a {
	display: block;
	text-align: left;
	color: #ebebeb;
	font-size: 9px;
	padding: 3px 5px;
}

.left-menu li a:hover {
	color: #fff;
}

.lmenu-title {
	font-family: "Verdana";
	display: block;
	font-size: 12px;
	color: #fff;
	width: 161px;
	height: 20px;
	background-color: #3b3b3b;
	font-weight: 400;
	line-height: 20px;
	text-align: center;
	border-top: solid 3px #666;
	border-bottom: solid 3px #666;
        -moz-box-shadow: inset 0px 11px 8px -10px #222,
        -webkit-box-shadow: inset 0px -11px 8px -10px #222;
        box-shadow: 0px -11px 8px -10px #222;
}

.lmenu-spacer {
	height: 47px;
}

li.lmenu a {
    color: silver;
    text-decoration: none;
    font: 10px 'Verdana';
}

li.lmenu a:hover {
    color: white;
    text-decoration: none;
    font: 10px 'Verdana';
}


/*Page titles*/

.page-title {
	width: 100%;
	background: url(more/menubg.png) #333333;
	height: 23px;
}

.page-title p {
	display: inline-block;
	margin: 0;
	padding: 5px 0;
}



/*--------LOGIN WELCOME SCREEN--------*/
.welcome-content {
	color: white;
	text-align: center;
	width: 60%;
	height: 95%;
	margin: auto;
	position: relative;
}
.welcome-content p {
	margin: 4px 0 6px 0;
}
.welcome-content h3 {
	margin: 8px 0;
}
.welcome {
	color: white;
	font-weight: 400;
}
.player-info {
	font-size: 0.6rem;
}
.stat-name {
	color: silver;
}
.welcome-inner {
	position: relative;
	top: 40%;
}

/*CRIMES*/
.crime-wrapper {
	padding: 10px;
	width: 80%;
	margin: 3px 0;
	background: linear-gradient(to left, #1a1a1a, #2d2d2d);
}

/*#stbull {
	background: url(more/crimes/stbull.jpg) #222222;
}
#stcash {
	background: url(more/crimes/stcash.jpg) #222222;
}
#kidnap {
	background: url(more/crimes/kidnap.jpg) #222222;
}
#jewellery {
	background: url(more/crimes/jewellery.jpg) #222222;
}
#sellcars {
	background: url(more/crimes/sellcars.jpg) #222222;
}
#pickpocket {
	background: url(more/crimes/pickpocket.jpg) #222222;
}
#pennies {
	background: url(more/crimes/pennies.jpg) #222222;
}*/

.crime-name {
	/*background: rgba(0, 0, 0, 0.4);*/
	padding: 0px 8px 0 4px;
}

.check-all {
	width: 100%;
	font: 12px Verdana;
	padding: 10px;
}

.veri {
	display: block!important;
	padding: 12px 0;
}
.verinput {
	display: inline-block;
	vertical-align: middle;
}


/*/// HEISTS ///*/

.hcontainer {
	width: 90%;
	background: #33333370;
	border: 1px solid #ffd7007d;
	padding: 8px;
	margin: 12px 0px;
	box-shadow: 0 4px 8px 0 rgba(0,0,0,0.3);
}

.hcontainer > h3 {
	margin: 16px 0 0 0;
}

.holdup {

}

.holdup h5 {
	margin: 10px 0 -16px 0;
}

.h-options {
	width: 60%;
}

.hoption {
	padding: 8px 0;
	text-align: left;
	width: 100%;
}

.h-select {
	width: 100%;
	-webkit-appearance: auto;
}

.timer {
	border-bottom: 1px solid white;
}
.timer.lowrank {
	border-bottom: none;
	font-weight: bold;
}

.busted {
	border: solid 1px #cc3535b3;
	-webkit-animation: busted-flash 0.2s 3;
	-moz-animation: busted-flash 0.2s 3;
	-o-animation: busted-flash 0.2s 3;
	-ms-animation: busted-flash 0.2s 3;
	animation: busted-flash 0.2s 3;
}

@-webkit-keyframes busted-flash {
    0% { border: solid 1px #cc3535b3; }
    100% { border: solid 1px #0b5de0b3; }
}
@-moz-keyframes busted-flash {
    0% { border: solid 1px #cc3535b3; }
    100% { border: solid 1px #0b5de0b3; }
}
@-ms-keyframes busted-flash {
    0% { border: solid 1px #cc3535b3; }
    100% { border: solid 1px #0b5de0b3; }
}
@-o-keyframes busted-flash {
    0% { border: solid 1px #cc3535b3; }
    100% { border: solid 1px #0b5de0b3; }
}
@keyframes busted-flash {
    0% { border: solid 1px #cc3535b3; }
    100% { border: solid 1px #0b5de0b3; }
}


.success {
	border: solid 1px #cc3535b3;
	-webkit-animation: success-flash 2s 3;
	-moz-animation: success-flash 2s 3;
	-o-animation: success-flash 2s 3;
	-ms-animation: success-flash 2s 3;
	animation: success-flash 3s 1;
}


@-webkit-keyframes success-flash {
    0% { box-shadow:  0 0px 8px -10px rgba(255, 217, 0, 0), 0 13px 8px -10px #222; }
    50% { box-shadow: 0 0px 8px 0px rgba(255, 217, 0, 0.5), -13px 13px 8px -10px #222; }
    100% { box-shadow:  0 0px 8px -10px rgba(255, 217, 0, 0), 0 13px 8px -10px #222; }
}
@-moz-keyframes success-flash {
    0% { box-shadow:  0 0px 8px -10px rgba(255, 217, 0, 0), 0 13px 8px -10px #222; }
    50% { box-shadow: 0 0px 8px 0px rgba(255, 217, 0, 0.5), -13px 13px 8px -10px #222; }
    100% { box-shadow:  0 0px 8px -10px rgba(255, 217, 0, 0), 0 13px 8px -10px #222; }
}
@-ms-keyframes success-flash {
    0% { box-shadow:  0 0px 8px -10px rgba(255, 217, 0, 0), 0 13px 8px -10px #222; }
    50% { box-shadow: 0 0px 8px 0px rgba(255, 217, 0, 0.5), -13px 13px 8px -10px #222; }
    100% { box-shadow:  0 0px 8px -10px rgba(255, 217, 0, 0), 0 13px 8px -10px #222; }
}
@-o-keyframes success-flash {
    0% { box-shadow:  0 0px 8px -10px rgba(255, 217, 0, 0), 0 13px 8px -10px #222; }
    50% { box-shadow: 0 0px 8px 0px rgba(255, 217, 0, 0.5), -13px 13px 8px -10px #222; }
    100% { box-shadow:  0 0px 8px -10px rgba(255, 217, 0, 0), 0 13px 8px -10px #222; }
}
@keyframes success-flash {
    0% { box-shadow:  0 0px 8px -10px rgba(255, 217, 0, 0), 0 13px 8px -10px #222; }
    50% { box-shadow: 0 0px 8px 0px rgba(255, 217, 0, 0.5), -13px 13px 8px -10px #222; }
    100% { box-shadow:  0 0px 8px -10px rgba(255, 217, 0, 0), 0 13px 8px -10px #222; }
}




/* INDEX */


.index-container {
    background: #202329;
    padding: 24px 20px;
    background-image: url(https://host.misq.co/assets/img/homepageskyline.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    height: 80%;
    background-position: bottom;
}

.index-header > p {
	font: 14px 'Verdana';
	color: #ffffff;
}

.index-header h1 {
	font-size: 3.5rem;
}

.index-header {
	text-align: center;
	width: 60%;
	margin: auto;
}

.index-titles {
	margin: 6px 0px;
    padding: 12px 0;
    text-align: center;
}

.index-forms-wrapper {
    display: block;
    width: 60%;
    background: rgb(0 0 0 / 30%);
    padding: 5px 0px;
    margin: auto;
}

.index-nav-links-wrapper {
    background: rgb(0 0 0 / 40%);
    width: 60%;
    margin: auto;
}

.index-forms {
	position: relative;
	margin: 30px auto;
	width: 60%;
}

.index-forms-wrapper label {
	font: 14px 'Verdana';
	color: #ffffff;
	width: 33%;
	display: inline-block;
}

.index-forms-wrapper input[type=text], .index-forms-wrapper input[type=password], .index-forms-wrapper input[type=email] {
	width: 67%;
	background-color: #333333c2;
	border: 1px solid #ffd70085;
	padding: 5px;
	color: #e9e9e9;
	margin: 3px 0;
	border-radius: 0;
    max-width: 100%;
    box-sizing: border-box;
}

.index-forms-wrapper input[type=text]:focus, .index-forms-wrapper input[type=password]:focus, .index-forms-wrapper input[type=email]:focus {
	border: 1px solid gold;
	outline:0;
}

.index-forms-wrapper input[type=submit] {
	width: 100%;
	background: #464646;
	border: 2px solid gold;
	font: 12px 'Verdana';
	padding: 4px 0px;
	margin: 4px 0;
	border-radius: 0;
	color: #fff;
}

.index-forms-wrapper input[type=submit]:hover {
	cursor: pointer;
	background: #575656;
}

.index-nav-links {
	background: none;
}

ul.nav-link {
	margin: auto;
	width: 300px;
	background: none;
	text-align: center;
}

ul.nav-link li {
	padding: 0px 8px;
	font: 14px 'Verdana';
}

.underline {
	border-bottom: solid 1px gold;
}



 /* STYLED FORM INPUTS */

  input[type=text].form-style,  input[type=password].form-style,  input[type=email].form-style {
	width: 67%;
	background-color: #333;
	border: 1px solid #ffd70085;
	padding: 5px;
	color: #999;
	margin: 3px -15px;
	border-radius: 0;
}

 input[type=text].form-style:focus,  input[type=password].form-style:focus,  input[type=email].form-style:focus {
	border: 1px solid gold;
	outline:0;
	color: #fff;
}

 input[type=submit].form-style {
	width: 69%;
	background: #464646;
	border: 2px solid gold;
	font: 12px 'Verdana';
	padding: 4px 0px;
	margin: 4px 0;
	border-radius: 0;
	color: #fff;
}

 input[type=submit].form-style:hover {
	cursor: pointer;
	background: #575656;
}

.form-style.nomarg {
	margin: 3px 0;
}

.qlabel {
	width: 24%;
	display: inline-block;
}

label.bl {
	display: block;
}

.form-style-full {
	width: 100%;
	background-color: #333;
	border: 1px solid #ffd70085;
	padding: 5px;
	color: #999;
	margin: 3px 0;
	border-radius: 0;
}




/*----RADIO STYLE---*/

/* The container */
/*.radio-style {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}*/

/* Hide the browser's default radio button */
.radio-style input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

/* Create a custom radio button */
.radio-btn {
  position: relative;
  display: block;
  left: 50%;
  margin-left: -10px;
  height: 20px;
  width: 20px;
  background-color: #eee;
  border-radius: 50%;
}

/* On mouse-over, add a grey background color */
.radio-style:hover input ~ .radio-btn {
  background-color: #ccc;
}

/* When the radio button is checked, add a blue background */
.radio-style input:checked ~ .radio-btn {
  background-color: gold;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.radio-btn:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the indicator (dot/circle) when checked */
.radio-style input:checked ~ .radio-btn:after {
  display: block;
}

/* Style the indicator (dot/circle) */
.radio-style .radio-btn:after {
	top: 7px;
	left: 7px;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: white;
}

label:hover {
	cursor: pointer;
}




/*Comment text box*/
#newpost {
	margin: 8px 0;
}


/*------------- HOME -------------*/

#home-main {
	width: 90%;
}
.home-title {

}
.home-title a {
	text-decoration: underline;
	text-decoration-color: gold;
	text-decoration-style: dotted;
}

.home-subtitle {
	display: block;
	width: 100%;
	border-bottom: 1px solid white;
	text-align: left;
	margin: 20px 0;
}
.home-subtitle h4 {
	text-transform: uppercase;
	margin: 12px 10px;
}
.home-links-block {
	height: auto;
}
.home-btn {
	padding: 8px 0;
}
#casino-links {
	margin-bottom: 50px;
}

/*DISCORD BANNER*/

#discord-footer {
	bottom: 0;
	position: absolute;
	width: calc(100% - 163px);
	padding-left: 163px;
}

.discord-banner {
	background: #23272a;
	width: 100%;
	position: relative;
	text-align: center;
}
.discord-banner img, .discord-banner p, .discord-banner h2 {
	display: inline-block;
	color: white;
	line-height: 20px;
	vertical-align: middle;
}
.discord-banner a {
	padding: 8px 60px;
	background: white;
	color: #23272a;
	border-radius: 35px;
	right: 8px;
	position: absolute;
	top: 50%;
	margin-top: -18px;
	font-size: 1rem;
	font-family: 'Verdana', sans-serif;
}
.discord-banner a:hover {
	background: #e1e1e1;
}
.discord-banner img {
	height: 40px;
	left: 8px;
	position: absolute;
	top: 50%;
	margin-top: -20px;
}


/* --------- TOOLTIPS ------ */

.tooltip {
	position: relative;
	display: inline-block;
	padding: 2px 6px;
	background: #ffffff3d;
	border-radius: 100%;
	left: 8px;
	color: #ebebeb;
	font-family: "Verdana";
	font-size: 0.8rem;
}

.tooltip .tooltiptext {
    visibility: hidden;
	position: absolute;
	width: 200px;
	max-width: 200px;
	background-color: #555;
	color: #fff;
	text-align: center;
	padding: 5px 8px;
	border-radius: 6px;
	z-index: 1;
	opacity: 0;
	transition: opacity 0.3s;
	white-space: normal;
}

/*.tooltip .tooltiptext::after {
	content: "";
	position: absolute;
	top: 100%;
	left: 50%;
	margin-left: -5px;
	border-width: 5px;
	border-style: solid;
	border-color: gold transparent transparent transparent;
}*/

.tooltip:hover .tooltiptext {
	visibility: visible;
	opacity: 1;
	border: solid 1px gold;
}


/*TOP*/
.tooltip-top {
	bottom: 125%;
	left: 50%;
	margin-left: -60px;
}

.tooltip-top::after {
	content: "";
	position: absolute;
	top: 100%;
	left: 50%;
	margin-left: -5px;
	border-width: 5px;
	border-style: solid;
	border-color: gold transparent transparent transparent;
}

/*RIGHT*/
.tooltip-right {
	top: -5px;
	left: 125%;
}

.tooltip-right::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 100%;
	margin-top: -5px;
	border-width: 5px;
	border-style: solid;
	border-color: transparent gold transparent transparent;
}

/*BOTTOM*/
.tooltip-bottom {
	top: 135%;
	left: -100px;
	margin-left: 0;
}

.tooltip-bottom::after {
	content: "";
	position: absolute;
	top: -10px;
	left: 50%;
	margin-left: -5px;
	border-width: 5px;
	border-style: solid;
	border-color: transparent transparent gold transparent;
}

/*LEFT*/
.tooltip-left {
	top: -5px;
	bottom: auto;
	right: 128%;
}

.tooltip-left::after {
	content: "";
	position: absolute;
	top: 100%;
	left: 50%;
	margin-left: -5px;
	border-width: 5px;
	border-style: solid;
	border-color: transparent transparent transparent gold;
}


/*///////// NOtIFICATIONS ////////*/
.notifications-container {

}

.notif {
/*	padding: 1px 2px;
	border-bottom: solid 1px white;
	width: 145px;
	margin-left: -9px;
	margin-right: -6px;
	display: block;
	border-left: solid 15px #777777;
	border-right: solid 15px #777777;*/
}

p.notifications {
	color: white;
	padding: 0 8px;
	font-size: 0.7rem;
}

p.notifications a {
	color: gold;
	display: inline;
	font-size: inherit;
	padding: 0;
}


.spacer-t30 {
	margin-top: 30px;
}
.spacer-b30 {
	margin-bottom: 30px;
}
.spacer30 {
	margin-top: 30px;
	margin-bottom: 30px;
}
.spacer150 {
	margin-bottom: 150px;
}
.spacer300 {
	margin-bottom: 300px;
}


.content {
	display: inline-block;
	position: fixed;
	top: 28px;
	left: 161px;
	right: 0;
	bottom: 0;
	background-color: #e6e6e6;
	color: #000000;
	margin-right: 161px;
}

.block {
	display: inline-block;
	position: fixed;
	top: 0;
	bottom: 0;
	left: 161px;
	right: 0;
	height: 80%;
	width: 80%;
	margin: auto;
	text-align: center;
	overflow: auto;
}

.block p {
	color: #cc4444;
	font-family: "Verdana";
	font-size: 20px;
}

.inner-block {
	display: inline-block;
	position: fixed;
	top: 70px;
	bottom: 70px;
	left: 161px;
	right: 0;
	height: auto;
	width: 65%;
	margin: auto;
	background-image: url(/more/bgg.png);
	-webkit-box-shadow:inset 5px 5px 150px 15px rgba(0,0,0,0.5);
	box-shadow:inset 5px 5px 150px 15px rgba(0,0,0,0.5);
	moz-box-shadow:inset 5px 5px 150px 15px rgba(0,0,0,0.5);
	vertical-align: middle;
	overflow: auto;
	color: #ebebeb;
}

.inner-block p {
	color: #ebebeb;
	font-family: "Verdana";
	font-size: 0.8rem;
}

.title {
	font-family: "Verdana";
	font-size: 14px;
	font-weight: 600;
	color: #ebebeb;
	background: #222;
	border-top: solid 1px #fff;
	border-bottom: solid 1px #fff;
	border-left: solid 5px #444;
	border-right: solid 5px #444;
	padding: 10px;
	width: 25rem;
}

.bold {
	font-weight: bold;
}


.small-form {
	display: inline-block;
	width: 250px;
	text-align: center;
	margin-top: 250px;
}

.alert {
    height: auto;
    background: #3333;
    width: 80%;
    border: solid 1px #ffd700b3;
    border-radius: 0;
    margin-top: 12px;
    margin-bottom: 8px;
    padding: 0.5rem 1.6rem;
    -moz-box-shadow: inset 0px 13px 8px -10px #222,-webkit-box-shadow:inset 0px -13px 8px -10px #222;
    box-shadow: 0 13px 8px -10px #222;
    overflow: auto;
}

.alert p {
	font-family: "Verdana";
	font-size: 12px;
	color: #fff;
	line-height: 14px;
	text-align: center;
}

.alert p.sub {
	font-size: 0.6rem;
}

.alert a {
	font-size: 12px;
	color: gold;
	font-weight: bold;
}

.alert a:hover {
	font-size: 12px;
	color: gold;
	font-weight: bold;
}

.alert.wide {
	width: 100%;
}

.alert.red {
	border: solid 1px #cc3535b3;
}

.alert.white {
	border: solid 1px #ffffff;
}
.alert.light {
	border: solid 1px #e2e2e2;
	color: #e2e2e2!important;
}

.alert h3 {
	margin: 10px 0;
}

.c-alert {
	height: 30px;
	background: rgba(204,68,68,0.3);
	width: 80%;
	border: solid 1px #cc4444;
	border-radius: 5px;
	margin-top: 5px;
	margin-bottom: 5px;
        -moz-box-shadow: inset 0px 11px 8px -10px #222,
        -webkit-box-shadow: inset 0px -11px 8px -10px #222;
        box-shadow: 0px -11px 8px -10px #222;
       overflow: auto;
}
.c-alert p {
	font-family: "Verdana";
	font-size: 10px;
	color: #ebebeb;
	line-height: 14px;
}


.ref-link {
	color: gold;
	font-weight: bold;
	padding: 2px 15px;
	margin: 8px 0;
	background: #222222;
}


/*//////////////////////////////////
///////// PER PAGE STYLES /////////
////////////////////////////////*/




/*//////////////////////////////////
///////// GTA PAGE STYLES /////////
////////////////////////////////*/


.gtacontainer {
	display: inline-block;
	position: relative;
	height: auto;
	width: 100%;
	margin: auto;
	background:none;
	vertical-align: middle;
	overflow: auto;
}

.gtacontainer div {
	margin: 5px;
	display: inline-block;
}

.parked {
	float:middle;
	height: 225px;
	width: 300px;
	background-image: url('/more/parked.jpg');
	background-repeat: no-repeat;
}

.driveway {
	float:middle;
	height: 225px;
	width: 300px;
	background-image: url('/more/drive.jpg');
	background-repeat: no-repeat;
}

.redlight {
	float: middle;
	height: 225px;
	width: 300px;
	background-image: url('/more/redlight.jpg');
	background-repeat: no-repeat;
}

.dealership {
	float: middle;
	height: 225px;
	width: 300px;
	background-image: url('/more/dealer.jpg');
	background-repeat: no-repeat;
}

.button {
	position: relative;
	top:45%;
}


.gta-alert {
	height: auto;
	background: #3333;
	width: 80%;
	border: solid 1px #ffd700b3;
	border-radius: 0px;
	margin-top: 30px;
	margin-bottom: 30px;
	padding: 4px;
	-moz-box-shadow: inset 0px 13px 8px -10px #222,-webkit-box-shadow:inset 0px -13px 8px -10px #222;
	box-shadow: 0 13px 8px -10px #222;
	overflow: auto;
}
.gta-alert p {
	font-family: "Verdana";
	font-size: 12px!important;
	color: #fff;
	line-height: 14px;
	text-align: center;
}

.gta-alert a {
	font-size: 12px!important;
	color: gold;
	font-weight: bold;
}

.gta-alert .gold {
	color: gold;
}

.gta-alert.red {
	border: solid 1px #cc3535b3;
}

.gta-img {
	max-width: 90%;
	margin: 10px 0 0 0;
}


/*//////////////////////////////////////////////
///////////////// GARAGE STYLES ///////////////
////////////////////////////////////////////*/


/*Make the condensed table even more condensed*/
.table-condensed > thead > tr > th, .table-condensed > tbody > tr > th, .table-condensed > tfoot > tr > th, .table-condensed > thead > tr > td, .table-condensed > tbody > tr > td, .table-condensed > tfoot > tr > td {
    padding: 2px;
}

/*//////////////////////////////////////////////
///////////////// SUPPLY STYLES ///////////////
////////////////////////////////////////////*/

#supple-container {
	width: 100%;
}

.vert-span {
	display: inline-block;
	vertical-align: middle;
	line-height: 80px;
}

.transport-train {
	float:middle;
	height: 80px;
	width: 200px;
	background-image: url('/more/train.jpg');
	background-repeat: no-repeat;
	padding-bottom: 5px;
}

.transport-car {
	float:middle;
	height: 80px;
	width: 200px;
	background-image: url('/more/carr.jpg');
	background-repeat: no-repeat;
	padding-bottom: 5px;
}

.transport-truck {
	float:middle;
	height: 80px;
	width: 200px;
	background-image: url('/more/truck.jpg');
	background-repeat: no-repeat;
	padding-bottom: 5px;
}

/*//////////////////////////////////////////////
///////////////// CREW STYLES ///////////////
////////////////////////////////////////////*/

.crewheadquarters-stats {
	width: 100%;
}

.crewstats-third {
	display: inline-block;
	width: 30%;
}

.crewrow-section {
	width: 100%;
	margin: 20px auto;
}

.top-donators {
	margin:  18px 0;
	width: 100%;
}

.showhidetoggle {
	cursor: pointer;
	color: silver;
	text-decoration: underline;
	text-decoration-color: gold;
}


.crewProfileName {
	display: flex;
	flex-direction: column;
	padding-top: 30px;
}

.crewNameLarge {
	font-size: 3rem;
	font-family: 'Lato';
	font-weight: 600;
}

.profile-wrapper p, .profile-wrapper a {
	color: <?= $pcolour ?>;
}

.profile-info {
	padding: 20px;
}

div.row.info {
	display: block;
}

span.boss-label {
    color: gray;
    font-variant: small-caps;
}

/*PROFILES*/

.bottxt {
   text-transform: uppercase;
  background-image: linear-gradient(
    270deg,
    #30c135 0%,
    #1b1b1b 10%,
    #30c135 20%,
    #1b1b1b 30%,
    #30c135 40%,
    #1b1b1b 50%,
    #eef1eb 55%,
    #30c135 60%,
    #1b1b1b 70%,
    #30c135 80%,
    #eef1eb 85%,
    #1b1b1b 90%,
    #30c135 100%
  );
  background-size: auto auto;
  background-clip: border-box;
  background-size: 400% 400%;
  color: #fff;
  background-clip: text;
  text-fill-color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: textclip 2s linear infinite;
  display: inline-block;
      font-size: 0.6rem;
}

@keyframes textclip {
  to {
    background-position: 200% center;
  }
}

.password-label {
	display: block;
}

.medals-icon {
	vertical-align: middle;
	font-size: 1.8rem;
}


/*////////////////// CASINOS //////////////////*/

/* ---- MDG ---- */

.mdg-game-container {
	width: 100%;
	background: #33333369;
	border: 1px solid #ffd70070;
	margin: 8px 0;
	padding: 10px 0 4px 0;
	box-shadow: 0 3px 6px 0px rgba(0,0,0,0.3);
}

.mdg-game-container.mygame {
	border: 1px solid gold;
}

.mdg-game-details-wrapper {
	width: 72%;
}

.mdg-details-pot {
	width: 100%;
}

.mdg-details-playerlist {
	width: 100%;
}

.radio-btn-wrapper {
	width: 25%;
}

.large-dice {
	font-size: 1.5rem;
	margin: 0 5px;
	vertical-align: middle;
	color: white;
}

.creator-game {
	margin: 4px 0;
}

.bet-input-group {
	width: 100%;
	margin: 8px 0 4px 0;
}



/*---------BLACKJACK---------*/

.bjcards {
	max-height: 150px;
}


/*/////////////////////PROFILES/////////////////////*/


.profile-wrapper {
	padding: 8px 16px;
}
.profile-info-wrapper {
	/*width: 100%;*/
	background: #333;
	border: solid 1px #ffd700b3;
	box-shadow: 0 13px 8px -10px #222;
	margin: 8px 0;
}

.profile-user {
	margin: 30px 10px;
}

.profile-info {
	width: 100%;
}

/*.info-top, .info-bottom {
	width: 100%;
}*/

#info-username h2, #info-username a {
	display: inline;
	margin: 0 2px;
}

#info-username h2 {
	font-size: 2rem;
}
#info-username a {
	font-size: 1rem;
	margin-right: -15px;
}

/*.profile-stat {
	width: 49%;
	vertical-align: middle;
}*/

/*.profile-fifty {
	width: 49%;
}*/

.profile-img {
	display: block;
	max-height: 200px;
	max-width: 200px;
}

.profile-username {
	width: 100%;
}

.img-thumbnail.no-border {
	background-color: transparent;
	border: none;
	border-radius: 0;
}

.sentreceived {
	max-height: 140px;
	overflow: auto;
}

.profile-content {
	color: white;
}

.quote-text {
	margin: 0;
	font-style: italic;
}

.profile-content img {
  max-width: 100%;
}


/* ------------- Drag Races ------------- */

.drag-car {
	height: 44px;
}




/*///////////////////EDIT PROFILE///////////////////*/

.chgpassinput {
	width: 100%;
	margin: 8px 0;
}

.nomarg {
	margin: 3px 0;
}

p.nomarg {
	margin: 3px 0;
}

.profiles-wrap-pad {
	padding: 8px!important;
}

.profile-video {
	width: 100%;
}

.quote-wrapper {
	width: 100%;
}


/*//////////////////////PROPERTIES//////////////////////*/

.maxbet-table .maxbet-cell {
	vertical-align: middle;
}

.stock-label {
	font-weight: normal;
}

td p.prop-table-text {
    margin: 8px 4px;
    font-size: 0.6rem;
}
td p.prop-table-header {
    font-family: 'Lato';
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 0.5px;
    font-size: 0.7rem;
    color: #989898;
}

span.infinite-max {
	font-size: 1rem;
}


/*///////////////////////TRAVEL///////////////////////*/


.location-form {

}

.location-header {
  text-align: center;
  color: white;
  font-family: Verdana, Arial, sans-serif;
  font-size: small;
  font-weight: bold;
}

.location-item {
	display: block!important;
	max-width: 400px;
	margin: auto auto;
}

.location-label {
	display: inline-block;
	width: 100%;
	padding: 20px;
	color: white;
	font-family: Verdana, Arial, sans-serif;
	font-size: small;
	background-size: cover;
	background-position: center;
	position: relative;
	height: 8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 10px -12px;
}

.location-label span {
    background-color: rgba(0, 0, 0, 0.8);
	padding: 6px 18px;
    top: calc(100% - 2.5rem - 6px);
    position: relative;
}

input[type="radio"].travel-radio {
  display: none;
}

input[type="radio"]:checked.travel-radio + .location-label, input[type="radio"]:checked:hover + .location-label:hover {
	box-shadow: inset 0 0 10rem 0 rgb(255 255 255 / 60%), inset 0 0 0rem 0.2rem #fff;
}

input[type="radio"]:hover.travel-radio + .location-label:hover {
	box-shadow: inset 0 0 10rem 0 rgb(255 255 255 / 30%), inset 0 0 0rem 0.2rem rgb(255 255 255 / 30%);
}


.select-vehicle {
    width: 100%;
    display: block!important;
    margin: 0 0 30px 0;
}




/*///////////////////////RANKBAR///////////////////////*/

.rankbar {
    position: relative;
    width: 80%;
    height: 50px;
    background-color: #222222;
    margin: auto;
    display: block!important;
    margin-bottom: 24px;
    border-radius: 6px;
}

.progress {
    position: absolute;
    height: 100%;
    background-color: gold;
    display: block!important;
    border-radius: 6px;
}

.current-rank p {
    color: white;
    font-family: 'Verdana';
    font-size: 18px;
}

.rank-progress {
	display: block!important;
}

.current-rank span {
    color: gold;
}

.rankpercent {
	color: white;
    position: relative;
    font-family: 'Lato';
    top: 13px;
    font-size: 1.2rem;
    font-weight: bold;
}




/*////////////////////////CREDITS PAGE////////////////////////*/

table.credits-table > tbody > tr > td {
    font-size: 1.1rem;
    color: #ebebeb;
    vertical-align: middle;
}

table.credits-table > tbody > tr > td > input[type=submit] {
    margin: -3px 0;
}

.table-bordered {
    border: 1px solid #6e6e6e;
}

.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 #6e6e6e;
}

.credits-table-subheading {
    background: #222;
    font-weight: bold;
}

p.transactions-header {
	background: #222; 
	padding:10px;
}

table.tran-table > tbody > tr > td {
	background: #333;
}

table.tran-table > tbody > tr > td > p.left-align {
	text-align: left!important;
}


/*////////////////////BULLET FACTORIES////////////////////*/

.form-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}
.form-row > input[type="text"] {
	display: block;
}

.bf-stats {
	width: 75%;
}
.bf-stats > tbody > tr > td {
	border: 1px solid #6b6b6b;
	padding: 0px 12px;
}
.bf-stats > tbody > tr > td > p {
	margin: 4px 0;
}



/*///////////////////////////MESSAGES - INBOX AND SENT MAIL///////////////////////////*/

div.message-wrapper {
    display: flex;
    flex-direction: column;
    margin: 12px auto;
    overflow: hidden;
    padding: 8px;
}

div.message-info-container {
    display: flex;
    justify-content: space-between;
    padding: 0 8px;
}

div.message-buttons-container {
    display: flex;
    padding: 12px 8px 8px;
    justify-content: space-between;
}

div.message-container {
    display: flex;
    padding: 12px;
}

div.controls-wrapper {
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
}

/*///////////////////////////FORUM STYLES///////////////////////////*/

.topic-cell {
	padding-left: 20px !important;
}

.topic-info-cell {
	text-align: center;
}

.topic-cell-owner {
	font-weight: bold;
	padding-left: 20px !important;
}

.topic-cell-owner p a, .topic-cell-owner p {
	color: silver!important;
	text-align: left!important;
}

.topic-cell-owner:hover p a, .topic-cell-owner:hover p {
	color: white!important;
}

.topic-cell p a, .topic-cell p {
	color: white!important;
	text-align: left!important;
	font-weight: normal;
}

.topic-info-cell p a, .topic-info-cell p {
	color: silver!important;
	text-align: left!important;
	font-weight: normal;
}

.topic-cell:hover p a {
	color: silver!important;
	font-weight: normal!important;
}

.topic-info-cell:hover p a {
	color: white!important;
	font-weight: normal!important;
}

.cell-divider {
    background-color: #222222;
    padding: 0 !important;
    height: 0.5rem;
}

.important-row {
	background: rgb(204 53 53 / 24%);
}
.sticky-row {
	background: rgb(255 215 0 / 11%);
}
.owner-row {
	background: rgb(255 255 255 / 3%);
}


/*///////////////VIEW TOPIC AND REPLIES FORUM///////////////*/

.alert-flex {
	display:flex;
	flex-direction:column;
	align-items: flex-start;
	text-align: left;
	margin: 20px auto;
}

div.post-title-container {
	padding: 8px 20px;
	display: flex;
    align-items: center;
    gap: 4px;
}

div.post-content-container {
	padding: 20px;
}

div.post-content-container p {
    text-align: left;
}

div.post-date {
	width:100%;
	display: flex!important;
	justify-content: 
	space-between;
}

.flex-column {
	display: flex!important;
	flex-direction: column;
	align-items: flex-start;
}

div.comment-container {
    display: flex;
    flex-direction: column;
    align-items: start;
}

div.comment-info-wrapper {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
}

div.comment-info {
	display: flex;
    align-items: baseline;
    gap: 4px;
}

.divider-solid.wide {
	width:100%;
}

a.like-button {
    display: flex;
    padding: 4px 8px;
/*    background: #333;*/
/*    border: 1px gold solid;*/
    justify-content: center;
    align-items: center;
    gap: 8px;
    color: silver;
    font-size: 1rem;
}

a.like-button:hover {
	font-size: 1rem;
	color: white;
}

div.comment-footer {
	display: flex;
    gap: 8px;
    padding: 8px 0px;
}

div.comment-footer a {
	text-decoration: none;
}

span.comment-likes {
	display: flex;
    font-size: 1rem;
    align-items: center;
    padding: 4px 20px 4px 4px;
    border-right: 1px solid silver;
    gap: 8px;
}

div.comment-body {
	padding: 20px;
}

.alert.grey {
	border: solid 1px rgb(255 255 255 / 20%);
}

.comment-body p {
    text-align: left;
}








/*////////////// MEDIA QUERIES ///////////////*/


/* Smartphones (portrait and landscape) ----------- */
@media only screen and (max-device-width : 768px) {

	.index-header {
		width: 80%;
	}
	.index-forms-wrapper {
		width: 100%;
	}

	.index-forms {
		width: 80%;
	}

	.index-forms-wrapper input[type=text], .index-forms-wrapper input[type=password], .index-forms-wrapper input[type=email] {
		height: 2rem;

	}

	.index-nav-links-wrapper {
	    width: 100%;
	}

	ul.nav-link li {
	  padding: 0px 14px;
	}

	ul.nav-link {
	  width: 100%;
	}

	.left-menu li {
		padding: 16px 0;
	}

	li.lmenu a {
		font: 1rem 'Verdana';
	}

	li.lmenu a:hover {
		font:  1rem 'Verdana';
	}

}



/*///////////////////////////Online players styles///////////////////////////*/

div.player-card {
    display: flex;
    flex-direction: row;
    align-items: center;
    background: rgba(51, 51, 51, 0.3);
    padding: 8px 16px;
    margin: 12px 0;
    gap: 8px;
    border: 1px solid white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    transition: box-shadow 200ms, background 200ms;
}

div.player-card:hover {
    box-shadow: 0 4px 12px 1px rgba(0, 0, 0, 0.3);
    transition: box-shadow 200ms, background 200ms;
    background: rgba(51, 51, 51, 1);
}

.player-card > a {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: left;
    gap: 16px;
    width: 100%;
}

.player-card > a p {
    text-align: left;
}

.player-card p {
    text-align: left;
}

p.online-name {
	font-size: 1.3rem!important;
	font-weight: bold;
}

p.online-rank {
/*	font-size: 1rem;*/
	font-weight: 400;
	color: silver;
}

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

.onlineBadge {
	font-size: 1.2rem;
	margin-left: 4px;
}

.onlineKey {
	display: inline-block;
}











  /*////////////////*/
 /*/// ORIGINAL ///*/
/*////////////////*/



/*Custom styles*/

a.link {
	text-decoration: underline!important;
	text-decoration-color: gold!important;
	text-decoration-style: dashed!important;
}




/*Previous styles*/

body {
    margin: 0px;
}

.textbox {
    -moz-border-radius-topleft: 1px;
    -moz-border-radius-bottomright: 2px;
    background-color: #414141;
    border-bottom: 1px solid #626262;
    border-left: 1px solid #040404;
    border-right: 1px solid #626262;
    border-top: 1px solid #040404;
    color: Silver;
    font-family: verdana;
    font-size: 10px;
    padding: 4px 8px;
}

.mainmenutable {
    border-style: solid;
    border-bottom: 1px solid #626262;
    border-left: 1px solid #040404;
    border-right: 1px solid #626262;
    border-top: 1px solid #040404;
}

.lefts {
    font-family: verdana;
    font-size: 10px;
    background: #222222;
}

.leftsmain {
    font-family: verdana;
    font-size: 10px;
    background: gray;
    color: white;
}

.online {
    font-family: verdana;
    font-size: 10px;
}

.rights {
    font-family: verdana;
    font-size: 10px;
    color: silver;
}

.rightsmain {
    font-family: verdana;
    font-size: 10px;
    background: #222222;
}

blockquote {
    font-family: vixar, tahoma, verdana, arial, helvetica, sans-serif;
    font-style: italic;
    color: #7e96ac;
}

.topleft {
    width: 8;
    height: 22;
    background-image: url(/more/topleft.png);
}

.topright {
    width: 8;
    height: 22;
    background-image: url(/more/topright.png);
}

.top {
    width: 200;
    height: 22;
    background-image: url(/more/top.png);
}

.left {
    width: 8;
    background-image: url(/more/leftb.png);
}

.right {
    width: 8;
    background-image: url(/more/rightb.png);
}

.main {
    width: 200;
    background-image: url(/more/crossbg.png);
}

.bottomleft {
    width: 8;
    height: 9;
    background-image: url(/more/bottomleft.png);
}

.bottomright {
    width: 8;
    height: 9;
    background-image: url(/more/bottomright.png);
}

.bottom {
    width: 200;
    height: 9;
    background-image: url(/more/bottom.png);
}

.buttons a {
    color: #999999;
    background-color: #1D1D1D;
    padding: 1px;
    padding-left: 3px;
    display: block;
    border-left: 10px solid #3F4343;
    border-right: 10px solid #3F4343;
    font: 10px Verdana;
    text-decoration: none;
    text-align: left;
    margin-top: 1px;
}

#casinos {
	position: fixed;
	bottom: 0px;
	right: 0;
	width: 220px;
	max-height: 75px;
	overflow: scroll;
	background: linear-gradient(to right, rgba(0,0,0,0), rgba(0,0,0,0.3));
	padding: 3px;




    /* old browsers */





}

#melt {
    text-align: left;
    position: absolute;
    position: fixed;
    top: 5px;
    right: 10px;
    overflow: hidden;
    cellpadding: 3;

    background: #222;
    /* old browsers */





}


.wtf {
    color: #666666;
    background-color: #222222;
    border-left: 10px solid #3F4343;
    font: 10px Verdana;
    text-decoration: none;
    text-align: left;
}

.wtfs {
    color: #666666;
    background-color: #222222;
    font: 10px Verdana;
    text-decoration: none;
}

.wtfyou {
    color: #666666;
    background-color: #222222;
    border-left: 10px solid khaki;
    font: 10px Verdana;
    text-decoration: none;
}


.TS {
    color: #555555;
    background-color: #555555;
    padding: 1px;
    font: 4px Verdana;
    text-align: left;
    margin-top: 1px;
}

.buttons a:hover {
    border-left: 10px solid #E0FFC2;
    background-color: #1D1D1D;
    border-right: 10px solid #E0FFC2;
    text-decoration: none;
    color: E0FFC2;
}

.tab {
    color: white;
    background-color: #333333;
    padding: 2px;
    padding-left: 3px;
    display: block;
    font: 10px verdana;
    text-decoration: none;
    text-align: center;
    margin-top: 1px;
}


