/*======================================================================
  Selectric
======================================================================*/

.selectricWrapper {
  position: relative;
  margin: 0 0 10px;
  width: 200px;
  cursor: pointer;
  float:left;  
}
.awesome { height:20px;}
.input { 
  border: 1px solid #0753a8;
  border-top: 1px solid #64adfe;
  background: #3171b8 url(../images/calendar.png) center right no-repeat;
  border-radius: 3px;
  width:95px;
  color:#fff;
 
}
label[for="date"] { width:90px; display:inline-block; text-align:right; color:#3171b8; font-weight:bold;}
.btn {
  border: 1px solid #0753a8; 
  border-top: 1px solid #64adfe;
  background: #3171b8;
  border-radius: 3px;
  height:32px;
  /*width:35px;*/
  color:#fff; 
}
.btn:hover {
  border: 1px solid #c67d1b; 
  border-top: 1px solid #fcb14e;
  background: #f09721;
}
.selectricResponsive {
  width: 100%;
}

.selectric {
  border: 1px solid #0753a8;
  border-top: 1px solid #64adfe;
  background: #3171b8;
  position: relative;
  border-radius: 3px;
}

.selectric .label {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  margin: 0 30px 0 0;
  padding: 6px;
  font-size: 12px;
  line-height: 18px;
  color: #fff;
  min-height: 18px;
}

.selectric .button {
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  width: 30px;
  height: 30px;
  color: #fff;
  text-align: center;
  font: 0/0 a;
  /* IE Fix */
  *font: 20px/30px Lucida Sans Unicode, Arial Unicode MS, Arial;
}

.selectric .button:after {
  content: " ";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 0;
  height: 0;
  border: 4px solid transparent;
  border-top-color: #1d5ca1;
  border-bottom: none;
}

.selectricHover .selectric {
  border-color: #03458f;
  border-top: 1px solid #64adfe;
}

.selectricHover .selectric .button {
  color: #ffffff;
}

.selectricHover .selectric .button:after {
  border-top-color: #ffffff;
}

.selectricOpen {
  z-index: 9999;
}

.selectricOpen .selectric {
  border-color: #1d5899;
  background: #3171b8;
  z-index: 9999;
}

.selectricOpen .selectricItems {
  display: block;
}

.selectricDisabled {
  filter: alpha(opacity=50);
  opacity: 0.5;
  cursor: default;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.selectricHideSelect {
  position: relative;
  overflow: hidden;
  width: 0;
  height: 0;
}

.selectricHideSelect select {
  position: absolute;
  left: -100%;
  display: none;
}

.selectricInput {
  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;
}

.selectricTempShow {
  position: absolute !important;
  visibility: hidden !important;
  display: block !important;
}

/* Items box */

.selectricItems {
  display: none;
  position: absolute;
  overflow: auto;
  top: 100%;
  left: 0;
  background: #3171b8;
  border: 1px solid #1d5899;
  z-index: 9998;
  -webkit-box-shadow: 0 0 10px -6px;
  box-shadow: 0 0 10px -6px;
}

.selectricItems ul,
.selectricItems li {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 12px;
  line-height: 20px;
  min-height: 20px;
}

.selectricItems li {
  display: block;
  padding: 5px;
  border-top: 1px solid #347ed0;
  border-bottom: 1px solid #2965a8;
  color: #fff;
  cursor: pointer;
}

.selectricItems li.selected {
  background: #2363aa;
  color: #d9d9d9;
  border-top-color: #054791;
}

.selectricItems li:hover {
  background: #2f76c6;
  color: #d9d9d9;
}

.selectricItems li.disabled {
  background: #3171b8;
  color: #BBB;
  border-top-color: #FAFAFA;
  cursor: default;
}