/* Normalize-mini: taken from react-native-web */
html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color:rgba(0,0,0,0)
}

body {
  background: #000;
  margin: 0;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

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

/* Simple type resets */
html,
button {
  font-family: "Gotham Rounded SSm A", "Gotham Rounded SSm B";
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.4;
  -webkit-text-size-adjust:none;
  -webkit-font-smoothing: antialiased;
}
button {
  cursor: pointer;
}
textarea,
input {
  font-family: "Gotham Rounded SSm A", "Gotham Rounded SSm B";
  font-style: normal;
  font-weight: 300;
  font-size: 1.2rem;
  line-height: 1.4;
}
strong {
  font-family: "Gotham Rounded SSm A", "Gotham Rounded SSm B";
  font-style: normal;
  font-weight: 700;
}
a {
  text-decoration: none;
  color: inherit;
}
a:hover {
  text-decoration: none;
}


/* Simple icon resets */
svg > g {
  stroke: inherit;
}

/* carousel */
.slick-slide > .slick-shadow {
  transform: translateY(-30px) scale(1.1);
  transition: transform .5s cubic-bezier(.2,.7,.5,1);
}
.slick-slide { transform: scale(0.85); transition: transform .5s cubic-bezier(.2,.7,.5,1); }
.slick-center > .slick-shadow, .slick-center { transform: none; }

/* Make clicks pass-through */
#nprogress {
  pointer-events: none;
}
#nprogress .bar {
  background: #29d;
  position: fixed;
  z-index: 1031;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
}
/* Fancy blur effect */
#nprogress .peg {
  display: block;
  position: absolute;
  right: 0px;
  width: 100px;
  height: 100%;
  box-shadow: 0 0 10px #29d, 0 0 5px #29d;
  opacity: 1.0;
  -webkit-transform: rotate(3deg) translate(0px, -4px);
      -ms-transform: rotate(3deg) translate(0px, -4px);
          transform: rotate(3deg) translate(0px, -4px);
}
