@font-face {
    font-family: LE_SILENCE_DES_CAFARDS;
    src: url('../fonts/LE_SILENCE_DES_CAFARDS.ttf');
}

@font-face {
    font-family: cabin-regular;
    src: url('../fonts/Cabin-Regular.ttf');
}

@font-face {
    font-family: cabin-italic;
    src: url('../fonts/Cabin-Italic.ttf');
}

@font-face {
    font-family: cabin-bold;
    src: url('../fonts/Cabin-Bold.ttf');
}

@font-face {
    font-family: cabin-bold-italic;
    src: url('../fonts/Cabin-BoldItalic.ttf');
}

@keyframes colorFade {
    from {background-color: #06364B;}
    to {background-color: #0E7DAD;}
}

@keyframes colorOriginal {
    from {background-color: #0E7DAD;}
    to {background-color: #06364B;}    
}

::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar:hover{
    cursor:pointer;
}
 
/* Track */
::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3); 
    -webkit-border-radius: 10px;
    border-radius: 10px;
}
 
/* Handle */
::-webkit-scrollbar-thumb {
    -webkit-border-radius: 10px;
    border-radius: 10px;
    background: rgba(76, 75, 73, 1);
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 1); 
}

::-webkit-scrollbar-thumb:window-inactive {
    background: rgba(76, 75, 73, 1);
}


.tab{
    position:absolute;
    width:97%;
    height:83%;
    border-radius:15px;
    display:none;
    overflow:hidden;
    background:#89C6C9;

}

#tab_1{
    display:block;
    background:url("../img/bg_6_1.png");
    background-size:cover;  
}

.drag{
    position:absolute; 
    z-index:30;
}

.drag:hover{
    cursor:pointer;
    transform:scale(1.05);
}

.drag:active{
    transform:scale(0.95);
}

.drag:nth-of-type(1){
    width: 36%;
    left: 5%;
    top: 12%;
    z-index:40;
}

.drag:nth-of-type(2){
    width:10%;
    left: 5%;
    top: 63%;
}

.drag:nth-of-type(3){
    width:4%;
    left: 19.1%;
    top: 26%;
}

.drag:nth-of-type(4){
    width:6%;
    left:20%;
    top: 74%;
}

.drag:nth-of-type(5){
    width:4%;
    left:20%;
    top: 69%;
}

.drag:nth-of-type(6){
    width:4%;
    left: 31%;
    top: 73%;
}

.group{
    position:absolute;
    width:40%;
    height: 43%;
    /* background:red; */
}

.group > h5{
    margin:0;
    width:80%;
    margin-left:10%;
    padding:7px 0;
    margin-bottom:10px;
    text-align:center;
    background:#64B238;
    border-radius:10px;
    border-bottom:solid 3px #006633;
    box-sizing:border-box;
}

.content{
    height: 84%;
}

.content > div{
    display:inline-block;
    float:left;
    width:30%;
    margin-right:5%;
    /* background:blue; */
    height:100%;
}

.content > div:last-of-type{
    margin-right:0;
}

.content > div > *{
    display:inline-block;
    float:left;
    width:100%;
    height:45%;
}

.drop{
    border-radius:10px;
    box-sizing:border-box;
    border:solid 2px #006633;
    margin-bottom:3%;
    background:#FFFFFF;
}

.drop > img{
    height: 57%;
    position:relative;
    top:50%;
    left:50%;
    transform:translateY(-50%) translateX(-50%);
}

.drop img[src="img/item_3.png"]{
    height:80%;
}

.group:nth-of-type(1){
    left:50%;
    top:3%;
}


.group:nth-of-type(2){
    left:50%;
    top:50%;
}

textarea{
    resize:none;
    background:#DDCCE1;
    box-sizing:border-box;
    border:solid 2px #56006A;
    border-radius:10px;
    padding:5px;
    outline:none;
    /* position:absolute; */
    /* width:18%; */
    /* height:21%; */
    overflow-x:hidden;
    overflow-y:scroll;
    font-family:'cabin-regular';
    font-size:0.8em;
    text-align:justify;
}

/* Drag CSS */

.grabbing{
    cursor: -webkit-grabbing; 
    cursor: -moz-grabbing;
}

.dragging{
    pointer-events:none;
}

.animation{
    transition:all 0.7s ease;
}

.highlight{
    background:whitesmoke;
    box-sizing:border-box;
    border:dashed 2px gray;
}

.help{
    width:43%;
    padding:10px;
    border-radius:10px;
    border:solid 2px #009640;
    position:absolute;
    left:2%;
    top:81%;
    background:#FFFFFF;
    color:#000000;
    font-size:1em;
    text-align:justify;
}