﻿/*CLASSES do COMPONENTE MULTISELECT CUSTOM*/
.containerMultiSelect {
    width: 500px;
}

    .containerMultiSelect ul {
        list-style-type: none;
        margin: 0;
        padding: 0;
    }

        .containerMultiSelect ul li {
            width: 100%;
        }

            .containerMultiSelect ul li a {
                width: 100%;
                float: left;
                color: #000;
                text-decoration: none;
                padding-left: 5%;
                padding-top: 2px;
                padding-bottom: 2px;
                border-bottom: 1px solid #e5e5e5;
            }

                .containerMultiSelect ul li a[data-visible="invisible"] {
                    display: none;
                }

                .containerMultiSelect ul li a:hover {
                    background: #e2e2e2;
                }

    .containerMultiSelect .boxitems {
        width: 45%;
        height: 200px;
        overflow: auto;
        float: left;
        border: 1px solid #e2e2e2;
    }

.separator {
    margin-top: 75px;
    width: 10%;
    height: 125px;
    float: left;
    font-size: 1.2em;
}

    .separator .action {
        cursor: pointer;
    }

    .separator span {
        margin-left: 30%;
        margin-bottom: 20px;
        width: 70%;
        height: 15px;
        float: left;
        color: #515151;
        text-decoration: none;
    }