html, body {
        margin: 0;
        padding: 0;
        height: 100%;
        /*width: 100%;*/
}

#wrapper {
    display: flex;
    display: -webkit-flex;
    min-height: 100%;
    height: 100%;
    flex-direction: column;
    -webkit-flex-direction: column;
}

body {
    color: #888888;
    text-align:center;
    font-size: 15px;
    line-height: 1.5;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 300;
}

.navbar {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

li {
    float: left;
    color: white;
    /*padding: 14px 0px;
    margin: 0;*/
}

li a {
    color: white;
    padding: 14px 16px;
    margin: 0px;
    text-decoration: none;
    line-height: 50px;
    text-transform: uppercase;
}

li a:hover {
    /*background-color: #0066CC;*/
	color: lightgray;
	cursor: pointer;
}

.active a {
    /*background-color: #152A5A;
	color: white;*/
}

.headerbox {
	margin: 0;
    padding: 0;
    background-color: #917dc4;
    /*vertical-align: middle;*/
    display:                 flex;
    display:                 -webkit-flex; /* Safari 8 */
    flex-wrap:               wrap;
    -webkit-flex-wrap:       wrap;         /* Safari 8 */
    justify-content:         center;
    -webkit-justify-content: center; 
}

.visibleContent {
	display: inline-block;
}

.mapContainer {
    /*position: absolute;
    height: 100%;
    width: 90%;
    left: 5%;*/
    flex: 1;
    -webkit-flex: 1;
    position: relative;
}

.incorrectInput {
	color: red;
	font-weight: bold;
}

.addressForm {
    border-radius: 4px;
    background-color: rgba(0,0,0,0.1);
    width: 75%;
    margin: auto;
    padding: 1px;
}

.footer {
    font-size: 10px;
    margin: 10px 0 0 0;
}

#resultDiv, #confirmDiv {
	/*display:none;*/
	position: fixed;
    top: -150%;
    left: 0;
    width: 100%;
    height: auto;
    padding : 20px 0;
    color: white;
    background-color: rgba(0, 0, 0, 0.80);
    z-index: 11;
}

#overlayDiv {
	display:none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
    height: 100%;
	z-index: 10;
	-webkit-backdrop-filter: blur(5px);
}

#hiddenDiv {
    display: none;
    position: absolute;
    top: 0;
    border-radius: 10px;
    left: 50%;
    transform: translateX(-50%);
    padding: 10px;
    overflow: visible;
    color: white;
    background-color: rgba(0, 0, 0, 0.80);
    z-index: 11;
}

#map {
    height: 300px;
}

#googleMap {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

#content {
    color: black;
}

@keyframes resultAppears {
    0% {
        top: -150%
    }

    50% {
        top: 10%
    }

    75% {
        top: 20%
    }

    100% {
        top: 10%
    }
}

@-webkit-keyframes resultAppears {
    0% {
        top: -150%
    }

    50% {
        top: 10%
    }

    75% {
        top: 20%
    }

    100% {
        top: 10%
    }
}

@-moz-keyframes resultAppears {
    0% {
        top: -150%
    }

    50% {
        top: 10%
    }

    75% {
        top: 20%
    }

    100% {
        top: 10%
    }
}

@keyframes resultDisappears {
    0% {
        top: 10%
    }

    25% {
        top: 20%
    }

    50% {
        top: 10%
    }

    100% {
        top: -150%
    }
}

@-webkit-keyframes resultDisappears {
    0% {
        top: 10%
    }

    25% {
        top: 20%
    }

    50% {
        top: 10%
    }

    100% {
        top: -150%
    }
}

@-moz-keyframes resultDisappears {
    0% {
        top: 10%
    }

    25% {
        top: 20%
    }

    50% {
        top: 10%
    }

    100% {
        top: -150%
    }
}
  
input[type=text], input[type=email], #eventUrl {
	padding: 10px 10px;
	margin: 10px 10px;
	/*display: inline-block;*/
	border: 1px solid #ccc;
	border-radius: 4px;
	box-sizing: border-box;
	font-size: 100%;
	width: 75%;
  }

.requiredField {
    border: 2px solid red !important;
}
  
input[type=button], input[type=submit] {
    background-color: #0066CC;
    color: white;
    padding: 14px 20px;
    margin: 10px 10px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 100%;
    width: 75%;
}

textarea {
    padding: 10px 10px;
	margin: 10px 10px;
	/*display: inline-block;*/
	border: 1px solid #ccc;
	border-radius: 4px;
	box-sizing: border-box;
	font-size: 100%;
	width: 75%;
}

input[type=button]:hover {
	/*background: -webkit-linear-gradient(#6699FF, #0066CC);
    background: -o-linear-gradient(#6699FF, #0066CC);
    background: -moz-linear-gradient(#6699FF, #0066CC);
    background: linear-gradient(#6699FF, #0066CC);*/
    box-shadow: 0 0 8px 5px rgba(0,0,0,0.35);
}

/*td:first-child {
    display:none;
}

th:first-child {
    display:none;
}*/

table {
    border-collapse: collapse;
    width: 100%;
}

td, th {
    border: 1px solid #dddddd;
    text-align: left;
    padding: 8px;
}

tr:nth-child(even) {
    background-color: rgba(0,0,0,0.05);
}