html {
  box-sizing: border-box;
  font-family: 'Ubuntu', sans-serif;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  width: 100%;
  height: 100%;
  background: #1A1A1D;
  color: #CDCDCD;
}

.annoucement {
	padding: 10px;
	text-align: center;
	background: #C3073F;
	color: #fff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  flex-flow: row wrap;
  justify-content: space-between;
}

.row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.column {
  flex-basis: 100%;
}

a {
	color: #CDCDCD;
}

/* Mobile first styles go here */
@media screen and (min-width: 800px) {
  .column {
    flex: 1;
  }
}

.taunt-column {
	flex: 0 0 auto;
	margin: 20px 0;
  width: 400px;
}

._10 {
	flex: 1.0;
}

._90 {
	flex: 9.0;
}

.text-center {
	text-align: center;
}
.tag-thumb-wrap {
	margin: 1em;
}
.tag-thumb {
	width: auto;
	height: auto;
	text-align: center;
	font-weight: bold;
	overflow: hidden;
	margin: 0 auto;
}
	.tag-thumb img {
		width: auto;
		height: 300px;
	}
	.tag-thumb:hover{
    transform: scale(1.2);
    transition: transform .2s; 
	}
	.tag-thumb p {
		position: relative;
		background-color:rgba(0, 0, 0, 0.7);
		color: #CDCDCD;
		padding: 5px 0;
		margin: 0;
	}

.taunt-row {
	padding: 30px 0;
}
	.upvote {
		font-size: 3em;
	}
		.fa.fa-caret-up {
			line-height: 0.6em;
		}
		.upvote-count {
			text-align: center;
			margin-top: -45px;
			font-weight: bold;
			color: #000;
		}

.btn{
	text-decoration:none;
	color:#333333;
	font-size:12px;
	font-weight:bold;
	padding:0 15px;
	line-height:32px;
	height: auto;
	display:inline-block;
	text-align:center;
	background-color:#DDDDDD;
	cursor: pointer;
}
	.btn:hover{
		background-color:#F6F6F6;
	}

	.btn.current{
		background-color:#909090;
	}

	.btn.pill{
		-webkit-border-radius: 16px;
		-moz-border-radius: 16px;
		border-radius: 16px;
	}

	.btn-group > .btn.pill:not(:first-child):not(:last-child){
		-webkit-border-radius: 0;
		-moz-border-radius: 0;
		border-radius: 0;
	}

	.btn-group > .btn.pill:first-child{
		-webkit-border-top-right-radius: 0;
		-webkit-border-bottom-right-radius: 0;
		-moz-border-radius-topright: 0;
		-moz-border-radius-bottomright: 0;
		border-top-right-radius: 0;
		border-bottom-right-radius: 0;
	}

	.btn-group > .btn.pill:last-child{
		-webkit-border-top-left-radius: 0;
		-webkit-border-bottom-left-radius: 0;
		-moz-border-radius-topleft: 0;
		-moz-border-radius-bottomleft: 0;
		border-top-left-radius: 0;
		border-bottom-left-radius: 0;
	}

	.btn-group .btn + .btn{
		border-left: 1px solid rgba(0, 0, 0, .1);
		margin-left:-1px;
	}

h2.taunt-title {
	margin: 0;
}

span.new {
	color: #C3073F;
	font-weight: bold;
	display: block;
	margin-bottom: 15px;
}
	p.new span.current-stream {
		color: #DA7B93;
	}

h1.header {
	margin-top: 70px;
}
.back-button {
	text-align: right;
	font-size: 3em;
}
	.back-button a {
		color: #CDCDCD;
	}
	.back-button a:hover {
		color: #fff;
	}
#footer {
	margin-top: 20px;
	padding: 30px;
	background: #474853;
}
#footer .column {
	flex: 1 0 20%;
	margin: 1em;
}











/* PUSH MENU */
#menu {
    position: fixed;
    top: 0;
    bottom: 0;
    left: -300px;

    width: 300px;
    height: 100%;
    padding: 50px 30px;
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
            box-sizing: border-box;

    -webkit-transition: all .3s ease-in;
       -moz-transition: all .3s ease-in;
         -o-transition: all .3s ease-in;
            transition: all .3s ease-in;
    text-align: center;

    background-color: #474853;
    z-index: 2;
    overflow-y:scroll;
    overflow-x:hidden;
}
#menu .brand {
    height: 51px;

    font-size: 70px;
    font-weight: 900;
    line-height: .6;

    color: #CDCDCD;
}
#menu ul {
    padding: 0;
    margin-top: 30px;
    list-style: none;
}

#menu ul li a {
    display: block;

    font-weight: 900;
    line-height: 50px;

    -webkit-transition: all .3s ease;
       -moz-transition: all .3s ease;
         -o-transition: all .3s ease;
            transition: all .3s ease;
    text-decoration: none;
    text-transform: uppercase;

    color: #CDCDCD;
    border-top: 1px solid #eee;
}
#menu ul li:last-child a {
    border-bottom: 1px solid #eee;
}
#menu ul li a:hover {
    letter-spacing: 1px;
}
body.open #menu {
    left: 0;
    -webkit-box-shadow: 10px 0 5px -2px rgba(39, 40, 56, .5);
          box-shadow: 10px 0 5px -2px rgba(39, 40, 56, .5);
}
/* MENU TOGGLE ICON */

button:focus {
    outline: none;
}
#menu-toggle {
    position: fixed;
    top: 20px;
    left: 20px;

    width: 51px;
    height: 51px;

    cursor: pointer;

    border: none;
    -webkit-border-radius: 50px;
       -moz-border-radius: 50px;
            border-radius: 50px;
    background: #fff;
    -webkit-transition: all .5s ease;
       -moz-transition: all .5s ease;
         -o-transition: all .5s ease;
            transition: all .5s ease;
}
body.open #menu-toggle {
	position: fixed;
	top: 20px; left: 200px;
	z-index: 3;
}
#menu-toggle:before,
#menu-toggle:after {
    position: absolute;

    content: "";
    content: "";
    -webkit-transition: all .5s ease;
       -moz-transition: all .5s ease;
         -o-transition: all .5s ease;
            transition: all .5s ease;

    background-color: #232629;
}

#menu-toggle:before {
    top: 12px;
    left: 25px;

    width: 1px;
    height: 27px;
}
#menu-toggle:after {
    top: 25px;
    left: 12px;

    width: 27px;
    height: 1px;
}

body.open button#menu-toggle:before,
body.open button#menu-toggle:after {
    -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg);
}

.page-wrap {
	-webkit-transition: all .3s ease-in;
       -moz-transition: all .3s ease-in;
         -o-transition: all .3s ease-in;
            transition: all .3s ease-in;
}

body.open .page-wrap {
    margin-left: 300px;
}

#global-volume {
	position: fixed;
	bottom: 0; right: 0;
	background: rgba(255, 255, 255, 0.5);
	padding: 10px 20px;
	width: 200px;
	color: #000;
}
#pagination {
	text-align: center;
	font-size: 2em;
}
#pagination a, #pagination .current {
	margin: 20px;
}