.selectric-wrapper {
  position: relative;
  cursor: pointer;
}

.selectric-responsive {
  width: 100%;
}

.selectric {
  border:0;
  height:55px;
  background: #fff;
  position: relative;
  overflow: hidden;
  border-radius:5px; -moz-border-radius:5px; -webkit-border-radius:5px; -khtml-border-radius:5px; 
  transition:all 0.2s; -webkit-transition:all 0.2s; -khtml-transition:all 0.2s; -moz-transition:all 0.2s; -o-transition:all 0.2s;
}

.selectric .label {
  display: block;
  text-align: left;
  /*white-space: nowrap;*/
  overflow: hidden;
  text-overflow: ellipsis;
  margin:0 5px 0 50px;
  height: 55px;
  line-height: 55px;
  color: #444;
  -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none;
}

.selectric .button {
  display: block; /*none*/
  position: absolute;
  top: 11px;
  right: 2px;
  width: 34px;
  height: 34px;
  line-height: 34px;
  background-color: #f7f7f7;
  border-radius:50%; -moz-border-radius:50%; -webkit-border-radius:50%; -khtml-border-radius:50%;
  transition:all 0.2s; -webkit-transition:all 0.2s; -khtml-transition:all 0.2s; -moz-transition:all 0.2s; -o-transition:all 0.2s;
  color: #aaa;
  text-align: center;
}

.selectric .button:after {
  content: " ";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 0;
  height: 0;
  border: 6px solid transparent;
  border-top-color: #aaa;
  border-bottom: none;
  transition:all 0.2s; -webkit-transition:all 0.2s; -khtml-transition:all 0.2s; -moz-transition:all 0.2s; -o-transition:all 0.2s;
}

.selectric-focus .selectric {
  border-color: #b4c5d2;
  background-color: #f7f7f7;
}

.selectric-hover .selectric {
  border-color: #0096d2;
}

.selectric-hover .selectric .button {
  color: #0096d2;
}

.selectric-hover .selectric .button:after {
  border-top-color: #0096d2;
}

.selectric-open {
  z-index: 9999;
}

.selectric-open .selectric {
  border-color: #0096d2;
}

.selectric-open .selectric-items {
  display: block;
}

.selectric-disabled {
  filter: alpha(opacity=50);
  opacity: 0.5;
  cursor: default;
  -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none;
}

.selectric-hide-select {
  position: relative;
  overflow: hidden;
  width: 0;
  height: 0;
}

.selectric-hide-select select {
  position: absolute;
  left: -100%;
}

.selectric-hide-select.selectric-is-native {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 10;
}

.selectric-hide-select.selectric-is-native select {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  border: none;
  z-index: 1;
  box-sizing: border-box;
  opacity: 0;
}

.selectric-input {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  margin: 0 !important;
  padding: 0 !important;
  width: 1px !important;
  height: 1px !important;
  outline: none !important;
  border: none !important;
  *font: 0/0 a !important;
  background: none !important;
}

.selectric-temp-show {
  position: absolute !important;
  visibility: hidden !important;
  display: block !important;
}

/* Items box */
.selectric-items {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #f7f7f7;
  /*border: 1px solid #b4c5d2;*/
  border:0;
  z-index: -1;
  /*box-shadow: 0 0 10px -4px;*/
  box-shadow: rgba(0,0,0,.2) 0 0 10px; -moz-box-shadow: rgba(0,0,0,.2) 0 0 10px; -webkit-box-shadow: rgba(0,0,0,.2) 0 0 10px; -khtml-box-shadow: rgba(0,0,0,.2) 0 0 10px;
  padding: 1px 2px;
  margin-top: -1px;
  border-radius:0 0 10px 10px; -moz-border-radius:0 0 10px 10px; -webkit-border-radius:0 0 10px 10px; -khtml-border-radius:0 0 10px 10px;
}

.selectric-items .selectric-scroll {
  height: 100%;
  overflow: auto;
  /*padding-right: 5px;*/
}

.selectric-above .selectric-items {
  top: auto;
  bottom: 100%;
}

.selectric-items ul, .selectric-items li {
  list-style: none;
  padding: 0;
  margin: 0;
  line-height: 20px;
  min-height: 20px;
}

.selectric-items li {
  display: block;
  width:100%;
  height: 50px;
  padding: 15px;
  text-align:left;
  cursor: pointer;
  border:0 !important;
  border-radius:5px; -moz-border-radius:5px; -webkit-border-radius:5px; -khtml-border-radius:5px;
}

.selectric-items li.selected {
  background: #eee;
  color: #0096d2;
}

.selectric-items li.highlighted {
  background: #eee;
  color: #0096d2;
}

.selectric-items li:hover {
  background: #0096d2;
  color: #fff;
}

.selectric-items .disabled {
  filter: alpha(opacity=50);
  opacity: 0.5;
  cursor: default !important;
  background: none !important;
  color: #777 !important;
  -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none;
}

.selectric-items .disabled .select-icon,
.selectric-items .disabled:hover .select-icon {
  fill: #999;
}

.selectric-items .selectric-group .selectric-group-label {
  font-weight: bold;
  padding-left: 10px;
  cursor: default;
  -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none;
  background: none;
  color: #555;
}

.selectric-items .selectric-group.disabled li {
  filter: alpha(opacity=100);
  opacity: 1;
}

/*.selectric-items .selectric-group li {
  padding-left: 25px;
}*/
