
/* Optional: Makes the sample page fill the window. */
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
  	background: linear-gradient(rgba(255, 255, 255, 255), rgba(239, 239, 239, 255));
}

/* Always set the map height explicitly to define the size of the div
      * element that contains the map. */
#map {
    height: 100%;
}


h1{
    font-size: 50px;
    text-align: center;
    padding-top: 90px;
    margin-left: -9px;
    color: #d59563;
}

/*Heading Shake Effect*/

h1:hover {
    animation: shake 0.82s cubic-bezier(.36,.07,.19,.97) both;
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
    perspective: 1000px;
}

@keyframes shake {
    10%, 90% {
        transform: translate3d(-1px, 0, 0);
    }

    20%, 80% {
        transform: translate3d(2px, 0, 0);
    }

    30%, 50%, 70% {
        transform: translate3d(-4px, 0, 0);
    }

    40%, 60% {
        transform: translate3d(4px, 0, 0);
    }
}

h6{
    text-align: center;
    color: #d59563;
}

#left {
    float: left;
    width: 50%;
    height: 700px;
    background-color: #efefef;

}
#right {
    display: inline-block;
    position: absolute;
    float: right;
    width: 50%;
    height: 700px;
}
#cleared {
    clear: both;
}


ul{
    list-style-type: none;
}

form {
    max-width: 400px;
    margin: 20px auto;
}

.formbox {
    background: transparent;
    padding: 10px;
    max-width: 400px;
    margin: 10px auto;
    border-radius: 1px;
    box-shadow: 0 4px 10px 4px transparent;
}

.input-group {
    display: flex; /* Use flexbox to place inputs on the same row */
    justify-content: space-between; /* Space them evenly on the row */
  	border-radius: 5px;
}

.short {
    flex: 1; /* Allow the input fields to take equal space in the flex container */
    margin-right: 10px; /* Add some spacing between the inputs */
  	border-radius: 5px !important;
}

.feedback-input {
    width: 100%; /* Make the "Subject" and "Message" inputs full width */
}

input.short{
    width: 48%;
    /*max-width: 48%; !* or whatever width you want. *!*/
    color: grey;
    font-family: Helvetica, Arial, sans-serif;
    font-weight:500;
    font-size: 18px;
    border-radius: 5px;
    line-height: 22px;
    background-color: transparent;
    border:2px solid #d59563;
    transition: all 0.3s;
    padding: 13px;
    margin-right: 6px;
    margin-bottom: 0px;
    box-sizing: border-box;
    outline:0;
}

input:focus{
    /*border-bottom: 2px solid cyan;*/
}


#map-overlap{
    margin-top: -650px;
    margin-left: 37px;
    text-align: left;
    font-size: 17px;
    padding: 35px;
  	border-radius: 16px;
    width: 235px;
    height: 190px;
    z-index: 10;
    font-family:Helvetica Neue, Helvetica, Arial, sans-serif;
    font-weight:200;
    position: relative;
    background: rgb(30,30,40);
    color: white;
}

#at{
    color: #d59563;

}

span{
    text-align: right;
    font-family:Helvetica Neue, Helvetica, Arial, sans-serif;
    font-weight:200;
}


::-webkit-input-placeholder { /* Chrome/Opera/Safari */
    color: dimgrey;
}

.feedback-input {
    color: grey;
    font-family: Helvetica, Arial, sans-serif;
    font-weight:500;
    font-size: 18px;
    border-radius: 5px;
    line-height: 22px;
    background-color: transparent;
    border:2px solid #d59563;
    transition: all 0.3s;
    padding: 13px;
    margin-bottom: 15px;
    width:99%;
    box-sizing: border-box;
    outline:0;
}

.feedback-input:focus {
    border:2px solid #d59563;
}

textarea {
    height: 150px;
    line-height: 150%;
    resize:vertical;
}

[type="submit"] {
    font-family: Helvetica, Arial, sans-serif;
    width: 20%;
    border-radius:5px;
    cursor:pointer;
    color: #d59563;
    font-size:16px;
    margin-left: 80%;
    padding-top:10px;
    padding-bottom:10px;
    transition: all 0.3s;
    margin-top:-4px;
    border:2px solid #d59563;
    font-weight:500;

}
[type="submit"]:hover {
    background: #d59563;
    color: rgb(30,30,40);
    outline: 0 !important;
}


@media all and (max-width:800px) {
    #left, #right
    {
        display: block;
        float: none;
        width: 100%;
    }
}

@media all and (max-width:800px) {
    .short
    {
        min-width: 99%;

    }
}


/*@media all and (max-width:800px) {*/
    /*#map-overlap*/
    /*{*/
        /*text-align: center;*/
        /*margin-left: -10px;*/
        /*display: block;*/
        /*width: 99%;*/
    /*}*/
/*}*/

