.prettydropdown {
  position: relative;
  min-width: 100%; /* 70px + borders */
  display: inline-block;
  margin-bottom: 20px;
  height: 100px;
}
.prettydropdown.loading {
  min-width: 0;
}
.prettydropdown > ul {
  position: absolute;
  top: 0;
  left: 0;
  background: url('../../images/index/img_sel.png') no-repeat 440px 40px #f6f1e8;
  border: 0;
  box-sizing: content-box;
  color: #4c4c4c;
  cursor: pointer;
  font-size: 45px;
  list-style-type: none;
  margin: 0;
  padding: 0;
  text-align: left;
  -webkit-user-select: none; /* Chrome all / Safari all */
  -moz-user-select: none; /* Firefox all */
  -ms-user-select: none; /* IE 10+ */
  user-select: none; /* Likely future */
  z-index: 1;
  border-radius: 20px;
  width: 100%;
  background-size: auto 25px;
  max-height: 100px !important;
}
.prettydropdown > ul:hover {
}
.prettydropdown.loading > ul {
  visibility: hidden;
  white-space: nowrap;
}
.prettydropdown > ul:focus, .prettydropdown:not(.disabled) > ul:hover {
  border-color: #484848;
}
.prettydropdown:not(.disabled) > ul.active {
  width: 100%;
  max-height: none !important;
  border-color: #484848;
  overflow-x: hidden;
  overflow-y: auto;
  z-index: 99;
  box-shadow: 5px 10px 10px rgba(0,0,0,0.17);
}
.prettydropdown > ul.active:focus {
  outline: none;
}
.prettydropdown > ul.active.reverse {
  top: auto;
  bottom: 0;
}
.prettydropdown > ul > li {
  position: relative;
  min-width: 100%;
  height: 100px !important; /* 50px - borders */
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
  box-sizing: border-box;
  display: none;
  line-height: 94px !important; /* 48px - borders */
  margin: 0;
  padding-left: 65px;
  
}
.prettydropdown > ul > li.selected {color:#4c4c4c;}
.prettydropdown > ul > li.selected:hover {color:#4c4c4c;}
.prettydropdown.loading > ul > li {
  min-width: 0;
  display: block;
  padding-right: 0.8rem;
}
.prettydropdown > ul:not(.active) > li:not(.selected):first-child {
  visibility: hidden; /* Prevent FOUC */
}
.prettydropdown > ul > li:first-child, .prettydropdown > ul.active > li {
  display: block;
}
.prettydropdown > ul.active{background:#f6f1e8;}
.prettydropdown > ul.active > li:not(.label):hover, .prettydropdown > ul.active > li.hover:not(.label), .prettydropdown > ul.active > li:first-child:hover:after {
  background: #323232;
  color: #fff;
}
.prettydropdown > ul.active > li.nohover {
  background: inherit !important;
  color: inherit !important;
}

.prettydropdown > ul:not(.active) > li > span.checked {
  display: none;
}

/* Multi-Select */
.prettydropdown.multiple > ul > li.selected {
  overflow: hidden;
  padding-right: 2rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.prettydropdown > ul > li > span.checked {
  clear: both;
  float: right;
  font-weight: bold;
  margin-right: 0.8rem;
}

/* Option Groups */
.prettydropdown > ul > li.label {
  cursor: default;
  font-weight: bold;
}
.prettydropdown > ul > li.label:first-child,
.prettydropdown.classic > ul > li.label ~ li.selected{
  border-top: none;
}
.prettydropdown > ul > li.label ~ li:not(.label):not(.selected),
.prettydropdown.classic > ul.active > li.label ~ li:not(.label) {
  padding-left: 1.6rem;
}

/* Classic Behavior */
.prettydropdown.classic > ul:not(.active) > li.selected:not(:first-child) {
  position: absolute;
  top: 0;
  display: block;
}

/* Disabled */
.prettydropdown.disabled, .prettydropdown > ul > li.disabled {
  opacity: 0.3;
}
.prettydropdown.disabled > ul > li, .prettydropdown > ul > li.disabled {
  cursor: not-allowed;
}

/* Divider Lines */
.prettydropdown.multiple > ul > li.selected + li, .prettydropdown.multiple > ul.reverse > li.selected,
.prettydropdown > ul > li.label, .prettydropdown > ul > li.label ~ li.selected {
  border-top-color: #dedede;
}

@media all and (max-width:1200px){
.prettydropdown{height:50px; margin-bottom:10px;}
.prettydropdown > ul{max-height:50px !important; font-size:22px; background: url('../../images/index/img_sel.png') no-repeat 250px 20px #f6f1e8; background-size:auto 12px;border-radius: 10px;}
.prettydropdown > ul > li{line-height:47px !important; padding-left:30px; height:50px !important;}
}