@font-face {
  font-family: "Circular";
  src: url("../fonts/circular-book.otf");
  font-weight: 400;
}

@font-face {
  font-family: "Circular";
  src: url("../fonts/circular-medium.otf");
  font-weight: 500;
}

@font-face {
  font-family: "Circular";
  src: url("../fonts/circular-bold.otf");
  font-weight: 600;
}

@font-face {
  font-family: "Circular";
  src: url("../fonts/circular-black.otf");
  font-weight: 800;
}

html,
body {
  height: 100vh;
  width: 100vw;
  font-family: "Circular";
  color: #484848;
}

html {
  box-sizing: border-box;
  overflow-x: hidden;
  width: 100vw;
}

*,
*:before,
*:after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Inline our ul for our menu */
ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

ul li {
  display: inline;
  margin: 0 0.5rem;
}

a {
  text-decoration: none;
}

button:focus {
  outline: none;
}

button {
  transition: all 0.2s ease-in-out;
  outline: none;
  border: none;
}

button:hover,
button:focus {
  transform: scale(1.05);
}

button.gradient {
  color: white;
  height: 34px;
  border-radius: 4px;
  background-image: linear-gradient(100deg, #3023ae, #c86dd7);
}

button.follow-btn {
  height: 32px;
  border-radius: 40px;
  background-color: #16cd81;
}

button.green-btn {
  background-color: #16cd81;
}

button.red-btn {
  background-color: #ff7b7b;
}

button.primary {
  height: 32px;
  color: white;
  box-shadow: 0 4px 6px 0 rgba(0, 0, 0, 0.5);
  font-weight: 700;
}

.share-icon {
  margin: 0 1rem 1rem;
  width: 25px;
  height: 25px;
}

.page {
  padding-top: 60px;
}

.screen-overlay {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.5);
  z-index: 7;
}

.screen-overlay .modal {
  width: 50%;
  margin: 0 auto;
  padding: 1.5rem 2rem;
  position: relative;
}

.screen-overlay .modal .close-btn {
  position: absolute;
  top: 0;
  right: 2rem;
  font-size: 1.3em;
  font-weight: 800;
  padding: 1.5rem 1rem;
  cursor: pointer;
}

.card {
  background: white;
  border-radius: 0.5rem;
}

/* Video React fix */
.video-react {
  height: 100% !important;
  width: 100%;
}

.video-react.feed-video {
  padding-top: 344px !important;
}

.feed-video {
  max-height: 344px;
}

@media (max-width: 600px) {
  .video-react.feed-video {
    padding-top: 100vw !important;
  }

  .video-react-has-started {
    padding-top: 300px !important;
  }

  .feed-video {
    max-height: 100vw;
  }

  .screen-overlay .modal {
    width: 90%;
  }
}

.video-react-fullscreen.feed-video,
.video-react-fullscreen .feed-video {
  max-height: 100%;
}

.video-react-big-play-button,
.video-react-control-bar {
  display: none !important;
}

.page-wrap {
  background: #f5f5f5;
  min-height: 100vh;
}
