/* COMPASS IMPORTS */
/* Dropdown Box Styling */
.dk-select, .dk-select *, .dk-select *:before, .dk-select *:after, .dk-select-multi, .dk-select-multi *, .dk-select-multi *:before, .dk-select-multi *:after {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.dk-select, .dk-select-multi {
  height: 36px;
  font: 18px "Lato", Arial;
  font-style: normal;
  position: relative;
  margin-bottom: 15px;
  display: inline-block;
  vertical-align: middle;
  line-height: 1.5em;
  width: 100%;
  cursor: pointer;
}

.dk-selected {
  color: #bcbec0;
  font-size: 14px;
  border-radius: 2px;
  border: solid 1px #4d4d4f;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  min-height: 33px;
  line-height: 36px;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  position: relative;
  background-color: #fff;
  padding: 0 30px 0 15px;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
}

.dk_container, .dk-select {
  position: relative;
}
.dk_container:after, .dk-select:after {
  content: "\e946";
  font-family: 'SB-Icons';
  color: #00aeef;
  position: absolute;
  right: 15px;
  top: 8px;
  transition: 0.3s -webkit-transform;
  transition: 0.3s transform;
}
.dk_container.dk_open:after, .dk_container.dk-select-open-down:after, .dk-select.dk_open:after, .dk-select.dk-select-open-down:after {
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
  -webkit-transform: rotateX(-180deg);
  transform: rotateX(-180deg);
}

.dk-selected-disabled {
  color: #BBBBBB;
}

.dk-select .dk-select-options {
  position: absolute;
  display: none;
  left: 0;
  right: 0;
}

.dk-select-open-up .dk-select-options {
  /* border-radius: 0; */
  margin-bottom: -1px;
  bottom: 100%;
}

.dk-select-open-down .dk-select-options {
  /* border-radius: 0; */
  margin-top: -1px;
  top: 100%;
}

.dk-select-multi .dk-select-options {
  max-height: 10em;
}

/* Actual Dropdown Box */
.dk-select-options {
  background-color: white;
  color: #4d4d4f;
  font-size: 14px;
  border: 1px solid #00aeef;
  border-radius: 0 0 2px 2px;
  list-style: none;
  margin: 0;
  max-height: 191px;
  min-width: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 5px 0;
  width: auto;
  z-index: 100;
}

.dk-option-selected {
  color: #fff;
}

.dk-select-options-highlight .dk-option-selected {
  color: inherit;
}

.dk-option {
  margin-bottom: 15px;
  padding: 0 15px;
  margin-bottom: 5px;
  line-height: 26px;
  color: #4d4d4f;
}

.dk-select-options .dk-option-highlight {
  background-color: #00aeef;
  line-height: 26px;
  color: #fff;
}

.dk-select-options .dk-option-disabled {
  color: #BBBBBB;
}

.dk-optgroup {
  /* border: solid #819aa9; */
  border-width: 1px 0;
  padding: 0.25em 0;
  margin-top: 0.25em;
}

.dk-optgroup + .dk-option {
  margin-top: 0.25em;
}

.dk-optgroup + .dk-optgroup {
  border-top-width: 0;
  margin-top: 0;
}

.dk-optgroup:nth-child(2) {
  padding-top: 0;
  border-top: none;
  margin-top: 0;
}

.dk-optgroup:last-child {
  border-bottom-width: 0;
  margin-bottom: 0;
  padding-bottom: 0;
}

.dk-optgroup-label {
  padding: 0 0.5em 0.25em;
  font-weight: bold;
  width: 100%;
}

.dk-optgroup-options {
  list-style: none;
  padding-left: 0;
}

.dk-optgroup-options li {
  padding-left: 1.2em;
}

.dk-select-open-up .dk-selected:before, .dk-select-open-down .dk-selected:before {
  border-width: 0 0.25em 0.25em;
}

.dk-select-open-up .dk-select-options, .dk-select-open-down .dk-select-options, .dk-select-multi:focus .dk-select-options {
  display: block;
}

.dk-select-multi:hover, .dk-select-multi:focus {
  outline: none;
}

.dk-selected:hover, .dk-selected:focus {
  outline: none;
}

.dk-select-disabled {
  opacity: 0.6;
  color: #BBBBBB;
  cursor: not-allowed;
}

.dk-select-disabled .dk-selected:hover, .dk-select-disabled .dk-selected:focus {
  border-color: inherit;
}

.dk-select-disabled .dk-selected:hover:before, .dk-select-disabled .dk-selected:focus:before {
  border-top-color: inherit;
}

.dk-select-disabled .dk-selected:hover:after, .dk-select-disabled .dk-selected:focus:after {
  border-left-color: inherit;
}

select[data-dkcacheid] {
  display: none;
}

/* Dropdown Options */
/* End Dropdown Box Styling */
@media screen and (min-width: 866px) {
  .dk-select, .dk-select-options {
    /*    width: 260px; */
    /* width: 100%; */
  }
}
