body {
	font-family: Arial, sans-serif;
	margin: 0;
	
	font-size: 1em;
    line-height: 1.5;
}

h1 {
/*	background-color: #eee ;
	color: #007aff ;
*/
}

.blur {
  -webkit-filter: blur(5px);
  -moz-filter: blur(5px);
  -o-filter: blur(5px);
  -ms-filter: blur(5px);
  filter: blur(5px);
}

.overlayText {
	margin-bottom: 40px;
	padding: 20px;
	color: white;
	background: rgba(255, 255, 255, .05);
}
.clientLogin img {
	height: 32px;
	vertical-align:middle;
	margin-bottom: 4px;
}
.clientSignupLink {
    position: absolute;
    left: 30;
    top: 20;
    z-index: 100;
	font-weight: 900;
	color: white;
	font-size: 24px;
	text-decoration: none;
	border: 2px solid white ;
	padding: 10px;
	border-radius: 4px; 
	background: rgba(255, 255, 255, .15); 
}


.clientLogin {
    position: absolute;
    right: 30;
    top: 20;
    z-index: 100;
	font-weight: 900;
	color: white;
	font-size: 24px;
	text-decoration: none;
	border: 2px solid white ;
	padding: 10px;
	border-radius: 4px; 
	background: rgba(255, 255, 255, .15); 
}

.clientLoggedIn img {
	height: 24px;
	vertical-align:middle;
	margin-bottom: 4px;
	margin-right: 8px;
}

.restrictedHost {
	font-size: 24px;
	margin: 8px;
}

.clientLoggedIn {
    position: absolute;
    right: 30;
    top: 20;
    z-index: 100;
	font-weight: 900;
	color: white;
	font-size: 14px;
	text-decoration: none;
	border: 2px solid white ;
	padding: 10px;
	border-radius: 4px; 
	background: rgba(255, 255, 255, .15); 
}

.pricePeriod {
	border: 1px solid white ;
	margin: 4px; 
	padding: 4px;
	border-radius: 4px; 
	background: rgba(255, 255, 255, .05); 
	font-size: 18px; 
	margin-left: 15px;
	margin-right: 15px;
	width: 80px;
	height: 24px;
	vertical-align: bottom;
	display: inline-block;
	position: relative;
	cursor: pointer;
}


.meetingHost {
	border: 2px solid white ;
	margin: 5px; 
	padding: 15px;
	border-radius: 4px; 
	background: rgba(255, 255, 255, .05); 
	font-size: 18px; 
	margin-left: 15px;
	margin-right: 15px;
	width: 180px;
	height: 100px;
	vertical-align: bottom;
	display: inline-block;
	position: relative;
	cursor: pointer;
}

.meetingHost:hover {
	background: rgba(255, 255, 255, .3); 
}

.meetingHostSelected {
	background: rgba(255, 255, 255, .3); 
	border: 4px solid white ;
}

.meetingHostTitle {
    position: absolute;
    bottom: 0;
    width: 180px;
    margin:0;
    padding:0;
}

.freeHost {
    position: absolute;
    left: 4;
    margin:0;
    padding:0;
    z-index: 100;
	transform: rotateZ(315deg);
	font-weight: 900;
}

.premiumHost {
    top: 0;
    position: absolute;
    left: 2px;
    margin: 0;
    padding: 0;
    z-index: 100;
    transform: rotateZ(315deg);
    height: 42;
}

.pricePlan {
	border: 2px solid white ;
	margin: 5px; 
	padding: 15px;
	border-radius: 4px; 
	background: rgba(255, 255, 255, .05); 
	font-size: 18px; 
	margin-left: 15px;
	margin-right: 15px;
	width: 300px;
	height: 280px;
	vertical-align: bottom;
	display: inline-block;
	position: relative;
	cursor: pointer;
}
.pricePlan:hover {
	background: rgba(255, 255, 255, .3); 
}


.whiteBlock {
	color: white;
	border-radius: 4px; 
}

*::-webkit-input-placeholder {
    color: white;
}
*:-moz-placeholder {
    /* FF 4-18 */
    color: white;
    opacity: 1;
}
*::-moz-placeholder {
    /* FF 19+ */
    color: white;
    opacity: 1;
}
*:-ms-input-placeholder {
    /* IE 10+ */
    color: white;
}
*::-ms-input-placeholder {
    /* Microsoft Edge */
    color: white;
}
*::placeholder {
    /* modern browser */
    color: white;
}

.cursor {
    position: relative;
}
.cursor i {
    position: absolute;
    width: 1px;
    height: 80%;
    background-color: gray;
    left: 5px;
    top: 10%;
    animation-name: blink;
    animation-duration: 800ms;
    animation-iteration-count: infinite;
    opacity: 1;
}

.cursor input:focus + i {
    display: none;
}

@keyframes blink {
    from { opacity: 1; }
    to { opacity: 0; }
}



/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 9999; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.6); /* Black w/ opacity */
}

/* Modal Content/Box */
.modal-content {
  background-color: rgba(255,255,255,0.9); /* Black w/ opacity */
  margin: 5% auto; /* 15% from the top and centered */
  margin-bottom: 0px;
  padding: 20px;
  border: 1px solid #888;
  width: 80%; /* Could be more or less, depending on screen size */
  border-radius: 4px; 
}

/* The Close Button */
.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}


