/* 
 * Selecter v3.2.4 - 2015-01-07 
 * A jQuery plugin for replacing default select elements. Part of the Formstone Library. 
 * http://formstone.it/selecter/ 
 * 
 * Copyright 2015 Ben Plum; MIT Licensed 
 */


.selecter {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 10px 0;
  z-index: 1;
}
.selecter:focus {
  box-shadow: none;
  outline: none;
}
.selecter,
.selecter * {
  -webkit-user-select: none !important;
     -moz-user-select: none !important;
      -ms-user-select: none !important;
          user-select: none !important;
}
.selecter,
.selecter *,
.selecter *:before,
.selecter *:after {
  box-sizing: border-box;
}
.selecter-element {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  opacity: 0;
  z-index: -1;
}
.selecter-element,
.selecter-element:focus {
  outline: none;
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
  -webkit-tap-highlight-color: transparent;
}
.no-opacity .selecter-element {
  left: -999999px;
}
.selecter-selected {
	position: relative;
    background: #ffffff;
    border: 2px solid #e8e8e8;
    color: #7f7f7f;
    cursor: pointer;
    display: block;
    font-size: 1.5em;
    margin: 0;
    overflow: hidden;
    padding: 15px 40px 13px 30px;
    text-overflow: clip;
    z-index: 2;
    border-radius: 25px;
    text-align: left;
    min-width: 150px;
}
.selecter-selected:after {
  background: url(../images/select-arrow.jpg) 0 0 no-repeat;
  height: 9px;
  width: 15px;
  position: absolute;
  top: 0;
  right: 16px;
  bottom: 0;
  content: '';
  display: block;
  margin: auto 0;
}
.no-touch .selecter-selected:hover {
  color: #333333;
}
.no-touch .selecter.disabled .selecter-selected:hover {
  color: #cccccc;
}
.selecter-options {
	width: 100%;
    max-height: 260px;
    position: absolute;
    top: 100%;
    left: 0;
    border: 2px solid #e8e8e8;
    border-width: 0 2px 2px;
    background-color: #ffffff;
    display: none;
    margin: 0;
    overflow: auto;
    overflow-x: hidden;
    padding: 0;
    z-index: 55;
    border-radius: 0 0 25px 25px;
}
.selecter-options.scroller {
  position: absolute;
}
.no-opacity .selecter-options {
  width: auto;
}
.selecter-group {
  border-bottom: 1px solid #cccccc;
  color: #999999;
  display: block;
  font-size: 1.1em;
  padding: 10px 15px;
  text-transform: uppercase;
}
.selecter-item {
  width: 100%;
  background: #ffffff;
  border-bottom: 1px solid #cccccc;
  color: #222222;
  cursor: pointer;
  display: block;
  font-size: 1.3em;
  margin: 0;
  overflow: hidden;
  padding: 10px 30px;
  text-decoration: none;
  text-overflow: ellipsis;
  text-align: left;
}
.selecter-item.placeholder {
  display: none;
}
.selecter-item.selected {
  background: #eeeeee;
}
.selecter-item.disabled {
  color: #999999;
  cursor: default;
}
.selecter-item:first-child {
  border-radius: 0;
}
.selecter-item:last-child {
  border-bottom: 0;
  border-radius: 0 0 2px 2px;
}
.no-touch .selecter-item:hover,
.no-touch .selecter-item.selected:hover {
  color: #333333;
  background-color: #cccccc;
}
.selecter-item.disabled,
.no-touch .selecter-item.disabled:hover {
  color: #cccccc;
  background-color: #ffffff;
}
.selecter.open {
  z-index: 3;
}
.selecter.open .selecter-selected {
   z-index: 51;
   border-radius: 25px 25px 0 0;
}
.selecter.open .selecter-selected,
.selecter.focus .selecter-selected {
  background-color: #ffffff;
}
.selecter.open .selecter-selected:after{
	transform: rotate(180deg);
}
.selecter.cover .selecter-options {
  border-width: 1px;
  top: 0;
  border-radius: 3px;
}
.selecter.cover .selecter-options .selecter-item.first {
  border-radius: 3px 3px 0 0;
}
.selecter.cover.open .selecter-selected {
  z-index: 49;
  border-radius: 3px 3px 0 0;
}
.selecter.bottom .selecter-options {
  top: auto;
  bottom: 100%;
  border-width: 1px 1px 0;
}
.selecter.bottom .selecter-item:last-child {
  border: none;
}
.selecter.bottom.open .selecter-selected {
  border-radius: 0 0 3px 3px;
}
.selecter.bottom.open .selecter-options {
  border-radius: 3px 3px 0 0;
}
.selecter.bottom .cover .selecter-options {
  top: auto;
  bottom: 0;
}
.selecter.bottom .cover.open .selecter-selected {
  border-radius: 3px;
}
.selecter.bottom .cover.open .selecter-options {
  border-radius: 3px;
}
.selecter.multiple .selecter-options {
  width: 100%;
  position: static;
  border-width: 1px;
  display: block;
  border-radius: 3px;
  box-shadow: none;
}
.selecter.disabled .selecter-selected {
  background: #ffffff;
  border-color: #cccccc;
  color: #cccccc;
  cursor: default;
}
.selecter.disabled .selecter-options {
  background: #ffffff;
  border-color: #cccccc;
}
.selecter.disabled .selecter-group,
.selecter.disabled .selecter-item {
  border-color: #cccccc;
  color: #cccccc;
  cursor: default;
}
.selecter.disabled .selecter-item.selected,
.no-touch .selecter.disabled .selecter-item.selected:hover {
  background: #fafafa;
}
.selecter.disabled .selecter-item,
.no-touch .selecter.disabled .selecter-item:hover {
  color: #cccccc;
  background-color: #ffffff;
}
.selecter-options.scroller {
  overflow: hidden;
}
.selecter-options.scroller .scroller-content {
  max-height: 260px;
  padding: 0;
}
@media screen and (max-width: 740px) {
  .selecter {
    /* max-width: 40%; */
  }
}
@media screen and (max-width: 500px) {
  .selecter {
    max-width: 100%;
  }
}
.blue-selecter .selecter-selected{
	border-color: #42b3e5;
    color: #42b3e5;
    font-size: 1.4em;
    font-weight: 400;
    text-align: center;
    text-transform: none;
    padding: 8px 40px 8px 30px;
}
.blue-selecter .selecter-selected:after{
	background: url(../images/select-arrow-blue.jpg) 0 0 no-repeat;
    height: 9px;
    width: 15px;
}
.blue-selecter .selecter-options{
	border-color: #42b3e5;
	color: #42b3e5;	
}
.blue-selecter .selecter-item.selected{
	background-color: #c8eeff;
    text-align: center;
    border-color: #c8eeff;
    color: #42b3e5;
    font-size: 1.6em;
    font-weight: 300;
    padding: 8px 5px;
}
.blue-selecter .selecter-item{
	text-align: center;
    border-color: #c8eeff;
    color: #42b3e5;
    font-size: 1.6em;
    font-weight: 300;
    padding: 8px 5px;
}