:root {
  --border-radius: 0.5rem;
}

@keyframes loading {
  to {
    background-position-x: -200%;
  }
}

* {
  padding: 0;
  margin: 0;
}

.body {
  font-family: "Jost", sans-serif;
  display: grid;
  overflow: hidden;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

::-webkit-scrollbar {
  display: none;
}



.container {
  max-width: 100vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  place-self: center;
  position: relative;
}

.arrow {
  display: none;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0.3s, opacity 0.3s;
  justify-content: center;
  align-items: center;
  border: none;
  z-index: 10;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #2424244d;
  margin: auto;
  box-shadow: 0px 0px 10px 0px rgba(255, 255, 255, 0.05);
  position: absolute;
  top: 0;
  bottom: 0;
}

.left-arrow {
  left: 10px;
}

.right-arrow {
  right: 10px;
}

.posts-container {
  overflow-x: auto;
  overflow-y: hidden;
  display: grid;
  grid-auto-flow: column;
  justify-content: start;
  column-gap: 1rem;
  column-gap: clamp(1rem, 4.278vh, 1.5rem);
  -ms-overflow-style: none;
  scrollbar-width: none;
  position: relative;
}

.post {
  width: calc(100vh / 16 * 9);
  height: 100vh;
  position: relative;
  display: flex;
  cursor: pointer;
}

.post-img {
  width: calc(100vh / 16 * 9);
  height: 100vh;
  object-fit: cover;
  border-radius: var(--border-radius);
}

.post-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(to top, #00000080, #00000040, #FFFFFF00);
  border-radius: var(--border-radius);
  padding: 1rem;
  display: grid;
  align-content: end;
}

.products-container {
  display: flex;
}

.product-img {
  width: calc(9.66vh / 5 * 4);
  height: 9.66vh;
  object-fit: cover;
  border-radius: calc(var(--border-radius) / 4);
  margin-right: 3.7%;
  box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.3);
}

.hide {
  display: none;
}

.post-title {
  width: 100%;
  display: none;
  font-size: 0.875rem;
  line-height: 1.5;
  font-weight: 500;
  color: #F6F6F6;
  text-shadow: 0px 0px 1px rgba(0, 0, 0, 0.3);
  margin: 6.35% 0% 0% 0%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.post-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  display: flex;
  align-items: center;
  background-color: #24242480;
  color: #F6F6F6;
  border-radius:  calc(var(--border-radius) / 4);
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
  font-weight: 500;
}

.post-tag svg {
  width: 1rem;
  height: 1rem;
  margin-right: 0.5rem;
}

.post:focus {
  outline: none;
}

.icon {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  height: auto;
  width: 20%;
  color: #F6F6F6;
}

#loader {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  z-index: 1;
}

.loader {
  border-radius: var(--border-radius);
  background-color: #F6F6F6;
}

.loader-overlay {
  background: none;
}

.loader-product, .loader-post-title {
  box-shadow: none;
  background: linear-gradient(110deg, #e1e1e1, #e4e4e4 35%, #e9e9e9 50%, #e4e4e4 65%, #e1e1e1);
  background-size: 200% 200%;
  animation: 1.5s loading linear infinite;
}

.loader-post-title {
  height: 1.125rem;
  margin: 6.35% 0% 0% 0%;
  border-radius:  calc(var(--border-radius) / 4);
}

.loader-icon {
  visibility: hidden;
}

.loading {
  visibility: hidden;
}

.reetags_scheduled_live_item {
  color: #F6F6F6;
  z-index: 100;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  width: inherit;
  flex-direction: column;
}

@media (hover: hover) and (pointer: fine) {
  .arrow {
    display: flex;
  }
}

@media (min-height: 245px) and (max-width: 550px) {
  .post-title {
    display: inline-block;
  }
}

@media (min-height: 275px) and (min-width: 550px) {
  .post-title {
    display: inline-block;
  }
}

@media (min-height: 400px) {
  .post-title {
    max-height: 1.3125rem;
    font-size: 1rem;
  }
}

@media (min-height: 325px) and (min-width: 900px) {
  .hide {
    display: block;
  }
}








