.trsel{
    border: 1px solid silver;
    padding: 5px;
    text-align: center;
    border-radius: 4px;
    cursor: pointer;
    position: relative;
}

#trsel-list{
    border: gray 1px solid;
    width: 100%;
    padding: 0;
    position: absolute;
    display: none;
    list-style: none;
    top: 45%;
    left: -1px;
    background: white;
    border-radius: 0 0 6px 6px;
    overflow: hidden;
    z-index: 99;
    overflow-x: hidden;
}

#trsel-list li{
    padding: 4px;
    border-bottom: 1px solid rgba(33,33,33,0.2);
    display: block;
    text-align: left;
    background: white;
    overflow: hidden;
}

#trsel-list li:nth-child(even){
    background: #efefef;
}

#trsel-list li:last-child{
    border: none;
}

#trsel-list li.trsel-childer{
    background: white url("right.png") no-repeat;
    background-position-x: calc(100% - 10px) ;
    -ms-background-position-y: center;
    background-position-y: center;
    background-size: auto 50% ;
}

#trsel-list li:hover{
    background-color: #dbedff ;
}
#trsel-list li.trsel-back{
    background: white url("left.png") 5px no-repeat;
    padding-left: 30px;
    background-size: auto 50% ;
}


#trsel-list.out{
    transform-origin: center right;
    transform-style: preserve-3d;
    transform: translateX(-100%) rotateY(-180deg) skew(0deg) ;
}
.anim{
    -webkit-transition: all .6s linear;
    -moz-transition: all .6s linear;
    -o-transition: all .6s linear;
    transition: all .6s linear;
}

/** rtl support css */
.trs-rtl{
}

.trs-rtl li {
    direction: rtl !important;
    text-align: right !important;
}
.trs-rtl li.trsel-childer {
    background-image: url("left.png") !important;
    background-position-x: 10px !important;
}
.trs-rtl li.trsel-back {
    background-image:  url("right.png") !important ;
    background-position-x: calc(100% - 10px) !important;
    padding-right: 30px !important;
}
