.botaoDefinicoes {
    background: #FD7215;
    color: #fff;
    font-family: 'Roboto Condensed';
    font-size: 16pt;
    font-weight: 700;
    text-align: center;
    vertical-align: middle;
    border: 1px solid;
    transition: all 0.3s ease 0s;
    outline: none;
    padding-left: 10px;
    padding-right: 10px;
    right: 10px;
    width: 100%;
}

    .botaoDefinicoes:hover {
        background: white;
        color: #FD7215;
        cursor: pointer;
        border: 1px solid;
    }

    .botaoDefinicoes:disabled {
        background: gray;
        color: white;
        cursor: pointer;
        border: 1px solid;
    }

.loader {
    border: 16px solid lightgray;
    border-radius: 50%;
    border-top: 16px solid #FD7215;
    border-bottom: 16px solid #FD7215;
    width: 200px;
    height: 200px;
    -webkit-animation: spin 1.5s ease infinite;
    animation: spin 1.5s ease infinite;
    z-index: 50001;
    display: inline-block;
    margin-top: 20%;
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

ul.tree, ul.tree ul {
    list-style: none;
    margin-left: 30px;
    padding: 0;
}

    ul.tree ul {
        margin-left: 30px;
    }

    ul.tree li {
        margin: 0;
        padding: 0 7px;
        line-height: 20px;
        color: #333333;
        font-family: 'Roboto Condensed';
        font-weight: bold;
        font-size: 8pt;
        border-left: 1px solid rgb(100,100,100);
    }

        ul.tree li:last-child {
            border-left: none;
        }

        ul.tree li:before {
            position: relative;
            top: -0.3em;
            height: 1em;
            width: 12px;
            color: white;
            border-bottom: 1px solid rgb(100,100,100);
            content: "";
            display: inline-block;
            left: -7px;
        }

        ul.tree li:last-child:before {
            border-left: 1px solid rgb(100,100,100);
        }

span.add-tree {
}

    span.add-tree:hover {
        text-decoration: underline;
        cursor: pointer;
    }

span.del-tree {
}

    span.del-tree:hover {
        text-decoration: underline;
        cursor: pointer;
    }

span.add-agent {
}

    span.add-agent:hover {
        text-decoration: underline;
        cursor: pointer;
    }