/* 장관과 대화(민원상담)
#moj_siteMap ul.moj_siteMap li:nth-child(1) ._stMpWrap ul li:last-child {
	display: none;
}
 */

/* nice-sellect */
.nice-select {
	color: #acaaaa;
    -webkit-tap-highlight-color: transparent;
    background-color: #4d4d4d;
    /*border-radius: 5px;*/
    border: solid 1px #737373;
    box-sizing: border-box;
    clear: both;
    cursor: pointer;
    display: block;
    float: left;
    font-family: inherit;
    font-size: 12px;
    font-weight: normal;
    height: 30px;
    line-height: 28px;
    position: relative;
    text-align: left !important;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    white-space: nowrap;
    width: auto;
}

.nice-select:hover {
    border-color: #dbdbdb;
}

.nice-select:active, .nice-select.open, .nice-select:focus {
    border-color: #999;
}

.nice-select:after {
    content: '';
    /* background: url("../images/common/sel_arrow.png") no-repeat center center; */
    display: block;
    width: 40px;
    height: 30px;
    pointer-events: none;
    position: absolute;
    right: 0;
    top: 0;
    transition: all 0.15s ease-in-out;
}

.nice-select.open:after {
    transform: rotate(180deg);
}

.nice-select.open .list {
    display: block;
    pointer-events: auto;
    -webkit-transform: scale(1) translateY(0);
    -ms-transform: scale(1) translateY(0);
    transform: scale(1) translateY(0);
}

.nice-select.disabled {
    border-color: #ededed;
    color: #999;
    pointer-events: none;
}

.nice-select.disabled:after {
    border-color: #cccccc;
}

.nice-select.wide {
    width: 100%;
}

.nice-select.wide .list {
    left: 0 !important;
    right: 0 !important;
}

.nice-select.right {
    float: right;
}

.nice-select.right .list {
    left: auto;
    right: 0;
}

.nice-select.small {
    font-size: 12px;
    height: 36px;
    line-height: 34px;
}

.nice-select.small:after {
    height: 4px;
    width: 4px;
}

.nice-select.small .option {
    line-height: 36px;
    min-height: 36px;
}

.nice-select .list {
	color: #acaaaa;
    background-color: #fff;
    border: 1px solid #c3c3c3;
    box-sizing: border-box;
    margin-top: 4px;
    display: none;
    overflow: hidden;
    padding: 1px;
    pointer-events: none;
    position: absolute;
    top: 120%;
    left: 0;
    z-index: 101;
	width: 100%;
}

.nice-select .list:hover .option:not(:hover) {
    background-color: transparent !important;
}

.nice-select .option {
    font-size: 13px;
    font-weight: 200;
	color: #4d4d4d;
    cursor: pointer;
    list-style: none;
    outline: none;
    text-align: center;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
}

.nice-select .option:hover, .nice-select .option.focus, .nice-select .option.selected.focus {
    background-color: #f6f6f6;
}

.nice-select .option.selected {
    font-weight: 400;
}

.nice-select .option.disabled {
    background-color: transparent;
    color: #999;
    cursor: default;
}

.no-csspointerevents .nice-select .list {
    display: none;
}

.no-csspointerevents .nice-select.open .list {
    display: block;
}

