/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : 21/ago/2019, 11:55:02
    Author     : Jorge Rodrigues
*/

.icon_close{
    background-image: url("../../images/icons/FFFFFF/close.svg");
}

.draggable_holder{
    position: absolute;
    z-index: 9999;
    
    background-color: #fff;
    
    -webkit-box-shadow: 0px 0px 12px rgba(0,0,0,0.2);
    -moz-box-shadow: 0px 0px 12px rgba(0,0,0,0.2);
    box-shadow: 0px 0px 12px rgba(0,0,0,0.2);  
    
    display: none;
    paddding: 10px;
    
    min-height: 200px;
    
    /*
    -webkit-border-top-left-radius: 5px;
    -webkit-border-top-right-radius: 5px;
    -webkit-border-bottom-right-radius: 5px;
    -webkit-border-bottom-left-radius: 5px;

    -moz-border-radius-topleft: 5px;
    -moz-border-radius-topright: 5px;
    -moz-border-radius-bottomright: 5px;
    -moz-border-radius-bottomleft: 5px;

    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
    */
    
    overflow: hidden;
}
.draggable_title{
    position: relative;
    width: 100%;
    height: 40px;    
    
    -webkit-border-top-left-radius: 5px;
    -webkit-border-top-right-radius: 5px;
    -webkit-border-bottom-right-radius: 0px;
    -webkit-border-bottom-left-radius: 0px;

    -moz-border-radius-topleft: 5px;
    -moz-border-radius-topright: 5px;
    -moz-border-radius-bottomright: 0px;
    -moz-border-radius-bottomleft: 0px;

    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 0px;
    border-bottom-left-radius: 0px;
}
.draggable_content{
    position: relative;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    overflow-y: hidden;
}

.draggable_content_scroll{
    position: relative;
    width: 100%;
    height: 100%;
    overflow-x: auto;
    overflow-y: auto;
}

.btn_close_draggable{
    position: absolute;
    right: 10px;
    top: 10px;
    height: 25px;
    width: 25px;
    z-index: 1;
    cursor:pointer;
    background-size: 20px;
    background-repeat: no-repeat;
    background-position: center;
}

.btn_icon_right{
    position: relative;
    width: 32px;
    height: 32px;
    float: right;
    top: 0px;
    cursor: pointer;        
    background-repeat: no-repeat;
    background-size: 12px 12px;
    background-position: center center;    
    border-radius: 50%;
    margin: 4px;
}
.btn_icon_right:active{
    -webkit-box-shadow: inset 0px 0px 4px rgba(0,0,0,0.3);
    -moz-box-shadow: inset 0px 0px 4px rgba(0,0,0,0.3);
    box-shadow: inset 0px 0px 4px rgba(0,0,0,0.3);  
}

.draggable_title_holder{
    position:relative;
    height: 45px;
    width: 100%;
    background-color: #007A63;
}

.draggable_title_text{
    position: relative;
    height: 45px;
    width: 100%;
    line-height: 45px;
    color: #fff;
    font-size: 12px;
    text-indent: 20px;
}