<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* STYLE SELECT (jquery) */
select.styled {
  height: 35px; }

.select-wrap {
  display: block;
  clear: both;
  position: relative; }

.select-wrap select {
  max-width: 300px; }

.customSelect {
  background-color: #fff;
  background-image: url("../images/bg_select.png");
  background-repeat: no-repeat;
  background-position: right center;
  border: 1px solid #000;
  height: 35px;
  width: 100%; }
  @media only screen and (-webkit-min-device-pixel-ratio: 2) {
    .customSelect {
      background-image: url("../images/bg_select_2x.png") !important;
      -webkit-background-size: 500px 34px;
      background-size: 500px 34px; } }

.customSelect.customSelectHover {
  /* Styles for when the select box is hovered */ }

.customSelect.customSelectOpen {
  /* Styles for when the select box is open */ }

.customSelect.customSelectFocus {
  /* Styles for when the select box is in focus */ }

.customSelect.customSelectDisabledOption {
  /* Styles for when the selected item is a disabled one */ }

.customSelect.customSelectDisabled {
  /* Styles for when the select box itself is disabled */ }

.customSelectInner {
  color: #959595;
  line-height: 35px;
  padding: 0 5px;
  width: 100% !important; }</pre></body></html>