.selecter {
    display: block;
    float: left;
    margin: 0px; /*0 8px 10px 0;*/
    position: relative;
    min-width: 30%;
    z-index: 1;
}

.selecter .selecter-element {
    *left: -999999px;
    height: 100%;
    left: 0;
    position: absolute;
    opacity: 0;
    width: 100%;
    z-index: 0;
}

.selecter-selected:after {
    content: "";
    width: 0;
    height: 0;
    position: absolute;
    right: 0px;
    top: 43%;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #FFF;
    border-bottom: 5px solid transparent;
}

.selecter .selecter-element,
.selecter .selecter-element:focus {
    outline: none;
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
    -webkit-tap-highlight-color: transparent;
}

.selecter .selecter-selected {
    /* background: #fff url(/tg/images/pc/layout/select_down.png) no-repeat 205px center;
     border: 1px solid #dadada;
     color: #333;*/
    background-color: transparent;
    border: none;
    color: white;
    cursor: pointer;
    display: block;
    font-size: 16px;
    margin: 0;
    overflow: hidden;
    padding: 6px 15px 6px 0px; /*15px 35px 15px 10px;*/
    position: relative;
    text-overflow: clip;
    z-index: 2;
}

.selecter .selecter-options {
    border: 1px solid #ccc;
    border-width: 0 1px 1px;
    background-color: #fefefe;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
    display: none;
    left: 0;
    margin: 0;
    max-height: 245px;
    overflow: auto;
    overflow-x: hidden;
    padding: 0;
    position: absolute;
    top: 100%;
    width: 99.5%;
    *width: auto;
    z-index: 50;

    max-height: 400px;
    min-width: 250px;
    line-height: 22px;
}

.fj12 .selecter .selecter-options {
    border: 1px solid #ccc;
    border-width: 0 1px 1px;
    background-color: #fefefe;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
    display: none;
    left: 0;
    margin: 0;
    max-height: 495px;
    overflow: auto;
    overflow-x: hidden;
    padding: 0;
    position: absolute;
    top: 100%;
    width: 99.5%;
    *width: auto;
    z-index: 50;
}

.selecter .selecter-group {
    background: #F9F9F9;
    border-bottom: 1px solid #e3e3e3;
    color: #999;
    display: block;
    font-size: 11px;
    padding: 5px 10px 4px;
    text-transform: uppercase;
}

.selecter .selecter-item {
    background: #fff;
    border-bottom: 1px solid #e3e3e3;
    color: #333;
    cursor: pointer;
    display: block;
    font-size: 16px;
    margin: 0;
    overflow: hidden;
    padding: 8px 10px;
    text-align: left;
    text-overflow: ellipsis;
}

.selecter .selecter-item.disabled {
    color: #999;
    cursor: default;
}

.selecter .selecter-item:first-child {
    border-radius: 0;
}

.selecter .selecter-item:last-child {
    border-bottom: 0;
}

@media screen and (min-width: 980px) {
    .selecter .selecter-item:hover,
    .selecter .selecter-item.selected:hover {
        background-color: #f3f3f3;
    }

    .selecter .selecter-item.disabled:hover {
        background-color: #fff;
    }

    .selecter:hover .selecter-selected {
        /*background-color: #fff;*/
    }

    .selecter.disabled .selecter-item:hover {
        background: #fff;
    }
}

/* Open */
.selecter.open {
    z-index: 40;
}

.selecter.open .selecter-selected {
    z-index: 51;
}

.selecter.open .selecter-selected,
.selecter.focus .selecter-selected {
    border: none;
    background-color: transparent; /*background-color: #fff;*/
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

/* 'Cover' Positioning */
.selecter.cover .selecter-options {
    border-width: 1px;
    top: 0;
}

.selecter.cover.open .selecter-selected {
    z-index: 49;
}

/* 'Bottom' Positioning */
.selecter.bottom .selecter-options {
    border-width: 1px 1px 0;
    bottom: 100%;
    top: auto;
}

.selecter.bottom .selecter-item:last-child {
    border: none;
}

/* 'Bottom' + 'Cover' Positioning */
.selecter.bottom.cover .selecter-options {
    bottom: 0;
    top: auto;
}

/* Multiple Select */
.selecter.multiple .selecter-options {
    border-width: 1px;
    box-shadow: none;
    display: block;
    position: static;
    width: 100%;
}

/* 'Disabled' State */
.selecter.disabled .selecter-selected {
    background: #fff;
    border-color: #eee;
    color: #ccc;
    cursor: default;
}

.selecter.disabled .selecter-options {
    background: #fff;
    border-color: #eee;
}

.selecter.disabled .selecter-group,
.selecter.disabled .selecter-item {
    border-color: #eee;
    color: #ccc;
    cursor: default;
}

.selecter.disabled .selecter-item.selected {
    background: #fafafa;
}

/* Scroller Support */
.selecter .selecter-options.scroller {
    overflow: hidden;
}

.selecter .selecter-options.scroller .scroller-content {
    max-height: 251px;
    padding: 0;
}

/* for sp display */
@media all and (min-width: 0px) and (max-width: 720px) {
    .selecter .selecter-element {
        z-index: 5 !important;
    }
}

/* /for sp display */

