html {
  box-sizing: border-box;
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
}

html, body, h1, h2, h3, ul, li, input, button, p {
  padding: 0;
  margin: 0;
}

input, button {
  font-family: inherit;
  font-size: inherit;
}

body {
  background: #fff;
  color: #262626;
  font-family: "Roboto Mono", monospace;
  font-optical-sizing: auto;
  height: 100%;
  margin: 0;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  font-size: 14px;
}

a {
  color: #000;
  text-decoration: none;
}

h1 {
  text-align: center;
  margin: 10px;
}

h2 {
  font-size: 15px;
  text-align: center;
  margin: 10px 0;
}

h3 {
  margin: 6px 0;
}

.error {
  color: #ff3300;
}

#app {
  max-width: 550px;
  margin: 0 auto;
  padding: 0 5vw;
}

.hd-form {
  max-width: 400px;
  margin: 30px auto;
  position: relative;
  padding: 5px;
}

.hd-form input {
  width: 100%;
  border: none;
  border-bottom: 1px solid #262626;
  height: 30px;
  font-size: 16px;
  padding: 8px 0;
  text-align: center;
}

.hd-form input:focus {
  outline: none;
}

.hd-form button {
  position: absolute;
  right: -2px;
  bottom: 15px;

  background-color: #222;
  border: none;
  cursor: pointer;
  color: #fff;
  height: 30px;
  width: 65px;
  border-radius: 50px;
  outline: 0;
  transition: .5s;
}

.hd-form button svg {
  fill: #fff;
  text-align: center;
    vertical-align: middle;
}

.how-to, .faqs {
  margin-top: 20px;
  margin-bottom: 20px;
}

.faqs .item {
  margin-bottom: 15px;
  border: 1px solid #dadada;
}

.faqs .title {
  position: relative;
  font-weight: bold;
  background-color: #fafafa;
  padding: 10px;
  padding-right: 30px;
}

.faqs .arrow {
  position: absolute;
  right: 6px;
  top: 6px;
  width: 18px;
  height: 18px;
  background-image: url(/img/arrow.png);
  background-size: 100%;
  background-repeat: no-repeat;
}

.faqs .row {
  height: 0;
  overflow: hidden;
  transition: height .25s ease-in-out;
}

.faqs .row p {
  padding: 10px;
  margin: 0;
}

.faqs i {
  transition: transform .25s ease-in-out;
}


#result {
  min-height: 30px;
}

#result .userinfo {
  text-align: center;
}

#result .userinfo img {
  width: 80px;
  height: 80px;
}

.tabs {
  display: flex;
  margin: 15px auto;
}
.tabs .tab {
  padding: 6px 20px;
  cursor: pointer;
  text-transform: uppercase;
  font-weight: bold;
}

.tabs .active {
  background-color: #000;
  color: #fff;
}

.content .items {
  padding-top: 10px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.content .item {
  width: 80vw;
  margin-bottom: 16px;
  text-align: center;
}

.stories .img, .highlights .img {
  height: 144vw;
  margin-bottom: 10px;
}

.posts .items {
  justify-content: space-between;
}

.posts .item {
  width: 42vw;
}

.posts .img {
  height: 42vw;
  margin-bottom: 10px;
}

.items img {
  height: 100%;
}

.items video {
  position: absolute; 
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
}

.download {
  color: #fff;
  font-weight: bold;
  background-color: #EA4C89;
  border-radius: 3px;
  border-style: none;
  cursor: pointer;
  display: block;
  height: 20px;
  line-height: 20px;
  list-style: none;
  margin: 0;
  outline: none;
  padding: 10px 16px;
  position: relative;
  text-align: center;
  text-decoration: none;
}

.content img {
  width: 100%;
}

.content .img {
  position: relative;
}

.content .img .play {
  width: 50px;
  height: 50px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.swiper-container {
  overflow: hidden;
  padding: 0 15px;
}

.highlights .highlight {
  width: 100px;
  text-align: center;
}

.highlight .active {
  border-color: #EA4C89;
}

.highlight img {
  width: 60px;
  height: 60px;
  border-radius: 60px;
  border: 3px solid #fff;
}

.loader {
  display: none;
  width: 50px;
  margin: 10px auto;
  aspect-ratio: 1;
  mask: conic-gradient(from 15deg,#0000,#000);
  animation: l26 1s infinite steps(12);
}
.loader,
.loader:before,
.loader:after{
  background:
    radial-gradient(closest-side at 50% 12.5%,
     #000 96%,#0000) 50% 0/20% 80% repeat-y,
    radial-gradient(closest-side at 12.5% 50%,
     #000 96%,#0000) 0 50%/80% 20% repeat-x;
}
.loader:before,
.loader:after {
  content: "";
  grid-area: 1/1;
  transform: rotate(30deg);
}
.loader:after {
  transform: rotate(60deg);
}

@keyframes l26 {
  100% {transform:rotate(1turn)}
}

@media (min-width: 550px) {
  #app {
    max-width: 500px;
  }
  .content .items {
    justify-content: space-between;
  }
  .content .items .item {
    width: 240px;
    overflow: hidden;
  }
  .content .items .item .img {
    height: 432px;
  }

  .posts .items .item .img {
    height: 240px;
  }
}

#footer {
  padding: 20px 0;
}