﻿/* FAST MOVING CLASSES */

.fm_container {
    background: #e4e4e4;
    margin-bottom:15px;
    height: 40px;
}

.fm_list {
    float:left;
    margin-bottom:0;
}

.fm_list > li {
    float: left;
    border-right: 1px dotted #bdbdbd;
    height:40px;
    position:relative;
}

.fm_list > li:first-child {
    border-right: 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: 35px;
    height: auto;
}

.fm_title_list span {
    background: #014164;
    color: #fff;
    box-sizing: border-box;
    height: 40px;
    padding: 0.65rem;
    float: left;
    font-size: 12px;
}

.triangoloEqRight {
    width: 0;
    height: 0;
    border-top: 20px solid transparent;
    border-bottom: 20px solid transparent;
    border-left: 15px solid #014164;
    float: left;
}

.fm_submenu {
    background: #e7db96;
    position: absolute;
    min-width: 200px;
    max-height: 0;
    transition: max-height 0.15s ease-out;
    overflow: hidden;
    z-index: 1000;
}

.fm_submenu > li {
    font-size:12px;
    padding:4px 6px;
    cursor: pointer;
}
.fm_submenu > li:hover {
    background: #e4e4e4;
}

.fm_select {
    padding: 7px 5px;
}

    .fm_select select {
        padding: 3px;
        border: 1px solid #fff;
        max-width: 90px;
    }