/* OpenSans Font Licence */
/*
Copyright 2010-2011 Google Corporation.

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

    http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/

@font-face {
	font-family: 'regularfont';
	src: url('../fonts/OpenSans-Regular.woff2');
	src: local('Open Sans Regular'), local('OpenSans-Regular'),
		url('../fonts/OpenSans-Regular.woff2') format('woff2'),
		url('../fonts/OpenSans-Regular.woff') format('woff'),
		url('../fonts/OpenSans-Regular.ttf') format('truetype');
}
@font-face {
	font-family: 'lightfont';
	src: url('../fonts/OpenSans-Light.woff2');
		src: local('Open Sans Light'), local('OpenSans-Light'),
			url('../fonts/OpenSans-Light.woff2') format('woff2'),
			url('../fonts/OpenSans-Light.woff') format('woff'),
			url('../fonts/OpenSans-Light.ttf') format('truetype');
}
@font-face {
	font-family: 'headerfont';
	src: url('../fonts/OpenSans-SemiBold.woff2');
	src: local('Open Sans SemiBold'), local('OpenSans-SemiBold'),
		url('../fonts/OpenSans-SemiBold.woff2') format('woff2'),
		url('../fonts/OpenSans-SemiBold.woff') format('woff'),
		url('../fonts/OpenSans-SemiBold.ttf') format('truetype');
}
@font-face {
	font-family: 'headerfont2';
	src: url('../fonts/OpenSans-Bold.woff2');
	src: local('Open Sans Bold'), local('OpenSans-Bold'),
		url('../fonts/OpenSans-Bold.woff2') format('woff2'),
		url('../fonts/OpenSans-Bold.woff') format('woff'),
		url('../fonts/OpenSans-Bold.ttf') format('truetype');
}


html{
/* set to defaults */
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	background: transparent;
	font-family: regularfont;
	letter-spacing: 1px;
	overflow-x: hidden;

	font-size: 16px;

	height: 100%;
}
body{
	margin: 0;
	width: 100%;
	height: 100%;
}

a{
	color: inherit;
	text-decoration: none;
}
p{
	margin-top: 0;
}
heavy{
	font-family: headerfont2;
}
pink{
	color: #E95C78 !important;
}
darkgrey{
	color: #464646 !important;
}
.margin-none{
	margin: 0 !important;
}
.margin-auto{
	margin: auto !important;
}
.padding-none{
	padding: 0 !important;
}
.border-box-none{
	-webkit-box-sizing: content-box;
		 -moz-box-sizing: content-box;
			box-sizing: content-box;
}

.inner-shadow{
	box-shadow: inset 0px 10px 8px -10px #AAA,
				inset 0px -10px 8px -10px #AAA;
}
.under-shadow{
	box-shadow: 0px 2px 2px -2px #AAA;
}

.float-right{
	float: right;
}
.float-left{
	float: left;
}
.flex-space-between{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	list-style: none;
}
/*
.flex-space-between::after {
  content: "";
  flex: auto;
}*/

.flex-space-around{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
	list-style: none;
}
.flex-space-evenly{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-evenly;
	list-style: none;
}
.align-left{
  text-align: left;
}
.align-center{
  text-align: center;
}
.align-right{
  text-align: right;
}

.display-inline-block{
	display: inline-block;
}
.position-relative{
	position: relative;
}
.vertical-center{
	display: block;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}



.background-pink-dark{
	background-color: #E95C78;
	color: #f1f1f1;
}
.background-pink-light{
	background-color: #FAE1F0;
	color: #E95C78;
}
.background-pink-light-v{
	background-color: #FF98AD;
	color: #E95C78;
}
.background-pink-light-t{
	background-color: rgba(250,225,240, 0.99);
	color: #E95C78;
}
.background-light{
	background-color: #FEFEFE;
	color: #7B7B7B;
}
.background-light-v{
	background-color: #F9F9F9;
	color: #E95C78;
}
.background-dark{
	background-color: #222222;
	color: #f1f1f1;
}
.background-none{
	background: none;
	color: #E95C78;
}

.background-billboard{
	background: url("../images/billboardBackground.png");
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}


.border-pink{
	border: solid 2px #E95C78;
}
.border-pink-bottom{
	border-bottom: solid 2px #E95C78;
}
.border-pink-bottom-thick{
	border-bottom: solid 4px #E95C78;
}
.border-pink-bottom-thin{
	border-bottom: solid 1px #E95C78;
}




/* table code */
.table{
  width: 100%;
  display: table;
}
.tr{
  width: 100%;
  display: table-row;
}
.td{
  width: 50%;
  display: table-cell;
  position: relative;
}






/* response code */
.inner-container{
	width: 55%;
	height: 100%;
	margin: auto;
}
@media screen and (max-width: 1680px){
	.inner-container{
		width: 75%;
	}
  .align-left{
    text-align: center;
  }
  .align-center{
    text-align: center;
  }
  .align-right{
    text-align: center;
  }
}
@media screen and (max-width: 1280px){
	/*.flex-space-between{
		display: block;
	}*/
	.inner-container{
		width: 90%;
	}
}



.hide-on-small{
	display: none !important;
}
.show-on-small{
	display: inline-block !important;
}
.hide-on-mobile{
	display: none !important;
}
.show-on-mobile{
	display: block !important;
}
.hide-on-small-mobile{
	display: none !important;
}
.show-on-small-mobile{
	display: block !important;
}
@media screen and (min-height: 680px){
	.hide-on-small-mobile{
		display: inline-block !important;
	}
	.show-on-small-mobile{
		display: none !important;
	}
}
@media screen and (min-width: 920px){
	.hide-on-mobile{
		display: inline-block !important;
	}
	.show-on-mobile{
		display: none !important;
	}
}
@media screen and (min-width: 1400px){
	.hide-on-small{
		display: inline-block !important;
	}
	.show-on-small{
		display: none !important;
	}
}
