/*-----------------------------------------------------------------------------------*/
/* GENERAL BEGIN
/*-----------------------------------------------------------------------------------*/

body {
	margin: 0;
    -webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
    height: 100%;
	font-size: 1.4em;
}

html {
	height: 100%;
	margin:0;
	padding:0;
	font-size: 62.5% !important;
	background-image: -ms-linear-gradient(top, #e2e2e2 0%, #FFFFFF 100%);
	background-image: -moz-linear-gradient(top, #e2e2e2 0%, #FFFFFF 100%);
	background-image: -o-linear-gradient(top, #e2e2e2 0%, #FFFFFF 100%);
	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #e2e2e2), color-stop(100, #FFFFFF));
	background-image: -webkit-linear-gradient(top, #e2e2e2 0%, #FFFFFF 100%);
	background-image: linear-gradient(to bottom, #e2e2e2 0%, #FFFFFF 100%);
	
}

html, body {
   margin: 0 !important;
   padding: 0 !important;
}

input, textarea, h2, a, p {
   font-family: 'Noto Sans', sans-serif;
}

#wrapper {
    max-width: 2560px;
    margin: 0 auto;
}

#container {
    width: 500px;
    margin: 0 auto;
}

#content {
    padding: 1em;
}

#content img {
    max-width: 30%;
    display: block;
    margin: 0 auto;
}

h2 {
    font-size: 1em;
    color: white;
    font-weight: 500;
    text-align: center;
}

input, textarea, #guest {
    width: 100%;
    margin: 0.3em 0;
    padding: 1em;
    -webkit-appearance: none;
    border: 0px;
    border-radius: 5px;
    background: rgba(255,255,255,0.7);
	font-size: 1em;
	box-shadow: 0 1px 4px rgba(216,216,216,0.10);
    border: 1px solid rgba(224,224,224,0.50);
}

input:focus, textarea:focus {
    background: white;
    outline: 0;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

textarea {
    resize: vertical;
}

input[type="submit"] {
    background: #ed1c24;
	color: white;
     -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
	border: 1px solid rgba(208,24,31,0.25);
    box-shadow: 0 1px 4px rgba(208,24,31,0.25);
}

input[type="submit"]:hover, p.guest:hover {
    background: rgba(237, 28, 36, 0.6);
    cursor: pointer;
}

input[type="submit"]:disabled {
	background: rgba(255, 255, 255, 0.3);
    color: rgba(0, 0, 0, 0.2);
	box-shadow: 0 1px 4px rgba(216,216,216,0.10);
    border: 1px solid rgba(224,224,224,0.50);
}

span.interpunct {
	font-weight: 700;
	color: white;
	margin: 0 0.2em;
}

#guest {
	width: auto !important;
	color: #a6a6a6;
}

#guest:hover {
	cursor: pointer;
}

#guest p {
	-webkit-margin-before: 0;
    -webkit-margin-after: 0;
}

.guestTrue {
	background-image: url(checkmark.svg) !important;
    background-repeat: no-repeat !important;
    background-position: calc(100% - 1em) 1em !important;
}

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

.social-holder a {
	color: rgba(255,255,255,0.7);
	text-decoration: none;
	font-size: 0.8em;
	font-weight: 600;
	 -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.social-holder a:hover {
	color: white;
}

.inner {
	margin-left: auto;
    margin-right: auto;
}

.outer {
	display: table;
    position: relative;
    height: 100%;
    width: 100%;
}

.middle {
	display: table-cell;
    vertical-align: middle;
}

.alert p {
	font-size: 0.8em;
    color: white;
    background: rgba(144,144,144,0.5);
    padding: 1em;
    border-radius: 3px;
    margin: 0.5em 0;
}

.disabled {
	display: none;
}

.enabled {
	display: block;
}

.red {
    color:red;
}
.green {
    color:green;
}

#menu {
	width: 100%;
	height: 40px;
	background: white;
}

#menu-container {
	width: 30%;
    background: white;
    position: absolute;
    height: 100%;
    overflow: scroll;
}

#menu-container ul {
	list-style: none;
    padding: 0px;
}

#menu-container ul li {
    border-bottom: 1px solid #e0e0e0;
	padding: 1em;
}

#menu-container ul.labels li {
	    background: #717171;
    color: white;
}

#menu-container ul li:hover {
	background: #e0e0e0;
	cursor: pointer;
}

#alert {
	padding: 1em;
    background: #5fc25f;
    color: white;
    border-radius: 5px;
    margin-bottom: 0.5em;
	-webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
	box-shadow: 0 1px 4px rgba(38, 208, 27, 0.1);
    border: 1px solid rgba(25, 171, 40, 0.5);
}

#alert p {
	-webkit-margin-before: 0;
    -webkit-margin-after: 0;
}
