* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body::-webkit-scrollbar,
html::-webkit-scrollbar {
  width: 1em
}

body::-webkit-scrollbar-track,
html::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px rgba(0, 0, 0, .3)
}

body::-webkit-scrollbar-thumb,
html::-webkit-scrollbar-thumb {
  background-color: #dcdcdc;
  outline: 1px solid #868b90;
}

body {
  font-family: proxima-nova, sans-serif;
  font-weight: 400;
  font-style: normal;
  margin: 0 auto;
  padding: 0 1.5rem;
  max-width: 1200px;;
}

h1,h2,h3,h4,h5,h6 {
  font-family: poster-gothic-round-atf, sans-serif;
  font-weight: 700;
  font-style: normal;
}

h1 {
  line-height: 1;
}

p {
  font-size: 15px;
  line-height: 1.3;
}

hr {
  border-top: 1px solid #3e3e3e;
  border-bottom: 0 none;
}

.title {
  background: #000000;
  padding: .5rem 1rem;
  border-radius: 20px;
  margin: 2rem -1rem 1rem;
  color: #ffffff;
  display: flex;
  align-items: center;
}

.title svg {
  width: 24px;
  height: 24px;
  margin-right: 8px;
}

.section__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 0 .5rem;
  border-bottom: 1px solid #3e3e3e;
}

.section__title {
  text-transform: uppercase;
  letter-spacing: .1em;
  margin: 3px 1rem 3px 0;
  font-size: 1rem;
}

.section p {
  display: none;
}

.section.active p {
  display: block;
}

.result {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row-reverse;
  background: #efefef;
  margin: 0 0 2rem;
  padding: 0 6px 0 0;
  border-radius: 6px;
}

input[type="button"] {
  border: 0 none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20.8 23.5'%3E%3Cpath d='M20.8,16.8V6.7A1.6,1.6,0,0,0,20,5.3L11.2.2A1.5,1.5,0,0,0,9.6.2L.8,5.3A1.6,1.6,0,0,0,0,6.7V16.8a1.6,1.6,0,0,0,.8,1.4l8.8,5.1a1.5,1.5,0,0,0,1.6,0L20,18.2A1.6,1.6,0,0,0,20.8,16.8Z' style='fill:%23231f20'/%3E%3Cpath d='M9.7,10.9,2,6.5a.6.6,0,0,1,0-.9L9.7,1.2a1.2,1.2,0,0,1,1.4,0l7.7,4.4a.6.6,0,0,1,0,.9l-7.7,4.4A1.7,1.7,0,0,1,9.7,10.9Z' style='fill:%23414042'/%3E%3Cellipse cx='10.4' cy='5.7' rx='1.8' ry='1.1' style='fill:%23fff'/%3E%3Cellipse cx='13.2' cy='19' rx='1.6' ry='0.9' transform='translate(-9.9 19.4) rotate(-56.3)' style='fill:%23fff'/%3E%3Cellipse cx='18.2' cy='10.4' rx='1.6' ry='0.9' transform='translate(-0.6 19.8) rotate(-56.3)' style='fill:%23fff'/%3E%3Cellipse cx='15.7' cy='14.7' rx='1.6' ry='0.9' transform='translate(-5.2 19.6) rotate(-56.3)' style='fill:%23fff'/%3E%3Cellipse cx='7.6' cy='19' rx='0.9' ry='1.6' transform='translate(-9.2 7.4) rotate(-33.7)' style='fill:%23fff'/%3E%3Cellipse cx='2.6' cy='10.4' rx='0.9' ry='1.6' transform='translate(-5.3 3.2) rotate(-33.7)' style='fill:%23fff'/%3E%3Cellipse cx='5.1' cy='14.7' rx='0.9' ry='1.6' transform='translate(-7.3 5.3) rotate(-33.7)' style='fill:%23fff'/%3E%3Cellipse cx='2.6' cy='16.4' rx='0.9' ry='1.6' transform='translate(-8.6 4.2) rotate(-33.7)' style='fill:%23fff'/%3E%3Cellipse cx='7.6' cy='13' rx='0.9' ry='1.6' transform='translate(-5.9 6.4) rotate(-33.7)' style='fill:%23fff'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  line-height: 1;
  background-position: center center;
  color: #000000;
  min-height: 32px;
  min-width: 32px;
  font-size: 1.5rem;
  color: transparent;
  border-radius: 0;
  padding: 0;
  margin: 10px;
  display: block;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

input[type="button"].active {
  animation-duration: 300ms;
  animation-name: rotate;
  -webkit-tap-highlight-color: transparent;
}

.result [id*="placeholder"] {
  font-family: proxima-nova, sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 1.5rem;
  line-height: 1.2;
  padding: 6px .875rem;
  width: 100%;
  border-bottom: 2px solid transparent;
  transition: all 200ms ease-in-out;
}

@keyframes rotate {
  from {
    transform: rotate(0deg)
  }

  to {
    transform: rotate(360deg);
  }
}

@media screen and (min-width: 50em) {
  p {
    font-size: calc(.75rem + .25vw);
  }
  .grid {
    display: grid;
    grid-template-columns: repeat( auto-fit, minmax(20em, 1fr) );
    grid-gap: 2rem;
  }
  .result {
    margin: 0 0 1rem;
  }
}

@media screen and (min-width: 90em) {
  .result {
    flex-direction: row;
  }
}


