.col {
    vertical-align: top;
    text-align: left;
}

p,
.text li {
    /*font-size: 16px;
    font-weight: 300;*/
}

p.legal {
    font-size: 14px;
    margin-bottom: 0;
}


ul.text {
    margin: 0 0 30px 18px;
    list-style: square;
}

.text li {
    line-height: 1.4;
    margin-bottom: 12px;
}

select,
.dropdown {
    margin-bottom: 30px;
    display: inline-block;
}

.dropdown {
    margin-right: 8px;
    opacity: 0;
}

.flat,
.flat div,
.flat li,
.flat div::after,
.flat .carat,
.flat .carat:after,
.flat .selected::after,
.flat:after {
    -webkit-transition: height 150ms ease-in-out;
    -moz-transition: height 150ms ease-in-out;
    -ms-transition: height 150ms ease-in-out;
    transition: height 150ms ease-in-out;
}

.flat .selected::after,
.flat.scrollable div::after {
    -webkit-pointer-events: none;
    -moz-pointer-events: none;
    -ms-pointer-events: none;
    pointer-events: none;
}

/* WRAPPER */

.flat {
    position: relative;
    width: 100%;
    height:42px;
    line-height:42px;
    cursor: pointer;
    font-weight: 200;
    background: #f2f2f2;
    /*padding: 8px 0px 8px;*/
    border-radius: 5px;
    color: #282828;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

.flat.open {
    z-index: 2;
}

.flat:hover,
.flat.focus {
    /*background: #00C384;*/
}

/* CARAT */

.flat .carat,
.flat .carat:after {
    background: url("../images/shixinjiantou.svg") no-repeat;
    width: 12px;
    height: 7px;
    position: absolute;
    right: 10px;
    top: 18px;
    z-index: 1;
    margin: 0;
}

.flat:hover .carat:after {
    border-top-color: #f4f4f4;
}

.flat.focus .carat {
    border-top-color: #f8f8f8;
}

.flat.focus .carat:after {
    border-top-color: #0180d1;
}

.flat.open .carat {

    /*-webkit-transform: rotate(180deg);*/
    /*-moz-transform: rotate(180deg);*/
    /*-ms-transform: rotate(180deg);*/
    /*transform: rotate(180deg);*/
}

/* OLD SELECT (HIDDEN) */

.flat .old {
    position: absolute;
    left: 0;
    top: 0;
    height: 0;
    width: 0;
    overflow: hidden;
}

.flat select {
    position: absolute;
    left: 0px;
    top: 0px;
}

.flat.touch select {
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
}

/* SELECTED FEEDBACK ITEM */
.flat .selected {
    color: #666666;
}

.flat .selected,
.flat li {
    display: block;
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
    overflow: hidden;
    white-space: nowrap;
}
.flat li{
    line-height:40px;
    padding-left:20px;
}

.flat .selected {
    /*padding: 8px 12px;*/
    line-height:42px;
    padding:0 12px;
}

.flat:hover .selected::after,
.flat.focus .selected::after {
    /*box-shadow: inset -55px 0 25px -20px #00c384;*/
}

/* DROP DOWN WRAPPER */

.flat div {
    position: absolute;
    height: 0;
    left: 0;
    right: 0;
    top: 100%;
    margin-top: 1px;
    opacity: 0;
    border-radius: 4px;
    box-shadow: 0px 1px 12px 0px rgba(0, 0, 0, 0.20);
    overflow:hidden;
}

.flat:hover div {
    border-radius: 5px;
}

/* Height is adjusted by JS on open */

.flat.open div {
    padding-top:10px;
    opacity: 1;
    z-index: 2;
    background:#ffffff;
}

/* FADE OVERLAY FOR SCROLLING LISTS */

.flat.scrollable div::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 50px;

    box-shadow: inset 0 -50px 30px -35px #00c384;
}

.flat.scrollable:hover div::after {
    box-shadow: inset 0 -50px 30px -35px #00c384;
}

.flat.scrollable.bottom div::after {
    opacity: 0;
}

/* DROP DOWN LIST */

.ul-select {
    position: absolute;
    left: 0;
    top: 0;
    /*height: 100%;*/
    width: 100%;
    list-style: none;
    border-radius: 5px;
}

.flat.scrollable.open ul {
    overflow-y: auto;
}

/* DROP DOWN LIST ITEMS */

.flat li {
    list-style: none;
}

.flat li:last-child {
    border-bottom: 0;
}

/* .focus class is also added on hover */

.flat li.focus {
    /*position: relative;*/
    z-index: 3;
    background: #f2f2f2;
}

.flat li.active {
    color:#d36f16;
}

section.classify-select{
    padding: 0 30px;
}