
#popup-container {
    width:100%;
    height:100%;
    top:0;
    left:0;
    display:none;
    position:fixed;
    background-color: rgba(49, 49, 49, .95);
    overflow:auto;
    z-index: 3;
}

img#close {

    float: right;
    cursor:pointer;
    width: 30px;
}


div#popup{
    
    position:relative;
    top: 15%;
    font-family: 'Quicksand', sans-serif;
}


#popup-box {
    
    max-width: 670px;
    min-width:200px;
    height: auto;
    margin: 0 auto;
    padding:5px 5px;
    border:2px solid gray;
    border-radius:10px;
    background-color:#fff;
}

#popup-box h1 {
    text-align: center;
    color: #00a6ae;
}

/*----LEFT SIDE FORM---*/

form {
    
    margin-top: 30px;
}

.float-left {
    
    max-width: 300px;
    display: inline-block;
/*    margin: 0 0 0 25px;*/
    
}

#flex-box {
    display: flex;
    margin: auto;
    flex-flow: row wrap;
    justify-content: space-around;
}

.form-element {
    
    margin: 10px;
    
}
.field {
    
    border: 1px solid grey;
    border-radius: 10px;
    font-family: 'Quicksand', sans-serif;
    padding: 5px;
    color: #00a6ae;
    outline:none;
    
}

input {
    
    width: 250px;
    font-size: 20px;
}



#img-location {
    
    background-image: url(../icon/map-marker.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 220px;
    padding-left: 35px;
}



#caption {
    
    
    width: 250px;
    height: 100px;
    font-size: 16px;
    
}

/*----END LEFT SIDE FORM---*/

/*----RIGHT SIDE FORM---*/


.uploader {
    font-size: 16px;
    border: 1px dashed grey;
    border-radius: 10px;
    width: 250px;
    height: 200px;
    text-align: center;
    margin: 10px 0 30px 5px;
}

.uploader label{
    
    display: inline-block;
    width: 250px;
    height: 200px;
}

input[type="file"] {
  display: none;
}

#file-image{
    
    display: inline;
    border-radius: 10px;
    width: 250px;
    height: 200px;
    
}

#start{
    
    color: grey;
}

#start i.fa {
  font-size: 50px;
  margin-top: 55px;
  color: grey;
}

.uploader #file-image.hidden {
  display: none;
}

.hidden {
    display: none;
}

#messages {
    width: 250px;
    margin-left: 20px;
}


/*----END RIGHT SIDE FORM---*/

/*----NEXT BUTTON---*/

#next-button {
    
    display: flex;
    justify-content: flex-end;
    padding: 30px 0 10px 0;
    cursor:pointer;
}

#next-button span {
    
    font-size: 20px;
    color: #00a6ae;
}

#next {
    width: 30px;
    height: 30px;
}
/*----END NEXT BUTTON---*/

@media screen and (min-width: 1200px) {
    
    .uploader {
        
        margin: 10px 0 30px 5px;
        
    }
}

    

