.device-selector {
  padding: 24px 0 24px 0;
  text-align: center;
}

.device-selector h2 {
  display: inline-block;
  text-transform: uppercase;
  margin: 0 0 12px 0;
  display: block;
  vertical-align: top;
  color: #000;
}

.device-selector .select-container {
  width: 90%;
  position: relative;
  display: block;
  margin: 0 auto 12px auto;
  vertical-align: top;
  height: 40px;
}

.device-selector .select-container.disabled select {
  display: none;
}

.device-selector .select-container.disabled .faux-select {
  opacity: 0.5;
  cursor: not-allowed;
}

.device-selector select {
  z-index: 2;
  width: 100% !important;
  cursor: pointer;
}

.device-selector .faux-select {
  z-index: 1;
  width: 100% !important;
  white-space: nowrap;
  overflow: hidden;
  border: 2px solid #B9B9B9;
  height: 100%;
}

.device-selector select:focus + .faux-select {
  border: 2px solid #B9B9B9 !important;
}

.device-selector .faux-selectInner {
  width: 100% !important;
  text-align: left;
  text-transform: uppercase;
  line-height: 40px;
  padding-left: 12px;
}

.device-selector .faux-selectInner:before {
  position: absolute;
  top: 2px;
  right: 2px;
  background-color: #02BBD5;
  content: "";
  height: 36px;
  width: 36px;
}

.device-selector .faux-selectInner:after {
  content: '';
  border-color: #FFF transparent transparent;
  border-style: solid;
  border-width: 7px 5px;
  top: 18px;
  right: 14px;
  position: absolute;
  transition: border-color 0.2s;
}

.device-selector .faux-selectHover .faux-selectInner:after {
  border-color: #000 transparent transparent;
}

@media screen and (min-width: 600px) {

  .device-selector h2 {
    display: block
  }

  .device-selector .select-container {
    width: 40%;
    position: relative;
    display: inline-block;
    margin-bottom: 0;
  }

  .device-selector .select-container:not(:last-child) {
    margin-right: 30px;
  }
}

@media screen and (min-width: 800px) {

  .device-selector h2 {
    display: inline-block;
    position: relative;
    top: 6px;
    margin: 0 30px 0 0;
  }

  .device-selector .select-container {
    width: 30%;
    max-width: 350px;
  }
}
