@import url(https://fonts.googleapis.com/css?family=Open+Sans:400,300,600);
@import url(https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css);
@import url(https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.7.2/animate.min.css);
@import url(/assets/metro-icons.min.css);
@import url(/assets/fontawesome.min.css);
@import url(/assets/light.min.css);
@import url(/assets/brands.min.css);

/* Reset */
html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;font-size:100%;font:inherit;vertical-align:baseline}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}ol,ul{list-style:none}blockquote,q{quotes:none}blockquote:before,blockquote:after,q:before,q:after{content:'';content:none}table{border-collapse:collapse;border-spacing:0}

@font-face {
  font-family: "Segoe UI Light";
  font-style: normal;
  font-weight: normal;
  src: local("Segoe UI Light"), local("Segoe WP Light");
}

/* Global */
html {
	min-height: 100%;
	overflow-x: hidden;
}

body, input, textarea {
	font-family: "Segoe UI", "Open Sans", Arial, sans-serif;
	font-weight: 400;
	font-size: 0.875rem;
	text-rendering: optimizeLegibility;
	line-height: 1.428;
	color: #bbbbbb;
}

body {
	background-color: #171717;
}

h1, h2 {
	font-family: "Segoe UI", "Open Sans", Arial, sans-serif;
	font-size: 40px;
	font-weight: 300;
	line-height: 1.1;
	margin-bottom: 10px;
}

h1 {
	color: #fff;
}

h2 {
	font-size: large;
}

.display-1 {
	font-size: 6rem;
}

.display-2 {
	font-size: 5.5rem;
}

.display-3 {
	font-size: 4.5rem;
}

.display-4 {
	font-size: 3.5rem;
}

.lead {
	font-size: 1.15rem;
}

b, strong {
	font-weight: 600;
}

i, em {
	font-style: italic;
}
u {
	text-decoration: underline;
}

p {
	text-align: justify;
	margin: 0 0 10px;
}

a, #author, a:hover  {
	color: #DB7700;
	text-decoration: none;
	outline: none;
}

a:hover {
	text-decoration: underline;
}

time {
	cursor: default;
}

.fadeInUp {
	transition-duration: 300ms;
}

.spoiler {
	color: transparent;
	text-shadow: 0 0 8px rgb(187, 187, 187);
}

.spoiler:hover {
	color: #bbb;
	text-shadow: none;
}

article ul {
	list-style-type: none;
	margin-bottom: 10px;
}

.page-title {
	margin-bottom: 1em;
}
.page-title a {
	color: #fff;
	vertical-align: 0.4em;
	margin-right: 0.5em;
}
.page-title a:hover {
    text-decoration: none;
}
.page-title h1 {
	display: inline;
}
.rounded {
	border-radius: 50%;
}
.pull-left {
  float: left;
}

/* Forms */
label {
	display: block;
	margin-top: 10px;
}

.form-group {
  margin-bottom: 15px;
}

input, textarea {
	padding: 4px 11px;
	background-color: transparent;
	border: none;
	border-bottom: 1px solid #404040;	
}

input {
	padding-top: 10px;
	padding-bottom: 10px;
	font-size: large;
	width: 200px;
	transition: background-color 0.25s;
}

input:focus, textarea:focus {
	background-color: #3d3d3d;
	outline: none;
}

*:-moz-ui-invalid, input:focus:invalid, textarea:focus:invalid {
  border-color: #ce352c !important;
  box-shadow: none;
}

textarea:focus:valid {
  border-color: #fff !important;
}

/* Checkboxes & Radio */
.input-control.checkbox,
.input-control.radio {
  	line-height: 1.875rem;
  	min-width: 1rem;
  	-webkit-user-select: none;
    user-select: none;
	transition: all .25s;
}

.input-control.checkbox input[type="checkbox"],
.input-control.radio input[type="checkbox"],
.input-control.checkbox input[type="radio"],
.input-control.radio input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0.0625rem;
  height: 0.0625rem;
}

.input-control.checkbox .caption,
.input-control.radio .caption {
  margin: 0 .125rem;
  vertical-align: middle;
}

.input-control.checkbox .check,
.input-control.radio .check {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.8);
  position: relative;
  display: inline-block;
  vertical-align: middle;
  transition: all .25s;
}

.input-control.checkbox .check:hover,
.input-control.radio .check:hover {
	border: 2px solid #fff;
}

.input-control.checkbox.text-left .check,
.input-control.radio.text-left .check {
  margin: 0 0 0 .3125rem;
}

.input-control.checkbox .check:before,
.input-control.radio .check:before {
  position: absolute;
  color: transparent;
  font-size: 0;
  content: "";
  height: 5px;
  width: 10px;
  background-color: transparent;
  border-left: .1875rem solid;
  border-bottom: .1875rem solid;
  border-color: transparent;
  left: 50%;
  top: 50%;
  margin-left: -0.325rem;
  margin-top: -0.365rem;
  display: block;
  transform: rotate(-45deg);
  transition: all 0.2s linear;
}

.input-control.checkbox input[type=radio] ~ .check:before,
.input-control.radio input[type=radio] ~ .check:before {
  border-color: transparent !important;
}

.input-control.checkbox input[type="checkbox"]:checked ~ .check:before,
.input-control.radio input[type="checkbox"]:checked ~ .check:before,
.input-control.checkbox input[type="radio"]:checked ~ .check:before,
.input-control.radio input[type="radio"]:checked ~ .check:before {
  border-color: #fff;
  transition: all 0.2s linear;
}

.input-control.checkbox input[type="checkbox"]:disabled ~ .check,
.input-control.radio input[type="checkbox"]:disabled ~ .check,
.input-control.checkbox input[type="radio"]:disabled ~ .check,
.input-control.radio input[type="radio"]:disabled ~ .check,
.input-control.checkbox input[type="checkbox"]:disabled ~ .caption,
.input-control.radio input[type="checkbox"]:disabled ~ .caption,
.input-control.checkbox input[type="radio"]:disabled ~ .caption,
.input-control.radio input[type="radio"]:disabled ~ .caption,
.input-control.checkbox input[type="checkbox"]:disabled:checked ~ .check:before,
.input-control.radio input[type="checkbox"]:disabled:checked ~ .check:before,
.input-control.checkbox input[type="radio"]:disabled:checked ~ .check:before,
.input-control.radio input[type="radio"]:disabled:checked ~ .check:before,
.input-control.checkbox input[data-show="indeterminate"]:disabled ~ .check:after,
.input-control.radio input[data-show="indeterminate"]:disabled ~ .check:after {
  border: 1px solid rgba(255, 255, 255, 0.2);
  cursor: default;
}

.input-control.checkbox input[data-show="indeterminate"] ~ .check:before,
.input-control.radio input[data-show="indeterminate"] ~ .check:before,
.input-control.checkbox input[data-show="indeterminate"]:checked ~ .check:before,
.input-control.radio input[data-show="indeterminate"]:checked ~ .check:before,
.input-control.checkbox input.indeterminate:checked ~ .check:before,
.input-control.radio input.indeterminate:checked ~ .check:before,
.input-control.checkbox input[type="checkbox"]:indeterminate ~ .check:before,
.input-control.radio input[type="checkbox"]:indeterminate ~ .check:before {
  display: none;
}

.input-control.checkbox input[data-show="indeterminate"] ~ .check:after,
.input-control.radio input[data-show="indeterminate"] ~ .check:after,
.input-control.checkbox input[data-show="indeterminate"]:checked ~ .check:after,
.input-control.radio input[data-show="indeterminate"]:checked ~ .check:after,
.input-control.checkbox input.indeterminate:checked ~ .check:after,
.input-control.radio input.indeterminate:checked ~ .check:after,
.input-control.checkbox input[type="checkbox"]:indeterminate ~ .check:after,
.input-control.radio input[type="checkbox"]:indeterminate ~ .check:after {
  position: absolute;
  display: block;
  content: "" !important;
  background-color: #1d1d1d;
  height: .875rem;
  width: .875rem;
  left: 50%;
  top: 50%;
  margin-left: -0.4375rem;
  margin-top: -0.4375rem;
}

.input-control.checkbox input[data-show="indeterminate"]:not(:checked) ~ .check:after,
.input-control.radio input[data-show="indeterminate"]:not(:checked) ~ .check:after {
  background-color: transparent;
}

.input-control.radio .check {
  border: 1px #999999 solid;
  border-radius: 50%;
}
.input-control.radio .check:before {
  position: absolute;
  display: block;
  content: "" !important;
  background-color: #1d1d1d;
  height: .5624rem;
  width: .5624rem;
  left: 50%;
  top: 50%;
  margin-left: -0.375rem;
  margin-top: -0.375rem;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  border-radius: 50%;
}
.input-control.radio input[type="radio"]:not(:checked) ~ .check:before {
  background-color: transparent;
}
.input-control.small-check .check {
  width: 1rem !important;
  height: 1rem !important;
}
.input-control.small-check .check:before {
  width: 6px;
  height: 3px;
  margin-left: -4px;
  margin-top: -4px;
  border-width: 2px;
}
.input-control.small-check.radio .check:before {
  height: .375rem;
  width: .375rem;
  left: 50%;
  top: 50%;
  margin-left: -0.25rem;
  margin-top: -0.25rem;
}
.input-control.small-check input[data-show="indeterminate"] ~ .check:after,
.input-control.small-check input[data-show="indeterminate"]:checked ~ .check:after,
.input-control.small-check input.indeterminate:checked ~ .check:after,
.input-control.small-check input[type="checkbox"]:indeterminate ~ .check:after {
  height: .375rem;
  width: .375rem;
  left: 50%;
  top: 50%;
  margin-left: -0.1875rem;
  margin-top: -0.1875rem;
}
select {
	border: 2px solid rgba(255, 255, 255, 0.2);
	background-color: #1d1d1d;
	transition: all .25s 0s ease-in-out;
	height: 28px;
	padding: 0 8px;
	border-radius: 0;
	color: #fff;
}
select:hover {
	border: 2px solid #fff;
}

/* Modern Input */
.input-control.modern {
  position: relative;
  width: 12.25rem;
  height: 3rem;
  display: inline-block;
}
.input-control.modern input {
  position: absolute;
  top: 1rem;
  left: 0;
  right: 0;
  bottom: .5rem;
  border: 0;
  border-bottom: 1px #404040 solid;
  background-color: transparent;
  outline: none;
  font-size: 1rem;
  width: 100%;
  z-index: 2;
  height: 1.75rem;
}
.input-control.modern input:focus {
  background-color: #3d3d3d;
}
.input-control.modern .label,
.input-control.modern .informer {
  position: absolute;
  display: block;
  z-index: 1;
  color: #bbb;
}
.input-control.modern .label {
  opacity: 0;
  top: 16px;
  left: 0;
  transition: all 0.3s linear;
}
.input-control.modern .informer {
  opacity: 0;
  bottom: .75rem;
  font-size: .8rem;
  transition: all 0.3s linear;
}
.input-control.modern .placeholder {
  font-size: 1rem;
  position: absolute;
  top: 1.6rem;
  left: 11px;
  z-index: 1;
  opacity: 1;
  transition: all 0.3s linear;
}
.input-control.modern .helper-button {
  top: 8px;
}
.input-control.modern.iconic {
  margin-left: 2rem;
}
.input-control.modern.iconic .icon {
  width: 1.5rem;
  height: 1.5rem;
  font-size: 1.5rem;
  line-height: 100%;
  position: absolute;
  left: -32px;
  top: 50%;
  margin-top: -0.5rem;
  display: block;
  opacity: .2;
  transition: all 0.3s linear;
}
.input-control.modern.iconic .icon img {
  width: 100%;
  max-width: 100%;
  height: 100%;
  max-height: 100%;
}
.input-control.modern input:focus ~ .label {
  opacity: 1;
  -webkit-transform: translateY(-18px);
          transform: translateY(-18px);
  transition: all 0.3s linear;
}
.input-control.modern input:focus ~ .placeholder {
  opacity: 0;
  -webkit-transform: translateX(200px);
          transform: translateX(200px);
  transition: all 0.3s linear;
}
.input-control.modern input:focus ~ .informer {
  opacity: 1;
  color: #bbb;
  bottom: -2.1rem;
  transition: all 0.3s linear;
}

input[type="file"],
input[type="image"],
input[type="submit"],
input[type="reset"],
input[type="button"] {
  width: auto;
}

.input-mini {
  width: 60px;
}

.input-small {
  width: 90px;
}

.input-medium {
  width: 150px;
}

.input-large {
  width: 210px;
}

.input-xlarge {
  width: 270px;
}

.input-xxlarge {
  width: 530px;
}

input[class*="span"],
select[class*="span"],
textarea[class*="span"],
.uneditable-input[class*="span"],
.row-fluid input[class*="span"],
.row-fluid select[class*="span"],
.row-fluid textarea[class*="span"],
.row-fluid .uneditable-input[class*="span"] {
  float: none;
  margin-left: 0;
}

input[disabled],
select[disabled],
textarea[disabled],
input[readonly],
select[readonly],
textarea[readonly] {
  cursor: not-allowed;
}

@media (min-width: 768px) {
  .form-inline .form-group {
    display: inline-block;
    margin-bottom: 0;
    vertical-align: middle;
  }
  .form-inline .form-control {
    display: inline-block;
    width: auto;
    vertical-align: middle;
  }
  .form-inline .form-control-static {
    display: inline-block;
  }
  .form-inline .input-group {
    display: inline-table;
    vertical-align: middle;
  }
  .form-inline .input-group .input-group-addon,
  .form-inline .input-group .input-group-btn,
  .form-inline .input-group .form-control {
    width: auto;
  }
  .form-inline .input-group > .form-control {
    width: 100%;
  }
  .form-inline .control-label {
    margin-bottom: 0;
    vertical-align: middle;
  }
}

button::-moz-focus-inner {
  border: 0;
}

button img, .btn img {
	height: 16px;
	width: auto;
	margin-left: 5px;
	vertical-align: middle;
}

.small {
	font-size: 80%;
}

#Fluttershy, #Dash, #Pie, #Sparkle, #Rarity, #Applejack {
	border: none;
}

.Fluttershy {
	color: #fff797;
	text-shadow: 0 0 15px #f8b9cf;
}

#Fluttershy {
	background-color: #fff797;
	color: #f8b9cf;
}

.Dash {
	color: #9edbf8;
	text-shadow: 0 0 15px #c6006f;
}

#Dash {
	background-color: #9edbf8;
	color: #c6006f;
}

.Pie {
	color: #f8b9cd;
	text-shadow: 0 0 15px #ef5091;
}

#Pie {
	background-color: #f8b9cd;
	color: #ef5091;
}

.Sparkle {
	color: #d09de3;
	text-shadow: 0 0 15px #263774;
}

#Sparkle {
	background-color: #d09de3;
	color: #263774;
}

.Rarity {
	color: #eceff1;
	text-shadow: 0 0 15px #5e4fa0;
}

#Rarity {
	background-color: #eceff1;
	color: #5e4fa0;
}

.Applejack {
	color: #fdbd5e;
	text-shadow: 0 0 15px #fff797;
}

#Applejack {
	background-color: #fdbd5e;
	color: #fff797;
}

/* The Grid */
.container {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
}
.container:before,
.container:after {
  display: table;
  content: " ";
}
.container:after {
  clear: both;
}

.row {
  margin-right: -.9375rem;
  margin-left: -.9375rem;
}
.row article {
	width: 100%;
}
.row:before,
.row:after {
  display: table;
  content: " ";
}
.row:after {
  clear: both;
}
.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12 {
  position: relative;
  min-height: 1px;
  padding-right: .9375rem;
  padding-left: .9375rem;
}
.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 {
  float: left;
}
.col-xs-1 {
  width: 8.333333333333332%;
}
.col-xs-2 {
  width: 16.666666666666664%;
}
.col-xs-3 {
  width: 25%;
}
.col-xs-4 {
  width: 33.33333333333333%;
}
.col-xs-5 {
  width: 41.66666666666667%;
}
.col-xs-6 {
  width: 50%;
}
.col-xs-7 {
  width: 58.333333333333336%;
}
.col-xs-8 {
  width: 66.66666666666666%;
}
.col-xs-9 {
  width: 75%;
}
.col-xs-10 {
  width: 83.33333333333334%;
}
.col-xs-11 {
  width: 91.66666666666666%;
}
.col-xs-12 {
  width: 100%;
}
@media (min-width: 768px) {
  .container {
    max-width: 750px;
  }
  .col-sm-1,
  .col-sm-2,
  .col-sm-3,
  .col-sm-4,

  .col-sm-5,
  .col-sm-6,
  .col-sm-7,
  .col-sm-8,
  .col-sm-9,
  .col-sm-10,
  .col-sm-11 {
    float: left;
  }
  .col-sm-1 {
    width: 8.333333333333332%;
  }
  .col-sm-2 {
    width: 16.666666666666664%;
  }
  .col-sm-3 {
    width: 25%;
  }
  .col-sm-4 {
    width: 33.33333333333333%;
  }
  .col-sm-5 {
    width: 41.66666666666667%;
  }
  .col-sm-6 {
    width: 50%;
  }
  .col-sm-7 {
    width: 58.333333333333336%;
  }
  .col-sm-8 {
    width: 66.66666666666666%;
  }
  .col-sm-9 {
    width: 75%;
  }
  .col-sm-10 {
    width: 83.33333333333334%;
  }
  .col-sm-11 {
    width: 91.66666666666666%;
  }
  .col-sm-12 {
    width: 100%;
  }
  .col-sm-push-1 {
    left: 8.333333333333332%;
  }
  .col-sm-push-2 {
    left: 16.666666666666664%;
  }
  .col-sm-push-3 {
    left: 25%;
  }
  .col-sm-push-4 {
    left: 33.33333333333333%;
  }
  .col-sm-push-5 {
    left: 41.66666666666667%;
  }
  .col-sm-push-6 {
    left: 50%;
  }
  .col-sm-push-7 {
    left: 58.333333333333336%;
  }
  .col-sm-push-8 {
    left: 66.66666666666666%;
  }
  .col-sm-push-9 {
    left: 75%;
  }
  .col-sm-push-10 {
    left: 83.33333333333334%;
  }
  .col-sm-push-11 {
    left: 91.66666666666666%;
  }
  .col-sm-pull-1 {
    right: 8.333333333333332%;
  }
  .col-sm-pull-2 {
    right: 16.666666666666664%;
  }
  .col-sm-pull-3 {
    right: 25%;
  }
  .col-sm-pull-4 {
    right: 33.33333333333333%;
  }
  .col-sm-pull-5 {
    right: 41.66666666666667%;
  }
  .col-sm-pull-6 {
    right: 50%;
  }
  .col-sm-pull-7 {
    right: 58.333333333333336%;
  }
  .col-sm-pull-8 {
    right: 66.66666666666666%;
  }
  .col-sm-pull-9 {
    right: 75%;
  }
  .col-sm-pull-10 {
    right: 83.33333333333334%;
  }
  .col-sm-pull-11 {
    right: 91.66666666666666%;
  }
  .col-sm-offset-1 {
    margin-left: 8.333333333333332%;
  }
  .col-sm-offset-2 {
    margin-left: 16.666666666666664%;
  }
  .col-sm-offset-3 {
    margin-left: 25%;
  }
  .col-sm-offset-4 {
    margin-left: 33.33333333333333%;
  }
  .col-sm-offset-5 {
    margin-left: 41.66666666666667%;
  }
  .col-sm-offset-6 {
    margin-left: 50%;
  }
  .col-sm-offset-7 {
    margin-left: 58.333333333333336%;
  }
  .col-sm-offset-8 {
    margin-left: 66.66666666666666%;
  }
  .col-sm-offset-9 {
    margin-left: 75%;
  }
  .col-sm-offset-10 {
    margin-left: 83.33333333333334%;
  }
  .col-sm-offset-11 {
    margin-left: 91.66666666666666%;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 970px;
  }
  .col-md-1,
  .col-md-2,
  .col-md-3,
  .col-md-4,
  .col-md-5,
  .col-md-6,
  .col-md-7,
  .col-md-8,
  .col-md-9,
  .col-md-10,
  .col-md-11 {
    float: left;
  }
  .col-md-1 {
    width: 8.333333333333332%;
  }
  .col-md-2 {
    width: 16.666666666666664%;
  }
  .col-md-3 {
    width: 25%;
  }
  .col-md-4 {
    width: 33.33333333333333%;
  }
  .col-md-5 {
    width: 41.66666666666667%;
  }
  .col-md-6 {
    width: 50%;
  }
  .col-md-7 {
    width: 58.333333333333336%;
  }
  .col-md-8 {
    width: 66.66666666666666%;
  }
  .col-md-9 {
    width: 75%;
  }
  .col-md-10 {
    width: 83.33333333333334%;
  }
  .col-md-11 {
    width: 91.66666666666666%;
  }
  .col-md-12 {
    width: 100%;
  }
  .col-md-push-0 {
    left: auto;
  }
  .col-md-push-1 {
    left: 8.333333333333332%;
  }
  .col-md-push-2 {
    left: 16.666666666666664%;
  }
  .col-md-push-3 {
    left: 25%;
  }
  .col-md-push-4 {
    left: 33.33333333333333%;
  }
  .col-md-push-5 {
    left: 41.66666666666667%;
  }
  .col-md-push-6 {
    left: 50%;
  }
  .col-md-push-7 {
    left: 58.333333333333336%;
  }
  .col-md-push-8 {
    left: 66.66666666666666%;
  }
  .col-md-push-9 {
    left: 75%;
  }
  .col-md-push-10 {
    left: 83.33333333333334%;
  }
  .col-md-push-11 {
    left: 91.66666666666666%;
  }
  .col-md-pull-0 {
    right: auto;
  }
  .col-md-pull-1 {
    right: 8.333333333333332%;
  }
  .col-md-pull-2 {
    right: 16.666666666666664%;
  }
  .col-md-pull-3 {
    right: 25%;
  }
  .col-md-pull-4 {
    right: 33.33333333333333%;
  }
  .col-md-pull-5 {
    right: 41.66666666666667%;
  }
  .col-md-pull-6 {
    right: 50%;
  }
  .col-md-pull-7 {
    right: 58.333333333333336%;
  }
  .col-md-pull-8 {
    right: 66.66666666666666%;
  }
  .col-md-pull-9 {
    right: 75%;
  }
  .col-md-pull-10 {
    right: 83.33333333333334%;
  }
  .col-md-pull-11 {
    right: 91.66666666666666%;
  }
  .col-md-offset-0 {
    margin-left: 0;
  }
  .col-md-offset-1 {
    margin-left: 8.333333333333332%;
  }
  .col-md-offset-2 {
    margin-left: 16.666666666666664%;
  }
  .col-md-offset-3 {
    margin-left: 25%;
  }
  .col-md-offset-4 {
    margin-left: 33.33333333333333%;
  }
  .col-md-offset-5 {
    margin-left: 41.66666666666667%;
  }
  .col-md-offset-6 {
    margin-left: 50%;
  }
  .col-md-offset-7 {
    margin-left: 58.333333333333336%;
  }
  .col-md-offset-8 {
    margin-left: 66.66666666666666%;
  }
  .col-md-offset-9 {
    margin-left: 75%;
  }
  .col-md-offset-10 {
    margin-left: 83.33333333333334%;
  }
  .col-md-offset-11 {
    margin-left: 91.66666666666666%;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1170px;
  }
  .col-lg-1,
  .col-lg-2,
  .col-lg-3,
  .col-lg-4,
  .col-lg-5,
  .col-lg-6,
  .col-lg-7,
  .col-lg-8,
  .col-lg-9,
  .col-lg-10,
  .col-lg-11 {
    float: left;
  }
  .col-lg-1 {
    width: 8.333333333333332%;
  }
  .col-lg-2 {
    width: 16.666666666666664%;
  }
  .col-lg-3 {
    width: 25%;
  }
  .col-lg-4 {
    width: 33.33333333333333%;
  }
  .col-lg-5 {
    width: 41.66666666666667%;
  }
  .col-lg-6 {
    width: 50%;
  }
  .col-lg-7 {
    width: 58.333333333333336%;
  }
  .col-lg-8 {
    width: 66.66666666666666%;
  }
  .col-lg-9 {
    width: 75%;
  }
  .col-lg-10 {
    width: 83.33333333333334%;
  }
  .col-lg-11 {
    width: 91.66666666666666%;
  }
  .col-lg-12 {
    width: 100%;
  }
  .col-lg-push-0 {
    left: auto;
  }
  .col-lg-push-1 {
    left: 8.333333333333332%;
  }
  .col-lg-push-2 {
    left: 16.666666666666664%;
  }
  .col-lg-push-3 {
    left: 25%;
  }
  .col-lg-push-4 {
    left: 33.33333333333333%;
  }
  .col-lg-push-5 {
    left: 41.66666666666667%;
  }
  .col-lg-push-6 {
    left: 50%;
  }
  .col-lg-push-7 {
    left: 58.333333333333336%;
  }
  .col-lg-push-8 {
    left: 66.66666666666666%;
  }
  .col-lg-push-9 {
    left: 75%;
  }
  .col-lg-push-10 {
    left: 83.33333333333334%;
  }
  .col-lg-push-11 {
    left: 91.66666666666666%;
  }
  .col-lg-pull-0 {
    right: auto;
  }
  .col-lg-pull-1 {
    right: 8.333333333333332%;
  }
  .col-lg-pull-2 {
    right: 16.666666666666664%;
  }
  .col-lg-pull-3 {
    right: 25%;
  }
  .col-lg-pull-4 {
    right: 33.33333333333333%;
  }
  .col-lg-pull-5 {
    right: 41.66666666666667%;
  }
  .col-lg-pull-6 {
    right: 50%;
  }
  .col-lg-pull-7 {
    right: 58.333333333333336%;
  }
  .col-lg-pull-8 {
    right: 66.66666666666666%;
  }
  .col-lg-pull-9 {
    right: 75%;
  }
  .col-lg-pull-10 {
    right: 83.33333333333334%;
  }
  .col-lg-pull-11 {
    right: 91.66666666666666%;
  }
  .col-lg-offset-0 {
    margin-left: 0;
  }
  .col-lg-offset-1 {
    margin-left: 8.333333333333332%;
  }
  .col-lg-offset-2 {
    margin-left: 16.666666666666664%;
  }
  .col-lg-offset-3 {
    margin-left: 25%;
  }
  .col-lg-offset-4 {
    margin-left: 33.33333333333333%;
  }
  .col-lg-offset-5 {
    margin-left: 41.66666666666667%;
  }
  .col-lg-offset-6 {
    margin-left: 50%;
  }
  .col-lg-offset-7 {
    margin-left: 58.333333333333336%;
  }
  .col-lg-offset-8 {
    margin-left: 66.66666666666666%;
  }
  .col-lg-offset-9 {
    margin-left: 75%;
  }
  .col-lg-offset-10 {
    margin-left: 83.33333333333334%;
  }
  .col-lg-offset-11 {
    margin-left: 91.66666666666666%;
  }
}
@-ms-viewport {
  width: device-width;
}
@media screen and (max-width: 400px) {
  @-ms-viewport {
    width: 320px;
  }
}
.visible-xs {
  display: none !important;
}
tr.visible-xs {
  display: none !important;
}
th.visible-xs,
td.visible-xs {
  display: none !important;
}
@media (max-width: 767px) {
  .visible-xs {
    display: block !important;
  }
  tr.visible-xs {
    display: table-row !important;
  }
  th.visible-xs,
  td.visible-xs {
    display: table-cell !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .visible-xs.visible-sm {
    display: block !important;
  }
  tr.visible-xs.visible-sm {
    display: table-row !important;
  }
  th.visible-xs.visible-sm,
  td.visible-xs.visible-sm {
    display: table-cell !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .visible-xs.visible-md {
    display: block !important;
  }
  tr.visible-xs.visible-md {
    display: table-row !important;
  }
  th.visible-xs.visible-md,
  td.visible-xs.visible-md {
    display: table-cell !important;
  }
}
@media (min-width: 1200px) {
  .visible-xs.visible-lg {
    display: block !important;
  }
  tr.visible-xs.visible-lg {
    display: table-row !important;
  }
  th.visible-xs.visible-lg,
  td.visible-xs.visible-lg {
    display: table-cell !important;
  }
}
.visible-sm {
  display: none !important;
}
tr.visible-sm {
  display: none !important;
}
th.visible-sm,
td.visible-sm {
  display: none !important;
}
@media (max-width: 767px) {
  .visible-sm.visible-xs {
    display: block !important;
  }
  tr.visible-sm.visible-xs {
    display: table-row !important;
  }
  th.visible-sm.visible-xs,
  td.visible-sm.visible-xs {
    display: table-cell !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm {
    display: block !important;
  }
  tr.visible-sm {
    display: table-row !important;
  }
  th.visible-sm,
  td.visible-sm {
    display: table-cell !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .visible-sm.visible-md {
    display: block !important;
  }
  tr.visible-sm.visible-md {
    display: table-row !important;
  }
  th.visible-sm.visible-md,
  td.visible-sm.visible-md {
    display: table-cell !important;
  }
}
@media (min-width: 1200px) {
  .visible-sm.visible-lg {
    display: block !important;
  }
  tr.visible-sm.visible-lg {
    display: table-row !important;
  }
  th.visible-sm.visible-lg,
  td.visible-sm.visible-lg {
    display: table-cell !important;
  }
}
.visible-md {
  display: none !important;
}
tr.visible-md {
  display: none !important;
}
th.visible-md,
td.visible-md {
  display: none !important;
}
@media (max-width: 767px) {
  .visible-md.visible-xs {
    display: block !important;
  }
  tr.visible-md.visible-xs {
    display: table-row !important;
  }
  th.visible-md.visible-xs,
  td.visible-md.visible-xs {
    display: table-cell !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .visible-md.visible-sm {
    display: block !important;
  }
  tr.visible-md.visible-sm {
    display: table-row !important;
  }
  th.visible-md.visible-sm,
  td.visible-md.visible-sm {
    display: table-cell !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md {
    display: block !important;
  }
  tr.visible-md {
    display: table-row !important;
  }
  th.visible-md,
  td.visible-md {
    display: table-cell !important;
  }
}
@media (min-width: 1200px) {
  .visible-md.visible-lg {
    display: block !important;
  }
  tr.visible-md.visible-lg {
    display: table-row !important;
  }
  th.visible-md.visible-lg,
  td.visible-md.visible-lg {
    display: table-cell !important;
  }
}
.visible-lg {
  display: none !important;
}
tr.visible-lg {
  display: none !important;
}
th.visible-lg,
td.visible-lg {
  display: none !important;
}
@media (max-width: 767px) {
  .visible-lg.visible-xs {
    display: block !important;
  }
  tr.visible-lg.visible-xs {
    display: table-row !important;
  }
  th.visible-lg.visible-xs,
  td.visible-lg.visible-xs {
    display: table-cell !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .visible-lg.visible-sm {
    display: block !important;
  }
  tr.visible-lg.visible-sm {
    display: table-row !important;
  }
  th.visible-lg.visible-sm,
  td.visible-lg.visible-sm {
    display: table-cell !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .visible-lg.visible-md {
    display: block !important;
  }
  tr.visible-lg.visible-md {
    display: table-row !important;
  }
  th.visible-lg.visible-md,
  td.visible-lg.visible-md {
    display: table-cell !important;
  }
}
@media (min-width: 1200px) {
  .visible-lg {
    display: block !important;
  }
  tr.visible-lg {
    display: table-row !important;
  }
  th.visible-lg,
  td.visible-lg {
    display: table-cell !important;
  }
}
.hidden-xs {
  display: block !important;
}
tr.hidden-xs {
  display: table-row !important;
}
th.hidden-xs,
td.hidden-xs {
  display: table-cell !important;
}
@media (max-width: 767px) {
  .hidden-xs {
    display: none !important;
  }
  tr.hidden-xs {
    display: none !important;
  }
  th.hidden-xs,
  td.hidden-xs {
    display: none !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .hidden-xs.hidden-sm {
    display: none !important;
  }
  tr.hidden-xs.hidden-sm {
    display: none !important;
  }
  th.hidden-xs.hidden-sm,
  td.hidden-xs.hidden-sm {
    display: none !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .hidden-xs.hidden-md {
    display: none !important;
  }
  tr.hidden-xs.hidden-md {
    display: none !important;
  }
  th.hidden-xs.hidden-md,
  td.hidden-xs.hidden-md {
    display: none !important;
  }
}
@media (min-width: 1200px) {
  .hidden-xs.hidden-lg {
    display: none !important;
  }
  tr.hidden-xs.hidden-lg {
    display: none !important;
  }
  th.hidden-xs.hidden-lg,
  td.hidden-xs.hidden-lg {
    display: none !important;
  }
}
.hidden-sm {
  display: block !important;
}
tr.hidden-sm {
  display: table-row !important;
}
th.hidden-sm,
td.hidden-sm {
  display: table-cell !important;
}
@media (max-width: 767px) {
  .hidden-sm.hidden-xs {
    display: none !important;
  }
  tr.hidden-sm.hidden-xs {
    display: none !important;
  }
  th.hidden-sm.hidden-xs,
  td.hidden-sm.hidden-xs {
    display: none !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .hidden-sm {
    display: none !important;
  }
  tr.hidden-sm {
    display: none !important;
  }
  th.hidden-sm,
  td.hidden-sm {
    display: none !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .hidden-sm.hidden-md {
    display: none !important;
  }
  tr.hidden-sm.hidden-md {
    display: none !important;
  }
  th.hidden-sm.hidden-md,
  td.hidden-sm.hidden-md {
    display: none !important;
  }
}
@media (min-width: 1200px) {
  .hidden-sm.hidden-lg {
    display: none !important;
  }
  tr.hidden-sm.hidden-lg {
    display: none !important;
  }
  th.hidden-sm.hidden-lg,
  td.hidden-sm.hidden-lg {
    display: none !important;
  }
}
.hidden-md {
  display: block !important;
}
tr.hidden-md {
  display: table-row !important;
}
th.hidden-md,
td.hidden-md {
  display: table-cell !important;
}
@media (max-width: 767px) {
  .hidden-md.hidden-xs {
    display: none !important;
  }
  tr.hidden-md.hidden-xs {
    display: none !important;
  }
  th.hidden-md.hidden-xs,
  td.hidden-md.hidden-xs {
    display: none !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .hidden-md.hidden-sm {
    display: none !important;
  }
  tr.hidden-md.hidden-sm {
    display: none !important;
  }
  th.hidden-md.hidden-sm,
  td.hidden-md.hidden-sm {
    display: none !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .hidden-md {
    display: none !important;
  }
  tr.hidden-md {
    display: none !important;
  }
  th.hidden-md,
  td.hidden-md {
    display: none !important;
  }
}
@media (min-width: 1200px) {
  .hidden-md.hidden-lg {
    display: none !important;
  }
  tr.hidden-md.hidden-lg {
    display: none !important;
  }
  th.hidden-md.hidden-lg,
  td.hidden-md.hidden-lg {
    display: none !important;
  }
}
.hidden-lg {
  display: block !important;
}
tr.hidden-lg {
  display: table-row !important;
}
th.hidden-lg,
td.hidden-lg {
  display: table-cell !important;
}
@media (max-width: 767px) {
  .hidden-lg.hidden-xs {
    display: none !important;
  }
  tr.hidden-lg.hidden-xs {
    display: none !important;
  }
  th.hidden-lg.hidden-xs,
  td.hidden-lg.hidden-xs {
    display: none !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .hidden-lg.hidden-sm {
    display: none !important;
  }
  tr.hidden-lg.hidden-sm {
    display: none !important;
  }
  th.hidden-lg.hidden-sm,
  td.hidden-lg.hidden-sm {
    display: none !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .hidden-lg.hidden-md {
    display: none !important;
  }
  tr.hidden-lg.hidden-md {
    display: none !important;
  }
  th.hidden-lg.hidden-md,
  td.hidden-lg.hidden-md {
    display: none !important;
  }
}
@media (min-width: 1200px) {
  .hidden-lg {
    display: none !important;
  }
  tr.hidden-lg {
    display: none !important;
  }
  th.hidden-lg,
  td.hidden-lg {
    display: none !important;
  }
}

.center-block {
  display: block;
  margin-right: auto;
  margin-left: auto;
}

/* Flex Grid */
.flex-grid {
  display: block;
  width: 100%;
}
.flex-grid .row {
  display: -webkit-flex;
  display: flex;
}
.flex-grid .row .cell {
  -webkit-flex: 0 0 8.33333333%;
  flex: 0 0 8.33333333%;
}
.flex-grid .row.cell-auto-size .cell {
  -webkit-flex: 1 1 auto;
  flex: 1 1 auto;
}
.flex-grid .row .cell.colspan2 {
  -webkit-flex: 0 0 16.66666666%;
  flex: 0 0 16.66666666%;
}
.flex-grid .row .cell.colspan3 {
  -webkit-flex: 0 0 24.99999999%;
  flex: 0 0 24.99999999%;
}
.flex-grid .row .cell.colspan4 {
  -webkit-flex: 0 0 33.33333332%;
  flex: 0 0 33.33333332%;
}
.flex-grid .row .cell.colspan5 {
  -webkit-flex: 0 0 41.66666665%;
  flex: 0 0 41.66666665%;
}
.flex-grid .row .cell.colspan6 {
  -webkit-flex: 0 0 49.99999998%;
  flex: 0 0 49.99999998%;
}
.flex-grid .row .cell.colspan7 {
  -webkit-flex: 0 0 58.33333331%;
  flex: 0 0 58.33333331%;
}
.flex-grid .row .cell.colspan8 {
  -webkit-flex: 0 0 66.66666664%;
  flex: 0 0 66.66666664%;
}
.flex-grid .row .cell.colspan9 {
  -webkit-flex: 0 0 74.99999997%;
  flex: 0 0 74.99999997%;
}
.flex-grid .row .cell.colspan10 {
  -webkit-flex: 0 0 83.3333333%;
  flex: 0 0 83.3333333%;
}
.flex-grid .row .cell.colspan11 {
  -webkit-flex: 0 0 91.66666663%;
  flex: 0 0 91.66666663%;
}
.flex-grid .row .cell.colspan12 {
  -webkit-flex: 0 0 99.99999996%;
  flex: 0 0 99.99999996%;
}
.flex-grid .row .cell.size1 {
  -webkit-flex: 0 0 8.33333333%;
  flex: 0 0 8.33333333%;
}
.flex-grid .row .cell.size2 {
  -webkit-flex: 0 0 16.66666666%;
  flex: 0 0 16.66666666%;
}
.flex-grid .row .cell.size3 {
  -webkit-flex: 0 0 24.99999999%;
  flex: 0 0 24.99999999%;
}
.flex-grid .row .cell.size4 {
  -webkit-flex: 0 0 33.33333332%;
  flex: 0 0 33.33333332%;
}
.flex-grid .row .cell.size5 {
  -webkit-flex: 0 0 41.66666665%;
  flex: 0 0 41.66666665%;
}
.flex-grid .row .cell.size6 {
  -webkit-flex: 0 0 49.99999998%;
  flex: 0 0 49.99999998%;
}
.flex-grid .row .cell.size7 {
  -webkit-flex: 0 0 58.33333331%;
  flex: 0 0 58.33333331%;
}
.flex-grid .row .cell.size8 {
  -webkit-flex: 0 0 66.66666664%;
  flex: 0 0 66.66666664%;
}
.flex-grid .row .cell.size9 {
  -webkit-flex: 0 0 74.99999997%;
  flex: 0 0 74.99999997%;
}
.flex-grid .row .cell.size10 {
  -webkit-flex: 0 0 83.3333333%;
  flex: 0 0 83.3333333%;
}
.flex-grid .row .cell.size11 {
  -webkit-flex: 0 0 91.66666663%;
  flex: 0 0 91.66666663%;
}
.flex-grid .row .cell.size12 {
  -webkit-flex: 0 0 99.99999996%;
  flex: 0 0 99.99999996%;
}
.flex-grid .row .cell.size-p10 {
  -webkit-flex: 0 0 10%;
  flex: 0 0 10%;
}
.flex-grid .row .cell.size-p20 {
  -webkit-flex: 0 0 20%;
  flex: 0 0 20%;
}
.flex-grid .row .cell.size-p30 {
  -webkit-flex: 0 0 30%;
  flex: 0 0 30%;
}
.flex-grid .row .cell.size-p40 {
  -webkit-flex: 0 0 40%;
  flex: 0 0 40%;
}
.flex-grid .row .cell.size-p50 {
  -webkit-flex: 0 0 50%;
  flex: 0 0 50%;
}
.flex-grid .row .cell.size-p60 {
  -webkit-flex: 0 0 60%;
  flex: 0 0 60%;
}
.flex-grid .row .cell.size-p70 {
  -webkit-flex: 0 0 70%;
  flex: 0 0 70%;
}
.flex-grid .row .cell.size-p80 {
  -webkit-flex: 0 0 80%;
  flex: 0 0 80%;
}
.flex-grid .row .cell.size-p90 {
  -webkit-flex: 0 0 90%;
  flex: 0 0 90%;
}
.flex-grid .row .cell.size-p100 {
  -webkit-flex: 0 0 100%;
  flex: 0 0 100%;
}
.flex-grid .row .cell.size-x100 {
  -webkit-flex: 0 0 100px;
  flex: 0 0 100px;
}
.flex-grid .row .cell.size-x200 {
  -webkit-flex: 0 0 200px;
  flex: 0 0 200px;
}
.flex-grid .row .cell.size-x300 {
  -webkit-flex: 0 0 300px;
  flex: 0 0 300px;
}
.flex-grid .row .cell.size-x400 {
  -webkit-flex: 0 0 400px;
  flex: 0 0 400px;
}
.flex-grid .row .cell.size-x500 {
  -webkit-flex: 0 0 500px;
  flex: 0 0 500px;
}
.flex-grid .row .cell.size-x600 {
  -webkit-flex: 0 0 600px;
  flex: 0 0 600px;
}
.flex-grid .row .cell.size-x700 {
  -webkit-flex: 0 0 700px;
  flex: 0 0 700px;
}
.flex-grid .row .cell.size-x800 {
  -webkit-flex: 0 0 800px;
  flex: 0 0 800px;
}
.flex-grid .row .cell.size-x900 {
  -webkit-flex: 0 0 900px;
  flex: 0 0 900px;
}
.flex-grid .row .cell.size-x1000 {
  -webkit-flex: 0 0 1000px;
  flex: 0 0 1000px;
}
.flex-grid .row .cell.auto-size {
  -webkit-flex: 1 auto;
  flex: 1 auto;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 4px 16px;
  font-family: inherit;
  font-size: medium;
  color: #fff;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  background-color: #db7700;
  border: 2px solid transparent;
  outline: none;
  transition: all .25s 0s ease-in-out;
  border-radius: 2px;
}

.btn:hover,
.btn:focus {
	border: 2px solid rgba(255, 255, 255, 0.4);
	color: #fff;
	outline: none;
	text-decoration: none;
}

.btn:active,
.btn.active {
  background-color: #f58500;
  outline: none;
}

.btn.disabled,
.btn[disabled] {
  cursor: not-allowed;
  opacity: 0.6;
  outline: none;
}

.btn-large {
  padding: 11px 19px;
  font-size: large;
}

a.btn-large:hover {
  text-decoration: none;
}

.btn-small {
  padding: 2px 10px;
  font-size: 11.9px;
}

.btn-mini {
  padding: 0 6px;
  font-size: small;
}

.btn-block {
  display: block;
  width: 100%;
  padding-right: 0;
  padding-left: 0;
  box-sizing: border-box;
}

.btn-warning {
  background-color: #f5a932;
}

.btn-danger {
  background-color: #ce352c;
}

.btn-danger:active {
	background-color: #d6463e;
}

.btn-success {
  background-color: #60a917;
}

.btn-success:active {
	background-color: #6dbf1a;
}

.btn-info {
  background-color: #59cde2;
}

.btn-info:active {
  background-color: #6fd4e6;
}

.btn-inverse {
  background-color: #2b2b2b;
}

.btn-inverse:active {
  background-color: #383838;
}

button.btn::-moz-focus-inner,
input[type="submit"].btn::-moz-focus-inner {
  padding: 0;
  border: 0;
}

/* Command buttons */
.command {
	padding: 12px 14px;
	color: rgba(255, 255, 255, 0.3);
	font-size: smaller;
  transition: all .25s 0s ease-in-out;
  border-radius: 2px;
}

.command:hover,
.context-menu > li > a:hover {
	color: rgba(255, 255, 255, 1);
	background-color: rgba(255, 255, 255, 0.1);
  text-decoration: none;
  box-shadow: 0 3.2px 7.2px 0 rgba(0, 0, 0, .132), 0 .6px 1.8px 0 rgba(0, 0, 0, .108);
}

#meCommand {
  display: grid;
  grid-template-columns: repeat(4, auto);
  text-align: center;
  column-gap: 8px;
}

#meList .command {
	color: #fff;;
  border-radius: 4px;
  padding: 8px;
}

#meList .command:hover {
  background-color: rgba(43, 43, 43, .9);
}

/* Top Bar */
#topBar,
#topBar > .app-bar-menu {
	background-color: #2f2f2f;
	height: 55px;
}

#login input {
	padding: 4px 11px;
	font-size: large;
	border: none;
}

#mobileLogin {
	display: none;
}

.socialButton {
	height: 55px;
	min-width:  60px;
	font-size: 45px;
	color: #fff;
  line-height: 55px;
	text-align: center;
}

#facebookLike:hover {
	background-color: #1778f2;
}

#twitterFollow:hover {
	background-color: #1da1f3;
}

#spotify:hover {
	background-color: #1ed760;
}

#google:hover {
	background-color: #fab908;
}

#apple:hover {
	background: linear-gradient(to bottom, #f452ff 0%,#842bc1 100%);
	
}

#meUsername {
	float: left;
}

#meList {
	position: absolute;
	top: 63px;
	right: 15px;
	z-index: 20;
	width: 320px;
  background-color: transparent;
  line-height: initial;
}

#meContainer:hover {
	background-color: #2f2f2f;
}

.meItemGroup {
  background-color: rgba(43, 43, 43, .8);
  -webkit-backdrop-filter: blur(30px) saturate(125%);
  backdrop-filter: blur(30px) saturate(125%);
  border-radius: 4px;
}

/* Nav */
.app-bar {
  display: flex;
  width: 100%;
  min-height: 55px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-flow: row wrap;
  align-items: center;
}
.app-bar .app-bar-container {
  background-color: inherit;
  color: inherit;
}
.app-bar .brand,
.app-bar .app-bar-item,
.app-bar .app-bar-container {
	display: flex;
	align-items: center;
  	position: relative;
  	height: 55px;
  	line-height: 55px;
  	padding: 0 16px;
  	background-color: inherit;
  	color: inherit;
  	text-decoration: none;
	flex-shrink: 0;
}
.app-bar .app-bar-container {
  padding: 0;
}

.app-bar .app-bar-item {
  white-space: nowrap;
}

.app-bar .app-bar-menu {
	flex-shrink: 0;
  	list-style: none inside;
  	margin: 0;
  	padding: 0;
  	position: relative;
  	width: 100%;
  	display: flex;
    flex-wrap: nowrap;
  	-webkit-box-orient: vertical;
  	-webkit-box-direction: normal;
  	flex-direction: column;
  	background-color: inherit;
  	color: inherit;
  	z-index: 1049;
}

.app-bar .app-bar-menu > li,
.app-bar .app-bar-menu > li > a {
  display: block;
  line-height: 55px;
  background-color: inherit;
  flex-shrink: 0;
}

.app-bar .app-bar-menu > li > a {
  padding: 0 16px;
  text-decoration: none;
  font-size: 16px;
  color: #fff;
  font-weight: 300;
}

.app-bar .brand:not(.no-hover):hover,
.app-bar .app-bar-menu li:hover,
.app-bar .hamburger:hover,
.app-bar .app-bar-item:hover,
.app-bar .brand:not(.no-hover):active,
.app-bar .app-bar-menu li:active,
.app-bar .hamburger:active,
.app-bar .app-bar-item:active,
.app-bar .brand:not(.no-hover) .active,
.app-bar .app-bar-menu li .active,
.app-bar .hamburger .active,
.app-bar .app-bar-item .active {
  background-color: #464646;
}
.app-bar .hamburger {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  height: 55px;
  width: 55px;
}
.app-bar .hamburger.menu-down.active .line:nth-child(1),
.app-bar .hamburger.menu-down.active .line:nth-child(3) {
  margin: -4px 16px;
}
.app-bar .app-bar-menu .d-menu,
.app-bar .app-bar-menu .v-menu {
  position: relative;
  width: 100%;
  background-color: #2f2f2f;
}
.app-bar .app-bar-container .d-menu {
  background-color: #f8f8f8;
  position: absolute;
  width: auto;
}
.app-bar .app-bar-container .d-menu li,
.app-bar .app-bar-container .d-menu a {
  height: 38px;
  line-height: 38px;
}
.app-bar .app-bar-container .v-menu {
  position: absolute;
  float: left;
  width: auto;
  border: 1px solid #db7700;
  background-color: #2f2f2f;
}
.app-bar .app-bar-container > .d-menu,
.app-bar .app-bar-container > .v-menu {
  top: 100%;
}
.app-bar .app-bar-container a {
  color: inherit;
  text-decoration: none;
}
.app-bar a {
  outline: none!important;
}
.app-bar .app-bar-input {
  width: 100px;
  height: 30px;
  font-size: .875rem;
  border: none!important;
  border-radius: 4px;
}
.app-bar .hamburger:not(.hidden) ~ .ml-auto {
  margin-right: 48px;
}
.d-menu,
.v-menu {
  position: absolute;
  display: none;
  float: left;
  width: auto;
  margin: 0;
  padding: 0;
  list-style: none inside none;
  color: #fff;
}
.d-menu.open,
.v-menu.open {
  display: block!important;
}
.d-menu.place-right,
.v-menu.place-right {
  left: auto;
  right: 0;
}
.d-menu {
  z-index: 1000;
}
.d-menu li,
.v-menu li,
.d-menu a,
.v-menu a {
  display: block;
  float: none;
  position: relative;
  cursor: pointer;
  color: inherit;
  background-color: inherit;
  height: auto;
}
.d-menu li a,
.v-menu li a {
  font-size: .875rem;
  padding: 0 2rem 0 2.5rem;
  line-height: 45px;
  height: 45px;
  text-decoration: none;
  vertical-align: middle;
  white-space: nowrap;
  min-width: 12.5rem;
  border: none;
}
.d-menu li a img,
.v-menu li a img,
.d-menu li a .icon,
.v-menu li a .icon {
  display: block;
  position: absolute;
  text-align: center;
  text-decoration: none;
  font-size: 1.2rem;
  left: .5rem;
  top: .8rem;
  width: 1.2rem;
  height: 1.2rem;
  color: inherit;
}
.d-menu li a img::before,
.v-menu li a img::before,
.d-menu li a .icon::before,
.v-menu li a .icon::before {
  position: absolute;
  top: 0;
  left: 0;
  line-height: 1.2rem;
}
.d-menu li.active,
.v-menu li.active {
  border-left: 2px solid;
  border-color: #dfdfdf;
}
.d-menu li.active > a,
.v-menu li.active > a {
  background-color: #5ebdec;
  color: #ffffff;
  font-weight: bold;
}
.d-menu li:hover,
.v-menu li:hover {
  text-decoration: none;
  background-color: rgba(29, 29, 29, 0.1);
}
.d-menu li:hover > a,
.v-menu li:hover > a,
.d-menu li:hover .icon,
.v-menu li:hover .icon {
  color: inherit;
}
.d-menu li a[data-hotkey],
.v-menu li a[data-hotkey] {
  padding-right: 3.2rem;
}
.d-menu li a[data-hotkey]::after,
.v-menu li a[data-hotkey]::after {
  content: attr(data-hotkey);
  position: absolute;
  right: 1.2rem;
  width: auto;
  font-size: .8em;
}
.d-menu li a.dropdown-toggle::before,
.v-menu li a.dropdown-toggle::before {
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
}
.d-menu li a.dropdown-toggle.active-toggle::before,
.v-menu li a.dropdown-toggle.active-toggle::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.d-menu .divider,
.v-menu .divider {
  padding: 0;
  height: 1px;
  margin: 0 1px;
  overflow: hidden;
  background-color: #f2f2f2;
  cursor: default;
  pointer-events: none;
}
.d-menu .divider:hover,
.v-menu .divider:hover {
  background-color: #f2f2f2;
}
.d-menu.disabled,
.v-menu.disabled {
  cursor: default;
  pointer-events: none;
}
.d-menu.disabled a,
.v-menu.disabled a {
  color: #e4e4e4;
}
.d-menu.context li a {
  height: 32px;
  line-height: 32px;
  font-size: .75rem;
  padding: 0 2rem 0 2.5rem;
}
.d-menu.context li a .icon {
  width: .92rem;
  height: .92rem;
  font-size: .92rem;
  margin-top: -0.3rem;
}
.v-menu {
  display: block;
  position: relative;
  width: 100%;
  float: none;
}
.v-menu .v-menu {
  display: none;
  min-width: 0;
  position: relative;
  width: 100%;
  left: 0 ;
  right: 0 ;
  top: 100%;
  box-shadow: none;
}
.v-menu .menu-title {
  background-color: #f6f7f8;
  font-size: 12px;
  line-height: 22px;
  height: 22px;
  padding: 0 8px;
  border: 0;
  color: #646464;
  font-weight: bold;
  pointer-events: none;
}
.v-menu .menu-title:first-child {
  margin: 0;
  border-top-width: 0;
}
.v-menu .menu-title:first-child:hover {
  border-top-width: 0;
}
.v-menu .menu-title:hover {
  background-color: #f6f7f8;
  cursor: default;
  border: 0;
}
.v-menu.dropdown {
  position: absolute;
  float: left;
  width: auto;
  top: 100%;
  border: 1px solid #dfdfdf;
}
.d-menu .d-menu,
.v-menu .d-menu,
.d-menu .v-menu,
.v-menu .v-menu {
  left: 100%;
  top: -0.5rem;
}
@media screen and (min-width: 0) {
  .app-bar.app-bar-expand-fs {
        flex-wrap: nowrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
            flex-flow: row;
  }
  .app-bar.app-bar-expand-fs .brand,
  .app-bar.app-bar-expand-fs .app-bar-item,
  .app-bar.app-bar-expand-fs .app-bar-container {
    width: auto;
    -ms-flex-negative: 1;
        flex-shrink: 1;
  }
  .app-bar.app-bar-expand-fs .app-bar-menu {
    float: left;
  }
  .app-bar.app-bar-expand-fs .app-bar-menu {
    width: auto;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
            flex-direction: row;
  }
  .app-bar.app-bar-expand-fs .app-bar-menu .d-menu {
    position: absolute;
    width: auto;
    -webkit-box-shadow: 2px 2px 2px 0 rgba(227, 228, 229, 0.7), -0.5px 0 1px 0 rgba(227, 228, 229, 0.7);
            box-shadow: 2px 2px 2px 0 rgba(227, 228, 229, 0.7), -0.5px 0 1px 0 rgba(227, 228, 229, 0.7);
  }
  .app-bar.app-bar-expand-fs .app-bar-menu .d-menu li,
  .app-bar.app-bar-expand-fs .app-bar-menu .d-menu a {
    height: 38px;
    line-height: 38px;
  }
  .app-bar.app-bar-expand-fs .app-bar-menu .v-menu {
    position: absolute;
    float: left;
    width: auto;
    border: 1px solid #dfdfdf;
    background-color: #ffffff;
  }
  .app-bar.app-bar-expand-fs .app-bar-menu.collapsed {
    display: -webkit-box!important;
    display: flex!important;
  }
  .app-bar.app-bar-expand-fs .hamburger {
    display: none;
  }
}
@media screen and (min-width: 576px) {
  .app-bar.app-bar-expand-sm {
        flex-wrap: nowrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
            flex-flow: row;
  }
  .app-bar.app-bar-expand-sm .brand,
  .app-bar.app-bar-expand-sm .app-bar-item,
  .app-bar.app-bar-expand-sm .app-bar-container {
    width: auto;
    -ms-flex-negative: 1;
        flex-shrink: 1;
  }
  .app-bar.app-bar-expand-sm .app-bar-menu {
    float: left;
  }
  .app-bar.app-bar-expand-sm .app-bar-menu {
    width: auto;
    -webkit-box-orient: horizontal;
            flex-direction: row;
  }
  .app-bar.app-bar-expand-sm .app-bar-menu .d-menu {
    position: absolute;
    width: auto;
    -webkit-box-shadow: 2px 2px 2px 0 rgba(227, 228, 229, 0.7), -0.5px 0 1px 0 rgba(227, 228, 229, 0.7);
            box-shadow: 2px 2px 2px 0 rgba(227, 228, 229, 0.7), -0.5px 0 1px 0 rgba(227, 228, 229, 0.7);
  }
  .app-bar.app-bar-expand-sm .app-bar-menu .d-menu li,
  .app-bar.app-bar-expand-sm .app-bar-menu .d-menu a {
    height: 38px;
    line-height: 38px;
  }
  .app-bar.app-bar-expand-sm .app-bar-menu .v-menu {
    position: absolute;
    float: left;
    width: auto;
    border: 1px solid #dfdfdf;
    background-color: #ffffff;
  }
  .app-bar.app-bar-expand-sm .app-bar-menu.collapsed {
    display: -webkit-box!important;
    display: flex!important;
  }
  .app-bar.app-bar-expand-sm .hamburger {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .app-bar.app-bar-expand-md {
        flex-wrap: nowrap;
        flex-flow: row;
  }
  .app-bar.app-bar-expand-md .brand,
  .app-bar.app-bar-expand-md .app-bar-item,
  .app-bar.app-bar-expand-md .app-bar-container {
    width: auto;
    -ms-flex-negative: 1;
        flex-shrink: 1;
  }
  .app-bar.app-bar-expand-md .app-bar-menu {
    float: left;
  }
  .app-bar.app-bar-expand-md .app-bar-menu {
    width: auto;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
            flex-direction: row;
  }
  .app-bar.app-bar-expand-md .app-bar-menu .d-menu {
    position: absolute;
    width: auto;
  }
  .app-bar.app-bar-expand-md .app-bar-menu .d-menu li,
  .app-bar.app-bar-expand-md .app-bar-menu .d-menu a {
    height: 38px;
    line-height: 38px;
  }
  .app-bar.app-bar-expand-md .app-bar-menu .v-menu {
    position: absolute;
    float: left;
    width: auto;
    border: 1px solid #dfdfdf;
    background-color: #ffffff;
  }
  .app-bar.app-bar-expand-md .app-bar-menu.collapsed {
    display: -webkit-box!important;
    display: flex!important;
  }
  .app-bar.app-bar-expand-md .hamburger {
    display: none;
  }
}
@media screen and (min-width: 992px) {
  .app-bar.app-bar-expand-lg {
        flex-wrap: nowrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
            flex-flow: row;
  }
  .app-bar.app-bar-expand-lg .brand,
  .app-bar.app-bar-expand-lg .app-bar-item,
  .app-bar.app-bar-expand-lg .app-bar-container {
    width: auto;
    flex-shrink: 1;
  }
  .app-bar.app-bar-expand-lg .app-bar-menu {
    float: left;
  }
  .app-bar.app-bar-expand-lg .app-bar-menu {
    width: auto;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
            flex-direction: row;
  }
  .app-bar.app-bar-expand-lg .app-bar-menu .d-menu {
    position: absolute;
    width: auto;
  }
  .app-bar.app-bar-expand-lg .app-bar-menu .d-menu li,
  .app-bar.app-bar-expand-lg .app-bar-menu .d-menu a {
    height: 38px;
    line-height: 38px;
  }
  .app-bar.app-bar-expand-lg .app-bar-menu .v-menu {
    position: absolute;
    float: left;
    width: auto;
    border: 1px solid #dfdfdf;
    background-color: #ffffff;
  }
  .app-bar.app-bar-expand-lg .app-bar-menu.collapsed {
    display: -webkit-box!important;
    display: flex!important;
  }
  .app-bar.app-bar-expand-lg .hamburger {
    display: none;
  }
}
@media screen and (min-width: 1200px) {
  .app-bar.app-bar-expand-xl {
        flex-wrap: nowrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
            flex-flow: row;
  }
  .app-bar.app-bar-expand-xl .brand,
  .app-bar.app-bar-expand-xl .app-bar-item,
  .app-bar.app-bar-expand-xl .app-bar-container {
    width: auto;
    flex-shrink: 1;
  }
  .app-bar.app-bar-expand-xl .app-bar-menu {
    float: left;
  }
  .app-bar.app-bar-expand-xl .app-bar-menu {
    width: auto;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
            flex-direction: row;
  }
  .app-bar.app-bar-expand-xl .app-bar-menu .d-menu {
    position: absolute;
    width: auto;
  }
  .app-bar.app-bar-expand-xl .app-bar-menu .d-menu li,
  .app-bar.app-bar-expand-xl .app-bar-menu .d-menu a {
    height: 38px;
    line-height: 38px;
  }
  .app-bar.app-bar-expand-xl .app-bar-menu .v-menu {
    position: absolute;
    float: left;
    width: auto;
    border: 1px solid #dfdfdf;
    background-color: #ffffff;
  }
  .app-bar.app-bar-expand-xl .app-bar-menu.collapsed {
    display: -webkit-box!important;
    display: flex!important;
  }
  .app-bar.app-bar-expand-xl .hamburger {
    display: none;
  }
}
@media screen and (min-width: 1452px) {
  .app-bar.app-bar-expand-xxl {
        flex-wrap: nowrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
            flex-flow: row;
  }
  .app-bar.app-bar-expand-xxl .brand,
  .app-bar.app-bar-expand-xxl .app-bar-item,
  .app-bar.app-bar-expand-xxl .app-bar-container {
    width: auto;
    -ms-flex-negative: 1;
        flex-shrink: 1;
  }
  .app-bar.app-bar-expand-xxl .app-bar-menu {
    float: left;
  }
  .app-bar.app-bar-expand-xxl .app-bar-menu {
    width: auto;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
            flex-direction: row;
  }
  .app-bar.app-bar-expand-xxl .app-bar-menu .d-menu {
    position: absolute;
    width: auto;
    -webkit-box-shadow: 2px 2px 2px 0 rgba(227, 228, 229, 0.7), -0.5px 0 1px 0 rgba(227, 228, 229, 0.7);
            box-shadow: 2px 2px 2px 0 rgba(227, 228, 229, 0.7), -0.5px 0 1px 0 rgba(227, 228, 229, 0.7);
  }
  .app-bar.app-bar-expand-xxl .app-bar-menu .d-menu li,
  .app-bar.app-bar-expand-xxl .app-bar-menu .d-menu a {
    height: 38px;
    line-height: 38px;
  }
  .app-bar.app-bar-expand-xxl .app-bar-menu .v-menu {
    position: absolute;
    float: left;
    width: auto;
    border: 1px solid #dfdfdf;
    background-color: #ffffff;
  }
  .app-bar.app-bar-expand-xxl .app-bar-menu.collapsed {
    display: -webkit-box!important;
    display: flex!important;
  }
  .app-bar.app-bar-expand-xxl .hamburger {
    display: none;
  }
}
.hamburger {
  display: inline-block;
  font-weight: 400;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  border: 1px solid transparent;
  padding: 0;
  font-size: 14px;
  line-height: 36px;
  transition: all 0.15s ease-in-out;
  background-color: transparent;
  color: #ffffff;
  cursor: pointer;
  outline: none;
  width: 36px;
  height: 36px;
}
.hamburger .line {
  width: 30px;
  background-color: #ffffff;
  display: block;
  transition: all 0.3s ease-in-out;
  height: 3px;
  margin: 4px auto;
}
.hamburger.dark .line {
  background-color: #1d1d1d;
}
.hamburger.menu-down .line:nth-child(2) {
  -webkit-transition-delay: .3s;
          transition-delay: .3s;
}
.hamburger.menu-down.active {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.hamburger.menu-down.active .line:nth-child(2) {
  opacity: 0;
  -webkit-transition: none;
  transition: none;
}
.hamburger.menu-down.active .line:nth-child(1),
.hamburger.menu-down.active .line:nth-child(3) {
  width: 20px;
  -webkit-transform-origin: right;
          transform-origin: right;
  margin: -4px 8px;
}
.hamburger.menu-down.active .line:nth-child(1) {
  -webkit-transform: rotate(45deg) translateY(6px);
          transform: rotate(45deg) translateY(6px);
}
.hamburger.menu-down.active .line:nth-child(3) {
  -webkit-transform: rotate(-45deg) translateY(-6px);
          transform: rotate(-45deg) translateY(-6px);
}
.clearfix:before,
.clearfix:after {
  display: table;
  content: "";
}
.clearfix:after {
  clear: both;
}

.navbar-collapse {
  padding-right: 15px;
  padding-left: 15px;
  overflow-x: visible;
}

.navbar-collapse.in {
  overflow-y: auto;
}

@media (min-width: 768px) {
  .navbar-collapse {
    width: auto;
    border-top: 0;
  }
  .navbar-collapse.collapse {
    display: block !important;
    height: auto !important;
    padding-bottom: 0;
    overflow: visible !important;
  }
  .navbar-collapse.in {
    overflow-y: visible;
  }
}

#subNav {
	text-align: center;
	margin: auto;
	margin-top: 1em;
}

#subNavList li {
	display: inline;
	list-style-type: none;
}

#subNavList a:hover,
.favouriteDelete:hover,
#meUsername:hover {
	text-decoration: none;
}

.subNav {
	background-color: transparent;
	margin-right: 5px;
	font-weight: 600;
	color: #ffffff;
	border: none;
}

.subNav:hover {
	color: #fff;
}

#rss:hover,
#episode-archive:hover,
#submit-an-intro:hover,
#ask:hover,
#questions:hover,
#chat:hover,
#live:hover,
#backend:hover {
	background-image: url('/assets/images/nav/rss-colour.svg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
}

#episode-archive:hover {
	background-image: url('/assets/images/nav/episode-archive-colour.svg');
}

#submit-an-intro:hover {
	background-image: url('/assets/images/nav/submit-an-intro-colour.svg');
}

#ask:hover {
	background-image: url('/assets/images/nav/ask-a-question-colour.svg');
}

#questions:hover {
	background-image: url('/assets/images/nav/questions-colour.svg');	
}

#chat:hover {
	background-image: url('/assets/images/nav/chat-colour.svg');
}

#live:hover {
	background-image: url('/assets/images/nav/live-colour.svg');
}

#backend:hover {
	background-image: url('/assets/images/nav/backend.svg');
}

button img, .subNav img, .rateImage, .aboutIcon {
	vertical-align: middle;
}

.subNav {
	padding: 3px 11px;
	background-color: transparent;
	color: #bbbbbb;
	opacity: 0.7;
}

.subNav:hover {
	opacity: 1;
	text-decoration: none;
}

/* Scroll UI */
#toTop {
	display:none;
	text-decoration:none;
	position:fixed;
	bottom:10px;
	right:10px;
	overflow:hidden;
	width:51px;
	height:51px;
	border:none;
	text-indent:100%;
	background:url(images/to-top.svg) no-repeat left top;
}

#toTopHover {
	background:url(images/to-top.svg) no-repeat left -51px;
	width:51px;
	height:51px;
	display:block;
	overflow:hidden;
	float:left;
	opacity: 0;
}

#toTop:active, #toTop:focus {
	outline:none;
}

/* Pagination */
#loading {
	position: absolute;
	top: 50%;
	left: 50%;
}
	
.pagination-new,
.dataTables_paginate {
  margin-top: 20px;
}

.pagination-new ul {
  display: inline-block;
  margin-bottom: 0;
  margin-left: 0;
}

.pagination-new ul > li {
  display: inline;
}

.pagination-new ul > li > a,
.pagination-new ul > li > span,
.paginate_button,
.ellipsis {
  padding: 11px 19px;
  text-decoration: none;
  margin: 0 2px;
  color: #bbb;
  cursor: pointer;
  background-color: #1f1f1f;
  box-shadow: 0 1.6px 3.6px 0 rgba(0, 0, 0, .132), 0 .3px .9px 0 rgba(0, 0, 0, .108);
  transition: all .25s 0s ease-in-out;
  border-radius: 2px;
}

.pagination-new ul > li > a:hover,
.pagination-new ul > .active > a,
.pagination-new ul > .active > span,
.paginate_button:hover {
	background-color: rgba(255, 255, 255, .1);
	text-decoration: none;
	color: #fff;
}

.pagination-new ul > .active > a,
.pagination-new ul > .active > span,
.paginate_button.current {
  color: #fff;
  cursor: default;
  background-color: #db7700;
}

.pagination-new ul > .disabled > span,
.pagination-new ul > .disabled > a,
.pagination-new ul > .disabled > a:hover,
.ellipsis {
  cursor: default;
  box-shadow: rgba(255, 255, 255, 0.2) 0px 0px 0px 2px inset;
  background-color: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.2);
}

.pager {
  margin: 20px 0;
  text-align: center;
  list-style: none;
  *zoom: 1;
}

.pager:before,
.pager:after {
  display: table;
  line-height: 0;
  content: "";
}

.pager:after {
  clear: both;
}

.pager li {
  display: inline;
}

.pager li > a,
.pager li > span {
  display: inline-block;
  padding: 5px 14px;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 15px;
}

.pager li > a:hover {
  text-decoration: none;
  background-color: #f5f5f5;
}

.pager .next > a,
.pager .next > span {
  float: right;
}

.pager .previous > a,
.pager .previous > span {
  float: left;
}

.pager .disabled > a,
.pager .disabled > a:hover,
.pager .disabled > span {
  color: #999999;
  cursor: default;
  background-color: #fff;
}

/* Content */
article {
	margin-right: auto;
  	margin-left: auto;
	margin-top: 20px;
  	padding-left: 15px;
  	padding-right: 15px;
	width: 100%;
	max-width: 90%;
}

@media (min-width: 1024px) {
  article {
    max-width: 1024px;
  }
}
@media (min-width: 1366px) {
  article {
    max-width: 1366px;
  }
}
@media (min-width: 1600px) {
  article {
    max-width: 1600px;
  }
}

#questionList, .dataTable {
	width: 100%;
}

#questionList_wrapper {
	display: table;
}

#questionList tr:nth-child(even), .dataTable tr:nth-child(even) {
	background-color: #1f1f1f;
}

#questionList thead, .dataTable thead {
	color: #fff;
	font-size: large;
}

#questionList td, .dataTable td {
	padding: 0.625rem 0.85rem;
	vertical-align: middle;
}

.dataTables_filter,
.dataTables_processing {
	text-align: center;
}

.tableDate, .tableRating {
	text-align: center;
	font-size: x-large;
}

.tableName {
	text-align: right;
}

table.tablesorter thead tr th, table.tablesorter tfoot tr th {
	font-weight: 600;
	border-bottom: 1px solid #2b2b2b;
	padding: 4px;
}

table.tablesorter thead tr .header {
	cursor: pointer;
}

table.tablesorter thead tr .headerSortDown, table.tablesorter thead tr .headerSortUp {
background-color: #DB7700;
}

.avatar, .CHATavatar {
	width: 70px;
	height: 70px;
	image-rendering: pixelated;
}

.CHATavatar {
	float: left;
	margin-left: -55px;
	margin-right: 10px;
}

/* Modals */
.fade {
  opacity: 0;
  transition: opacity .15s linear;
}

.fade.in {
  opacity: 1;
}

.modal-open {
  overflow: hidden;
}

.modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  display: none;
  overflow: hidden;
  -webkit-overflow-scrolling: touch;
  outline: 0;
}

.modal.fade .modal-dialog {
  transition: transform .3s ease-out;
  -webkit-transform: translate3d(0, -25%, 0);
  transform: translate3d(0, -25%, 0);
}
.modal.in .modal-dialog {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.modal-dialog {
  position: relative;
  width: auto;
  margin: 10px;
}
.modal-content {
  position: relative;
  background-color: #2b2b2b;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all .25s 0.25s ease-in-out;
  padding: 16px;
}
.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  background-color: #000;
}
.modal-backdrop.fade {
  opacity: 0;
}
.modal-backdrop.in {
  opacity: .5;
}
.modal-header {
  min-height: 16.42857143px;
}
.modal-header .close {
  margin-top: -2px;
}
.modal-title {
  margin: 0;
  line-height: 1.42857143;
  color: #fff;
}
.modal-body {
  position: relative;
}
.modal-footer {
  padding-top: 10px;
  text-align: right;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.modal-footer .btn + .btn {
  margin-bottom: 0;
  margin-left: 5px;
}
.modal-footer .btn-group .btn + .btn {
  margin-left: -1px;
}
.modal-footer .btn-block + .btn-block {
  margin-left: 0;
}
.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 768px) {
  .modal-dialog {
    width: 600px;
    margin: 30px auto;
  }
  .modal-sm {
    width: 300px;
  }
}
@media (min-width: 992px) {
  .modal-lg {
    width: 900px;
  }
}

/* Dialogs */
.dialog {
  position: fixed;
  display: block;
  width: auto;
  height: auto;
  float: left;
  background-color: rgba(43, 43, 43, 0.8);
  z-index: 1050;
  text-align: center;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 2px;
  -webkit-backdrop-filter: blur(30px) saturate(125%);
  backdrop-filter: blur(30px) saturate(125%);
}
.dialog-actions {
	text-align: right;
	margin-top: 10px;
}
.dialog h1 {
	font-size: 80px;
}
.dialog input {
	width: 300px;
}
.dialog.success {
  background-color: #60a917;
  color: #ffffff;
}
.dialog.warning {
  background-color: #fa6800;
  color: #ffffff;
}
.dialog.alert {
  background-color: #ce352c;
  color: #ffffff;
}
.dialog.info {
  background-color: #1ba1e2;
  color: #ffffff;
}
.overlay {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1049;
	width: 100%;
}

@media (max-width: 768px) {
	.dialog h1 {
		font-size: 70px;
	}
}

/* Notifications */
.notify {
	display: block;
	cursor: pointer;
	padding: 14px;
	background: rgba(43, 43, 43, 0.8);
	border: 1px solid rgba(255, 255, 255, 0.2);
	-webkit-backdrop-filter: blur(30px) saturate(125%);
	backdrop-filter: blur(30px) saturate(125%);
	position: absolute;
	top: 55px;
	right: 15px;
}

.notify-success {
  background: linear-gradient(40deg, rgba(96, 169, 23, 0.8), rgba(109,191,26,0.8));
}

/* Tooltips */
.tooltip {
  position: absolute;
  z-index: 1030;
  display: block;
  padding: 5px;
  font-size: x-small;
  opacity: 0;
  visibility: visible;
}

.tooltip.in {
  opacity: 0.8;
}

.tooltip.top {
  margin-top: -3px;
}

.tooltip.right {
  margin-left: 3px;
}

.tooltip.bottom {
  margin-top: 3px;
}

.tooltip.left {
  margin-left: -3px;
}

.tooltip-inner {
	max-width: 200px;
	padding: 8px 9px;
	color: #fff;
	text-align: center;
	text-decoration: none;
	background-color: #1f1f1f;
	box-shadow: 0 3.2px 7.2px 0 rgba(0,0,0,.132),0 .6px 1.8px 0 rgba(0,0,0,.108);
  border: 1px solid rgba(0, 0, 0,.1);
  border-radius: 2px;
}

.tooltip-arrow {
  position: absolute;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
}

.tooltip.top .tooltip-arrow {
  bottom: 0;
  left: 50%;
  margin-left: -5px;
  border-top-color: #1f1f1f;
  border-width: 5px 5px 0;
}

.tooltip.right .tooltip-arrow {
  top: 50%;
  left: 0;
  margin-top: -5px;
  border-right-color: #1f1f1f;
  border-width: 5px 5px 5px 0;
}

.tooltip.left .tooltip-arrow {
  top: 50%;
  right: 0;
  margin-top: -5px;
  border-left-color: #1f1f1f;
  border-width: 5px 0 5px 5px;
}

.tooltip.bottom .tooltip-arrow {
  top: 0;
  left: 50%;
  margin-left: -5px;
  border-bottom-color: #1f1f1f;
  border-width: 0 5px 5px;
}

/* Rating Popup */
.rateImage {
	margin-left: 1em;
	width: 65px;
	height: 65px;
	transform: perspective(1px) translateZ(0);
	transition-duration: 0.3s;
	transition-property: transform;
}

.rateImage:hover {
	transform: scale(1.1);
}

#alertSignIn {
    width:360px;
    height:189px;
    padding:8px;
    position:absolute !important;
    top:50% !important;
    left:50% !important;
    margin-top:-94px !important;
    margin-left:-180px !important;
    z-index: 2;
    visibility: hidden;
}

#alertMessageSignIn {
    width: 360px;
    height: 144px;
    background-color: #222222;
    box-shadow: 0px 1px 3px rgba(0,0,0,.25);
}

h3 {
    text-align: center;
    line-height: 22px;
    width:100%;
    margin:19px 0;
}

/* Tiles */
#container .content .tile, #container .content .tile-small {
	margin: 9.7px;
	flex: 1 1 auto;
}

.tile, .tile-small, .tile-tiny, .tile-wide, .tile-content {
	position: relative;
  display: block;
  border-radius: 2px;
	background-color: #1f1f1f;
	box-shadow: 0 1.6px 3.6px 0 rgba(0, 0, 0, .132), 0 .3px .9px 0 rgba(0, 0, 0, .108);
	width: 345px;
	height: 150px;
	padding: 12px;
	transition: all .3s cubic-bezier(.8, 0, .2, 1);
	color: inherit;
}

.tile:hover, .tile-small:hover, .tile-tiny:hover, .tile-wide:hover, .tile-content:hover {
  transform: translate3d(0%, -4px, 0);
  text-decoration: none;
	box-shadow: 0 6.4px 14.4px 0 rgba(0, 0, 0, .132), 0 1.2px 3.6px 0 rgba(0, 0, 0, .108);
}

.tile-content:hover {
	color: #bbb;
}

.tile-small {
	width: 150px;
}

.tile-tiny {
	width: 75px;
	height: 75px;
}

.tile-wide {
  width: 310px;
  height: 150px;
  padding: 0;
}

.tile-content {
	height: 326px;
	width: 100%;
}

.tile-wide > .tile-label {
  background-color: rgba(0, 0, 0, 0.8);
}

.text-inner {
  width: 110px;
  height: 110px;
  padding: 20px;
}

.tile-label {
	position: absolute;
	top: 0;
	left: 0;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	width: 100%;
	height: 100%;
	font-size: larger;
	font-weight: 300;
	background: rgba(0, 0, 0, 0) linear-gradient(0deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.25) 35%, transparent 100%) repeat scroll 0% 0%;
	transition: backdrop-filter .25s linear;
}

.tile-label > span {
	position: relative;
	bottom: 5px;
	left: 10px;
	max-width: 145px;
}

.tile-image > .tile-label:hover {
	-webkit-backdrop-filter: blur(5px);
	backdrop-filter: blur(5px);
	
}

.tile-label2 {
	position: absolute;
	bottom: 5px;
	right: 20px;
}

ol .tile {
	margin-bottom: 1em;
}

.tile-item-image {
	margin-bottom: 24px;
	height: 55px;
	width: 55px;
	margin-right: 16px;
	text-align: center;
	color: #fff;
	float: left;
}

.no-hover:hover {
	transform: none;
	box-shadow: 0 1.6px 3.6px 0 rgba(0, 0, 0, .132), 0 .3px .9px 0 rgba(0, 0, 0, .108);
	color: #bbb;
}

.column-text {
	display: block;
	float: left;
	width: 270px;
	padding-left: 10px;
}

.text-header {
	font-family: "Segoe UI", "Open Sans", Arial, sans-serif;
	font-weight: 300;
	font-size: 32px;
	line-height: 32px;
	word-wrap: break-word;
}

.image-wrapper {
	float: left;
}

.tile-image {
	background-position: center;
	background-size: cover;
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}

.image-tile {
	width: 125px;
	height: 125px;
}

.tile-image-main {
	height: 150px;
	float: left;
}

.image-set .img {
	background-size: cover;
	height: 50%;
	width: 25%;
	float: left;
}

.image-set .img:nth-child(1) {
	height: 100%;
	width: 50%;
}

/* Lists */
.listview.grid-layout {
  padding: 2px;
  overflow-y: auto;
}

.listview.grid-layout .listview-item {
  margin-right: 24px;
}

.listview.list-layout {
  width: 330px;
}

.listview.list-layout.big {
  width: 430px;
}

a.listview-item {
	color: inherit;
}

.listview-item {
  position: relative;
  display: inline-block;
  width: 282px;
  min-height: 60px;
  padding: 20px;
  margin-bottom: 15px;
  overflow: hidden;
  *overflow: visible;
  vertical-align: top;
  border: 1px solid #bbbbbb;
  zoom: 1;
  transition: color, background-color .25s linear;
}

.listview-item:hover {
  background-color: #2e2e2e;
  text-decoration: none;
}

.listview-item-body {
  overflow: hidden;
  *overflow: visible;
  zoom: 1;
}

.listview-item-body p {
  height: 20px;
  margin: 0;
  overflow: hidden;
  line-height: 20px;
  text-overflow: ellipsis;
}

.listview-item-body p.two-lines {
  height: 40px;
  line-height: 20px;
}

.listview-item-body p.three-lines {
  height: 60px;
  line-height: 20px;
}

.listview-item-object {
  display: block;
  width: 60px;
  height: 60px;
  margin-right: 10px;
}

.listview-item-heading {
  margin: 0 0 5px;
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: x-large;
}

.listview-item-subheading {
  margin: 0 0 5px;
  margin: 0;
  overflow: hidden;
  color: #eeeeee;
  text-overflow: ellipsis;
}

.listview-item.big {
  width: 380px;
  height: 150px;
}

.listview-item.big .listview-item-object {
  display: block;
  width: 112px;
  height: 112px;
  margin-right: 10px;
}

/* Profiles */
#profileHeader {
	display: flex;
	align-items: center;
	padding-top: 40px;
	padding-bottom: 40px;
	margin-bottom: 24px;
}

#avatarProfile {
	width: 150px;
	height: 150px;
	margin-right: 15px;
}

.profileLink {
	width: 100%;
	height: 42px;
	transition: all 1300ms cubic-bezier(.16, 1, .29, .99);
	display: flex;
	align-items: center;
}

.profileLink i {
	margin-right: 10px;
}

.profileLink:hover {
	background-color: #2E2E2E;
}

#profileHeader a.nav, #profileHeader i {
	color: #fff;
}

#profileHeader a.nav {
	font-size: x-large;
	font-weight: 300;
	display: block;
}

#profileHeader a.nav:hover {
	color: #e6e6e6;
	text-decoration: none;
}

#twitter > a > i {
	color: #1da1f2;
}

#discus > a > i {
	color: #2e9fff;
}

#xbl > a > i {
	color: #107c10;
}

#steam > a > i {
	color: #326081;
}

#twitter:hover {
	background-color: #1da1f2;
}

#discus:hover {
	background-color: #2e9fff;
}

#xbl:hover {
	background-color: #107c10;
}

#steam:hover {
	background-color: #326081;
}

#twitter:hover > a, #twitter:hover > a > i, #discus:hover > a, #discus:hover > a > i, #xbl:hover > a, #xbl:hover > a > i, #steam:hover > a, #steam:hover > a > i {
	color: #fff;
}

#rank, .favouriteBox {
	font-size: xx-large;
	font-weight: 300;
	padding-bottom: 5px;
}

#rank, .rank {
	font-size: large;
	font-weight: 300;
	text-shadow: 0 0 15px #dd7700;
	color: #dd7700;
}

.favouriteLink {
	margin-right: 1em;
	margin-bottom: 0.5em;
	transition: color .25s linear;
	opacity: 0.7;
	color: inherit;
}

.favouriteLink:hover, .tile:hover {
	opacity: 1;
}

.donut-title {
	font-weight: 300;
}

canvas {
	position: absolute;
	left: 0;
	top: 0;
}

.chart > span {
	font-size: xx-large;
	font-weight: 300;
	position: relative;
	left: -1.4em;
	line-height: 125px;
}

/* CHAT */
#container .content {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	width: 100%;
	justify-content: space-between;
}

.topicImage {
    vertical-align: bottom;
	color: #fff;
}

.nsfw {
	background-color: rgba(206, 53, 44, 0.2) !important
}

.top {
	background-color: rgba(37, 207, 197, 0.2) !important;
}

h4 {
	font-size: large;
	font-weight: 300;
	padding-bottom: 0.2em;
	font-family: "Segoe UI", "Open Sans", Arial, sans-serif;
}

.reply, .vipReply, .modReply, .topReply, .sponsorReply, .toastItem, article.news, .activityBubble {
	padding: 14px;
	margin-bottom: 20px;
	background-color: #1f1f1f;
  box-shadow: 0 1.6px 3.6px 0 rgba(0, 0, 0, .132), 0 .3px .9px 0 rgba(0, 0, 0, .108);
  border-radius: 2px;
}

.reply, .vipReply, .modReply, .topReply, .sponsorReply {
	margin-left: 45px;
}

.activityBubble {
	width: 42px;
	height: 42px;
	padding: 0;
	margin-bottom: 0;
	margin-left: -70px;
	text-align: center;
  float: left;
}

.activityBubble > i {
	color: #fff;
	position: relative;
	top: 10px;
}

.vipReply {
	background-color: rgba(153, 51, 204, 0.2);
}

.modReply {
	background-color: rgba(0, 0, 0, 0.2);
}

.topReply {
	background-color: rgba(37, 207, 197, 0.2);
}

.sponsorReply, .reply:target {
	background-color: rgba(221, 119, 0, 0.2);
}

.reply:target {
	transition: background-color 1.5s ease;
}

#chatMessage {
	border: 1px dashed #303030;
	margin: 10px;
}

#newTopic, #newReply {
	margin-top: 10px;
	clear: both;
}

.rank {
	font-size: medium;
	text-shadow: 0 0 10px #dd7700;
}

.modLink {
	color: #f9a219;
}

.youtube {
	width: 560px;
	height: 315px;
}

img.youtube {
	cursor: pointer;
}

.chatImage, .news img {
	max-width: 100%;
	height: auto;
}

.chatContent {
	word-wrap: break-word;
	margin-left: 25px;
}

#pollArea {
	display: inline-block;
	vertical-align: top;
	margin-left: 10px;
}

.pollDiv {
	display: table;
	text-align: center;
	width: 100%;
}

.pollDiv ol {
	list-style-type: lower-latin;
}

.pollTitle {
	font-size: large;
	font-weight: 300;
	font-family: "Segoe UI", "Open Sans", Arial, sans-serif;
	color: #fff;
}

meter {
	width: 150px;
	background: #4a4a4a;
}

meter::-webkit-meter-bar {
  background: #4a4a4a;
}

meter::-moz-meter-bar {
	background: #DB7700;
}

meter::-webkit-meter-optimum-value {
	background: #DB7700;
}

.heart, .smiley {
	font-family: "Segoe UI Emoji", "Segoe UI Symbol";
	font-size: larger;
	color: #b01712;
}

.greentext {
	color: #789922;
}

.actions {
    text-align: right;
}

.context-menu {
	position: absolute;
	z-index: 150;
  background-color: #1f1f1f;
  border-radius: 2px;
  border: 1px solid rgba(0, 0, 0, .1);
  box-shadow: 0 3.2px 7.2px 0 rgba(0, 0, 0, .132), 0 .6px 1.8px 0 rgba(0, 0, 0, .108);
}

.context-menu > li > a,
.context-menu > li > span {
	padding: 11px 12px 13px;
	border: 2px solid transparent;
	max-width: 368px;
}

.context-menu > li > a {
	display: block;
	color: inherit;
}

.context-menu > li > a:hover {
	text-decoration: none;
}

li > .context-menu {
	right: 53px;
}

/* Toast */
.toast-right {
	text-align: right;
	margin-left: 10px;
	margin-top: -25px;
}

.toast-left {
	float: left;
	margin-right: 10px;
}

.toast-close {
	font-weight: 300;
	font-size: x-large;
}

.toast-heading {
	margin: 0;
  	overflow: hidden;
  	text-overflow: ellipsis;
  	font-weight: 600;
  	color: #fff;
  	line-height: normal;
	text-align: left;
}

.toast-time {
	font-size: smaller;
}

.toastItem {
	margin-bottom: 10px;
  box-shadow: none;
  background-color: rgba(31, 31, 31, 0.3);
}

.toastItem a:hover {
	text-decoration: none;
}

/* Front Page */
.hover {
	border-bottom: 2px solid #db7700;
	padding-top: 0.5em;
	padding-bottom: 0.5em;
	color: #fff;
}

article.news {
	height: 140px;
	padding: 0;
}

article.news > a {
	text-decoration: none;
}

article.news > .episode {
	width: 140px;
	height: 140px;
	color: #fff;
	background-color: #2b2b2b;
	margin-right: 20px;
	display: flex;
	flex-flow: column;
	align-items: center;
	justify-content: center;
	float: left;
  cursor: pointer;
  border-radius: 2px 0 0 2px;
}

article.news > .content {
	padding: 5px 5px 5px 0;
}

.section-title {
	margin: 16px 0 16px;
	color: #fff;
}

/* Carousel */
.carousel {
  position: relative;
}

.carousel-inner {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.carousel-inner > .item {
  position: relative;
  display: none;
  transition: 0.6s ease-in-out left;
}

.carousel-inner > .item > img,
.carousel-inner > .item > a > img {
  display: block;
  height: auto;
  width: 100%;
  line-height: 1;
}

.carousel-inner > .active,
.carousel-inner > .next,
.carousel-inner > .prev {
  display: block;
}

.carousel-inner > .active {
  left: 0;
}

.carousel-inner > .next,
.carousel-inner > .prev {
  position: absolute;
  top: 0;
  width: 100%;
}

.carousel-inner > .next {
  left: 100%;
}

.carousel-inner > .prev {
  left: -100%;
}

.carousel-inner > .next.left,
.carousel-inner > .prev.right {
  left: 0;
}

.carousel-inner > .active.left {
  left: -100%;
}

.carousel-inner > .active.right {
  left: 100%;
}

.carousel-control {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 15%;
  font-size: 30px;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  opacity: 0.5;
}

.carousel-control.left {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0, rgba(0, 0, 0, 0.0001) 100%);
  background-repeat: repeat-x;
}

.carousel-control.right {
  right: 0;
  left: auto;
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0, rgba(0, 0, 0, 0.5) 100%);
  background-repeat: repeat-x;
}

.carousel-control.right img {
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
}

.carousel-control:hover,
.carousel-control:focus {
  text-decoration: none;
  outline: none;
  opacity: 0.9;
}

.carousel-control .icon-prev,
.carousel-control .icon-next,
.carousel-control .glyphicon-chevron-left,
.carousel-control .glyphicon-chevron-right,
.carousel-control img {
  position: absolute;
  top: 50%;
  z-index: 5;
  display: inline-block;
}

.carousel-control .icon-prev,
.carousel-control .glyphicon-chevron-left {
  left: 50%;
}

.carousel-control .icon-next,
.carousel-control .glyphicon-chevron-right {
  right: 50%;
}

.carousel-control .icon-prev,
.carousel-control .icon-next,
.carousel-control img {
  width: 30px;
  height: 30px;
  margin-top: -15px;
  margin-left: -15px;
}

.carousel-control .icon-prev:before {
  content: '\2039';
}

.carousel-control .icon-next:before {
  content: '\203a';
}

.carousel-indicators {
  position: absolute;
  bottom: 10px;
  left: 50%;
  z-index: 15;
  width: 60%;
  padding-left: 0;
  margin-left: -30%;
  text-align: center;
  list-style: none;
}

.carousel-indicators li {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 1px;
  text-indent: -999px;
  cursor: pointer;
  background-color: #000 \9;
  background-color: rgba(0, 0, 0, 0);
  border: 1px solid #ffffff;
  border-radius: 10px;
}

.carousel-indicators .active {
  width: 12px;
  height: 12px;
  margin: 0;
  background-color: #ffffff;
}

.carousel-caption {
  position: absolute;
  right: 15%;
  bottom: 20px;
  left: 15%;
  z-index: 10;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.carousel-caption > .btn {
    border: 1px solid #DB7700;
    background-color:rgba(43, 43, 43, 0.8);
	-webkit-backdrop-filter: blur(30px) saturate(125%);
	backdrop-filter: blur(30px) saturate(125%);
}

/* Slider */
.slider {
  height: 2.125rem;
  line-height: 1;
  width: auto;
  position: relative;
}
.slider .marker {
  height: 1rem;
  width: 1rem;
  cursor: pointer;
  position: absolute;
  top: 50%;
  margin-top: -0.5rem;
  left: 0;
  background-color: rgba(0,0,0,0.7);
  z-index: 2;
  border: 2px solid #fff;
  border-radius: 50%;
}
.slider .marker:focus,
.slider .marker:active,
.slider .markerhover {
  border: 2px #ce352c solid;
}
.slider .slider-backside,
.slider .complete {
  height: .5rem;
  background: #999999;
  width: 100%;
  line-height: 2.125rem;
  top: 50%;
  margin-top: -0.25rem;
  position: absolute;
}
.slider .complete {
  width: auto;
  background-color: #fff;
  z-index: 2;
  transition: background .3s ease;
  left: 0;
}
.slider .buffer {
  height: 4px;
  width: auto;
  background-color: #ffffff;
  z-index: 1;
  transition: background .3s ease;
  position: absolute;
  top: 50%;
  margin-top: -2px;
  left: 0;
}
.slider .slider-hint {
  min-width: 1.8rem;
  width: auto;
  height: auto;
  position: absolute;
  z-index: 3;
  border: 1px #ccc solid;
  padding: .25rem;
  top: -1.2rem;
  text-align: center;
  font-size: .625rem;
  display: none;
  background: #fffcc0;
}
.slider .slider-hint:before {
  border: 1px #ccc solid;
  border-left: 0;
  border-top: 0;
  content: "";
  width: .25rem;
  height: .25rem;
  display: block;
  position: absolute;
  background-color: inherit;
  margin-top: -0.125rem;
  margin-left: -0.15625rem;
  top: 100%;
  left: 50%;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.slider.hint-bottom .slider-hint {
  top: 100%;
  margin-top: -0.125rem;
}
.slider.hint-bottom .slider-hint:before {
  top: -0.0625rem;
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
}
.slider.permanent-hint > .slider-hint {
  display: block;
}
.slider:active .complete,
.slider:active + .marker:active .complete,
.slider:hover .complete {
  background-color: #1d1d1d;
}
.slider.place-left {
  margin-right: 20px;
}
.slider.place-right {
  margin-left: 20px;
}
.slider.ani .complete {
  -webkit-animation: ani-bg-stripes 2s linear infinite;
          animation: ani-bg-stripes 2s linear infinite;
}
.slider.vertical {
  min-height: 100px;
  width: 2.125rem;
  display: inline-block;
}
.slider.vertical .slider-backside,
.slider.vertical .complete {
  position: absolute;
  height: 100%;
  width: .5rem;
  bottom: 0;
  left: 50%;
  margin-left: -0.25rem;
  top: auto;
}
.slider.vertical .marker {
  left: 50%;
  top: auto;
  margin-left: -0.5rem;
}
.slider.vertical .buffer {
  position: absolute;
  height: auto;
  width: 6px ;
  bottom: 0;
  left: 50%;
  margin-left: -3px;
  top: auto;
}
.slider.vertical .slider-hint {
  left: 100%;
  margin-top: 0;
}
.slider.vertical .slider-hint:before {
  height: .25rem;
  width: .25rem;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
  left: -1px;
  top: 50%;
  margin-top: -0.125rem;
  margin-left: -0.135rem;
}
.slider.vertical.hint-left .slider-hint {
  left: -100%;
  margin-left: .25rem;
}
.slider.vertical.hint-left .slider-hint:before {
  left: 100%;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.slider.cycle-marker .marker {
  border-radius: 50%;
}

/* Tabs */
.tabs {
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none inside;
  white-space: nowrap;
  overflow: visible;
}
.tabs:before,
.tabs:after {
  display: table;
  content: "";
}
.tabs:after {
  clear: both;
}
.tabs li {
  display: inline-block;
  margin-bottom: -5px;
  position: relative;
  white-space: nowrap;
}
.tabs li a {
  display: block;
  float: left;
  padding: 8px 24px;
  color: #bbb;
  text-transform: uppercase;
  position: relative;
  white-space: nowrap;
  transition: all .25s;
}
.tabs li:hover a {
	text-decoration: none;
}
.tabs li.active a {
  border-bottom: 2px solid #db7700;
  color: #fff;
}

@media screen and (min-width: 768px) {
  .carousel-control .glyphicons-chevron-left,
  .carousel-control .glyphicons-chevron-right,
  .carousel-control .icon-prev,
  .carousel-control .icon-next,
  .carousel-control img {
    width: 40px;
    height: 40px;
    margin-top: -20px;
    margin-left: -20px;
    font-size: 40px;
  }
  .carousel-indicators {
    bottom: 20px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .carousel-caption h1 {
    font-size: 24px;
  }
}

@media (max-width: 767px) {
  .carousel-caption h1 {
    font-size: 18px;
  }
  .carousel-caption {
    margin-bottom: 0;
  }
}

@media screen and (max-width : 767px) {
	h1 {
		font-size: 32px;
	}
	/* Front Page */	
	.hide, #chart_pony_div, .image-wrapper, #signInButton, #signUpButton {
		display: none !important;
	}
	
	article.news {
		height: 125px;
	}
	
	article.news audio {
		width: calc(100% - 160px);
	}
	
	article.news > .episode {
		height: 125px;
		width: 125px;
	}
	
	article.news > .btn-small {
		margin-top: 10px;
	}
	
	/* Top Bar */
	.app-bar .app-bar-menu {
		position: relative;
		left: 60px;
	}
	
	#meList {
		right: 8px;
		font-size: smaller;
	}
	
	/* Profiles */
	#profileHeader {
		display: block;
	}
	
	/* CHAT */
	article#display form#newTopic {
		margin-top: 20px;
	}
	.chatContent {
		margin-left: 13px;
	}
	.youtube {
		width: 300px;
		height: 169px;
	}
	.tile, .tile-small {
		padding: 0;
		margin: 5px !important;
	}
	.tile {
		width: 248px;
        height: 120px;
	}
	.tile .text-header, .tile-small .text-header {
		font-size: large;
        line-height: inherit;
        padding: 0 10px;
	}
    .tile-small {
        width: 120px;
        height: 120px;
    }
	textarea {
		width: 300px !important;
	}
	.reply, .vipReply, .modReply, .topReply, .sponsorReply {
		margin-left: 35px;
	}
    .CHATavatar {
        height: 48px;
        width: 48px;
		margin-left: -45px
    }
	.pagination-new ul > li > a,
	.pagination-new ul > li > span,
	.paginate_button {
		padding: 4px 12px;
	}
}