/*======================================================================
  Selectric
======================================================================*/
.selectricWrapper {
  position: relative;
/*  margin: 0 0 10px;*/
  width: 242px;
  cursor: pointer;
  z-index: 10;
}

.selectricResponsive {
  width: 100%;
}

.selectric {
  border: 2px solid #ccc;
  background: #000;
  position: relative;
  border-radius: 5px;
  min-height: 40px;
}
.selectric .label {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  margin: 0 36px 0 0;
  padding: 8px 10px;
  font-size: 14px;
  line-height: 24px;
  color: #f7f7f7 !important;
  min-height: 24px;
}
.login-block.new_login_block .selectric .label{
    white-space: wrap;
    overflow: hidden;
    padding: 0 36px;
    margin: 0;
    font-size: 14px;
    line-height: 40px;
    color: #f7f7f7 !important;
    min-height: 24px;
    max-height: 40px;
}
.selectric .button {
  background: ;
  border-radius: 0px;
  display: block;
  position: absolute;
  right: 0px;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 30px;
  height: 30px;
  color: #6B5E5E;
  text-align: center;
  font: 0/0 a;
  /* IE Fix */
  *font: 30px/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: #c7bcbc;
  border-bottom: none;
}

.selectricHover .selectric {
  /*border-color: #c7bcbc;*/
}
.selectricHover .selectric .button {
  color: #c7bcbc;
}
.selectricHover .selectric .button:after {
  border-top-color: #c7bcbc;
}

.selectricOpen {
  z-index: 111;
}

.selectricOpen .selectric {
  border-color: #ccc;
  background: #000;
  border-radius: 5px 5px 0 0;
}
.selectricOpen .selectricItems {
  display: block;
}

.selectricDisabled {
 /* filter: alpha(opacity=1);
  opacity: 1;*/
  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 */

#edit_state_div .selectricItems, .dob_dropdowns .selectricItems, #reg_state_div .selectricItems{
    max-height: 120px !important;
    overflow: auto;
}
.selectricItems {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #000;
  border: 2px solid #ccc;
  z-index: 101;
  border-radius: 0 0 5px 5px;
  border-top: none;
}
.selectricItems .selectricScroll {
  height: 100%;
  overflow: auto;
}
.selectricAbove .selectricItems {
  top: auto;
  bottom: 100%;
}
.selectricItems ul, .selectricItems li {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
  line-height: 20px;
  min-height: 20px;
}
.selectricItems li {
    display: block;
    padding: 9px 6px;
    border-bottom: 2px solid #ccc !important;
    color: #fff !important;
    height: auto !important;
    cursor: pointer;
    background: #000;
    line-height: inherit  !important;
    margin: 0 !important;
}
.selectricItems li:last-child{
	border: none;	
}
.selectricItems li.selected {
  background: #0f0f0f;
  color: #F7F7F7;
  border-top-color: #ccc;
}
.selectricItems li:hover {
  background: #0f0f0f;
  color: #FFF;
}
.selectricItems li.disabled {
  background: #F5F5F5;
  color: #BBB;
  border-top-color: #FAFAFA;
  cursor: default;
}

bookingform.register-block .selectricItems {
	max-height: 120px;
	overflow-y: scroll;	
}
