* {
  box-sizing: border-box;
}

*:focus {
  outline: none;
}

body {
  min-height: 100%;
  line-height: 1;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
       user-select: none;
  -webkit-tap-highlight-color: transparent;
}

html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  touch-action: manipulation;
}

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, tt, var, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font-family: inherit;
  vertical-align: baseline;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

b, strong {
  font-weight: bold;
}

i {
  font-style: italic;
}

em {
  font-style: normal;
}

ol, ul {
  list-style: none;
}

img {
  border: 0;
}

a {
  outline: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

textarea {
  overflow: auto;
  resize: none;
}

input, textarea, button, select {
  margin: 0;
  padding: 0;
  font-size: 100%;
  line-height: normal;
  vertical-align: baseline;
  outline: none;
  border: none;
}

textarea, button {
  /*input*/
  -webkit-appearance: none;
}

input[type=radio] {
  -webkit-border-radius: 10px;
}

button, input[type=button], input[type=reset], input[type=submit] {
  cursor: pointer;
  -webkit-appearance: button;
}

input[type=checkbox], input[type=radio] {
  box-sizing: border-box;
}

input[type=search],
input[type=search]::-webkit-search-decoration,
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-results-button,
input[type=search]::-webkit-search-results-decoration {
  -webkit-appearance: none;
}

/* ios: remove input shadow */

html.safari_mobile input, html.safari_mobile textarea {
  -webkit-appearance: caret;
  -moz-appearance: caret;
}

/*
	@import '../../../sass/_variables.scss';
*/

.button,
button {
  display: inline-block;
  position: relative;
  padding: 0.7rem 5rem 0.8rem 5rem;
  border-radius: 0.4rem;
  color: #FFF;
  background-color: #174bdb;
  transition: all 0.08s ease-out;
  font-family: "Arial", sans-serif;
  color: #FFF;
  font-size: 1.4rem;
  line-height: 1.8rem;
  text-align: center;
}

.button:active,
button:active {
  transform: scale(0.95);
}

.button .label,
button .label {
  display: inline-block;
}

.button .iconpack,
button .iconpack {
  vertical-align: middle;
}

.button.disabled,
button.disabled {
  opacity: 0.4;
  pointer-events: none;
}

.button.white,
button.white {
  background-color: #FFF;
  color: #434343;
}

.button.big,
button.big {
  font-size: 28px;
  height: auto;
  padding: 34px 38px 38px 38px;
}

/*
<a class="textbutton">
	<span class="button small icon"><span class="iconpack arrow-back"></span></span>
	<span class="text">back</span>
</a>
*/

.button-text {
  color: #808080;
  text-transform: uppercase;
  vertical-align: top;
  padding: 19px 5px 20px 5px;
  line-height: 24px;
  text-align: center;
}

.button-outline {
  border-radius: 2rem;
  border: 2px solid #CECECE;
  padding: 0.7rem 5rem;
  position: relative;
  z-index: 2;
  display: inline-block;
  text-align: center;
  font-size: 14px;
  line-height: 14px;
  font-weight: 600;
  color: #262626;
}

.button-outline .label {
  display: inline-block;
  vertical-align: middle;
}

.button-outline .iconpack {
  display: inline-block;
  vertical-align: middle;
}

.fadeIn {
  -webkit-animation: customFadeIn ease-out 0.5s;
          animation: customFadeIn ease-out 0.5s;
  -webkit-animation-fill-mode: forwards !important;
          animation-fill-mode: forwards !important;
  opacity: 0;
}

.fadeIn.delay-short {
  -webkit-animation-delay: 0.15s;
          animation-delay: 0.15s;
}

.fadeIn.delay-medium {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}

.fadeIn.delay-long {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}

.fadeIn.slow {
  -webkit-animation-duration: fadeDurationSlow;
          animation-duration: fadeDurationSlow;
}

.fadeIn.slower {
  -webkit-animation-duration: fadeDurationSlower;
          animation-duration: fadeDurationSlower;
}

.fadeIn.fast {
  -webkit-animation-duration: fadeDurationFast;
          animation-duration: fadeDurationFast;
}

@-webkit-keyframes customFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

.scaleUp {
  -webkit-animation: customScaleUp ease-out 0.25s;
          animation: customScaleUp ease-out 0.25s;
  -webkit-animation-fill-mode: forwards !important;
          animation-fill-mode: forwards !important;
  transform: scale(0.96);
  opacity: 0;
}

.scaleUp.delay-short {
  -webkit-animation-delay: 0.15s;
          animation-delay: 0.15s;
}

.scaleUp.delay-medium {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}

.scaleUp.delay-long {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}

@-webkit-keyframes customScaleUp {
  from {
    transform: scale(0.96);
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes customScaleUp {
  from {
    transform: scale(0.96);
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.scaleUpMedium {
  -webkit-animation: customScaleUpMedium ease-out 0.25s;
          animation: customScaleUpMedium ease-out 0.25s;
  -webkit-animation-fill-mode: forwards !important;
          animation-fill-mode: forwards !important;
  transform: scale(0.7);
  opacity: 0;
}

.scaleUpMedium.delay-short {
  -webkit-animation-delay: 0.15s;
          animation-delay: 0.15s;
}

.scaleUpMedium.delay-medium {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}

.scaleUpMedium.delay-long {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}

@-webkit-keyframes customScaleUpMedium {
  from {
    opacity: 0;
    transform: scale(0.7);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes customScaleUpMedium {
  from {
    opacity: 0;
    transform: scale(0.7);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.scaleUpBig {
  -webkit-animation: customScaleUpBig ease-out 0.25s;
          animation: customScaleUpBig ease-out 0.25s;
  -webkit-animation-fill-mode: forwards !important;
          animation-fill-mode: forwards !important;
  transform: scale(0.5);
  opacity: 0;
}

.scaleUpBig.delay-short {
  -webkit-animation-delay: 0.15s;
          animation-delay: 0.15s;
}

.scaleUpBig.delay-medium {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}

.scaleUpBig.delay-long {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}

@-webkit-keyframes customScaleUpBig {
  from {
    opacity: 0;
    transform: scale(0.5);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes customScaleUpBig {
  from {
    opacity: 0;
    transform: scale(0.5);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.slideRight {
  -webkit-animation: customSlideRight ease-out 0.5s;
          animation: customSlideRight ease-out 0.5s;
  -webkit-animation-fill-mode: forwards !important;
          animation-fill-mode: forwards !important;
  transform: translate(-60px, 0);
  opacity: 0;
}

.slideRight.delay-short {
  -webkit-animation-delay: 0.15s;
          animation-delay: 0.15s;
}

.slideRight.delay-medium {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}

.slideRight.delay-long {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}

@-webkit-keyframes customSlideRight {
  from {
    opacity: 0;
    transform: translate(-60px, 0);
  }
  to {
    transform: translate(0, 0);
    opacity: 1;
  }
}

@keyframes customSlideRight {
  from {
    opacity: 0;
    transform: translate(-60px, 0);
  }
  to {
    transform: translate(0, 0);
    opacity: 1;
  }
}

.slideLeft {
  -webkit-animation: customSlideLeft ease-out 0.5s;
          animation: customSlideLeft ease-out 0.5s;
  -webkit-animation-fill-mode: forwards !important;
          animation-fill-mode: forwards !important;
  transform: translate(60px, 0);
  opacity: 0;
}

.slideLeft.delay-short {
  -webkit-animation-delay: 0.15s;
          animation-delay: 0.15s;
}

.slideLeft.delay-medium {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}

.slideLeft.delay-long {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}

@-webkit-keyframes customSlideLeft {
  from {
    opacity: 0;
    transform: translate(60px, 0);
  }
  to {
    transform: translate(0, 0);
    opacity: 1;
  }
}

@keyframes customSlideLeft {
  from {
    opacity: 0;
    transform: translate(60px, 0);
  }
  to {
    transform: translate(0, 0);
    opacity: 1;
  }
}

.slideUp {
  -webkit-animation: customSlideUp ease-out 0.5s;
          animation: customSlideUp ease-out 0.5s;
  -webkit-animation-fill-mode: forwards !important;
          animation-fill-mode: forwards !important;
  transform: translate(0, 60px);
  opacity: 0;
}

.slideUp.delay-short {
  -webkit-animation-delay: 0.15s;
          animation-delay: 0.15s;
}

.slideUp.delay-medium {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}

.slideUp.delay-long {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}

@-webkit-keyframes customSlideUp {
  from {
    opacity: 0;
    transform: translate(0, 60px);
  }
  to {
    transform: translate(0, 0);
    opacity: 1;
  }
}

@keyframes customSlideUp {
  from {
    opacity: 0;
    transform: translate(0, 60px);
  }
  to {
    transform: translate(0, 0);
    opacity: 1;
  }
}

.slideDown {
  -webkit-animation: customSlideDown ease-out 0.5s;
          animation: customSlideDown ease-out 0.5s;
  -webkit-animation-fill-mode: forwards !important;
          animation-fill-mode: forwards !important;
  transform: translate(0, -60px);
  opacity: 0;
}

.slideDown.delay-short {
  -webkit-animation-delay: 0.15s;
          animation-delay: 0.15s;
}

.slideDown.delay-medium {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}

.slideDown.delay-long {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}

@-webkit-keyframes customSlideDown {
  from {
    opacity: 0;
    transform: translate(0, -60px);
  }
  to {
    transform: translate(0, 0);
    opacity: 1;
  }
}

@keyframes customSlideDown {
  from {
    opacity: 0;
    transform: translate(0, -60px);
  }
  to {
    transform: translate(0, 0);
    opacity: 1;
  }
}

/*div.tapEffect{
	pointer-events: none;
	position:fixed;
	background-color:$color-ruby;
	border-radius:50%;
	animation:tapEffect 0.3s ease-out;
	z-index:99999;
	width:50px;
	height:50px;
	margin:-25px;
}
	@keyframes tapEffect{
	0%{
		opacity:0.6;
	}
	100%{
		opacity:0;
	}
}*/

html, body {
  width: 1080px;
  height: 1920px;
  background-color: #000;
  font-family: "Arial", sans-serif;
  font-size: 16px;
  line-height: 28px;
  color: #434343;
  overflow: hidden;
}

strong, b {
  font-weight: 600;
}

small {
  font-size: 0.85em;
}

a {
  text-decoration: none;
  font-weight: 600;
}

hr {
  border-top: 1px solid #CECECE;
  margin: 3rem 0;
}

h1, h2, h3, h4 {
  color: #000000;
}

h1 {
  font-weight: 600;
  font-size: 46px;
  line-height: 50px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

h2 {
  font-weight: 600;
  font-size: 24px;
  line-height: 32px;
  text-transform: uppercase;
}

h3 {
  font-size: 22px;
  line-height: 28px;
  font-weight: 600;
}

h4 {
  font-size: 18px;
  line-height: 22px;
  font-weight: 400;
  text-transform: uppercase;
}

h4.underlined {
  padding-bottom: 8px;
  margin-top: 20px;
  text-transform: uppercase;
  margin-bottom: 8px;
  border-bottom: 1px solid #CECECE;
}

.app-view {
  margin: auto;
  max-width: 1200px;
  height: 100%;
}

.app-view.padded {
  padding: 0 2rem;
}

/* <div class="align-vert align-hor">
  <div>centered</div>
</div> */

.align-vert {
  display: flex;
  height: 100%;
  align-items: center;
}

.align-vert.align-hor {
  width: 100%;
  justify-content: center;
}

.align-vert.align-hor > *:before, .align-vert.align-hor > *:after {
  display: block;
  content: "";
  align-self: flex-start;
}

.align-vert.align-hor > *:after {
  align-self: flex-end;
}

/* <div class="fullheight-container">
  <div>top div</div>
  <div class="fillspace">this div will take up the remaining space</div>
</div> */

.fullheight-container {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.fullheight-container .fillspace {
  flex-grow: 1;
  overflow: scroll;
}
