.c-select-wrap select {
    display: none !important
}

.c-select-wrap.open {
    z-index: 1000
}

.c-select-wrap {
    min-width: 100%;
    height: 28px;
    line-height: 28px;
    font-size: .8125rem;
    font-weight: 300;
    border-radius: 2px;
    background-color: #fff;
    cursor: pointer;
    position: relative;
    padding-right: 16px;
    text-align: left;
    border: 1px solid #E0E0E0;
    /* -webkit-perspective-origin-x: center;
-webkit-perspective-origin-y: center; */
    /* z-index: 10 */
}

.modal-contents .contents-wrap .c-select-wrap {
    height: 34px;
    line-height: 34px;
    font-size: 13px;
    border-radius: 4px;
}

.c-select-wrap.border-start {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.c-select-wrap.border-end {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.c-select-wrap.open .c-select-option {
    pointer-events: auto;
    -webkit-transform: scale(1) translateY(0);
    -ms-transform: scale(1) translateY(0);
    transform: scale(1) translateY(0);
    opacity: 1;
    visibility: visible
}

.c-select-wrap:after {
    content: "\e90d";
    font-family: 'key';
    font-size: 10px;
    color: #D71921;
    position: absolute;
    top: 50%;
    right: .7em;
    -webkit-transform: translateY(-50%) scale(.8);
    -ms-transform: translateY(-50%) scale(.8);
    transform: translateY(-50%) scale(.8);
    transition: all .2s ease-in-out
}

.c-select-wrap.open:after {
    -webkit-transform: translateY(-50%) rotate(-180deg) scale(.8);
    -ms-transform: translateY(-50%) rotate(-180deg) scale(.8);
    transform: translateY(-50%) rotate(-180deg) scale(.8)
}

.c-select-wrap.disabled {
    color: #999;
    background-color: #F1F2F2;
}

.c-select-wrap.disabled:after {
    color: #CCC;
}

.c-select-wrap.full-width {
    width: 100% !important;
}

.c-select-label {
    width: 100%;
    height: 100%;
    line-height: 28px;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 0 20px 0 .5rem;
    display: block;
}

.modal-contents .contents-wrap .c-select-label {
    line-height: 34px;
}

.c-select-label, .c-select-option {
    position: absolute;
    white-space: nowrap;
    left: 0
}

.c-select-option {
    min-width: 100%;
    padding: 0;
    border-radius: 2px;
    margin-top: 2px;
    background-color: inherit;
    top: 100%;
    right: auto;
    overflow: hidden;
    border: 1px solid #dedede;
    transform-origin: 50% 0;
    -webkit-transform: scale(.75) translateY(-21px);
    -ms-transform: scale(.75) translateY(-21px);
    transform: scale(.75) translateY(-21px);
    -webkit-transition: all .2s cubic-bezier(.5, 0, 0, 1.25), opacity .15s ease-out;
    transition: all .2s cubic-bezier(.5, 0, 0, 1.25), opacity .15s ease-out;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    max-height: 200px;
    overflow: auto;
    background-color: #fff;
}

.c-select-option li {
    height: 25px;
    line-height: 25px;
    border-bottom: 1px solid #dedede;
    padding: 0 20px 0 10px;
    cursor: pointer
}

.c-select-option li:last-child {
    border-bottom: none
}

.c-select-option li:hover {
    background-color: #f6f7f9
}

.c-select-option li.selected {
    font-weight: 500
}
