.justselect-body-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  z-index: 1; }

.justselect {
  display: none; }

.justselect-wrapper {
  position: relative;
  width: 70%;display: inline-block; }

.justselect-title {
  background:#00769f;
  color:#fff;
  font-weight:500;
  text-align: left;
  padding: 4px 12px;
  width: calc($selectMinWidth - 2*$selectPadding);
  outline: none;
  cursor: pointer;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  border-radius: 5px;
  font-size: 16px; position:relative;}
  .justselect-title:after{position: absolute;right:15px;content: "\f105";top:-2px;font-size: 24px;color: #fff;transform: rotate(
90deg);font-family: FontAwesome;}

.justselect-list {
  position: absolute;
  left: 0;
  top: 40px;
  width: 100%;
  list-style: none;
  padding: 0;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  border-radius: 5px;
  -webkit-box-shdow: 0px 0px 10px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.05);
  display: none;
  z-index: 999;
  overflow: hidden;
  margin: 0;
  font-size: 14px; }
  .justselect-list li {
    line-height: 40px;
    cursor: pointer;
    text-align: left;
    padding: 0 15px;
    background: white;color: #000;font-weight: 500;font-size: 14px; }
    .justselect-list li.selected {
      background: #ebebeb; }
  .justselect-list.active {
    display: block; }
