body
{
    background-color: #5A61AD;
    background-image: url("https://nyc3.digitaloceanspaces.com/cdn.scg.wtf/scg_bg_.png");
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;  
}

footer 
{
    color:#fff;
}

hr {
	border: 0;
	color: #66ceff;
	background-color: #66ceff;
	height: 4px;
	width: 100%;
    text-align: left;
    margin-top:4px;
    margin-bottom: 4px;
}

blockquote {
	border-left: 6px solid #2A9FD6;
	padding: 5px 8px 5px 5px;
	background-color: #111112;
  margin-top: 0.2em;
  margin-bottom: 0.2em;
  Word-Break: break-word;
}

/**Font Faces*/
@font-face{font-family:'Inter';font-style:normal;font-weight:400;src:url(../fonts/Inter-Regular.ttf) format('truetype')}
@font-face{font-family:'Montserrat Alternates';font-style:normal;font-weight:400;src:url(../fonts/mont.woff) format('woff')}
@font-face{font-family:Narrow;src:local('?'),url(../fonts/narrow.woff) format('truetype');}
@font-face {
  font-family: 'montserratbold';
  src: url('../fonts/montserrat-bold-webfont.woff2') format('woff2'),
       url('../fonts/montserrat-bold-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'montserratlight';
  src: url('../fonts/montserrat-light-webfont.woff2') format('woff2'),
       url('../fonts/montserrat-light-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'montserratregular';
  src: url('../fonts/montserrat-regular-webfont.woff2') format('woff2'),
       url('../fonts/montserrat-regular-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'menloregular';
  src: url('../fonts/menlo-regular-webfont.woff2') format('woff2'),
       url('../fonts/menlo-regular-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}


.main-container {
    background-color: #081619;
    color:#fff;
}

.content-container {
    background-color: #081619;
}

.inner-container {
    background-color: #0C2E35;
}

.info-container {
    background-color: #081619;
}

.lower-container {
  background-color: #040E10;
}

.reply-header { 
  background-color: #191C1E;
}

.reply-bulk {
  background-color: #181818;
}

.text-comment {
  color: #9EBDBE;
}

/*.discussion-text p{
  display: block;
  margin-top: 1em;
  margin-bottom: 1em;
  margin-left: 0;
  margin-right: 0;
}*/

.map-preview-sm {
    border-color: #0C2E35;
    width:220px;
    height:123px;
}

#nav-top {
    color: #3798b8;
}

.list-reset a {
    outline: 0;
}

.list-reset a:link{
    color:#3798b8;
}
.list-reset a:visited{
    color:#3798b8;
}
.list-reset a:hover{
    color:#265A7F;
}
.list-reset a:active{
    color:#3798b8;
}

.list-reset a:focus{
    color:#214a68;
}

.list-reset .lr-button:link{
  color:#3798b8;
}
.list-reset .lr-button:visited{
  color:#3798b8;
}
.lr-button:hover{
  color:#265A7F;
}
.list-reset .lr-button:active{
  color:#3798b8;
}

.list-reset .lr-button:focus{
  color:#214a68;
}

.btn, .btn a, .btn a:link, .btn a:visited, .btn a:hover, .btn a:active {
    color:#fff;
}

a {
    outline: 0;
}

a:link{
    color:#3798b8;
}
a:visited{
    color:#3798b8;
}
a:hover{
    color:#265A7F;
}
a:active{
    color:#3798b8;
}
a:focus{
    color:#214a68;
}

.carousel-open:checked + .carousel-item {
    position: static;
    opacity: 100;
}
.carousel-item {
    -webkit-transition: opacity 0.6s ease-out;
    transition: opacity 0.6s ease-out;
}
#carousel-1:checked ~ .control-1,
#carousel-2:checked ~ .control-2,
#carousel-3:checked ~ .control-3 {
    display: block;
}
.carousel-indicators {
    list-style: none;
    margin: 0;
    padding: 0;
    position: absolute;
    bottom: 2%;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 10;
}
#carousel-1:checked ~ .control-1 ~ .carousel-indicators li:nth-child(1) .carousel-bullet,
#carousel-2:checked ~ .control-2 ~ .carousel-indicators li:nth-child(2) .carousel-bullet,
#carousel-3:checked ~ .control-3 ~ .carousel-indicators li:nth-child(3) .carousel-bullet {
    color: #2b6cb0;  /*Set to match the Tailwind colour you want the active one to be */
}

.bg-c-1 {
    background-color: #161922;
}

.bg-c-2 {
    background-color: #061214;
}

.c-color-1 {
    color:#2F98B8;
}

.font-inter {
  font-family: Inter,sans-serif;
}

.font-narrow {
    font-family: Narrow,sans-serif;
}

.font-montserrat {
    font-family: 'Montserrat Alternates';
}

.font-menloregular {
    font-family: 'menloregular';
}

.font-montserratbold {
    font-family: 'montserratbold';
}

/*--Update Calander page--*/
:root {
    --square-size: 18px;
    --square-gap: 3px;
    --week-width: calc(var(--square-size) + var(--square-gap));
  }
  
  .months { grid-area: months; }
  .up-days { grid-area: days; }
  .squares { display:grid; grid-area: squares; }
  
  .graph {
    display: inline-grid;
    grid-template-areas: "empty months"
                         "days squares";
    grid-template-columns: auto 1fr;
  }
  
  .months {
    display: grid;
    grid-template-columns: calc(var(--week-width) * 4) /* Jan */
                           calc(var(--week-width) * 4) /* Feb */
                           calc(var(--week-width) * 4) /* Mar */
                           calc(var(--week-width) * 5) /* Apr */
                           calc(var(--week-width) * 4) /* May */
                           calc(var(--week-width) * 4) /* Jun */
                           calc(var(--week-width) * 5) /* Jul */
                           calc(var(--week-width) * 4) /* Aug */
                           calc(var(--week-width) * 4) /* Sep */
                           calc(var(--week-width) * 5) /* Oct */
                           calc(var(--week-width) * 4) /* Nov */
                           calc(var(--week-width) * 5) /* Dec */;
  }
  
  .up-days,
  .squares {
    display: grid;
    grid-gap: var(--square-gap);
    grid-template-rows: repeat(7, var(--square-size));
  }
  
  .squares {
    grid-auto-flow: column;
    grid-auto-columns: var(--square-size);
  }
  
  .up-days li:nth-child(odd) {
    visibility: hidden;
  }
  
  .squares li {
    background-color: #2E4057;
  }
  
  .squares li[data-level="1"] {
    background-color: #85ACD5;
    cursor: pointer;
  }
  
  .squares li[data-level="2"] {
    background-color: #1A92CE;
    cursor: pointer;
  }
  
  .squares li[data-level="3"] {
    background-color: #0B57A5;
    cursor: pointer;
  }

/*--Server displays--*/
.bg-dc {
	background-color: #6279B5;
}

.bg-ta {
	background-image: url('../images/server_banners/ta.png');
}

.bg-of {
	background-image: url('../images/server_banners/of.png');
}

.bg-tf2 {
  background-image: url('../images/server_banners/tf2.png');
}

.bg-tf2::before {
  background-color: rgba(0,0,0,0.25);
}

.bg-mc {
	background-image: url('../images/server_banners/mc.png');
}

.bg-l4d2 {
	background-image: url('../images/server_banners/l4d2.png');
}

.bg-svcp {
	background-image: url('../images/server_banners/svcp.png');
}

/*--Server colors--*/
.all-server {
    background-color: forestgreen;
}

.chocolate {
  background-color: #693F26; text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
}

.strawberry { 
    background-color: mediumvioletred;
}

.rainbow {
  background-color: #7fd82b;
  background-image: linear-gradient(319deg, #7fd82b 0%, #ef4063 37%, #e557c6 100%); text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
}

.front-line-fudge {
  background-color: #5E321C;
}

.vanilla {
    background-color: #f3e5ab;
    color:#000;
}

.scg-noti {
  background-color: #161922;
}

.scg-alert {
    border-radius: 0;
    -webkit-border-radius: 0;
    box-shadow: 0 1px 2px rgba(0,0,0,0.11);
    padding-top:10px;
    padding-bottom:10px;
  }
  
  .scg-alert-white .icon {
    text-align: center;
    width: 45px;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    padding-top: 15px;
  }
  
  .scg-alert-white {
    color: #404040;
    padding-left: 61px;
    position: relative;
  }
  
  .scg-alert-white .icon:after {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    display: block;
    content: '';
    width: 10px;
    height: 10px;
    position: absolute;
    border-left: 0;
    border-bottom: 0;
    top: 50%;
    right: -6px;
    margin-top: -3px;
    /*background: #fff;*/
  }
  
  .scg-alert-white .icon i {
    font-size: 20px;
    color: #fff;
    left: 12px;
    margin-top: -10px;
    position: absolute;
    top: 50%;
  }

/*============ colors ========*/
.scg-alert-success {
    color: #2fbb31;
  }
  
  .scg-alert-security {
    color: #a4a4a4;
  }

  .scg-alert-alert {
    color: #EF4444;
  }
  
  .scg-alert-event {
    color: #7c92d1;
  }  
  
  .scg-alert-warning {
    color: #FFA500;
  }  
  
  .scg-alert-notice {
    color: #FDC8F2;
  }
  
  .scg-alert-jbnoti {
    color: #fff;
  }
  
  .scg-alert-white.scg-alert-success .icon, 
  .scg-alert-white.scg-alert-success .icon:after {
    background: #60c060;
    border: 1px solid #60c060;
  }

  .scg-alert-white.scg-alert-security .icon, 
  .scg-alert-white.scg-alert-security .icon:after {
    background: #3c3c3c;
    border: 1px solid #3c3c3c;
  }
  
  .scg-alert-white.scg-alert-alert .icon, 
  .scg-alert-white.scg-alert-alert .icon:after {
    background: #EF4444;
    border: 1px solid #EF4444;
  }
  
  .scg-alert-white.scg-alert-event .icon, 
  .scg-alert-white.scg-alert-event .icon:after {
    background: #424B66;
    border: 1px solid #424B66;
  } 
  
  .scg-alert-white.scg-alert-warning .icon, 
  .scg-alert-white.scg-alert-warning .icon:after {
    background: #FFA500;
    border: 1px solid #FFA500;
  }  
  
  .scg-alert-white.scg-alert-notice .icon, 
  .scg-alert-white.scg-alert-notice .icon:after {
    background: #DB2777;
    border: 1px solid #DB2777;
  }
  
  .scg-alert-white.scg-alert-jbnoti .icon, 
  .scg-alert-white.scg-alert-jbnoti .icon:after {
    background: #495057;
    border: 1px solid #495057;
  }

  .toggle-checkbox:checked {
    right: 0;
    border-color: #68D391;
  }
  .toggle-checkbox:checked + .toggle-label {
    background-color: #68D391;
  }

  /*Sprites*/
.sprite{width: 32px;height: 32px;border: 0px;margin-left: 1px;margin-right: 1px;}
.sprite-freedom{background:url(../images/jb/scg_sprites.png)}.sprite-pizza{background:url(../images/jb/scg_sprites.png) 0 -32px}.sprite-placeholder{background:url(../images/jb/scg_sprites.png) 0 -64px}.sprite-donator{background:url(../images/jb/scg_sprites.png) 0 -96px}.sprite-minecraft{background:url(../images/jb/scg_sprites.png) 0 -128px}.sprite-tf2{background:url(../images/jb/scg_sprites.png) 0 -160px}.sprite-scg{background:url(../images/jb/scg_sprites.png) 0 -192px}.sprite-dst{background:url(../images/jb/scg_sprites.png) 0 -224px}.sprite-poe{background:url(../images/jb/scg_sprites.png) 0 -256px}
.sprite-pspice {background: url(../images/jb/scg_sprites.png?v=1) 0 -320px;}
.sprite-pie {background: url(../images/jb/scg_sprites.png?v=1) 0 -352px;}
.sprite-pumpkin {background: url(../images/jb/scg_sprites.png?v=3) 0 -288px;}
.sprite-telegram {background: url(../images/jb/scg_sprites.png?v=3) 0 -384px;}
.sprite-botkiller {background: url(../images/jb/scg_sprites.png?v=3) 0 -544px;}
.sprite-blueprint {background: url(../images/jb/scg_sprites.png?v=3) 0 -576px;}

hr.jb {
	margin-top: 20px;
	margin-bottom: 20px;
	border: 0;
	border-top-width: 0px;
	border-top-style: none;
	border-top-color: currentcolor;
	border-top: 1px solid #282828;
	background-color: transparent;
}

.discussion h1, .editor-preview h1, .editor-preview-side h1 { 
  display: block;
  font-size: 2em;
  margin-left: 0;
  margin-right: 0;
  font-weight: bold;
}
.discussion h2, .editor-preview h2, .editor-preview-side h2 {
  display: block;
  font-size: 1.5em;
  margin-left: 0;
  margin-right: 0;
  font-weight: bold;
}
.discussion h3, .editor-preview h3, .editor-preview-side h3 { 
  display: block;
  font-size: 1.17em;
  margin-left: 0;
  margin-right: 0;
  font-weight: bold;
}
.discussion h4, .editor-preview h4, .editor-preview-side h4 { 
  display: block;
  margin-left: 0;
  margin-right: 0;
  font-weight: bold;
}
.discussion h5, .editor-preview h5, .editor-preview-side h5 { 
  display: block;
  font-size: .83em;
  margin-left: 0;
  margin-right: 0;
  font-weight: bold;
}
.discussion h6, .editor-preview h6, .editor-preview-side h6 { 
  display: block;
  font-size: .67em;
  margin-left: 0;
  margin-right: 0;
  font-weight: bold;
}

.discussion ul, .editor-preview ul, .editor-preview-side ul { 
  display: block;
  list-style-type: disc;
  margin-top: 1em;
  margin-bottom: 1 em;
  margin-left: 0;
  margin-right: 0;
  padding-left: 40px;
}
.discussion ol, .editor-preview ol, .editor-preview-side ol { 
  display: block;
  list-style-type: decimal;
  margin-top: 1em;
  margin-bottom: 1em;
  margin-left: 0;
  margin-right: 0;
  padding-left: 40px;
}

.discussion li, .editor-preview li, .editor-preview-side li {
  display: list-item;
  margin-bottom:15px;
}

.discussion p, .editor-preview p, .editor-preview-side p {
  display: block;
  margin-top: 1em;
  margin-bottom: 1em;
  margin-left: 0;
  margin-right: 0;
}

.discussion hr {
  margin-top: 1em;
  margin-bottom: 1em;
}

.wiki h1, .editor-preview h1, .editor-preview-side h1 { 
  display: block;
  font-size: 2.5em;
  margin-left: 0;
  margin-right: 0;
}
.wiki h2, .editor-preview h2, .editor-preview-side h2 {
  display: block;
  font-size: 1.9em;
  font-weight: 600;
  margin-left: 0;
  margin-right: 0;
  margin-top:20px;
}
.wiki h3, .editor-preview h3, .editor-preview-side h3 { 
  display: block;
  font-size: 1.5em;
  font-weight: 400;
  margin-left: 0;
  margin-right: 0;
}
.wiki h4, .editor-preview h4, .editor-preview-side h4 { 
  font-size: 1.6em;
  display: block;
  margin-left: 0;
  margin-right: 0;
}
.wiki h5, .editor-preview h5, .editor-preview-side h5 {
  font-size: 1.3em;
  display: block;
  font-size: .83em;
  margin-left: 0;
  margin-right: 0;
}
.wiki h6, .editor-preview h6, .editor-preview-side h6 { 
  display: block;
  font-size: 1em;
  margin-left: 0;
  margin-right: 0;
}

.wiki h1:after
{
  content:' ';
  display:block;
  margin-bottom: 20px;
  border: 0;
  border-top-width: 0px;
  border-top-style: none;
  border-top-color: currentcolor;
  border-top: 1px solid #282828;
  background-color: transparent;
}

.wiki ul, .editor-preview ul, .editor-preview-side ul { 
  display: block;
  list-style-type: disc;
  margin-top: 1em;
  margin-bottom: 1em;
  margin-left: 0;
  margin-right: 0;
  padding-left: 40px;
}
.wiki ol, .editor-preview ol, .editor-preview-side ol { 
  display: block;
  list-style-type: decimal;
  margin-top: 1em;
  margin-bottom: 1em;
  margin-left: 0;
  margin-right: 0;
  padding-left: 40px;
}

.wiki li {
  display: list-item;
}

.wiki p, .editor-preview p, .editor-preview-side p {
  display: block;
  margin-top: 1em;
  margin-bottom: 1em;
  margin-left: 0;
  margin-right: 0;
}

.wiki hr {
  margin-top: 1em;
  margin-bottom: 1em;
}

.wiki table {
  width:100%;
  margin-top:5px;
  margin-bottom:5px;
}

.wiki td, .wiki th {
  border: 1px solid #09090b; 
  padding: 8px;
}

.wiki tr:hover {background-color: #061214;}

.wiki th {
  padding-top: 12px;
  padding-bottom: 12px;
  text-align: left;
  background-color: #0C2E35;
  color: white;
}

.wiki dd {
  margin: 0 0 0 80px;
  padding: 0 0 0.5em 0;
}

.wiki img {
  color:red;
}

.wiki img:hover {
  text-decoration: underline;
}

.wiki pre, .wiki code {
  background: #0C2E35;
  white-space: pre;
}

#board-title {
  text-shadow: 0px 4px 3px rgba(0,0,0,0.4),
               0px 8px 13px rgba(0,0,0,0.1),
               0px 18px 23px rgba(0,0,0,0.1);
}


.date-selector-wrapper {
  width: 200px;
  padding: 3px;
  background-color: #081619;
  color:#fff;
  position: absolute;
  font-size: 16px;
  user-select: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  border: 4px solid #6B7280;
	border-radius: 4px;
}
.cal-header, .cal-row {
  display: flex;
  width: 100%;
  height: 30px;
  line-height: 30px;
  text-align: center;
}
.cal-cell, .cal-nav {
  cursor: pointer;
}
.cal-day-names {
  height: 25px;
  line-height: 25px;
}
.cal-day-names .cal-cell {
  cursor: default;
  font-weight: bold;
}
.cal-cell-prev, .cal-cell-next {
  color: #777;
}
.cal-months .cal-row, .cal-years .cal-row {
  height: 60px;
  line-height: 60px;
}
.cal-nav-prev, .cal-nav-next {
  flex: 0.15;
}
.cal-nav-current {
  flex: 0.75;
  font-weight: bold;
}
.cal-months .cal-cell, .cal-years .cal-cell {
  flex: 0.25;
}
.cal-days .cal-cell {
  flex: 0.143;
}
.cal-value {
  color: #fff;
  background-color: #286090;
}
.cal-cell:hover, .cal-nav:hover {
  background-color: #eee;
}
.cal-value:hover {
  background-color: #204d74;
}

/* time footer */
.cal-time {
  display: flex;
  justify-content: flex-start;
  height: 27px;
  line-height: 27px;
}
.cal-time-label, .cal-time-value {
  flex: 0.12;
  text-align: center;
}
.cal-time-slider {
  flex: 0.77;
  background-image: linear-gradient(to right, #d1d8dd, #d1d8dd);
  background-repeat: no-repeat;
  background-size: 100% 1px;
  background-position: left 50%;
  height: 100%;
}
.cal-time-slider input {
  width: 100%;
  -webkit-appearance: none;
  background: 0 0;
  cursor: pointer;
  height: 100%;
  outline: 0;
  user-select: auto;
}

.jb-file pre {
  padding:10px;
  box-sizing:border-box;
  -moz-box-sizing:border-box;
  webkit-box-sizing:border-box;
  display:block; 
  white-space: pre-wrap;  
  white-space: -moz-pre-wrap; 
  white-space: -pre-wrap; 
  white-space: -o-pre-wrap; 
  word-wrap: break-word; 
  width:100%; overflow-x:auto;
  font-family: monospace;
 }

 .group_icon {
   width:250px;
   height:250px;
 }

.jb-profile {
  background-image: url('https://www.scg.wtf/jb/assets/images/starry_bg_2016.png');
  background-color: #152236;
  background-size: 1246px 600px;
}

.mvm-c1 { /*Used on mvm stats page*/
  color:#fff;
  background-color: #e31c3d;
}

.mvm-c2 { /*Used on mvm stats page*/
  color:#fff;
  background-color: #2e8540;
}

.toc {
  background: #25222D none repeat scroll 0 0;
  border: 1px solid #585360;
  font-size: 95%;
  margin-top: 1em;
  margin-bottom: 1em;
  padding-right:30px;
  padding-top:10px;
  padding-bottom:10px;
}

.toc ol {
  margin:0 !important;
}

.att-tf2-positive
{
  color:#99CCFF;
}

.att-tf2-negative
{
  color:#FF4040;
}

.ui-stripe-disabled
{
  color: white;
  background: repeating-linear-gradient(
    45deg,
    #121F23,
    #121F23 10px,
    #081619 10px,
    #081619 20px
  );
}

.heading-permalink {
  font-size: .8em;
  vertical-align: super;
  text-decoration: none;
  color: transparent !important;
}

h1:hover .heading-permalink,
h2:hover .heading-permalink,
h3:hover .heading-permalink,
h4:hover .heading-permalink,
h5:hover .heading-permalink,
h6:hover .heading-permalink,
.heading-permalink:hover {
  text-decoration: none;
  color: #777 !important;
}