@font-face {
  font-family: Freight-sans;
  src: url("https://s3-us-west-2.amazonaws.com/s.cdpn.io/2053557/Freight%20Sans%20Medium.otf");
}
body, button {
  font-family: Freight-sans, sans-serif;
  background:#121212;
  color:#fff;
}

body, h1, h2, p {
  margin: 0;
  padding: 0;
}

button {
	color:#fff;
  border: 0;
  outline: 0;
  background: #121212 ;
  
  
}

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

.container {
  margin: 0 auto;
  padding-bottom: 50px;
  max-width: 375px;
}

.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  padding: 10px 15px;
}
.top-bar__title {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
}
.top-bar__title__text {
  font-size: 18px;
}
.top-bar__title__verified-icon {
  margin-left: 4px;
  width: 15px;
  height: 14px;
  background:#121212;
}

.stats {
  padding: 0 15px;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-column-gap: 10px;
}
.stats__img-holder {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 1px solid #FFD36A ;
  background: center/125% no-repeat;
}
.stats__data {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-around;
  align-items: center;
  text-align: center;
}
.stats__data__point {
  font-family: sans-serif;
}
.stats__data__point__value {
  font-size: 16px;
  font-weight: 600;
}
.stats__data__point__description {
  font-weight: 300;
  font-size: 14px;
  margin-top: 2px;
}

.description {
  padding: 0 15px;
}
.description h2 {
  font-size: 18px;
  margin: 0;
  margin-top: 16px;
  padding: 0;
}
.description p {
  margin-top: 4px;
  color: #fff;
}
.description a {
  margin-top: 2px;
  color: #FFD36A ;
}

.actions {
  padding: 0 15px;
  margin-top: 14px;
  display: grid;
  grid-template-columns: 1fr 1fr 34px;
  grid-column-gap: 6px;
}
.actions__btn {
  font-size: 15px;
  border-radius: 4px;
  border: 1px solid #fff;
  height: 32px;
  display: block;
  width: 100%;
}
.actions__btn--icon {
  display: flex;
}
.actions__btn--icon i {
  margin: auto;
  font-size: 16px;
}
.actions__btn--active {
  background: #FFD36A ;
  border: 1px solid #fff;
  color: black;
}

.stories {
  margin-top: 14px;
  padding: 0 10px;
  white-space: nowrap;
  overflow-x: auto;
  overflow-y: scroll;
  scrollbar-width: none;
  /* Firefox */
  -ms-overflow-style: none;
  /* Internet Explorer 10+ */
}
.stories::-webkit-scrollbar {
  /* WebKit */
  width: 0;
  height: 0;
}
.stories__single {
  display: inline-block;
}
.stories__single__img-holder {
  display: inline-block;
  border-radius: 50%;
  border: 1px solid #d8d8d8;
  padding: 3px;
  position: relative;
  left: 50%;
  transform: translatex(-50%);
  margin-right: 12px;
}
.stories__single__img-holder__inner {
  border-radius: 50%;
  border: 1px solid #d8d8d8;
  width: 60px;
  height: 60px;
  background: center/cover no-repeat;
}
.stories__single__description {
  text-align: center;
  font-size: 14px;
  margin-top: 2px;
  color: #fff;
}

.tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid #d8d8d8;
  margin-top: 20px;
}
.tabs__btn {
  display: flex;
  padding-top: 6px;
  padding-bottom: 5px;
  border-bottom: 1px solid transparent;
}
.tabs__btn__icon {
  margin: auto;
  max-width: 22px;
}
.tabs__btn--active {
  border-bottom: 1px solid #444;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 1px;
}
.grid__photo {
  display: block;
  width: 100%;
  height: calc(375px / 3);
  background: center/cover no-repeat;
}

.bottom-bar {
  width: calc(375px + 2px);
  height: 50px;
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translatex(-50%);
  z-index: 1;
  background: #121212 ;
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.bottom-bar__btn__icon {
  width: 22px;
  text-align: center;
}
