@import url('https://fonts.googleapis.com/css2?family=Dosis:wght@200;400;700&display=swap');

@font-face {
	font-family: 'MyFont';
	src:  url('fonts/MyFont.woff2') format('woff2'), /* Modern Browsers */
		  url('fonts/MyFont.woff') format('woff'), /* Modern Browsers */
		  url('fonts/MyFont.ttf') format('truetype');
	font-style: normal;
	font-weight: normal;
	text-rendering: optimizeLegibility;
}

@font-face {
	font-family: 'Anta';
	src:  url('fonts/Anta-Regular.woff2') format('woff2'), /* Modern Browsers */
		  url('fonts/Anta-Regular.woff') format('woff'), /* Modern Browsers */
		  url('fonts/Anta-Regular.ttf') format('truetype');
	font-style: normal;
	font-weight: normal;
	text-rendering: optimizeLegibility;
}


html {
	line-height: 1.15; /* 1 */
	-webkit-text-size-adjust: 100%; /* 2 */
 }

 body {
	margin: 0;
 }


 main {
	display: block;
 }

 h1 {
	font-size: 2em;
	margin: 0.67em 0;
 }

 hr {
	box-sizing: content-box; /* 1 */
	height: 0; /* 1 */
	overflow: visible; /* 2 */
 }

 pre {
	font-family: MyFont, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
	font-size: 1em; /* 2 */
 }

 a {
	background-color: transparent;
 }

 abbr[title] {
	border-bottom: none; /* 1 */
	text-decoration: underline; /* 2 */
	text-decoration: underline dotted; /* 2 */
 }

 b,
 strong {
	font-weight: bolder;
 }

 code,
 kbd,
 samp {
	font-family: monospace, monospace; /* 1 */
	font-size: 1em; /* 2 */
 }


 small {
	font-size: 80%;
 }

 sub,
 sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
 }

 sub {
	bottom: -0.25em;
 }

 sup {
	top: -0.5em;
 }


 img {
	border-style: none;
 }

 button,
 input,
 optgroup,
 select,
 textarea {
	font-family: inherit; /* 1 */
	font-size: 100%; /* 1 */
	line-height: 1.15; /* 1 */
	margin: 0; /* 2 */
 }

 button,
 input, textarea { /* 1 */
	overflow: visible;
	border: 1px solid rgb(0, 139, 139);
	background-color: rgb(55 55 55);
	font-family: 'Anta';
	color: white;
	height: 30px;
	padding-left: 5px;
	box-sizing: border-box;	
	margin: 1px;
	outline:none;
 }
textarea{
	background-color: rgba(55, 55, 55, 0.3);
}
 

 button,
 select { /* 1 */
	text-transform: none;
 }

 button,
 [type="button"],
 [type="reset"],
 [type="submit"] {
	-webkit-appearance: button;
 }

 button::-moz-focus-inner,
 [type="button"]::-moz-focus-inner,
 [type="reset"]::-moz-focus-inner,
 [type="submit"]::-moz-focus-inner {
	border-style: none;
	padding: 0;
 }

 button:-moz-focusring,
 [type="button"]:-moz-focusring,
 [type="reset"]:-moz-focusring,
 [type="submit"]:-moz-focusring {
	outline: 1px dotted ButtonText;
 }

 fieldset {
	padding: 0.35em 0.75em 0.625em;
 }
 legend {
	box-sizing: border-box; /* 1 */
	color: inherit; /* 2 */
	display: table; /* 1 */
	max-width: 100%; /* 1 */
	padding: 0; /* 3 */
	white-space: normal; /* 1 */
 }
 progress {
	vertical-align: baseline;
 }
 textarea {
	overflow: auto;
 }
 [type="checkbox"] {
	box-sizing: border-box; /* 1 */
	padding: 0; /* 2 */
 }
 [type="number"]::-webkit-inner-spin-button,
 [type="number"]::-webkit-outer-spin-button {
	height: auto;
 }

 ::-webkit-file-upload-button {
	-webkit-appearance: button; /* 1 */
	font: inherit; /* 2 */
 }
 details {
	display: block;
 }
 summary {
	display: list-item;
 }
 template {
	display: none;
 }


 [hidden] {
	display: none;
 }

:root{
	--defaultFontColor: rgb(235, 235, 235);
	--defaultFontFamily: system-ui, -apple-system, Roboto;
	--headerFontFamily: Anta, system-ui, -apple-system, Roboto;
	--inputPlaceHolderColor: orange;
	--FullBoxWidth: 1348px;
	--FullBoxHeight: 808px;
	--UpperHalfBoxHeight: 402px;
	--LowerHalfBoxHeight: 402px;
	--OneThirdBoxWidth: 447px;
	--LastThirdBoxWidth: 447px;

}

body{
	background-color: black;
	color:var(--defaultFontColor);
	font-family: var(--defaultFontFamily);
	scrollbar-width: auto;
}

::-webkit-scrollbar {
	width: 10px;
 }

 ::-webkit-scrollbar-track {
	background: #f1f1f1;
 }

 ::-webkit-scrollbar-thumb {
	background: #888;
 }

 ::-webkit-scrollbar-thumb:hover {
	background: #555;
 }

h1 {
	margin: 20px;
   font-family: var(--headerFontFamily);
   letter-spacing: 11px;
   font-size: 2em;
   line-height: 2em;
   font-weight: bold;
   text-shadow: 1px 1px 3px black, -1px 1px 3px black, 1px -1px 3px black, -1px -1px 3px black;
   color: orange;
}

dialog {
	min-height: 100px;
	min-width: 500px;
	border: 1px solid cyan;
	background-color: transparent;
	background-image: linear-gradient(180deg, #152e38d9, #011c2de8);
	color: white;
	padding: 0px;
	box-shadow: #008bdf  0px 0px 10px 5px;
}

dialog::backdrop{
	background-color:rgba(0,0,0,0.7);
	
}

dialog div.header{
	padding: 5px;
	/*background-color: #106266;*/
	text-align: center;
}
dialog div.header.error{
	padding: 5px;
	background-color: #661010;
}

dialog div.inner{
	margin:5px;
	text-align: center;
}

dialog div.ButtonsContainer{
	position:relative;
	bottom:0px;
	display: flex;
}

dialog div.dialogbody {
	min-height: 85px;
	max-height: 300px;
	overflow-y: auto;
}

.pointer{
	cursor: pointer;
}
.brightness-hover:hover{
	filter: brightness(1.5);
}

button.BasicButton{
	padding: 3px 20px 3px 20px;
	font-size: large;
	border: 1px solid grey;
	border-radius: 7px;
	cursor: pointer;
	color:white;
	background-color: rgba(0,0,0,0.8);
	flex: auto;
	margin-left: 10px;
	margin-right: 10px;
	text-align: center;
}

button.BasicButton.min150{
	min-width: 150px;
}
button.BasicButton.min200{
	min-width: 200px;
}
button.BasicButton.min250{
	min-width: 250px;
}

button.BasicButton.ok{
	background-color: rgb(0 101 22);
}
button.BasicButton.cancel{
	background-color: rgb(93 0 0);
}

button.BasicButton:hover{
	filter: brightness(150%);
}

div.spacer10{
	display: block;
	height: 10px;
}

div.spacer20{
	display: block;
	height: 20px;
}

div.spacer30{
	display: block;
	height: 30px;
}

hr{
	display: block;
	margin: 5px;
	margin-left: 30px;
	margin-right: 30px;
	border: 3px solid rgb(0, 100, 131);
	height: 1px;
	background-color: #7dfff2;
}

.SignupOuterContainer{
	box-sizing: border-box;
	display: block;
	position:relative;
	background-color: rgba(0,0,0,0.6);
	margin-left:10%;
	margin-right:10%;
	margin-top:10%;
}

.SignupLeft{
	box-sizing: border-box;
	display:inline-block;
	height:400px;
	width:50%;
	padding:20px;
	vertical-align: top;
	background-image: url("images/backgrounds/SignupBG01.png");
	background-size: cover;
	background-repeat: no-repeat;
}

.SignupRight{
	box-sizing: border-box;
	display:inline-block;
	height:400px;
	width:40%;
	padding:20px;
	vertical-align: top;
}

input.form-control{
	background-color:black;
	border:none;
	border-bottom: 1px solid grey;
	color: orange;
	margin:2px;
	padding:2px;
	font-size:large;
	width:275px;
}

input.form-control:focus{
	outline:1px solid grey;
}

input.form-control::placeholder {
	opacity: 0.6;
	color: var(--inputPlaceHolderColor);
}

.something {
    display: block;
    height: 140px;
}

.shortFrontpageDescription {
    background-image: linear-gradient(180deg, #00000073, rgba(0,0,0,0.73), #0000007d);
    font-family: var(--headerFontFamily);
    font-size: 1.1250em;
    letter-spacing: 5px;
    line-height: normal;
    padding-top: 10px;
    padding-bottom: 10px;
    color: deeppink;
}

.SignupTitle{
	font-size:large;
	color:var(--defaultFontColor);
	font-variant: small-caps;
}

.SignupButton{
	padding: 3px 20px 3px 20px;
	font-size: large;
	border: 1px solid grey;
	border-radius: 7px;
	cursor: pointer;
	background-color: rgba(0,0,0,0.8);
	width: fit-content;
	display: inline-block;
}

.LoginButton{
	padding: 3px 20px 3px 20px;
	font-size: large;
	border: 1px solid grey;
	border-radius: 7px;
	cursor: pointer;
	background-color: rgba(0,0,0,0.8);
	width: fit-content;
	display: inline-block;
}

.GameOuterContainer {
	position: relative;
	width: 1650px;
	height: 930px;
	margin-left: auto;
	margin-right: auto;
	box-sizing: border-box;
	border: 0px solid rgb(98, 227, 250);
}

.FrontpageOuterContainer {
	width: 1024px;
	height: 930px;
	margin-left: auto;
	margin-right: auto;
	box-sizing: border-box;
	border: 0px solid rgb(98, 227, 250);
	position: relative;
	margin-top: 10px;
}

img.FrontHeader {
	width: 100%;
}

.FrontpageOuterContainer .ContentBox.Frontpage.Story{
	top: 215px;
	left: 0px;
	width: 1024px;
	height: 260px;
	line-height: 1.25;
}

.FrontpageOuterContainer .ContentBox.Frontpage.SignupLogin{
	top: 485px;
	left: 0px;
	width: 500px;
	height: 295px;
}

.FrontpageOuterContainer .ContentBox.Frontpage.MailingList{
	top: 485px;
	right: 0px;
	width: 500px;
	height: 295px;
}

.FrontpageOuterContainer .ContentBox.Frontpage.DevUpdate{
	top: 790px;
	width: 1024px;
	height: 200px;
	left: 0px;
	text-align: left;
}

.DevUpdate ul{
	color:orange;
}

.FrontpageOuterContainer .ContentBox.Frontpage.Copyright{
	top: 1001px;
	width: 1024px;
	height: 38px;
	left: 0px;
	text-align: center;
}

.test{
	color:white;
}

.GameOuterContainer .LeftColumn {
	width: 1350px;
	height: 930px;
	display: block;
	float: left;
	box-sizing: content-box;
}

.GameOuterContainer .RightColumn {
	width: 300px;
	height: 930px;
	display: block;
	float: left;
	box-sizing: content-box;
}

.GameOuterContainer .LeftColumn .TopHeader {
	width: 1350px;
	height: 80px;
	display: inline-block;
	box-sizing: content-box;
	vertical-align: top;
	background-color: black;
	background-image: url(images/backgrounds/ingame_top_background_2.png);
}
.GameOuterContainer .LeftColumn .MainArea {
	width: 1350px;
	height: 809px;
	position:relative;
	display: inline-block;
	box-sizing: content-box;
	vertical-align: top;
	background-color: black;
	background-image: url("images/backgrounds/main_test.png");
}

.GameOuterContainer .RightColumn .ChatArea {
	width: 300px;
	height: 595px;
	display: inline-block;
	box-sizing: content-box;
	vertical-align: top;
	background-color: black;
	font-family: MyFont;
   color: cyan;
	background-image: url(images/backgrounds/chat_area_background_8.png);
	background-position: center;
	background-size: cover;
}

.GameOuterContainer .RightColumn .ForumArea {
	width: 300px;
	height: 155px;
	display: inline-block;
	box-sizing: content-box;
	vertical-align: top;
	background-color: hsl(183, 64%, 12%, 0.5);
	background-image: url("images/backgrounds/threads_area_background.png");
	font-family: MyFont;
   color: cyan;
	text-indent: 5px;
}

.GameOuterContainer .RightColumn .HelpArea {
	width: 300px;
	height: 80px;
	display: inline-block;
	box-sizing: content-box;
	vertical-align: top;
	background-color: hsl(183, 64%, 11%, 0.5);
	background-image: url("images/backgrounds/help_area_background.png");
	font-family: MyFont;
   color: cyan;
}

.GameOuterContainer .RightColumn .LogoArea {
	width: 300px;
	height: 63px;
	display: inline-block;
	box-sizing: content-box;
	vertical-align: top;
	background-color: black;
	background-image: url("images/sbm_logos/cyber-ball-logo-1024.png");
	background-size: cover;
	font-family: MyFont;
	color: cyan;
	margin-top: 15px;
}

.TopHeader .MenuButtonContainer, 
.TopHeader .TeamAndSectionHeaderContainer, 
.TopHeader .HeaderIconsContainer, 
.TopHeader .RoundMoneyCreditsContainer, 
.TopHeader .NextEventsHeaderContainer, 
.TopHeader .SponsorHeaderContainer{
	height: 80px;
	display: block;
	float:left;
	box-sizing: content-box;
	font-family: MyFont;
   color: cyan;
}

/* 1350 width alltogether*/
.TopHeader .MenuButtonContainer{
	width: 80px;
	margin-left: 5px;
	cursor:pointer;
} 

.TopHeader .MenuButtonContainer img{
	border-radius: 40px;
	border: 3px solid #008b99;
	width: 68px;
	height: 68px;
	margin-top: 4px;
	margin-left: 5px;
} 
.TopHeader .TeamAndSectionHeaderContainer{
	width: 320px;
	font-size: 1.1250em;
	letter-spacing: 2px;
	box-sizing: border-box;
	color: white;
	text-align: left;
	line-height: 38px;
	padding-left: 10px;
	background: linear-gradient(90deg, rgba(0,0,0,0.75) 50%,rgba(0,0,0,0.1) 75%, rgba(0,0,0,0.0) 100%);
} 

.TopHeader .TeamAndSectionHeaderContainer .TopTeamSectionContainer{
	text-indent: 20px;
}
.TopHeader .HeaderIconsContainer{
	width: 325px;
}

.TopHeader .HeaderIconsContainer div{
	width: 60px;
	height: 60px;
	margin: 10px;
	background-size: contain;
	display: block;
	text-align: center;
	position: relative;
	padding: 0px;
	float: left;
	cursor: pointer;
}

.TopHeader .HeaderIconsContainer div .IconNumber {
	position: absolute;
	top: 48px;
	width: 60px;
	margin: 0px;
	height: 18px;
	line-height: 18px;
	text-align: center;
	left: 0px;
	font-size: 21px;
	font-weight: bold;
	font-family: system-ui;
	color: #187a00;
	border-radius: 10px;
	display: block;
	cursor: pointer;
	text-shadow: 1px 1px 3px #000, 0px 0px 3px #000, -1px -1px 3px #000, 1px -1px 3px #000, -1px 1px 3px #000;
}
/*
.TopHeader .HeaderIconsContainer .MailButton.off{
	background-image: url("images/icons/messages_off.png");	
}
.TopHeader .HeaderIconsContainer .BidsButton.off{
	background-image: url("images/icons/bids_off.png");	
}
.TopHeader .HeaderIconsContainer .ChallengesButton.off{
	background-image: url("images/icons/challenges_off.png");	
}
.TopHeader .HeaderIconsContainer .InjuriesButton.off{
	background-image: url("images/icons/injuries_off.png");	
}

.TopHeader .HeaderIconsContainer .MailButton.on {
	background-image: url("images/icons/messages_on.png");	
}
.TopHeader .HeaderIconsContainer .BidsButton.on{
	background-image: url("images/icons/bids_on.png");	
}
.TopHeader .HeaderIconsContainer .ChallengesButton.on{
	background-image: url("images/icons/challenges_on.png");	
}
.TopHeader .HeaderIconsContainer .InjuriesButton.on{
	background-image: url("images/icons/injuries_on.png");	
}
*/

.TopHeader .HeaderIconsContainer .MailButton.off{
	background-image: url("images/icons/mail_blue.png");
}
.TopHeader .HeaderIconsContainer .BidsButton.off{
	background-image: url("images/icons/offers_blue.png");
}
.TopHeader .HeaderIconsContainer .ChallengesButton.off{
	background-image: url("images/icons/challenge_blue.png");
}
.TopHeader .HeaderIconsContainer .InjuriesButton.off{
	background-image: url("images/icons/injuries_blue.png");
}

.TopHeader .HeaderIconsContainer .MailButton.on {
	background-image: url("images/icons/mail_red.png");
}
.TopHeader .HeaderIconsContainer .BidsButton.on{
	background-image: url("images/icons/offers_red.png");
}
.TopHeader .HeaderIconsContainer .ChallengesButton.on{
	background-image: url("images/icons/challenge_red.png");
}
.TopHeader .HeaderIconsContainer .InjuriesButton.on{
	background-image: url("images/icons/injuries_red.png");
}



.TopHeader .RoundMoneyCreditsContainer{
	width: 270px;
	font-size: 1.1250em;
	letter-spacing: 2px;
	padding-left: 10px;
	box-sizing: border-box;
	color: white;
	text-align: center;
	padding: 3px;
	line-height: 23px;
	padding: 7px !important;
	padding-top: 3px !important;
}

.TopHeader .NextEventsHeaderContainer{
	width: 355px;
	font-size: 1.1250em;
	letter-spacing: 2px;
	box-sizing: border-box;
	color: white;
	text-align: right;
	line-height: 23px;
	padding: 7px !important;
	padding-top: 3px !important;
	padding-right: 16px !important;
	background: linear-gradient(270deg, rgba(0,0,0,0.75) 50%,rgba(0,0,0,0.1) 75%, rgba(0,0,0,0.0) 100%);
} 
.TopHeader .SponsorHeaderContainer{
	width: 80px;
	background-color: hsl(183, 64%, 11%, 0.5);
} 

.TopHeader .SponsorHeaderContainer img{
	width:80px;
	height:80px;
}

.GameOuterContainer .RightColumn .HelpArea img.icon{
	width: 60px;
	height: 60px;
	margin: 7px;
	margin-top: 10px;
	display: block;
	float: left;
	cursor: pointer;
}

.GameOuterContainer .RightColumn .HelpArea img.icon:hover{
	width: 70px;
	height: 70px;
	margin: 2px;
	margin-top: 5px;
	filter: brightness(1.5);
}

.GameOuterContainer .RightColumn .HelpArea img.icon:active{
	width: 60px;
	height: 60px;
	margin: 7px;
	margin-top: 10px;
}

/* Chat specific css */
.ChatChannelSelector {
	background: black;
}
.ChatChannelButton{
	display: inline-block;
	width: 32.5%;
	text-align: center;
	background-color: black;
	vertical-align: top;
	height: 24px;
	line-height: normal;
	cursor: pointer;
	border: 1px solid black;
	border-bottom: 1px solid cyan;
	margin: 0px;
}
.ChatChannelButton:hover{
	color:white;
}
.ChatChannelButton.Selected{
	border: 1px solid cyan;
	border-bottom: 1px solid black;
}

.ChatChannelButton.Unread{
	color:#27e336;
}
.ChatChannelButton.Mentioned{
	font-weight: bold;
}

.GameOuterContainer .RightColumn .ChatArea .ScrollableChatArea{
	width: 294px;
	display: block;
	margin: 3px;
	margin-top: 0px;
	margin-bottom: 0px;
	height: 541px;
	font-family: var(--defaultFontFamily);
	overflow-y: auto;
	scroll-behavior: smooth;
	scrollbar-color: rgb(0, 139, 139) black;
	scrollbar-width: auto;	
	background-color: rgba(0, 0, 0, 0.25);
	text-shadow: 0px 0px 5px #000;
}

.GameOuterContainer .RightColumn .ChatArea .ChatEntryContainer{
	padding: 3px;
	line-height: normal;
}

.ChatEntryContainer .Nickname{
	display: inline;
	font-weight: bold;
	margin-right: 5px;
	cursor:pointer;
}
.ChatEntryContainer .Nickname.System{
	cursor:default;
	color:white;
}

.ChatEntryContainer .Nickname.Color0{
	color:lightslategray;
}
.ChatEntryContainer .Nickname.Color1{
	color:#c30000;
}
.ChatEntryContainer .Nickname.Color2{
	color:rgb(163, 118, 125);
}
.ChatEntryContainer .Nickname.Color3{
	color:rgb(0, 148, 148);
}
.ChatEntryContainer .Nickname.Color4{
	color:#c5c500;
}
.ChatEntryContainer .Nickname.Color5{
	color: #3078a1;
}
.ChatEntryContainer .Nickname.Color6{
	color:#009100;
}
.ChatEntryContainer .Nickname.Color7{
	color:rgb(63, 63, 255);
}
.ChatEntryContainer .Nickname.Color8{
	color:purple;
}
.ChatEntryContainer .Nickname.Color9{
	color:grey;
}
.ChatEntryContainer .Nickname.ColorA{
	color:lightblue;
}
.ChatEntryContainer .Nickname.ColorB{
	color:rgb(81, 139, 81);
}
.ChatEntryContainer .Nickname.ColorC{
	color:rgb(124, 89, 94);
}
.ChatEntryContainer .Nickname.ColorD{
	color:rgb(83, 83, 62);
}
.ChatEntryContainer .Nickname.ColorE{
	color: rgb(147 120 70);
}
.ChatEntryContainer .Nickname.ColorF{
	color: rgb(65 141 65);
}

.ChatEntryContainer .Nickname.ColorMod{
	color:orange;
}
.ChatEntryContainer .Nickname.ColorAdmin{
	color:orange;
}

.ChatEntryContainer .Message{
	display: inline;
	white-space: normal;
	color:#f0f0f0;
	
}

input.ChatInput{
	outline-color: #00e8ff;
	outline-style: none;
	outline-width: 2px;
	font-family: var(--defaultFontFamily);
	width: 99%;
	height: auto;
	background-color: rgb(55 55 55);
	color: white;
	
	padding-left: 5px;
	/*border: 1px solid cyan;*/
	font-size: medium;
	padding-bottom: 2px;
}
input.ChatInput::placeholder{
	color: #868686;
}


.ScrollableThreadsList {
	height: 141px;
	overflow-y: scroll;
	width: 290px;
	display: block;
	margin: 3px;
	margin-top: 6px;
	margin-bottom: 0px;
	font-family: var(--defaultFontFamily);
	color: #b9b9b9;
	scroll-behavior: smooth;
	scrollbar-color: rgb(0, 139, 139) black;
	scrollbar-width: auto;
}

.ThreadContainer {
	height: 20px;
}
.ThreadContainer:hover {
	color: white;
}
.ThreadTitle {
	display: inline-block;
	width: 230px;
	height: inherit;
	overflow: hidden;
	vertical-align: top;
	cursor: pointer;
}
.PostCount {
	width: 40px;
	display: inline-block;
	text-align: right;
	height: inherit;
	vertical-align: top;
}

.ContentBox{
	box-sizing: border-box;
	position: absolute;
	display: block;
	background-color: rgba(0,0,0,0.25);
	color: hsla(0, 0%, 95%, 1);
	margin: 1px;
	border: 1px solid rgb(0, 139, 139);
	padding: 10px;
	/* Default values */
	width: 445px;
	height: 400px;	
}

.ContentBox:before {
	content: '';
	position: absolute;
	top: -1px;
	left: -1px;
	width: 16px;
	height: 16px;
	background-image: url("images/backgrounds/box_corner_top_left.png");
}

.ContentBox:after {
	content: '';
	position: absolute;
	bottom: -1px;
	right: -1px;
	background-image: url(images/backgrounds/sidepanelbottomright.png);
	width: 30px;
	height: 30px;
}
.ContentBox h1{
	font-family: var(--headerFontFamily);
	letter-spacing: 1px;
	font-size: 1.4em;
	line-height: 1.4em;
	font-weight: normal;
	text-shadow: 1px 1px 3px black, -1px 1px 3px black, 1px -1px 3px black, -1px -1px 3px black;
	color: #27e336;
	margin: 5px;
	margin-top: 0px;
	padding: 0px;
}

.ContentBox .ScrollableContent{
	height: 100px;
	overflow-y: auto;
	scroll-behavior: smooth;
	scrollbar-color: rgb(0, 139, 139) black;
	scrollbar-width: auto;
}

.ContentBox .ScrollableContent.height150{
	height: 150px;
}
.ContentBox .ScrollableContent.height200{
	height: 200px;
}
.ContentBox .ScrollableContent.height250{
	height: 250px;
}
.ContentBox .ScrollableContent.height300{
	height: 300px;
}
.ContentBox .ScrollableContent.height350{
	height: 350px;
}
.ContentBox .ScrollableContent.height400{
	height: 400px;
}
.ContentBox .ScrollableContent.height450{
	height: 450px;
}
.ContentBox .ScrollableContent.height500{
	height: 500px;
}
.ContentBox .ScrollableContent.height550{
	height: 550px;
}
.ContentBox .ScrollableContent.height600{
	height: 600px;
}
.ContentBox .ScrollableContent.height650{
	height: 650px;
}
.ContentBox .ScrollableContent.height700{
	height: 700px;
}
.ContentBox .ScrollableContent.height750{
	height: 750px;
}
.ContentBox .ScrollableContent.height800{
	height: 800px;
}
.ContentBox .ScrollableContent.height850{
	height: 850px;
}

.ContentBox.Status.Example {
	top: 0px;
	left: 0px;	
	width: 500px;
	height: 400px;
}

.ContentBox.Status.Example2 {
	top: 0px;
	left: 502px;
	width: 500px;
	height: 400px;
}

.ContentBox.Status.Example3 {
	top: 0px;
	right: 0px;
	width: 342px;
	height: 808px;
}

.ContentBox.Status.Example4 {
	top: 403px;
	left: 0px;
	width: 1002px;
	height: 405px;
}
.ContentBox.FullWidthBox {
	top: 0px;
	left: 0px;
	width: var(--FullBoxWidth);
}
.ContentBox.FullHeightBox {
	top: 0px;
	left: 0px;
	height: var(--FullBoxHeight);
}

.ContentBox#Status_Motd{
	top: 0px;
	left: 406px;
	height: 250px;
	width: 394px;
}
.ContentBox#Status_Overview{
	top: 0px;
	left: 0px;
	height: 250px;
	width:400px;
}
.ContentBox#Status_Leaguetable{
	top: 0px;
	left: 807px;
	height: 475px;
	width: 542px;
}

.league-table-row{
	font-family: var(--headerFontFamily);
}

.header-row.league-table-row{
	background-color: rgba(0,0,0,0.6);
}

.winner{
	/*background-color: rgba(0,200,0,0.3);*/
}
.playoff{
	/*background-color: rgba(150,150,0,0.3);*/
}
.relegation {
	/*background-color: rgba(200,0,0,0.3);*/
}

.winner .cell{
	color: #33ff33;
}
.playoff .cell{
	color: orange;
}
.relegation .cell {
	color: #ae0000;
}

/* Let's alternate the background colours on the entry-rows */

#FixResContainer .entry-row:nth-child(odd){
	background-color: rgba(0,0,0,0.3);
}

#FixResContainer .entry-row:nth-child(even){
	background-color: rgba(0,0,0,0.6);
}

.ContentBox#Status_Fixres{
	top: 480px;
	left: 807px;
	height: 328px;
	width:542px;
}
.ContentBox#Status_Lineup{
	top: 255px;
	left: 0px;
	height: 552px;
	width: 800px;
}

/*
	In Status_Lineup, we have 4 rows with the class LineupRow.
	In each such row, we have from 1 to 5 divs with the class PlayerBoxContainer
	I was thinking we could use flexbox to automatically align and space the PlayerBoxContainers in each row
*/

.LineupRow{
	display: flex;
	flex-direction: row;
	justify-content: space-evenly;
	margin-bottom: 5px;
}

.PlayerBoxContainer{
	display: inline-block;
	width: 120px;
	height: 100px;
	background-color: rgba(0,0,0,0.3);
	margin: 5px;
	text-align: center;
	padding: 2px;
	border-width: 2px !important;
	position: relative;
}

/*
.PlayerBoxContainer.gk-bg{
	border:1px solid hsla(236, 100%, 15%, 0.549);
}
.PlayerBoxContainer.def-bg{
	border:1px solid hsla(123, 100%, 15%, 0.549);
}
.PlayerBoxContainer.mid-bg{
	border:1px solid hsla(59, 100%, 15%, 0.549);
}
.PlayerBoxContainer.att-bg{
	border:1px solid hsla(0, 100%, 15%, 0.549);
}
*/
.PlayerBoxContainer:hover{
	filter: brightness(1.5);
}


.PlayerBoxContainer .PlayerPortrait{
	width: 100px;
	height: 100px;
}

.PlayerBoxContainer .PlayerName{
	height: 20px;
	width:inherit;
	overflow:hidden;
	position: absolute;
	bottom:0px;
	background-color: rgba(0,0,0,0.75);
}
.PlayerBoxContainer .PlayerQualityFitness{
	height: 20px;
	width:inherit;
	overflow:hidden;
	position: absolute;
	top:0px;
	background-color: rgba(0,0,0,0.75);
}

.ContentBox#Players_Players{
	top: 0px;
	left: 0px;
	width: 1072px;
	height: var(--FullBoxHeight)
}

.ContentBox#Players_Selected {
	left: 1078px;
	width: 268px;
	height: var(--FullBoxHeight);
}

#Players_Selected .PortraitContainer {
	position: relative;
	width:100%;
	text-align: center;
	overflow: hidden;
}

#Players_Selected .PortraitContainer .Portrait {
	width: 256px;
	height: 256px;
}

#Players_Selected .NameContainer {
	position: relative;
	width: 100%;
	text-align: center;
	font-size: x-large;
	font-family: var(--headerFontFamily);
}
#Players_Selected .RoleContainer {
	position: relative;
	width: 100%;
	text-align: center;
	font-size: large;
	font-family: var(--headerFontFamily);
	letter-spacing: 3px;
}

#Players_Selected .StatsContainer {
	position: relative;
	width:100%;
	text-align: center;
	font-size: x-large;
	font-family: var(--headerFontFamily);
	letter-spacing: 2px;
}

#Players_Selected .AwardsContainer {
	position: relative;
	width:100%;
	text-align: center;
}

#Players_Selected .ButtonsContainer {
	position: relative;
	width:100%;
	text-align: center;
}

img.img20{
	width: 20px;
	height: 20px;
}

img.img30{
	width: 30px;
	height: 30px;
}

img.img40{
	width: 40px;
	height: 40px;
}

/* Menu specific css */
.MenuContainer{
	position: absolute;
	display: none;
	top: 0px;
	left: 0px;
	width: 400px;
	height: auto;
	background-color: rgba(0,0,0,0.9);
	z-index: 100;
	border: 1px solid white;
	padding: 25px;
	margin: 40px;
}

div#MenuGroups {
	display: block;
	float: left;
	font-size: 1.5em;
	line-height: 1.8em;
}

div#MenuItems {
	margin-left: 25px;
	margin-top: 25px;
	display: block;
	float: left;
	font-size: 1.3em;
	line-height: 1.8em;
}

.MenuGroup {
	cursor: pointer;
}

.MenuGroup.active {
	color: rgb(0, 139, 139);
}

.MenuItem {
	cursor: pointer;
}
.MenuItem:hover {
	color: rgb(0, 139, 139);
}

table {
	border-collapse: collapse;
	/*width: 100%;*/
 }
 
td{
	border-bottom: 1px solid #000000ab;
	padding: 3px;
	text-align: left;
	overflow: hidden;
	white-space: nowrap;
 }
 th{
	border-bottom: 1px solid #000000ab;
	padding: 3px;
	text-align: left;
	overflow: hidden;
	white-space: nowrap;
 }
 
tr:first-child td {
	border-top: none;
}
 
tr:last-child td {
	border-bottom: none;
}

tr.row_static_header {
	background-color: hsla(0, 0%, 0%, 0.95);
}

tr.gk_row {
	background-color: hsla(236, 100%, 15%, 0.549);
	cursor:default;
}
tr.def_row {
	background-color: hsla(123, 100%, 15%, 0.549);
	cursor:default;
}
tr.mid_row {
	background-color: hsla(59, 100%, 15%, 0.549);
	cursor:default;
}
tr.att_row {
	background-color: hsla(0, 100%, 15%, 0.549);
	cursor:default;
}

tr.gk_row:hover, tr.def_row:hover, tr.mid_row:hover, tr.att_row:hover{
	filter: brightness(1.5);
}

.table_column_name{
	max-width:135px;
	text-align: left;
}
.table_column_stat{
	min-width:30px;
	text-align: center;
}
.table_column_fit{
	min-width:30px;
	text-align: right;
}

.table-container {
	max-height: 200px;
	overflow-y: auto;
	overflow-x: hidden;
	width: fit-content;
	scroll-behavior: smooth;
	scrollbar-color: rgb(0, 139, 139) black;
	scrollbar-width: auto;	
 }
 
 .scrollable-table{
	/*max-height: 200px;*/
	overflow:hidden;

 }

.scrollable-table .header-row {
	position: sticky;
	top: 0;
	z-index: 2;
 }
 
.entries-container {
	/*display: block;*/
	overflow-y: auto;
	max-height: 160px; /* Adjust the max height based on your layout */
	scroll-behavior: smooth;
	scrollbar-color: rgb(0, 139, 139) black;
	scrollbar-width: auto;
}

.cell{
	display: inline-block;
	height: 21px;
	line-height: 21px;
	width: 41px;
	overflow: hidden;
}

.mh-200{
	max-height: 200px; /* Adjust the max height based on your layout */
}
.mh-250{
	max-height: 250px; /* Adjust the max height based on your layout */
}
.mh-300{
	max-height: 300px; /* Adjust the max height based on your layout */
}
.mh-350{
	max-height: 300px; /* Adjust the max height based on your layout */
}

.mh-400{
	max-height: 400px; /* Adjust the max height based on your layout */
}
.mh-500{
	max-height: 500px; /* Adjust the max height based on your layout */
}
.mh-600{
	max-height: 600px; /* Adjust the max height based on your layout */
}
.mh-700{
	max-height: 700px; /* Adjust the max height based on your layout */
}
.mh-800{
	max-height: 800px; /* Adjust the max height based on your layout */
}

.lp1{	padding-left: 1px;}
.lp2{	padding-left: 2px;}
.lp3{	padding-left: 3px;}
.lp4{	padding-left: 4px;}
.lp5{	padding-left: 5px;}
.lp6{	padding-left: 6px;}
.lp7{	padding-left: 7px;}
.lp8{	padding-left: 8px;}
.lp9{	padding-left: 9px;}
.lp10{	padding-left: 10px;}
.lp15{	padding-left: 15px;}
.lp20{	padding-left: 20px;}

.rp1{	padding-right: 1px;}
.rp2{	padding-right: 2px;}
.rp3{	padding-right: 3px;}
.rp4{	padding-right: 4px;}
.rp5{	padding-right: 5px;}
.rp6{	padding-right: 6px;}
.rp7{	padding-right: 7px;}
.rp8{	padding-right: 8px;}
.rp9{	padding-right: 9px;}
.rp10{	padding-right: 10px;}
.rp15{	padding-right: 15px;}
.rp20{	padding-right: 20px;}

.tm0{	margin-top: 0px;}
.tm1{	margin-top: 1px;}
.tm2{	margin-top: 2px;}
.tm3{	margin-top: 3px;}
.tm4{	margin-top: 4px;}
.tm5{	margin-top: 5px;}
.tm6{	margin-top: 6px;}
.tm7{	margin-top: 7px;}
.tm8{	margin-top: 8px;}
.tm9{	margin-top: 9px;}
.tm10{	margin-top: 10px;}

.bm0{	margin-bottom: 0px;}
.bm1{	margin-bottom: 1px;}
.bm2{	margin-bottom: 2px;}
.bm3{	margin-bottom: 3px;}
.bm4{	margin-bottom: 4px;}
.bm5{	margin-bottom: 5px;}
.bm6{	margin-bottom: 6px;}
.bm7{	margin-bottom: 7px;}
.bm8{	margin-bottom: 8px;}
.bm9{	margin-bottom: 9px;}
.bm10{	margin-bottom: 10px;}

.m0{	margin: 0px;}
.m1{	margin: 1px;}
.m2{	margin: 2px;}
.m3{	margin: 3px;}
.m4{	margin: 4px;}
.m5{	margin: 5px;}
.m6{	margin: 6px;}
.m7{	margin: 7px;}
.m8{	margin: 8px;}
.m9{	margin: 9px;}
.m10{	margin: 10px;}


.header-bg {
	background-color: hsla(0, 0%, 0%, 0.95);
}

.gk-bg {
	background-color: hsla(236, 100%, 15%, 0.75);
	cursor:default;
}
.def-bg {
	background-color: hsla(123, 100%, 15%, 0.75);
	cursor:default;
}
.mid-bg {
	background-color: hsla(57.5, 100%, 23.7%, 0.75);
	cursor:default;
}
.att-bg {
	background-color: hsla(0, 100%, 15%, 0.75);
	cursor:default;
}

.gk-bg:hover, .def-bg:hover, .mid-bg:hover, .att-bg:hover{
	filter: brightness(1.5);
}

.gk-border {
	border: 1px solid hsla(236, 100%, 15%, 0.75);
}
.def-border {
	border: 1px solid hsla(123, 100%, 15%, 0.75);
}
.mid-border {
	border: 1px solid hsla(57.5, 100%, 23.7%, 0.75);
}
.att-border {
	border: 1px solid hsla(0, 100%, 15%, 0.75);
}

.w20{	width: 20px;}
.w25{	width: 25px;}
.w30{	width: 30px;}
.w35{	width: 35px;}
.w40{	width: 40px;}
.w45{	width: 45px;}
.w50{	width: 50px;}
.w60{	width: 60px;}
.w70{	width: 70px;}
.w80{	width: 80px;}
.w90{	width: 90px;}
.w100{	width: 100px;}
.w110{	width: 110px;}
.w120{	width: 120px;}
.w130{	width: 130px;}
.w140{	width: 140px;}
.w150{	width: 150px;}
.w160{	width: 160px;}
.w170{	width: 170px;}
.w180{	width: 180px;}
.w190{	width: 190px;}
.w200{	width: 200px;}
.w210{	width: 210px;}
.w220{	width: 220px;}
.w230{	width: 230px;}
.w240{	width: 240px;}
.w250{	width: 250px;}
.w300{	width: 300px;}
.w350{	width: 350px;}
.w400{	width: 400px;}
.w450{	width: 450px;}
.w500{	width: 500px;}
.w550{	width: 550px;}
.w600{	width: 600px;}
.w650{	width: 650px;}
.w700{	width: 700px;}

.h20{	height: 20px;}
.h25{	height: 25px;}
.h30{	height: 30px;}
.h35{	height: 35px;}
.h40{	height: 40px;}
.h45{	height: 45px;}
.h50{	height: 50px;}
.h100{	height: 100px;}
.h150{	height: 150px;}
.h200{	height: 200px;}
.h250{	height: 250px;}
.h300{	height: 300px;}
.h350{	height: 350px;}
.h400{	height: 400px;}

div.MainMenu{
	display: table;
	background-image: linear-gradient(#303030 13%, #1e1e1e 40%, #0c0d11 86%);
	color: rgba(255, 255, 255, 0.8);
	width: 100%;
	border-radius: 6px;
	position:relative;
	height:40px;
}
div.MenuDropDown{
	display:inline-block;
	min-width:50px;
}

div.MainMenuItem{
	padding: 10px 24px;
	cursor: pointer;
	text-shadow: 0px -2px 0px black;
	font-weight:400;
}
div.MainMenuContent{
	display: none;
	background-color: hsl(0, 0%, 20%);
	position:absolute;
	min-width: 125px;
	box-shadow: 2px 2px 5px hsla(0,0%,0%,0.8);
	z-index:1;
}
div.SubMenuItem{
	display: block;
	color:rgb(219, 219, 219);
	padding: 10px 15px;
}
div.SubMenuItem:hover{
	background-color: hsl(0,0%,30%);
	color:white;
	cursor:pointer;
}

div.MenuDropDown:hover div.MainMenuContent{
	display: block;
}

/*
div.MainMenuItem:hover{
	color:cyan;
}

.MenuDropDown:has(.SubMenuItem:hover) .MainMenuItem {
	color: cyan; 
}
*/

div.MainMenuItem:hover{
	text-decoration: underline;
	text-decoration-color: cyan;
	text-decoration-thickness: 3px;
	text-decoration-style: solid;
	text-underline-offset: 5px;
	text-decoration-skip-ink: none;
}

.MenuDropDown:has(.SubMenuItem:hover) .MainMenuItem {
	text-decoration: underline;
	text-decoration-color: cyan;
	text-decoration-thickness: 3px;
	text-decoration-style: solid;
	text-underline-offset: 5px;
	text-decoration-skip-ink: none;	
}

.MainMenuTime {
	display: inline-block;
	position: absolute;
	padding:10px 2px;
}

.MainMenuTime.slot {
	right: 112px;
}

.MainMenuTime.countdown {
	right: 5px;

}


#ctxmenu {
	position: fixed;
	background: black;
	color: cyan;
	cursor: pointer;
	border: 1px cyan solid;
	padding:10px;
 }
 
 #ctxmenu > p {
	padding: 0.5rem 0.5rem;
	margin: 0;
	color:cyan;
 }
 
 #ctxmenu > p:hover {
	background: black;
	color: ghostwhite;
 }

textarea#ChatMessageEditor {
	width: 400px;
	height: 90px;
	background-color:rgb(172, 172, 172);
}

.increased{
	color:#009100;
}
.decreased{
	color:#c30000;
}

.diffnum{
	font-size: small;
}
.StatsContainer {
	display: inline-block;
	vertical-align: top;
 }

.portrait-row {
	height: 60px;
	padding-right: 10px;
	width: fit-content;
}

.portrait-row.gk-bg {
	background-color: hsla(244.4, 100%, 10.8%, 0.44);
	cursor: default;
	border: 1px solid hsla(236, 100%, 15%, 0.75);
 }

 .portrait-row.def-bg {
	background-color: hsla(90, 100%, 12.9%, 0.44);
	cursor: default;
	border: 1px solid hsla(118, 100%, 15%, 0.75);
 }

 .portrait-row.mid-bg {
	background-color: hsla(51.1, 100%, 14.5%, 0.44);
	cursor: default;
	border: 1px solid hsla(54, 100%, 15%, 0.75);
 }

 .portrait-row.att-bg {
	background-color: hsla(0, 100%, 13.3%, 0.44);
	cursor: default;
	border: 1px solid hsla(0, 100%, 15%, 0.75);
 }

.player-list-portrait{
	height:60px;
	width:60px;
	display:inline-block;
}

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


button.border-green{
	border: 1px solid #0da200;
}
button.border-teal{
	border: 1px solid #008b99;
}
button.border-cyan{
	border: 1px solid #00e8ff;
}

#Forum_Forums{
	width: var(--FullBoxWidth);
	height: var(--FullBoxHeight);
}

#ForumEntries{
	font-size:18px;
}

#ForumEntries .header-row .cell, #ForumEntries .entry-row .cell{
	height: auto;
	line-height: normal;
}

/* Lets alternate the background-colors of the entry-rows */
#ForumEntries .entry-row:nth-child(even){
	background-color: rgba(0,0,0,0.75);
	cursor:pointer;
}

#ForumEntries .entry-row:nth-child(odd){
	background-color: rgba(0,0,0,0.5);
	cursor:pointer;
}

/* and let's ramp up the brightness on hover for these entry-rows */
#ForumEntries .entry-row:hover{
	/*filter: brightness(1.5);*/
	color: orange;
}

.ForumBox {
	display: inline-block;
	width: 300px;
	height: 250px;
	margin: 60px;
	margin-top: 10px;
	vertical-align: top;
	border: 1px solid #00caca;
	padding: 10px;
	background-color: rgba(0,0,0,0.5);
	background-image: linear-gradient(180deg,#37776e75,#111);
	cursor:pointer;
}

.ForumBox:hover{
	filter: brightness(1.5);
}

.ForumTitle {
	font-size: 24px;
	margin-bottom: 10px;

}

.ForumDescription {
	margin-left: 10px;
	font-style: italic;
}

#ForumContainer {
	width: var(--FullBoxWidth);
	height: var(--FullBoxHeight);
}

#NewThreadButton {
	position: absolute;
	right: 10px;
	top: 10px;
	cursor: pointer;
}

#NewThreadButton:hover {
	color: cyan;
	filter: brightness(1.5);
}

.hidden {
	display: none;
}

#ThreadContainer {
	width: var(--FullBoxWidth);
	height: var(--FullBoxHeight);
}

h1.ForumHeader {
	vertical-align: top;
	height: 1.4em;
	line-height: 1.4em;
	margin-right: 0px;
}
.ForumNavigationLinks {
	display: inline-block;
	vertical-align: top;
	width: 75%;
}
div#HeaderDetailsContainer {
	display: inline-block;
	width: auto;
	vertical-align: top;
	right: 0px;
	position: absolute;	
}
span.thread-link.white{
	color: white;
	text-decoration: none;
}
img.ThreadHeaderIcon {
	width: 36px;
	margin-left: 10px;
	margin-right: 10px;
}
img.ThreadHeaderIcon:hover {
	filter: brightness(1.5);
}
div.PostElement{
	background-color: rgba(0,0,0,0.5);
	border-bottom: 1px solid white;
}
div.PostLeft {
	display: inline-block;
	vertical-align: top;
}
div.PostRight {
	display: inline-block;
	vertical-align: top;
}

div.PostTime {
	display: inline-block;
}

div.PostIcons {
	display: inline-block;
}
#PostsContainer img.TeamLogo {
	width: 128px;
	height: 128px;
}
#PostsContainer img.PostLeagueFlag {
	width: 128px;
	height: 128px;
}
.PostElement .TeamName {
	text-align: center;
}
.PostElement .XpIndicator {
	text-align: center;
}

img.PostIcon {
	width: 36px;
	height: 36px;
}

div.PostBody {
	min-height: 129px;
}
div.PostFooter {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 273px;
}

div.PostReactions {
	display: inline-block;
	height: 36px;
}

div.PostReaction {
	display: inline-block;
	height: 36px;
}

img.PostReactionIcon {
	display: inline-block;
	height: 36px;
	width: 36px;	
}

img.PostReactionIcon:hover {
	filter: brightness(1.5);
	cursor: pointer;
}

img.PostReactionIcon.voted {
	height: 34px;
	width: 34px;	
	border:1px solid lime;
}

div.PostReactionCount {
	display: inline-block;
	vertical-align: middle;
	height: 36px;
	margin-right: 25px;
}

div.GeneralPopup {
	position: absolute;
	display: none;
	z-index: 100;
	min-height: 100px;
	min-width: 500px;
	left:30%;
	top:30%;
	border: 1px solid #00ff28;
	background-color: transparent;
	background-image: linear-gradient(180deg, #152e38ef, #011c2de8);
	color: white;
	padding: 0px;
	box-shadow: #00df4d 0px 0px 5px 2px;
}

div.GeneralPopup div.header{
	padding: 5px;
	/*background-color: #106266;*/
	text-align: center;
	cursor: move;
}
div.GeneralPopup div.header.error{
	padding: 5px;
	background-color: #661010;
}

div.GeneralPopup div.inner{
	margin:5px;
	text-align: center;
}

div.GeneralPopup div.ButtonsContainer{
	position:relative;
	bottom:0px;
	display: flex;
}

div.GeneralPopup div.dialogbody {
	min-height: 85px;
	max-height: 300px;
	overflow-y: auto;
	margin-bottom: 10px;
}

.block{
	display: block;
}

.ContentBox.SponsorBox {
	display: inline-block;
	position: relative;
	width: 32.75%;
	margin-right: 0.5%;
	height: var(--FullBoxHeight);
	vertical-align: top;
	text-align: center;
}

.ContentBox.SponsorBox.Tertiary {
	margin-right: 0px;
}

.SponsorDealList {
	height: 750px;
	overflow-y: scroll;
 }

.SponsorDealList .SponsorContainer{
	border-bottom: 1px solid cyan;
	padding-bottom: 5px;
	margin-bottom: 5px;
	text-align: center;
	cursor: pointer;
}

.SponsorDealList .SponsorContainer:hover{
	filter: brightness(1.5);
	color: cyan;
}

.SponsorDealList .SponsorContainer .SponsorName {
	font-family: 'MyFont';
	font-size: 20px;
	line-height: 20px;
	padding-bottom: 8px;
	font-weight: bold;
 }

 .SponsorDealList .SponsorContainer img.SponsorLogo{
	height: 60px;
	width:350px;
}

.DealPopupDetailsContainer .SponsorName {
	font-family: 'MyFont';
	font-size: 20px;
	line-height: 20px;
	padding-bottom: 8px;
	font-weight: bold;
}

.DealPopupDetailsContainer .SponsorLogo {
	height: 400px;
	width:700px;
}

.DealPopupDetailsContainer .SponsorSlogan {
	line-height: 25px;
	font-style: italic;
 }

.DealPopupDetailsContainer .DealRow {
	display: grid;
	grid-template-columns: 25% 25% 25% 25%;
	margin: 10px 0;
	padding: 5px;
	background-color: rgba(0,0,0,0.3);
}

.DealPopupDetailsContainer .DealLabel {
	font-weight: bold;
	color: #00ff28;
	text-align: right;
	padding-right: 20px;
}

.DealPopupDetailsContainer .DealValue {
	color: #ffffff;
	text-align: left;
}

div.GeneralPopup#DealDetails {
	background-image: linear-gradient(180deg, #152e38fa, #011c2dff);
}

div.GeneralPopup#DealDetails div.dialogbody {
	max-height: 700px;
	max-width: 750px;
}

.SelectedSponsorDetailRow {
	margin-top: 10px;
	margin-bottom: 10px;
}

.SelectedSponsorDetailRow .DetailLabel{
	display: inline-block;
	vertical-align: top;
	width: 49%;
}

.SelectedSponsorDetailRow .DetailValue{
	display: inline-block;
	vertical-align: top;
	width: 49%;
}

img.SponsorLogo.Selected{
	width: 420px;
	height: 240px;
}

.SelectedSponsorDetailRow .SponsorName{
	margin-top: 10px;
	margin-bottom: 10px;
	min-height: 100px;
}
.SponsorBox h1.SponsorName {
	color: aqua;
}

.SponsorBox .SponsorDescription{
	margin-top: 10px;
	margin-bottom: 10px;
	min-height: 100px;
}

