@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

html,
body {
  position: relative;
  height: 100%;
}

#slides {
  z-index: 10;
}

body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
  background: #000000;
}

.app {
  margin: auto;
  position: fixed;
  width: 100%;
  max-width: 400px;
  height: 100%;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
}

#slides {
  width: 100%;
  height: 100%;
  position: relative;
}

.storiesContainer {
  display: grid;
  grid: 1fr / auto-flow 100%;
  gap: 1ch;
  overflow-x: inherit;
  scroll-snap-type: x mandatory;
  overscroll-behavior: contain;
  touch-action: pan-x;
  margin: auto;
  inline-size: 100vw;
  block-size: 100vh;
  box-shadow:
    0 5px 2.5px hsl(200 95% 3% / .037),
    0 12px 6.5px hsl(200 95% 3% / .053),
    0 22.5px 13px hsl(200 95% 3% / .065),
    0 40.2px 24px hsl(200 95% 3% / .077),
    0 75.2px 44px hsl(200 95% 3% / .093),
    0 180px 80px hsl(200 95% 3% / .13);
  background: #000;
  position: relative;
  width: 100%;
  height: calc(100% - 50px);
}

.swiper.storySwipper {
  width: 100%;
  position: unset;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}

.storyBox {
  scroll-snap-align: start;
  scroll-snap-stop: always;
  display: grid;
  grid: [story] 1fr / [story] 1fr;
  position: relative;
  width: 100%;
  height: 100%;
  background: #000;
}

.imageBox {
  width: 100%;
  height: 100%;
  display: grid;
  grid: [story] 1fr / [story] 1fr;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.story {
  grid-area: story;
  background: center / cover no-repeat;
  user-select: none;
  touch-action: manipulation;
  transition: opacity .3s cubic-bezier(0.4, 0.0, 1, 1);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow-x: hidden;
  position: relative;
  opacity: 0;
}

.seen {
  opacity: 1;
  pointer-events: none;
}

.storyProgressBox {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.32), transparent);
  position: absolute;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  top: 0;
  left: 0;
  right: 0;
  height: 20px;
  z-index: 100000;
  transition: opacity 0.3s cubic-bezier(0.0, 0.0, 0.2, 1);
  pointer-events: none;
}

.storyValueList {
  border: 0;
  display: -ms-flexbox;
  display: flex;
  height: 2.2px;
  left: 0;
  margin: 4px 0 0;
  padding: 0 2px;
  position: absolute;
  right: 0;
  top: 0;
  visibility: visible;
  z-index: 999;
}

.storyValueList li {
  background: hsla(0, 0%, 100%, 0.4);
  border-radius: 1px;
  height: 100%;
  list-style-type: none;
  margin: 0 2px;
  overflow: hidden;
  width: 100%;
}

.progressValue {
  display: block;
  height: 100%;
  width: 100%;
  transform-origin: left;
  background: #fff;
  transform: scale(0, 1) !important;
  transition: none 0s ease 0s !important;
}

.activeValue {
  transform: scale(1, 1) !important;
}

.topBox {
  position: absolute;
  top: 15px;
  width: 100%;
  z-index: 1;
}

.topContentBox {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 0 5px;
}

.closeBtn {
  background: #4b4b4b6b;
  font-size: 20px;
  color: #fff;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  cursor: pointer;
}

.verified_badge {
  background: linear-gradient(180deg, #328cfc 0, #0b55b4 100%);
  z-index: 2;
  width: 100%;
  max-width: 45px;
  min-width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  color: #fff;
  border: none;
  border-radius: 50px;
  font-size: 10px;
  text-transform: uppercase;
  user-select: none;
  line-height: 24px;
  position: absolute;
  right: 6px;
  top: 2px;
}

.verified_icon {
  line-height: 0;
}

.verified_text {
  margin: 0;
  line-height: 10px;
  text-align: center;
  font-weight: 500;
  font-size: 7px;
  padding: 2px 0 0;
}

.fixedFooter {
  background: #000;
  position: absolute;
  width: 100%;
  bottom: 0;
  z-index: 9;
  height: 50px;
}

.userOptionList {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5px;
}

.option {
  display: block;
  margin: 5px 5px;
}

.option a {
  display: flex;
  align-items: center;
  flex-direction: column;
  text-decoration: none;
  font-size: 9px;
  color: #fff;
  font-weight: 300;
}

.option:first-child i {
  font-size: 18px;
  margin: 0 0 3px;
}

.option i {
  font-size: 16px;
  line-height: 0;
  margin: 0 0 5px;
  padding-bottom: 7px;
  padding-top: 10px;
}

.option .userNumber {
  text-decoration: underline;
  font-size: 9px;
  font-weight: 500;
}

.activeProfileBox {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 5px;
  margin: 0 0 2px;
}

.bottomBox {
  width: 100%;
  overflow: hidden;
  background: transparent;
  position: absolute;
  bottom: 0;
  z-index: 1;
}

.profileImage {
  width: 34px;
  min-width: 34px;
  height: 34px;
  font-size: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  border-radius: 50px;
  color: #fff;
  background-color: #000;
  overflow: hidden;
}

.profileImage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profileBox {
  text-align: left;
  margin: 0 0 0 5px;
  display: flex;
  align-items: center;
  flex-basis: auto;
  flex-direction: row;
  flex-grow: 1;
  min-width: 0;
  justify-content: space-between;
}

.userNameBox {
  display: flex;
  flex-grow: 1;
  overflow: hidden;
  flex-direction: column;
  margin: 0 5px 0 0;
}

.profileName {
  font-size: 16px;
  margin: 0;
  color: #ffff;
  font-weight: 400;
  white-space: nowrap;
  flex: none;
  text-overflow: ellipsis;
  overflow: hidden;
  user-select: none;
  text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.6);
}

.updateTime {
  color: #fff;
  font-size: 10px;
  display: block;
  white-space: nowrap;
  flex: none;
  text-overflow: ellipsis;
  overflow: hidden;
  user-select: none;
  text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.6);
}

.avlBtn,
.notAvlBtn {
  background-color: #079446;
  color: #fff;
  border: none;
  border-radius: 5px;
  padding: 7px 8px;
  font-size: 13px;
  font-weight: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}

.notAvlBtn {
  background-color: #ff3450 !important;
}

.profileDetailBox {
  display: flex;
  flex-basis: auto;
  flex-direction: column;
  flex-grow: 1;
  justify-content: center;
  min-width: 0;
  color: #fff;
  background-color: #4b4b4b52;
  text-align: center;
  padding: 2px 5px;
}

.firstRow {
  display: flex;
  align-items: center;
  margin: 0 0 2px;
  justify-content: space-between;
  flex-basis: auto;
  flex-direction: row;
  flex-grow: 1;
  min-width: 0;
}

.profileService {
  font-size: 14px;
  text-align: left;
  text-shadow: 0px 1px 1px rgb(0 0 0 / 60%);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 0 5px 0 0;
}

.rightBox {
  display: flex;
  align-items: center;
}

.rightBox .ratingIcon,
.rightBox .ratingIcon span {
  background-size: 110px;
}

.ratingIcon,
.ratingIcon span {
  width: 110px;
  height: 18px;
  background-repeat: no-repeat;
  display: table;
  overflow: hidden;
  position: relative;
  filter: none;
}

.secondRow {
  display: flex;
  align-items: center;
}

.profileAddress {
  font-size: 14px;
  font-weight: 300;
  margin: 0 5px 0 0;
  text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.6);
  display: inherit;
  overflow: inherit;
  text-overflow: inherit;
  white-space: inherit;
}

.overflowTextBox {
  display: flex;
  overflow: hidden;
  flex-grow: 1;
}

.overflowText {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.profileAge {
  font-size: 14px;
  font-weight: 300;
  margin: 0;
  display: block;
  flex: none;
  text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.6);
}

.profileAge span {
  margin: 0 0 0 3px;
  font-weight: 400;
}

.sideBox {
  position: absolute;
  right: 0;
  bottom: 110px;
  z-index: 1;
  padding: 5px 5px;
}

.sideList {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.sideList li {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #fff;
  margin: 0 0 10px;
}

.likedIcon {
  color: #ff0607 !important;
  animation: pluse 0.3s;
}

.likeCount {
  font-size: 10px;
  font-weight: 500;
  color: #fff;
  text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.6);
}

.whatsappBtn {
  background-color: #67d349;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  color: #fff;
}

.whatsappBtn a {
  color: #fff;
}

.navButtonbox {
  position: absolute;
  top: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
}

.buttonWrapper {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: -1;
}

.prevBtn,
.nextBtn {
  font-size: 30px;
  background-color: #fff;
  color: #666;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  line-height: 0;
  display: block;
  cursor: not-allowed;
  opacity: 0.8;
}

.prevBtn.active,
.nextBtn.active {
  opacity: 1;
  cursor: pointer;
}

.prevBtn {
  position: relative;
  left: -40px;
}

.nextBtn {
  position: relative;
  right: -40px;
}

@keyframes pluse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.06);
  }

  100% {
    transform: scale(1);
  }
}

@media only screen and (max-width: 450px) {
  .app {
    max-width: 100%;
  }

  .navButtonbox {
    display: none;
  }
}

@media only screen and (max-width: 320px) {
  .app {
    width: 320px;
    max-width: unset;
    overflow: auto;
  }
}

.zIndexMinus {
  z-index: -10;
  display: none;
}

.loading_element {
  left: 0px;
}

.loading_element img {
  height: 37px;
  display: block;
  margin: auto;
  position: absolute;
  z-index: 99999999;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.loading_element {
  position: fixed;
  height: 16%;
  display: none;
  background: #191919ad;
  z-index: 9999;
  bottom: 0%;
  left: 50%;
}

.diamond,
.gold {
  background-image: linear-gradient(256deg, hsl(0deg 0% 0% / 10%), #bf8f07)
}

.silver {
  background-image: linear-gradient(256deg, hsl(0deg 0% 0% / 10%), #b3b3b3);
}

.gold_icon {
  color: #fbb60d;
}

.silver_icon {
  color: #e5e5e5;
}

.profileService i {
  padding-left: 5px;
}

.profileImage,
.profileName {
  cursor: pointer;
}

.display_none {
  display: none;
}

.arrows-container {
  transform: rotate(270deg);
  display: flex;
  position: relative;
  align-self: flex-end;
  z-index: 999;
  bottom: 47%;
  right: 2%;
}

.arrow {
  padding: 10px;
  box-shadow: 3px -3px white inset;
  transform: rotate(225deg);
  opacity: 0;
  position: absolute;
}

.arrow-one {
  animation: arrowMovement 2s ease-in-out infinite;
}

.arrow-two {
  animation: arrowMovement 2s 1s ease-in-out infinite;
}

@keyframes arrowMovement {
  0% {
    left: 0;
    opacity: 0;
  }

  70% {
    opacity: 1;
  }

  100% {
    left: 30px;
    opacity: 0;
  }
}

.play_button_container {
  z-index: 99999999999;
  position: absolute;
  top: 0%;
  left: 0%;
  width: 100%;
  height: 100%;
  background: #f0f8ff4f;
}

.new_loader_container {
  z-index: 99999999999;
  position: absolute;
  top: 0%;
  left: 0%;
  width: 100%;
  height: 100%;
  background: #0c0c0ca8;
}

.new_loader_container span {
  position: absolute;
  top: 0;
  bottom: -35px;
  z-index: 9999;
  color: #fff;
  margin: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  left: 0;
  right: 0;
}

.goog-te-banner-frame.skiptranslate {
  display: none !important;
}

body {
  top: 0px !important;
}

.play_button {
  height: 60px;
  position: relative;
  top: 43%;
  left: 43%;
}

.new_loader {
  height: 60px;
  position: relative;
  top: 43%;
  left: 43%;
}

.iphone_play_button_container {
  z-index: 99999999999;
  position: absolute;
  top: 0%;
  left: 0;
  right: 0;
  bottom: 0;
  width: 60px;
  height: 60px;
  margin: auto;
  background: #ffffff6b;
  border-radius: 50px;
  cursor: pointer;
}

.iphone_play_button {
  height: 60px;
  position: relative;
  margin: auto;
}

.btn-primary {
  background: #d22279;
  color: #fff;
  width: auto;
  margin-left: 10px;
  line-height: 1;
  font-size: 15px;
  padding: 5px;
  cursor: pointer;
  border: 1px solid #d22279;
  border-radius: 3px;
}

.uploadVideoBtn {
  font-size: 18px;
  border: none;
  background-color: #4b4b4b9e;
  color: #fff;
  border-radius: 50px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.skiptranslate {
  display: none;
}

i.slide-up {
  z-index: 9999;
  position: absolute;
  top: 10px;
  text-shadow: 0px 2px 12px #000;
  color: #fff;
  font-size: 30px;
  left: 61%;
  transform: translate(-100%, 10px);
  padding: 10px 25px;
  opacity: 0.3;
}

i.slide-down {
  z-index: 9999;
  position: absolute;
  bottom: 175px;
  text-shadow: 0px 2px 12px #000;
  color: #fff;
  font-size: 30px;
  left: 61%;
  padding: 1px 25px;
  transform: translate(-100%, 10px);
  opacity: 1;
}
.visibility_hidden {
	visibility: hidden;
}

#upload-loader-overlay {
    display: none;             
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: 9999;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    font-family: Arial, sans-serif;
    font-size: 18px;
    text-align: center;
}

#videoLoadingElement img {
    height: 80px;
    object-fit: contain;
}
p.uploading-message {
    font-size: 16px;
    margin: 0px;
    padding: 0px;
}