@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap");
* {
  padding: 0;
  margin: 0;
  list-style: none;
  border: none;
  outline: 0;
  -webkit-overflow-scrolling: touch;
  text-decoration: none;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scrollbar-width: auto;
  scrollbar-color: #ccc #fff;
  -webkit-tap-highlight-color: transparent; }

*::-webkit-scrollbar {
  width: 8px; }

*::-webkit-scrollbar-track {
  background: transparent; }

*::-webkit-scrollbar-thumb {
  background-color: #ccc;
  border-radius: 10px;
  border: 4px solid transparent; }

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

body,
input,
textarea,
select,
button {
  font-family: "Roboto", sans-serif; }

html,
body {
  height: 100%;
  background: #fafafa; }

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 7px 15px 0;
  z-index: 99;
  background: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.02); }

header .actions {
  display: flex;
  align-items: center; }

header .actions .add,
header .actions .like,
header .actions .messages {
  margin-right: 20px; }

header .actions .add:last-child,
header .actions .like:last-child,
header .actions .messages:last-child {
  margin: 0; }

header .actions .messages {
  position: relative; }

header .actions .messages::after {
  content: attr(data);
  position: absolute;
  top: -7px;
  right: -7px;
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: red;
  border-radius: 50%;
  font-weight: 700;
  font-size: 11px;
  color: #fff; }

.stories {
  background: #fff;
  padding: 66px 0 15px;
  /*margin: 0 0 10px 0;*/ }

.stories ul {
  display: flex;
  overflow-x: auto; }

.stories ul::-webkit-scrollbar {
  display: none; }

.stories ul li {
  margin: 0 9px; }

.stories ul li a {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 72px; }

.stories ul li a .avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  border-radius: 50%; }

.stories ul li a .avatar img {
  width: 60px;
  height: 60px;
  outline: 3px solid #fff;
  object-fit: cover;
  border-radius: 50%; }

.stories ul li a span {
  line-height: 22px;
  font-size: 13px;
  font-weight: 400;
  color: #000; }

.stories ul li:first-child a .avatar {
  position: relative;
  background: none; }

.stories ul li:first-child a .avatar svg {
  position: absolute;
  bottom: 3px;
  right: 3px; }

.post {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.075); }

.post .header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 8px 15px; }

.post .header a {
  display: flex;
  align-items: center; }

.post .header a .avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  min-width: 40px;
  height: 40px;
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  border-radius: 50%; }

.post .header a .avatar img {
  width: 32px;
  height: 32px;
  outline: 2px solid #fff;
  object-fit: cover;
  border-radius: 50%; }

.post .header a span {
  line-height: 22px;
  font-size: 17px;
  font-weight: 400;
  margin-left: 7px;
  color: #000; }

.post .header .dot {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 35px;
  width: 35px; }

.post .header .dot span {
  width: 3px;
  height: 3px;
  margin: 1px 0;
  border-radius: 50%;
  background: #000; }

.post .content {
  min-height: 350px;
  width: 100%;
  height: 550px; }

.post .content img {
  object-fit: cover;
  width: 100%;
  height: 100%; }

.post .bottom {
  width: 100%;
  padding: 10px 15px; }

.post .bottom .actions {
  display: flex;
  position: relative;
  width: 100%; }

.post .bottom .actions .like,
.post .bottom .actions .comment,
.post .bottom .actions .save,
.post .bottom .actions .messages {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  margin-right: 7px; }

.post .bottom .actions .like svg,
.post .bottom .actions .comment svg,
.post .bottom .actions .save svg,
.post .bottom .actions .messages svg {
  width: 26px;
  height: 26px; }

.post .bottom .actions .comment svg {
  width: 24px;
  height: 24px; }

.post .bottom .actions .save {
  margin-left: auto; }

.post .bottom .actions .pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 45%;
  left: 50%;
  width: 30%;
  height: 100%;
  transform: translate(-50%, -50%); }

.post .bottom .actions .pagination span {
  width: 6px;
  height: 6px;
  background: #c4c4c4;
  border-radius: 50%;
  margin-left: 3px; }

.post .bottom .actions .pagination span:first-child {
  width: 7px;
  height: 7px;
  background: #5792e7;
  border-radius: 50%; }

.post .bottom .actions .pagination span:last-child {
  width: 4px;
  height: 4px; }

.post .bottom .likes {
  display: block;
  font-size: 15px;
  font-weight: 600;
  margin-top: 10px; }

.post .bottom .description {
  margin-top: 5px;
  font-size: 16px; }

.post .bottom .description .username {
  font-weight: 600; }

.post .bottom .description .more {
  color: rgba(0, 0, 0, 0.6); }

.post .bottom .comments {
  display: block;
  margin-top: 8px;
  font-size: 16px;
  color: rgba(0, 0, 0, 0.55);
  font-weight: 500; }

.post .bottom .add-comment {
  display: flex;
  align-items: center;
  margin: 12px 0 5px; }

.post .bottom .add-comment img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover; }

.post .bottom .add-comment span {
  margin-left: 9px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.4); }

.post .bottom .add-comment img:nth-child(3) {
  margin-left: auto; }

.post .bottom .add-comment .emote {
  width: 15px;
  height: 15px;
  object-fit: cover;
  margin: 0 3px;
  border-radius: 0; }

.post.last {
  padding-bottom: 44px; }

.suggestions {
  padding: 16px;
  display: flex;
  flex-direction: column; }

.suggestions h2 {
  display: flex;
  justify-content: space-between;
  font-size: 16px;
  font-weight: 500;
  color: #000; }

.suggestions h2 a {
  display: block;
  margin-left: auto;
  color: #5792e7; }

.suggestions ul {
  display: flex;
  align-items: center;
  margin-top: 16px;
  overflow-x: scroll;
  margin: 16px -16px 0; }

.suggestions ul::-webkit-scrollbar {
  display: none; }

.suggestions ul li:first-child {
  margin-left: 16px; }

.suggestions ul li a {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 12px 10px;
  margin-right: 10px;
  min-width: 200px;
  border: 1px solid rgba(0, 0, 0, 0.11);
  background: #fff;
  border-radius: 4px;
  position: relative; }

.suggestions ul li a .close-btn {
  position: absolute;
  top: 9px;
  right: 9px; }

.suggestions ul li a .avatar {
  width: 140px;
  height: 140px;
  margin-bottom: 12px; }

.suggestions ul li a .avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%; }

.suggestions ul li a .username {
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: 500;
  color: #000; }

.suggestions ul li a .username svg {
  margin-left: 2px;
  width: 16px;
  height: 16px; }

.suggestions ul li a span {
  color: rgba(0, 0, 0, 0.6);
  margin: 3px 0 17px 0;
  font-size: 14px; }

.suggestions ul li a button {
  width: 100%;
  height: 25px;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  border-radius: 4px;
  background: #5793ea; }

footer {
  position: fixed;
  width: 100%;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 32px 13px;
  background: #fff;
  border-top: 1px solid rgba(0, 0, 0, 0.05); }

footer svg {
  width: 24px;
  height: 24px; }

footer img {
  width: 24px;
  height: 24px;
  border-radius: 50%; }

.warning {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 30px;
  background: #fff;
  z-index: 9999 !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center; }

.warning img {
  margin-top: -100px; }

.warning h2 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 10px; }

.warning p {
  font-size: 20px;
  color: rgba(0, 0, 0, 0.65);
  max-width: 600px; }

.warning p span {
  cursor: pointer;
  color: #ff7b00; }
