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

html,
body {
  position: relative;
  height: 100%;
  background-color: black;
}

.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  position: relative;
  height: 100dvh !important;
  font-size: 14px;
  font-weight: 700;
}

.headerLogo {
  position: fixed;
  z-index: 10;
  top: 35px;
  left: 10px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.bg-beta {

  margin-left: 10px;
  width: 40px;
  height: 16px;
  margin-left: 3px;
  background-repeat: no-repeat;
  pointer-events: none;
}

.sideHeader {
  position: absolute;
  right: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  top: 29px;
  z-index: 11;
}

.flag {
  padding: 12px;
}

.flag img {
  width: 9em;
  pointer-events: none;
}

.sidebar {
  z-index: 8;
  position: absolute;
  right: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  bottom: 30px;
}

.user {
  padding: 8px 0;
  margin-bottom: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.userAvatar img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  pointer-events: none;
}

.actionSubscribe {
  position: absolute;
  bottom: 0;
}

.like img {
  width: 2.5em;
}

.unlike {
  margin-top: 15px;
  margin-bottom: 10px;
}

.unlike img {
  width: 2.5em;
}

.favourite img {
  width: 2.5em;
}

.mute {
  margin-top: 10px;
}

.mute img {
  width: 2.5em;
}

.infoTextSubicon {
  color: white;
  font: 1em "Fira Sans", sans-serif;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: .15px;
  text-transform: capitalize;
}

.videoData {
  width: 75%;
  position: absolute;
  left: 20px;
  bottom: 30px;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: .15px;
  color: #fff;
  z-index: 11;
}

.videoHref {
  font: 0.8em Arial, "Helvetica Neue", Helvetica, sans-serif;
  background: #ff9000;
  border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border: none;
  padding: 6px 20px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  color: #000;
  width: fit-content;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-right: 4px;
}

.downloadHref {
  font: 0.8em Arial, "Helvetica Neue", Helvetica, sans-serif;
  background: #00a00d;
  border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border: none;
  padding: 12px 20px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  color: #fafafa;
  width: fit-content;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;

}

.description {
  margin: 5px 0 7px 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  color: white;
  font: 1em Arial, "Helvetica Neue", Helvetica, sans-serif;
}

.title {
  color: white;
  display: flex;
  align-items: center;
  font-size: 13px;
  line-height: 20px;
  font: 0.8em Arial, "Helvetica Neue", Helvetica, sans-serif;
}

.verified-icon {
  width: 15px;
  height: 15px;
  display: inline-block;
  margin-left: 5px;
}

.videoWrapper {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
}

.videoWrapper video {
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

.flag img {}

.action-top {
  display: flex;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99;
  background: rgba(0, 0, 0, .3);
  align-items: center;
  justify-content: center;
  display: none;
  text-decoration: none;
  font-family: 'SF UI Text', sans-serif;
}

@keyframes show {
  0% {
    transform: translateY(-100%);
    opacity: 0
  }

  100% {
    transform: translateY(0);
    opacity: 1
  }
}

.modal-content {
  width: calc(100% - 30px);
  max-width: 350px;
  border-radius: 20px;
  background: rgba(249, 249, 249, 0.95);
  animation: show 0.5s;
  transform: translateY(0);
  opacity: 1
}

.modal-top {
  padding: 16px 30px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center
}

.modal-title {
  color: #000;
  font-size: 18px;
  font-weight: 500;
  max-width: 252px
}

.modal-text {
  color: #000;
  font-size: 17px;
  font-weight: 400;
  margin-top: 14px
}

.modal-timer {
  font-weight: 300;
  margin-top: 4px;
  color: #D2413C
}

.modal-btns {
  display: flex;
  align-items: center;
  border-top: 0.5px solid rgba(0, 0, 0, .3)
}

.modal-btn {
  padding: 13px 0;
  text-align: center;
  color: #0079FA;
  font-size: 19px;
  width: 50%
}

.modal-btn:nth-child(2) {
  border-left: 0.5px solid rgba(0, 0, 0, .3)
}

.recommended {
  color: #039E23;
  margin-top: 8px
}

.modal-btns>div:nth-child(1) {
  color: rgba(255, 0, 0, 0.65)
}

@media (max-width: 525px) {
  .modal-content {
    max-width: 318px
  }

  .top {
    top: 40px;
    right: 30px
  }

  .bottom {
    left: 35px;
    right: 35px;
    bottom: 55px
  }
}



.modal-title span {
  font-weight: bold;
  color: red;
  font-size: 21px;
}

#a1,
#a2,
#a3 {
  font-weight: bold;
}