.selectboxit {
  position: relative;
  overflow: hidden;
  display: block;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  height: 30px;
  margin: 0;
  padding: 0 10px;
  background: #f3f3f3;
  background: -webkit-gradient(linear, left top, left bottom, from(#f3f3f3), to(#dddddd));
  background: -webkit-linear-gradient(top, #f3f3f3, #dddddd);
  background: -webkit-linear-gradient(top, #f3f3f3 0%, #dddddd 100%);
  background: linear-gradient(to bottom, #f3f3f3 0%, #dddddd 100%);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.75) inset, 0 1px 0 rgba(255, 255, 255, 0.75);
  border: 1px solid #bbb;
  border-radius: 3px;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
  outline: 0;
  color: #333;
  font: 13px sans-serif;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.selectboxit-container {
  position: relative;
  display: block;
}
.selectboxit.selectboxit-open {
  border-radius: 3px 3px 3px 0;
}
.selectboxit.selectboxit-open, .selectboxit.selectboxit-focus {
  border-color: #cfb564;
  box-shadow: 0 0 7px rgba(255, 210, 0, 0.5), 0 1px 0 rgba(255, 255, 255, 0.5);
}
.selectboxit-text {
  overflow: hidden;
  display: block;
  float: left;
  line-height: 27px;
  max-width: 100% !important;
  text-overflow: ellipsis;
}

.selectboxit-arrow {
  position: absolute;
  top: 50%;
  right: 12px;
  display: block;
  width: 7px;
  height: 12px;
  margin-top: -6px;
  background: url(http://gameclub.by/i/select.svg) no-repeat;
}
.selectboxit-arrow-container {
  position: absolute;
  top: 0;
  right: 0;
  width: 34px;
  height: 100%;
}
.selectboxit-options {
  position: absolute;
  min-width: 100%;
  max-height: 250px;
  overflow-x: hidden;
  overflow-y: auto;
  list-style: none;
  display: none;
  z-index: 999;
  margin: 0;
  padding: 2px 0;
  background: #fff;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.075), 0 0 0 1px rgba(0, 0, 0, 0.05);
  border: solid #bbb;
  border-width: 0 1px 1px;
  border-radius: 0 0 3px 3px;
  text-align: left;
}

.selectboxit.selectboxit-disabled,
.selectboxit-options .selectboxit-disabled {
  opacity: 0.65;
  filter: alpha(opacity=65);
  box-shadow: none;
  cursor: default;
}

.selectboxit-option.selectboxit-option-first {
  border-top-right-radius: 3px;
  border-top-left-radius: 3px;
}
.selectboxit-option.selectboxit-option-last {
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
}
.selectboxit-option .selectboxit-option-anchor {
  display: block;
  padding: 9px 19px;
  color: #333;
  text-decoration: none;
}
.selectboxit-option .selectboxit-option-anchor:hover {
  cursor: pointer;
  background: #f9f9f9
}
.selectboxit-option.selectboxit-disabled > .selectboxit-option-anchor {
  color: #999999;
}

.selectboxit-rendering {
  display: inline-block !important;
  *display: inline !important;
  zoom: 1 !important;
  visibility: visible !important;
  position: absolute !important;
  top: -9999px !important;
  left: -9999px !important;
}
