/* 셀릭트박스 수정 */
.prettydropdown {
height:60px;
display: inline-block;
position:relative;
}
.prettydropdown.loading {
  min-width: 0;
}
.prettydropdown > ul {
width:240px !important;
max-height:60px !important;
  position: absolute;
  top: 0;
  left: 0;
  background:transparent;
  border:2px solid #fff;
  box-sizing: content-box;
  color: #fff;
  cursor: pointer;
  list-style-type: none;
  margin: 0;
  padding: 0;
  text-align: center;
  -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;
      -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
	  background-color:#2e3092;
}
.prettydropdown.loading > ul {
  visibility: hidden;
  white-space: nowrap;
}
.prettydropdown > ul:focus,
.prettydropdown:not(.disabled) > ul:hover {
  border-color: #ec1b2e;
}
.prettydropdown:not(.disabled) > ul.active {
  width: auto;
  max-height: none !important;
  border-color: #ec1b2e;
  overflow-x: hidden;
  overflow-y: auto;
  z-index: 99;
}
.prettydropdown > ul.active:focus {
  outline: none;
}
.prettydropdown > ul.active.reverse {
  top: auto;
  bottom: 0;
}
.prettydropdown > ul > li {
  position: relative;
  max-width:100%;
  padding:1.125rem 0;
  box-sizing: border-box;
  display: none;
  margin: 0;
  font-size:1rem;
  background-color:#2e3092;
}
.prettydropdown.loading > ul > li {
  min-width: 0;
  display: block;
  padding-right: 0.8rem;
}
.prettydropdown > ul:not(.active) > li:not(.selected):first-child {
  color: transparent; /* Prevent FOUC */
}
.prettydropdown > ul > li:first-child {font-family: 'Play', sans-serif;font-weight:bold}
.prettydropdown > ul > li:first-child,
.prettydropdown > ul.active > li {display: block;}
.prettydropdown > ul.active > li:not(.label):hover,
.prettydropdown > ul.active > li.hover:not(.label),
.prettydropdown > ul.active > li:first-child:hover:after {
  background:#ec1b2e;
  color: #fff;
}
.prettydropdown > ul.active > li.nohover {
  background: 2e3092 !important;
  color: inherit !important;
}
.prettydropdown > ul.active > li.hover:before,
.prettydropdown > ul.active > li.nohover:after {
  border-top-color: #fff !important;
}

.prettydropdown.arrow > ul > li.selected:after {
  top: 4px; /* Chevron thickness */
  border-top-color: #fff; /* Match background colour */
}
.prettydropdown.arrow.small > ul > li.selected:after {
  top: 2px; /* Chevron thickness */
}
.prettydropdown.arrow.triangle > ul > li.selected:after {
  content: none;
}
.prettydropdown > ul:hover > li.selected:before {
  border-top-color: #fff;
}
.prettydropdown > ul.active > li.selected:before,
.prettydropdown > ul.active > li.selected:after {
  border: none;
}
.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;
  font-weight: bold;
  position:absolute;
 right:0.5rem
}

/* 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 > 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: #e51c30;
}
@media all and (max-width:640px) {
.prettydropdown {height:30px}
.prettydropdown > ul {width:150px !important;max-height:30px !important;}
.prettydropdown > ul > li {padding:0.1rem 0;font-size:0.875rem}

}