* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Roboto", serif;
}

html,
body {
  width: 100%;
  height: 100%;
}

#root {
  width: 100%;
  height: 100%;
}
#root #parent {
  overflow-x: hidden;
  position: relative;
  overflow-y: scroll;
  width: 100%;
  height: 100%;
}
#root #parent::-webkit-scrollbar {
  display: none;
}
#root #parent nav {
  width: 100%;
  padding: 0 0.5em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid rgba(157, 150, 150, 0.2196078431);
}
#root #parent nav .insta-logo {
  width: 7em;
  -o-object-fit: contain;
     object-fit: contain;
}
#root #parent nav .icons {
  font-size: 1.5em;
}
#root #parent nav .icons a {
  text-decoration: none;
  color: #333;
  margin-left: 0.2em;
}
#root #parent main header {
  display: flex;
  width: 100vw;
  padding: 1em 0;
  gap: 0.5em;
  overflow-x: auto;
  overflow-y: hidden;
  border-bottom: 2px solid rgba(157, 150, 150, 0.2196078431);
}
#root #parent main header::-webkit-scrollbar {
  display: none;
}
#root #parent main header .stories {
  text-align: center;
}
#root #parent main header .stories .pfp {
  background: linear-gradient(217deg, #a723ff, #fd1d1d, #f39f28);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 4px;
  border-radius: 50%;
}
#root #parent main header .stories p {
  font-family: "Parkinsans", sans-serif;
  font-weight: 500;
  font-size: 0.7em;
}
#root #parent main header .stories img {
  border: 2px solid white;
  width: 4.5em;
  height: 4.5em;
  -o-object-position: 50% 29%;
     object-position: 50% 29%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}
#root #parent main header .stories .story {
  width: 100vw;
  height: 100vh;
  background-color: #333;
  position: absolute;
  top: 0;
  left: 0;
  display: none;
  justify-content: center;
  align-items: center;
}
#root #parent main header .stories .story img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 0;
}
#root #parent main .story-popup {
  display: none;
  position: fixed;
  z-index: 99;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
}
#root #parent main .story-popup .story-content {
  position: relative;
  text-align: center;
  max-width: 100%;
  height: 100%;
  /* Loading Bar on top of the story */
}
#root #parent main .story-popup .story-content img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 5px;
}
#root #parent main .story-popup .story-content video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 5px;
}
#root #parent main .story-popup .story-content .close-story {
  position: absolute;
  top: 1em;
  right: 2em;
  background-color: transparent;
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1em;
}
#root #parent main .story-popup .story-content .loading-bar {
  position: absolute;
  top: 0;
  left: 0;
  padding: 0.3em 0;
  border-radius: 40px;
  width: 100%;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  background-color: rgba(186, 184, 188, 0.82);
  transition: width 5s linear; /* Smooth transition for the loading bar */
}
#root #parent main .post-section .post {
  padding: 2em 0;
  border-bottom: 2px solid rgba(157, 150, 150, 0.2196078431);
}
#root #parent main .post-section .post .post-header .user-info {
  display: flex;
  align-items: center;
  gap: 0.3em;
  padding: 0 0.3em 0 0;
  justify-content: space-between;
}
#root #parent main .post-section .post .post-header .user-info img {
  width: 3em;
  height: 3em;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}
#root #parent main .post-section .post .post-header .user-info .user {
  font-size: 0.9em;
  margin-left: 0.2em;
}
#root #parent main .post-section .post .post-header .user-info .user .user-name {
  font-weight: 600;
  font-size: 1.03em;
  font-family: "Parkinsans";
  width: 1000%;
}
#root #parent main .post-section .post .post-header .user-info .user .post-time {
  font-size: 0.8em;
  color: rgba(0, 0, 0, 0.6);
  margin-left: 0.5em;
}
#root #parent main .post-section .post .post-image {
  position: relative;
  margin-top: 0.5em;
}
#root #parent main .post-section .post .post-image i {
  font-size: 5em;
  color: rgba(235, 14, 52, 0.3803921569);
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 999;
  transform: translate(-50%, -50%) scale(0);
}
#root #parent main .post-section .post .post-image img {
  width: 100%;
}
#root #parent main .post-section .post .like {
  color: #333;
  cursor: pointer;
  font-size: 1.4em;
  padding: 0 0.5em;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#root #parent main .post-section .post .like .left {
  display: flex;
  gap: 0.2em;
}
#root #parent main .post-section .post .like .left p {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.1em;
}
#root #parent main .post-section .post .like .left p i {
  pointer-events: none;
}
#root #parent main .post-section .post .like .left p span {
  font-size: 0.7em;
  margin-left: -0.2em;
  margin-right: 0.3em;
  pointer-events: none;
}
#root #parent main .post-section .post .discription {
  margin-top: 1em;
  padding: 0 0.5em;
}
#root #parent main .post-section .post .discription p {
  padding: 0 0.5em;
  font-size: 0.9em;
  line-height: 1.22;
}
#root #parent main .post-section .post .discription p span {
  font-weight: 600;
}
#root #parent main .post-section .post .discription p .more {
  opacity: 0.5;
}
#root #parent main .post-section .post .discription .bottom {
  display: flex;
  flex-direction: column;
  font-size: 0.8em;
}
#root #parent main .post-section .post .discription .bottom .m-x {
  margin: 0.5em 0 0.2em 0;
}
#root #parent main .post-section .post .discription .bottom .more {
  opacity: 0.5;
}/*# sourceMappingURL=style.css.map */