/*======================================
  Selectric v1.9.3
======================================*/
.selectric-wrapper {
  position: relative;
  cursor: pointer;
}

.selectric-responsive {
  width: 100%;
}

.selectric-wrapper.selectric-open, .selectric-wrapper.selectric-open .selectric-items {
    -webkit-box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.17);
    -moz-box-shadow:    0px 4px 10px 0px rgba(0, 0, 0, 0.17);
    box-shadow:         0px 4px 10px 0px rgba(0, 0, 0, 0.17);
}

.selectric-wrapper.selectric-open .selectric {
    background: #dadada;
}



.selectric .button {
  display: block;
  width: 26px;
  height: 14px;
  position: absolute;
  top: 18px;
  right: 18px;
}

.selectric .button span.first, .selectric .button span.second {
    -webkit-transition: opacity 0.2s linear;
    -moz-transition: opacity 0.2s linear;
    -ms-transition: opacity 0.2s linear;
    -o-transition: opacity 0.2s linear;
    transition: opacity 0.2s linear;
    display: block;
    width: 26px;
    height: 14px;
    background: url('../img/select-arrow.png') no-repeat;
    position: absolute;
    top: 0;
    left: 0;
}

.button span.open {
    display: block;
    width: 26px;
    height: 14px;
    background: url('../img/select-arrow.png') no-repeat;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 30;
    background-position: right top;
    display: none;
}

.selectric .button span.first {
    z-index: 10;
    background-position: left top;
    opacity: 1;
}

.selectric .button span.second {
    z-index: 20;
    background-position: left bottom;
    opacity: 0;
}

.selectric-hover .selectric {
  border-color: #C4C4C4;
}

.selectric-hover .selectric .button span.first {
    opacity: 0;
}

.selectric-hover .selectric .button span.second {
    opacity: 1;
}

.selectric-open .selectric .button span.first {
    opacity: 1;
    background-position: right top !important;
}

.selectric-open .selectric .button span.second {
    display: none;
}

.selectric-open .selectric .button span.open {
    display: block;
}

.selectric-open {
  z-index: 9999;
}
.selectric-open .selectric {
  border-color: #C4C4C4;
}
.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%;
  display: none;
}

.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;
  border-top: 0;
  border-left: 1px solid #c4c4c4;
  border-right: 1px solid #c4c4c4;
  border-bottom: 1px solid #c4c4c4;
  z-index: -1;
  box-shadow: 0 0 10px -6px;
}

.selectric-items .selectric-scroll {
  height: 100%;
  overflow: auto;
}

.selectric-above .selectric-items {
  top: auto;
  bottom: 100%;
}

.selectric-above .selectric-items {
    border-top: 1px solid #c4c4c4;
    border-left: 1px solid #c4c4c4;
    border-right: 1px solid #c4c4c4;
    border-bottom: 0;
}

.selectric-items ul, .selectric-items li {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 12px;
  line-height: 20px;
  min-height: 20px;
}
.selectric-items li {
  display: block;
  position: relative;
  padding-left: 20px;
  padding-right: 8px;
  padding-top: 4px;
  padding-bottom: 4px;
  border-top: 0 !important;
  border-bottom: 1px solid #c4c4c4;
  color: #666;
  cursor: pointer;
  background: #fff;
}

.selectric-items li .subtxt {
    color: #9e9e9e;
}

.selectric-items li:last-child {
    border-bottom: 0 !important;
}

.selectric-items li.selected {
  background: #eaeaea;
}
.selectric-items li:hover {
  background: #eaeaea;
}
.selectric-items .disabled {
  filter: alpha(opacity=50);
  opacity: 0.5;
  cursor: default !important;
  background: none !important;
  color: #666 !important;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.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: #444;
}
.selectric-items .selectric-group.disabled li {
  filter: alpha(opacity=100);
  opacity: 1;
}
.selectric-items .selectric-group li {
  padding-left: 25px;
}
