html, body {
    height: 100%;
    margin: 0;
    overflow: auto;
}

#wrapper {
    min-height: 100%; 
}

body{
    background-image: url(images/background.png);
    padding: 0;
    margin: 0;
    width: 100%;
    height: 100%;
    display: block;
    background-color: #f0edf2;
    background-repeat: no-repeat;
    background-size: cover;
    max-width: 100%;
}

#media-container{
    position: absolute;
    z-index: -10;
    width: 100%;
    text-align: center;
}

#canvas-container{
    position: absolute;
    /* z-index: -5; */
    width: 100%;
    text-align: center;
}

#canvas{
    /* border: 1px solid #000000; */
    /* margin: auto; */
    /* margin-top: 15px; */
    /* cursor: none; */
}

#button-container{
    display: block;
    width: 100%;
    margin: auto;
    margin-bottom: 20px;
    text-align: center;
    -webkit-user-select: none;  /* Chrome all / Safari all */
    -moz-user-select: none;     /* Firefox all */
    -ms-user-select: none;      /* IE 10+ */
}

.icon{
    width:100%;
    height:100%;
    -webkit-user-drag: none;
}

.canvas-button{
    display: inline-block;
    margin: auto;
    outline: none;
    width: 30%;
    max-width: 60px;
    height: auto;
    background-color: rgba(0, 0, 0, 0.49);
    border-radius: 0;
    border: none;
}

.canvas-button:hover{
    background-color: rgba(0, 0, 0, 1);
    cursor: pointer;
}

.canvas-button:active{
    background-color: rgba(255, 255, 255, 1);
}

#drop_zone{
    display: none;
    background-image: url(images/file-icon.png);
    background-color: rgba(93, 255, 120, 0.55);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    text-align: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 90;
    overflow: hidden;
}

#file_selected{
    width: 100%;
}

#shape-coordinates-overlay{
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    z-index: 11;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.71);
    overflow: scroll;
}

#shape-coordinates-result{
    background-color: rgb(80, 109, 199);
    max-width: 300px;
    font-size: 40px;
    width: 100%;
    margin: auto;
    font-family: sans-serif;
    color: white;
    margin-top: 20px;
    padding: 20px;
    border-style: solid;
}

#url-insert-overlay{
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    z-index: 11;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.71);
    overflow: scroll;
}

#url-input-field{
    display: block;
    margin: auto;
    margin-top: 35px;
    width: 50%;
    max-width: 460px;
    font-size: 24px;
}

.url-button{
    margin-top: 10px;
    outline: none;
    display: inline-block;
    outline: none;
    width: 25%;
    max-width: 182px;
    border:1px solid #fff;
    -moz-border-radius: 
    3px;border-radius: 3px;
    font-size:24px;
    font-family:sans-serif; 
    padding: 5px; 
    text-decoration:none; display:inline-block;
    text-shadow: -1px -1px 0 rgba(0,0,0,0.3);
    font-weight: 300; 
    color: #FFFFFF;
    background-color: #4f6dc7;
}

.url-button:active{
    background-color: rgb(80, 109, 199);
}
    
.url-button:hover{
    cursor: pointer;
    border:1px solid #1090c3;
    background-color: #2f55c7;
    box-shadow: 1px 1px 1px 1px #000;
}