@import url("https://fonts.googleapis.com/css?family=Lato");
/* line 13, ../sass/select.scss */
.select-hidden {
  display: none;
  visibility: hidden;
  padding-right: 10px;
}

/* line 18, ../sass/select.scss */
.select {
  cursor: pointer;
  display: inline-block;
  position: relative;
  font-size: 16px;
  color: #77797B;
  width: 100%;
  height: 57px;
}

/* line 27, ../sass/select.scss */
.select-styled {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #333333;
  -moz-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
  padding: 10px 20px;
  border-radius: 10px;
  border: solid 2px #77797B;
}
/* line 36, ../sass/select.scss */
.select-styled:after {
  content: "";
  width: 0;
  height: 0;
  position: absolute;
  top: 16px;
  right: 10px;
}
/* line 44, ../sass/select.scss */
.select-styled:hover {
  background-color: #2e2e2e;
}
/* line 47, ../sass/select.scss */
.select-styled:active, .select-styled.active {
  background-color: #262626;
}
/* line 49, ../sass/select.scss */
.select-styled:active:after, .select-styled.active:after {
  top: 9px;
}

/* line 62, ../sass/select.scss */
.select-options {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  z-index: 999;
  margin: 0;
  padding: 0;
  list-style: none;
  background-color: #262626;
}
/* line 73, ../sass/select.scss */
.select-options li {
  margin: 0;
  padding: 12px 0;
  text-indent: 15px;
  border-top: 1px solid #1a1a1a;
  -moz-transition: all 0.15s ease-in;
  -o-transition: all 0.15s ease-in;
  -webkit-transition: all 0.15s ease-in;
  transition: all 0.15s ease-in;
}
/* line 79, ../sass/select.scss */
.select-options li:hover {
  color: #333333;
  background: #77797B;
}
/* line 83, ../sass/select.scss */
.select-options li[rel="hide"] {
  display: none;
}
