﻿/* FAST MOVING CLASSES */

.fm_container {
    background: #e4e4e4;
    min-width: 970px;
}

.fm_list > li {
    float: left;
    border-right: 2px solid #fff;
    position: relative;
    padding: 0.8rem 0.2rem;
    background: #d2cfcf;
    height: 58px;
}

    .fm_list > li:first-child {
        border-right: none;
        background: #e4e4e4;
        display:none;
    }

.fm_list > li:first-child:hover {
    background: none;
}

    .fm_list > li:hover {
        background: #e7db96;
    }

.fm_list > li:hover .fm_submenu {
    max-height: 1000px;
    transition: max-height 0.5s ease-in;
}


.fm_list > li img {
    width: 30px;
    height: auto;
}

.fm_title_list span {
    color: #cd1f36;
    padding: 0.7rem 0.4rem 0;
    float: left;
    font-size: 12px;
    width: 135px;
    font-weight: bold;
    text-transform: uppercase;
}


.fm_submenu {
    background: #e7db96;
    position: absolute;
    min-width: 200px;
    max-height: 0;
    transition: max-height 0.15s ease-out;
    overflow: hidden;
    z-index: 1000;
    top:58px;
    left: 0;
}

.fm_submenu > li {
    font-size:12px;
    padding:4px 6px;
    cursor: pointer;
}
.fm_submenu > li:hover {
    background: #e4e4e4;
}

.fm_select {
    padding: 5px;
    align-self: center !important;
}

.fm_select select {
    padding: 3px;
    border: 1px solid #fff;
    width:110px
}