.takeover, .takeover * {
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-ms-box-sizing: border-box;
}

.takeover.hide {
	display: none;
}

.takeover .takeover-overlay {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	height: 100%;
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#aa000000,endColorstr=#aa000000);
	background-color: rgba(0,0,0,.5);
	z-index: 999;
	filter: alpha(opacity=0);
	opacity: 0;
	transition: opacity .5s;
	-moz-transition: opacity .5s;
	-webkit-transition: opacity .5s;
}

.takeover.show .takeover-overlay {
	filter: alpha(opacity=100);
	opacity: 1;
}

.takeover .takeover-container {
	position: fixed;
	width: 700px;
	height: 450px;
	background-color: #fff;
	left: 50%;
	top: 0%;
	filter: alpha(opacity=0);
	opacity: 0;
	margin-left: -350px;
	margin-top: -225px;
	z-index: 1000;
	transition: opacity .5s, top .5s;
	-moz-transition: opacity .5s, top .5s;
	-webkit-transition: opacity .5s, top .5s;
}

.takeover.show .takeover-container {
	top: 50%;
	filter: alpha(opacity=100);
	opacity: 1;
}

.takeover div.close {
	position: absolute;
	top: 10px;
	right: 10px;
	height: 30px;
	width: 30px;
	text-align: center;
	line-height: 30px;
	color: #8f8e8c;
	font-size: 25px;
	font-weight: bold;
	cursor: pointer;
}

.takeover div.close:hover {
	color: #333;
}

.takeover div.close:before {
	content: '×';
}

@media (max-width: 767px) {
	.takeover.show .takeover-container {
		top: 60px;
	}
	
	.takeover .takeover-container {
		top: 60px;
		left: 0;
		width: 100%;
    height: 100%;
		padding: 40px;
		margin: 0;
		background-color: transparent;
	}
  
  .takeover div.close {
    top: 40px;
    right: 40px;
  }
}

@media (max-width: 480px) {
  .takeover .takeover-container {
    padding: 20px;
  }
  
  .takeover div.close {
    top: 20px;
    right: 20px;
  }
}

/**** Form styles (only needed until responsive redesign, when we can use Weavr across site) ****/
.use-global input[type="text"], .use-global input[type="password"], .use-global input[type="email"] {
  width: 100%;
  padding: 10px 15px;
  border: solid 1px #8f8e8c;
  font-size: 15px;
  color: #333;
  height: 46px;
  font-family: "proxima-nova", sans-serif;
  font-style: normal;
}

.use-global input:focus {
  border-color: #666;
  outline: none;
}

.use-global label {
  display: block;
  font-size: 15px;
  color: #898886;
  font-family: "Times New Roman", Times, serif;
  font-style: italic;
}

.use-global textarea {
  line-height: 20px;
  resize: none;
  padding: 20px;
  font-family: "proxima-nova", sans-serif;
  outline: none;
  background: #fff;
  border: solid 1px #8f8e8c;
  color: #333;
  width: 100%;
  height: 230px;
}

.use-global .checkbox label {
  display: block;
  float: left;
  width: 90%;
}

.use-global .checkbox input {
  display: block;
  float: left;
  width: 25px;
  margin-top: 5px;
  font-size: 16px;
}

.use-global .select {
  display: block;
  border: solid 1px #8f8e8c;
  padding: 10px 15px;
  line-height: 24px; 
  height: 46px;
  background: #fff url('/images/icons/oi-select-arrow.png') no-repeat 83% center;
  overflow: hidden;
  width: 100%;
  position: relative;
}

.use-global .select select {
  background: transparent;
  border: none;
  border-radius: 0;
  color: #333;
  font-family: "proxima-nova", sans-serif;
  font-size: 15px;
  width: 130%;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  display: block;
  height: 24px;
}

.use-global .select select.select-placeholder {
  color: #8f8e8c;
  font-family: "Times New Roman", serif;
  font-style: italic;
  width: 110%;
}

.use-global .select input[type="text"] {
  border: none;
  height: 45px;
  width: 60%;
  padding: 10px 0px;
  position: absolute;
  top: 0px;
  line-height: 24px;
  background: transparent;
}
