/* Colors */
/* Variables */
/* Placeholder */
main.day,
main.night {
  *zoom: 1;
}
main.day:before,
main.night:before, main.day:after,
main.night:after {
  content: " ";
  display: table;
}
main.day:after,
main.night:after {
  clear: both;
}

/* Normalize */
ul, dl {
  -webkit-margin-before: 0;
  -webkit-margin-after: 0;
  -webkit-padding-start: 0;
}

dd {
  -webkit-margin-start: 0;
}

/* Common style */
html {
  font-size: 62.5%;
  background: #fafafa;
}

body {
  font-family: 'Lato', sans-serif;
  color: #464646;
}

h1 {
  font-family: 'Playball', cursive;
  font-size: 10rem;
  font-weight: 700;
  text-align: center;
  color: #e75854;
  overflow: visible;
  margin: 3rem 0;
}

h2 {
  font-style: italic;
  text-align: center;
  font-weight: 300;
  font-size: 1.8rem;
  margin-bottom: 1.5em;
}

main.day,
main.night {
  margin-top: 6rem;
}

main.day,
main.night .inner {
  width: 90%;
  max-width: 60rem;
  margin: 0 auto;
}

main.day {
  margin-top: 6rem;
}

main.night {
  padding: 6rem 0;
  width: 100%;
  background: #464646;
}
main.night .inner {
  width: 90%;
  max-width: 60rem;
}

article {
  width: 30%;
}

main.day article {
  float: left;
  margin: 0 2.5%;
}
main.day article:first-of-type {
  margin-left: 0;
}
main.day article:last-of-type {
  margin-right: 0;
}

main.night article {
  margin: 0 auto;
}

/* Dropy style */
.dropy {
  position: relative;
  width: 100%;
  margin: 0 auto;
  margin-bottom: 1.5em;
}

.dropy__title {
  position: relative;
  display: block;
  width: 100%;
  border-bottom: 1px solid #C2A24B;
  text-decoration: none;
  font-size: 1.6rem;
  color: #464646;
  cursor: pointer;
  -webkit-transition: border-color 250ms ease-in-out;
  transition: border-color 250ms ease-in-out;
}
.dropy__title span {
  display: block;
  padding: 1rem 3rem 1rem 1.5rem;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  color:#fff;
}
.dropy__title:hover {
  border-color: #fff;
}
.dropy__title:after {
  content: "";
  position: absolute;
  right: 1.5rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-top: 0.4rem solid #fff;
  border-left: 0.48rem solid transparent;
  border-right: 0.48rem solid transparent;
}

.dropy__content {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
}
.dropy__content ul {
  z-index: 1;
  overflow: hidden;
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  border-radius: 0.2rem;
  max-height: 0;
  opacity: 0;
  -webkit-transition: opacity 250ms ease-in-out, max-height 250ms ease-in-out;
  transition: opacity 250ms ease-in-out, max-height 250ms ease-in-out;
  list-style: none;
  /*background: #fafafa;*/
  box-shadow: 0 0 5px 0 #fff, 0 2px 10px 0 rgba(0, 0, 0, 0.12);
  margin-top: 40px;
}
.dropy__content ul li:first-child a:hover {
  border-radius: 0.2rem 0.2rem 0 0;
}
.dropy__content ul li:last-child a {
  margin-bottom: 1.5rem;
}
.dropy__content ul li:last-child a:hover {
  border-radius: 0 0 0.2rem 0.2rem;
}
.dropy__content li a {
  display: block;
  padding: 1rem 1.5rem;
  font-size: 1.4rem;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  -webkit-transition: background-color 250ms ease-in-out, color 250ms ease-in-out;
  transition: background-color 250ms ease-in-out, color 250ms ease-in-out;
}
.dropy__content li a:hover {
  color: #666666;
  background-color: #eeeeee;
}
.dropy__content .dropy__header {
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  margin-bottom: 1.5rem;
  padding: 1rem 1.5rem;
  font-size: 1.6rem;
}
.dropy__content .selected {
  font-weight: 700 !important;
  color: #c2a24b;
}

.dropy.open .dropy__content ul {
  max-height: 30rem;
  overflow-y: scroll;
  opacity: 1;
  margin-top: 40px;
}

.dropy.dark .dropy__title {
  border-color: #868686;
  color: #cccccc;
}
.dropy.dark .dropy__title:hover {
  border-color: #cccccc;
}
nav select, dt.dropy__title__select {
  display: none;
}
@media (max-width: 960px) {
  dt.dropy__title     { display: none !important; }
  nav select, dt.dropy__title__select { display: inline-block;}
}

select {
   	width: auto;
   	padding: 10px 20px;
    height: auto;
    border: 2px solid white;
    color: white;
    vertical-align: middle;
   	overflow: hidden;
   	background: transparent;
   	border-radius: 0px;
   	-webkit-appearance: none;
   	-webkit-border-radius: 0px;
	font-size: 1.6rem;
	cursor: pointer;
	padding-bottom:10px;
   }
.dropy__title__select:after {
  content: "";
  position: absolute;
  right: -1rem;
	top: 22px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-top: 0.4rem solid #fff;
  border-left: 0.48rem solid transparent;
  border-right: 0.48rem solid transparent;
}