﻿[draggable] {
    user-select: none;
}


html{
    width: 100%;
    height: 100%;
}
body{
    background-color: green;
    width: 100%;
    height: 100%;
}
#game_content_background {
    background-image: none;
    zbackground-color:red;
    display:flex;
    flex-direction:column;
    justify-content:space-between;
    align-items:center;
    border-radius: 20px;
    zborder: 5px solid #f0d293;
    background-image: url('./../../../img/table3.png');

}

.column {
    max-width: 120px;
    width: 20%;
    display: inline-block;
    margin-right: 5px;
    cursor: move;
}

#myItem{
    width: 150px;
    display: inline-block;
    margin-right: 5px;
    cursor: move;
    margin-top: 20px;
}
   
    .column.over {
        animation: mymove 1s;
    }

    @keyframes mymove {
        0% {transform: scale(1,1) rotate(0) translate(0, 0);}
        10% {transform: scale(1.2,1.2) rotate(5deg) translate(-20% , -20%);}
        20% {transform: scale(1.2,1.2) rotate(-5deg) translate(0 , -20%);}
        100% {transform: scale(1.2,1.2) rotate(10deg) translate(0 , -20%);}
      }
    .column >input,
    .column >textarea,
    .column >select {
        width: 8rem;
        resize: none;
        margin: 0.4rem;
        display: block;
    }

    .column >img {
        margin: 0.4rem;
        width: 5rem;;
    }


.wj-flexgrid {
    max-height: 200px;
}    




.bin-container{
    display: flex;justify-content: space-around;width: 100%;
}