/*
Add your custom CSS below.
*/

.dropdown-select {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 6px 8px 6px 10px;
  height: 54px;
  line-height: 24px;
  font-size: 24px;
  color: #fff;
  /* Fallback for IE 8 */
  background: #fff;
  /* "transparent" doesn't work with Opera */
  background: rgba(0, 0, 0, 0) !important;
  -webkit-appearance: none;
  border:1px solid #fff;padding:9px 15px 10px;border-radius:3px;width:100%;-webkit-transition:all 200ms;transition:all 200ms;
  border-color: #fff;
  background-image: -webkit-linear-gradient(top, transparent, rgba(0, 0, 0, 0.4));
  background-image: -moz-linear-gradient(top, transparent, rgba(0, 0, 0, 0.4));
  background-image: -o-linear-gradient(top, transparent, rgba(0, 0, 0, 0.4));
  background-image: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.4));
  -webkit-box-shadow: inset 0 1px rgba(0, 0, 0, 0.1), 0 1px 1px rgba(0, 0, 0, 0.2);
  box-shadow: inset 0 1px rgba(0, 0, 0, 0.1), 0 1px 1px rgba(0, 0, 0, 0.2);
}
.dropdown-select:focus {
  z-index: 1;
  width: 100%;
  color: #fff;
  outline: 2px solid #ec4a01;
  outline: 2px solid -webkit-focus-ring-color;
  outline-offset: -2px;
}
.dropdown-select > option {
  margin: 3px;
  padding: 6px 8px;
  text-shadow: none;
  background: #666666;
  border-radius: 3px;
  cursor: pointer;
}


/* Dirty fix for Firefox adding padding where it shouldn't. */
@-moz-document url-prefix() {
  .dropdown-select {
    padding-left: 6px;
  }

.dropdown-dark {
  background: 0 0;
  border:1px solid #444;padding:9px 15px 10px;border-radius:3px;width:100%;-webkit-transition:all 200ms;transition:all 200ms;
  border-color: #444;
  background-image: -webkit-linear-gradient(top, transparent, rgba(0, 0, 0, 0.4));
  background-image: -moz-linear-gradient(top, transparent, rgba(0, 0, 0, 0.4));
  background-image: -o-linear-gradient(top, transparent, rgba(0, 0, 0, 0.4));
  background-image: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.4));
  -webkit-box-shadow: inset 0 1px rgba(0, 0, 0, 0.1), 0 1px 1px rgba(0, 0, 0, 0.2);
  box-shadow: inset 0 1px rgba(0, 0, 0, 0.1), 0 1px 1px rgba(0, 0, 0, 0.2);
}
.dropdown-dark:before {
  border-bottom-color: #444;
}
.dropdown-dark:after {
  border-top-color: #444;
}
.dropdown-dark .dropdown-select {
  color: #444;
  text-shadow: 0 0px black;
  /* Fallback for IE 8 */
  background: #444;
}
.dropdown-dark .dropdown-select:focus {
  color: #444;
}
.dropdown-dark .dropdown-select > option {
  background: #444;
  text-shadow: 0 1px rgba(0, 0, 0, 0.4);
}

.container {
  margin: auto;
  width: 100%;
  text-align: left;
}
.container > .dropdown {
  margin: 0 0px;
  vertical-align: top;
}

ol, ul {
  list-style: none;
}