/* 
    Created on : 26/09/2017, 14:53:19
    Author     : SHL
*/

.form_interativo {
    display: block;
    background-color: #aaa;
    position: relative;
    width: 100vw;
    max-width: 100%;
    padding-bottom: 20px;
}

.form_interativo .select_layout {
    width: 90vw;
    margin: 0 auto;
}

.area_ferramentas {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items:  stretch;
    justify-content: flex-start;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 100%;
    font-size: 1rem;
    padding: 0 10px;
    margin-bottom: 10px;
    background-color: none;
    border: 1px solid #000000;
    box-shadow: 0 3px 3px -3px rgba(0,0,0,.3);
}

.area_ferramentas a {
    justify-content: center;
    padding: 8px 8px 12px 8px;
    color: #000;
    transition: background .3s, color .3s;
}

.area_ferramentas span {
    padding: 8px 8px 12px 8px;
    color: #000;
    border-bottom: 1px solid #000;
}

.area_ferramentas > a:hover {
    /*color: #DDD;*/
    background-color: rgba(55,55,55,.1);
}
.area_ferramentas > a > h6 {
    margin: 0;
    font-size: 1em;
}

.area_ferramentas > a > h6 + i {
    font-size: 1.5em;
}

.area_ferramentas > a > i {
    font-size: 2.2em;
}

.form_interativo > .area_trabalho {
    width: 95vw;
    font-size: 0.9vw;
    margin: 0 auto;
    overflow: auto;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    box-shadow: 0 0 5px 2px rgba(0,0,0,.3);
    z-index:1;
}

.form_interativo > .area_trabalho > .area_papel {
    position: relative;
    width: 70%;
    background-color: #fbfbfb;
    /*box-shadow: 0 0 10px 1px #000 inset;*/
    overflow: hidden;
}

.form_interativo > .area_trabalho > .tamanho {
    width: 0;
    visibility: hidden;
}

.form_interativo .area_componentes .componente,
.form_interativo .area_papel .componente {
    display: inline-block;
}

.form_interativo .area_componentes.textos .componente.texto > p > span.fonte-dados,
.form_interativo .area_trabalho .area_papel .componente.texto > p > span.fonte-dados
{
    display: block;
    font-size: 12px;
    color: #333;
}

.form_interativo .area_trabalho .area_papel .componente.texto > p > span.fonte-dados
{
    position: absolute;
}

.form_interativo .area_componentes.imagens .componente.imagem {
    max-height: 50px;
}

.form_interativo .area_componentes.imagens .componente.imagem img {
    height: 50px;
    width: auto;
}

.form_interativo .area_componentes.imagens .componente.multimagem {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.form_interativo .area_componentes.imagens .componente.multimagem img {
    height: auto;
    width: 200px;
}

.form_interativo .area_trabalho .area_papel .componente {
    overflow: hidden;
    position: absolute !important;
    padding: 0;
    border: 4px dashed #ddd;
    box-sizing: content-box;
}

.form_interativo .area_trabalho .area_papel .componente.bordered {
    border: 4px dashed #555;
}

.form_interativo .area_trabalho .area_papel .componente.selected,
.form_interativo .area_componentes.imagens .componente.multimagem img.selected {
    border: 4px dashed #00ff00;
}

.form_interativo .area_trabalho .area_papel .componente {
    padding: 0 3px;
}

.form_interativo .area_trabalho .area_papel .componente img {
    height:100%;
    display: block;
    margin: 0 auto;
}

.form_interativo .area_trabalho .area_papel .componente.tabela {
    padding: 0;
    min-height: 200px;
}

.form_interativo .area_trabalho .area_papel .componente.tabela .tabela_drag_rotulo,
.form_interativo .area_trabalho .area_papel .componente.tabela ul.table-column-list
{
    display: block;
    font-size: 2rem;
}

.form_interativo .area_trabalho .area_papel .componente.tabela ul.table-column-list
{
    list-style: none;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    justify-content: flex-start;
    padding: 1rem 0;
}

.form_interativo .area_trabalho .area_papel .componente.tabela ul.table-column-list li 
{
    position: relative;
    background-color: #cccccc;
    border-radius: 5px;
    border: 1px solid #666666;
    padding: 0 5px;
    cursor: move;
}

.form_interativo .area_trabalho .area_papel .componente.tabela ul.table-column-list li.table-column-item-plchr
{
    background-color: #ffff99;
    border: 1px solid #ffcc00;
    border-radius: 5px;
}

.form_interativo .area_trabalho .area_papel .componente.tabela ul.table-column-list li i.remove_item_table 
{
    color: red;
    cursor: pointer;
}

.form_interativo .area_trabalho .area_papel .componente span.remove_componente {
    position: absolute;
    top: 0;
    right: 10px;
    padding: 3px;
    cursor: pointer;
    color: red;
    font-size: 1.2rem;
}
.form_interativo .area_trabalho .area_papel .componente span.remove_componente:hover {
    background: rgba(96, 21, 18, .2);
}

div .atalho ul{
    justify-content: flex-end;
    width: 100%;
    height: 100%;
}

div .atalho ul li > a > img {
    height: 34px;
    width: 34px;
}

div .atalho,
div .atalho i {
    border: 1px solid #ccc;    
    border-radius: 5px;
    padding: 5px;
    cursor: pointer;
}
div .atalho:hover{
    border-bottom: 3px solid #FFC100;        
}
div .atalho i:hover {
    background: #f7f7f7;    
}

div .iconeHandler{
    border: 1px solid #CCC;    
    padding: 5px;
    cursor: pointer;
}

div .iconeHandlerMarcado{
    background-color: #ccc;
}

.area_papel .componente label{
    font-size: 15px !important; 
    line-height: 1 !important;
}
.area_papel .componente p{
    line-height: 1 !important;
}