html
{
    overflow: hidden;
}
html, body 
{
    padding: 0;
    margin: 0;
     
}
body 
{
    position: absolute;
    left: 0;
    top: 0;
    right: -30px;
    bottom: 0; 
    padding-right: 15px;
    overflow-y: scroll;
}

h2
{
  text-align: center;
}

form
{
  margin-left: auto;
  margin-right: auto;
}

.container
{
  background-color: white;
  text-align: left;
  margin-top: 3%;
  margin-left:10%;
  margin-right:10%;
  line-height:40px;
}

label
{
  width: 300px;
  display: inline-block;
}

#copyright
{
  text-align:right;
}

#dragAndDrop, #containerForm
{
  display: flex;
  flex-direction: row;
  justify-content: space-around;
}

.footer-container
{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-left:10%;
  margin-right:10%;
}

#div1 
{
    width: 350px;
    height: 70px;
    padding: 10px;
    border: 1px solid #aaaaaa;
}


.dropper 
{
    
    width: 400px;
    background-color: #fff;
    border: 1px solid grey;
    transition: all 200ms linear;
}

.drop_hover 
{
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.8) inset;
}

.draggable 
{
    display: inline-block;
    margin: 20px 10px 10px 20px;
    padding-top: 20px;
    text-align: center;
    font-size: 2em;
    cursor: move;
    transition: all 200ms linear;
    user-select: none;
}

.text-center
{
  text-align: center;
}

#map 
{
  height:300px;
}