/*
Name       : Cope With US
Version    : 1.0
Released   : 20160317
*/

@font-face{font-family: FacebookFont; src: url('FaceBook.otf');}

html {
	font-family: 'Lato', sans-serif;
	font-size: 1.3em;
	color: #787878;
}
#title{
	font-family: 'FacebookFont';
	text-align: center;
	margin-top:20px;
	font-size: 2.7em;
}
#logo{
	display: block;
	margin-top:30px;
	margin-left: auto;
	margin-right: auto
}
/**************  Supported Sites ***************/
.supportedSites{
	display: flex;
	justify-content: space-between;
}
.app{
	padding:30px;
	float:left;
	width: 380px;
}
.appDiv{
	height:150px;
	width:150px;
	margin-left:auto;
	margin-right:auto;
}
.appIcon{
	height:30px;
	width:30px;
	opacity:0.0;

	margin-left:60px;
	margin-top:60px;

	/*-ms-transform-origin: 0% 0%; /* IE 9 */
	/*-webkit-transform-origin: 0% 0%; /* Chrome, Safari, Opera */
	/*transform-origin: 0% 0%;  /* HTML5 */

	-webkit-transition-duration: 0.72s; /* Safari */
	transition-duration: 0.72s;
}
.appTitle{
	padding-top:10px;
	opacity:0.0;
	font-family: 'FacebookFont';
	font-size:1.5em;
	text-align:center;

	-webkit-transition-duration: 2.7s; /* Safari */
	transition-duration: 2.7s;
}
.appSubTitle{
	padding-top:7px;
	opacity:0.0;
	font-size:1.2em;
	text-align:center;
	color: black;

	-webkit-transition-duration: 2.7s; /* Safari */
	transition-duration: 2.7s;
}

/**************  Supported Sites ***************/

#signUpButton{
	font-family: 'Lato', sans-serif;
	font-size: 1em;
	font-weight: 600;

	width: 230px;
	height: 40px;
	line-height: 20px;
	background: #1b70a1;

	color: white;

	border-width: 2px;
	border-radius: 7px;
	border-color: black;

	opacity:0.0;
	-webkit-transition-duration: 1.7s; /* Safari */
  transition-duration: 1.7s;
	margin-top: 50px;
}
#signUpButton:hover{
	background: #cc3319!important;
}

/******************

	Sign Up Form

*******************/
#overlay {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  transition: opacity 500ms;
  visibility: hidden;
  opacity: 0;
}

#peopleFormDiv {
  margin: 150px auto;
  padding: 20px;
  border-radius: 5px;
  width: 30%;
  position: relative;
  transition: all .5s ease-in-out;
}


.boxshadow {
    position: relative;
    -moz-box-shadow: 1px 0px 4px rgba(0, 0, 0,0.5);
    -webkit-box-shadow: 1px 0px 4px rgba(0, 0, 0, .5);
    box-shadow: 1px 0px 4px rgba(0, 0, 0, .5);
    padding: 10px;
    background: white;
}

/* Make the image fit the box */
.boxshadow img {
    width: 100%;
    border: 1px solid #8a4419;
    border-style: inset;
}

.boxshadow::after {
    content: '';
    position: absolute;
    z-index: -1; /* hide shadow behind image */
    -webkit-box-shadow: 0 15px 20px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0 15px 20px rgba(0, 0, 0, 0.3);
    box-shadow: 0 15px 20px rgba(0, 0, 0, 0.3);
    width: 70%;
    left: 15%; /* one half of the remaining 30% */
		height: 50px;
    bottom: 0;
}
