/*
Base
 */
html {
	width: 100%;
	height: 100%;
}

body {
	line-height: 1.6em;
	font-size: 1em;
	margin: 0;
	padding: 0;
	text-align: left;
	width: 100%;
  	font-family: 'Rubik', sans-serif;
  	font-weight: 300;
	color: #454545;
	-webkit-backface-visibility: hidden;
	background-color: #FFF;
}

h1, h2, h3, h4, p, a {
	padding: 0;
	margin: 0;
}

h1 {
	font-size: 2em;
  padding: 1em 0.5em;
  line-height: 1.2em;
}

h2 {
	padding: 1em 0;
  font-weight: 500;
  font-size: 2em;
  display: inline-block;
  margin-right: 0.4em;
}

header {
  text-align: center;
  position: fixed;
  padding-bottom: 2em;
  width: 100%;
  background-color: #fff;
  z-index: 999;
}

label, input, textarea, select {
	display: inline-block;
	width: 350px;
	font-family: 'Rubik', sans-serif;
}

input, textarea, select {
	padding: 1em;
 	font-size: 1em;
}

input, button, textarea, select {
	height: 50px;
	border-radius: 6px;
	border:  1px solid #d3d3d3;
}

button {
	background-color: #999999;
	text-transform: uppercase;
	letter-spacing: 0.15em;
	font-weight: 400;
	color: #FFF;
	border: none;
	padding: 1em;
	margin-left: 1em;
	display: inline-block;
}

button:hover {
	background-color: #454545;
}

form a {
	font-weight: bold;
    color: #315798;
    display: inline-block;
    margin-top: 1em;
}

.error {
	width: calc( 80% - 2em );
  padding: 1em;
  background-color: #ED6362;
  border-radius: 3px;
  color: #FFF;
  margin: 1em 0;
}

.success {
	width: calc( 80% - 2em );
  padding: 1em;
  background-color: #198754;
  border-radius: 3px;
  color: #FFF;
  margin: 1em 0;
}

#party {
	font-size: 2em;
}

input.error {
	border: 2px solid #ED6362;
}

form {
	text-align: center;
}

#content {
	display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  max-width: 2080px;
  width: 200%;
  position: absolute;
  top: 150px;
}

ul.list {
	width: calc(25% - 4em);
	list-style-type: none;
	padding: 2em;
}

li.song {
	list-style-type: none;
  position: relative;
}

.vote {
	width: 20%;
  font-size: 2em;
  text-align: center;
  opacity: 30%;
  	-webkit-transition: opacity .25s ease-out;
    -moz-transition: opacity .25s ease-out;
    -ms-transition: opacity .25s ease-out;
    -o-transition: opacity .25s ease-out;
    transition: opacity .25s ease-out;
  position: absolute;
  top: 30px;
  cursor: pointer;
}

.vote:hover {
  opacity: 100%;
  	-webkit-transition: opacity .25s ease-out;
    -moz-transition: opacity .25s ease-out;
    -ms-transition: opacity .25s ease-out;
    -o-transition: opacity .25s ease-out;
    transition: opacity .25s ease-out;
}

.vote.active {
  opacity: 100%;
}



@media screen and (max-width: 1380px) {


	#content {
		flex-wrap: wrap;
		width: 100%;
	}

	ul.list {
		width: calc(50% - 4em);
	}

}

@media screen and (max-width: 800px) {

	ul.list {
		width: calc(100% - 4em);
	}

	form {
		padding: 0;
	}

	input {
		width: 90%;
		margin-bottom: 0.5em;
	}

	button {
		margin: 0;
		width: 90%;
	}

}