.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: 100%;  }
.justselect-wrapper.error{
  border: solid 1px #ff0000;
}

.justselect-title {
  background: white;
  border: 1px solid #ebebeb;
  text-align: left;
  padding: 0 15px;
  height: 40px;
  width: calc($selectMinWidth - 2*$selectPadding);
  line-height: 40px;
  outline: none;
  font-size: 1vw;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.2vw;
}

.justselect-list {
  position: absolute;
  left: 0;
  top: 40px;
  width: 120%;
  list-style: none;
  padding: 0;
  border: 1px solid #4c446d;
  background-color: #fff;
  display: none;
  z-index: 1;
  overflow: hidden;
  margin: 0;
}

  .justselect-list li {
    /* margin: 10px auto; */
    border-top: solid 1px #4c446d;
    cursor: pointer;
    text-align: left;
    padding: 15px 15px;
    background: white;
    text-transform: uppercase;
    font-size: 1vw;
    letter-spacing: 0.2vw;
  }
    .justselect-list li sub{
      letter-spacing: normal;
    }
  .justselect-list li:first-child{display: none; }
    .justselect-list li.selected {
      background: #ebebeb; }
  .justselect-list.active {
    display: block; }


    @media all and (max-width: 960px){
      .justselect-list li, .justselect-title{font-size: 3vw;}
    }
