/*Icon Font*/
@font-face {
	font-family: 'icomoon';
	src:  url('fonts/icomoon.eot?a0m2xc');
	src:  url('fonts/icomoon.eot?a0m2xc#iefix') format('embedded-opentype'),
	url('fonts/icomoon.ttf?a0m2xc') format('truetype'),
	url('fonts/icomoon.woff?a0m2xc') format('woff'),
	url('fonts/icomoon.svg?a0m2xc#icomoon') format('svg');
	font-weight: normal;
	font-style: normal;
}

[class^="icon-drais"], [class*=" icon-drais"] {
	/* use !important to prevent issues with browser extensions that change fonts */
	font-family: 'icomoon' !important;
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;

	/* Better Font Rendering =========== */
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.icon-drais_bottle:before {
	content: "\e900";
}
.icon-drais_tickets:before {
	content: "\e901";
}

/* Common button styles */
.button {
	float: left;
	/* min-width: 150px; */
	max-width: 250px;
	display: block;
	margin: 1em;
	padding: 1em 2em;
	border: none;
	background: none;
	color: inherit;
	vertical-align: middle;
	position: relative;
	z-index: 1;
	-webkit-backface-visibility: hidden;
	-moz-osx-font-smoothing: grayscale;
}
.button:focus {
	outline: none;
}
.button > span {
	vertical-align: middle;
}

/* Text color adjustments (we could stick to the "inherit" but that does not work well in Safari) */
.button {
	color: #005C93;
	border-color: #05b5ff !important;
}

.button--highlight {
	color: #FFFFFF;
	border-color: #005C93 !important;
	background-color: #005C93 !important;
}

.button--highlight span{
	color: #FFFFFF !important;
}

.button--light {
	color: #FFFFFF;
	border-color: #FFFFFF !important;
}

.button--light-highlight {
	color: #FFFFFF;
	border-color: #FFFFFF !important;
}

/* Sizes */
.button--size-s {
	font-size: 14px;
}
.button--size-m {
	font-size: 16px;
}
.button--size-l {
	font-size: 18px;
}

/* Typography and Roundedness */
.button--text-upper {
	letter-spacing: 2px;
	text-transform: uppercase;
}
.button--text-thin {
	font-weight: 300;
}
.button--text-medium {
	font-weight: 500;
}
.button--text-thick {
	font-weight: 600;
}
.button--round-s {
	border-radius: 5px;
}
.button--round-m {
	border-radius: 15px;
}
.button--round-l {
	border-radius: 40px;
}

/* Borders */
.button--border-thin {
	border: 1px solid;
}
.button--border-medium {
	border: 2px solid;
}
.button--border-thick {
	border: 3px solid;
}

/* drais CTAs */
.button--drais {
	padding: 0;
	overflow: hidden;
	-webkit-transition: background-color 0.3s;
	transition: background-color 0.3s;
}
.button--drais::before {
	content: '';
	position: absolute;
	left: -50%;
	width: 200%;
	height: 200% !important;
	background: #005C93;
	background: linear-gradient(0deg, #05b5ff 0%, #0372b5 100%) !important;
	top: -50%;
	z-index: -1;
	-webkit-transform: translate3d(0, -100%, 0) rotate3d(0, 0, 1, -10deg);
	transform: translate3d(0, -100%, 0) rotate3d(0, 0, 1, -10deg);
}
.button--drais.button--inverted::before {
	background: #005c93;
}
.button--drais-up::before {
	-webkit-transform: translate3d(0, 100%, 0) rotate3d(0, 0, 1, 10deg);
	transform: translate3d(0, 100%, 0) rotate3d(0, 0, 1, 10deg);
}
.button--drais > span {
	display: block;
}
.button--drais .button__icon {
	position: absolute;
	top: -1;
	width: 100%;
	left: 0;
	color: #fff;
	background-color: transparent !important;
	-webkit-transform: translate3d(0, -125%, 0);
	transform: translate3d(0, -125%, 0);
	margin-left: 0px !important;
}
.button--drais-up .button__icon {
	-webkit-transform: translate3d(0, 100%, 0);
	transform: translate3d(0, 100%, 0);
}
.button--drais > span,
.button--drais .button__icon {
	padding: 1em;
	-webkit-transition: -webkit-transform 0.3s;
	transition: transform 0.3s;
	-webkit-transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
	transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
}
.button--drais:hover::before {
	-webkit-animation: anim-drais-1 0.3s forwards ease-in;
	animation: anim-drais-1 0.3s forwards ease-in;
}
.button--drais-up:hover::before {
	-webkit-animation: anim-drais-2 0.3s forwards ease-in;
	animation: anim-drais-2 0.3s forwards ease-in;
}
@-webkit-keyframes anim-drais-1 {
	50% {
		-webkit-transform: translate3d(0, -50%, 0) rotate3d(0, 0, 1, -10deg);
		transform: translate3d(0, -50%, 0) rotate3d(0, 0, 1, -10deg);
		-webkit-animation-timing-function: ease-out;
		animation-timing-function: ease-out;
	}
	100% {
		-webkit-transform: translate3d(0, 0%, 0) rotate3d(0, 0, 1, 0deg);
		transform: translate3d(0, 0%, 0) rotate3d(0, 0, 1, 0deg);
	}
}
@keyframes anim-drais-1 {
	50% {
		-webkit-transform: translate3d(0, -50%, 0) rotate3d(0, 0, 1, -10deg);
		transform: translate3d(0, -50%, 0) rotate3d(0, 0, 1, -10deg);
		-webkit-animation-timing-function: ease-out;
		animation-timing-function: ease-out;
	}
	100% {
		-webkit-transform: translate3d(0, 0%, 0) rotate3d(0, 0, 1, 0deg);
		transform: translate3d(0, 0%, 0) rotate3d(0, 0, 1, 0deg);
	}
}
@-webkit-keyframes anim-drais-2 {
	50% {
		-webkit-transform: translate3d(0, 50%, 0) rotate3d(0, 0, 1, 10deg);
		transform: translate3d(0, 50%, 0) rotate3d(0, 0, 1, 10deg);
		-webkit-animation-timing-function: ease-out;
		animation-timing-function: ease-out;
	}
	100% {
		-webkit-transform: translate3d(0, 0%, 0) rotate3d(0, 0, 1, 0deg);
		transform: translate3d(0, 0%, 0) rotate3d(0, 0, 1, 0deg);
	}
}
@keyframes anim-drais-2 {
	50% {
		-webkit-transform: translate3d(0, 50%, 0) rotate3d(0, 0, 1, 10deg);
		transform: translate3d(0, 50%, 0) rotate3d(0, 0, 1, 10deg);
		-webkit-animation-timing-function: ease-out;
		animation-timing-function: ease-out;
	}
	100% {
		-webkit-transform: translate3d(0, 0%, 0) rotate3d(0, 0, 1, 0deg);
		transform: translate3d(0, 0%, 0) rotate3d(0, 0, 1, 0deg);
	}
}
.button--drais:hover {
	-webkit-transition: background-color 0s 0.3s;
	transition: background-color 0s 0.3s;
}
.button--drais.button--inverted:hover {
	background-color: #005c93;
}
.button--drais:hover .button__icon {
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
	line-height: 10px;
	font-size: 18px;
}
.button--drais:hover > span {
	opacity: 0;
	-webkit-transform: translate3d(0, 100%, 0);
	transform: translate3d(0, 100%, 0);
}
.button--drais-up:hover > span {
	-webkit-transform: translate3d(0, -100%, 0);
	transform: translate3d(0, -100%, 0);
}
