/*
Theme Name: Live Swipe Theme Pro
*/

body {
  margin: 0;
  background: black;
  overflow: hidden;
}

.live-wrapper {
  height: 100vh;
  transition: transform 0.4s ease;
}

.live-item {
  height: 100vh;
}

.live-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.chat-box {
  position: absolute;
  bottom: 100px;
  left: 10px;
  width: 80%;
  color: white;
  font-size: 14px;/*
Theme Name: Live Swipe Pro
*/

body {
  margin: 0;
  background: black;
  overflow: hidden;
  font-family: Arial;
}

/* VIDEO */
.live-wrapper {
  height: 100vh;
  transition: transform 0.4s ease;
}

.live-item {
  height: 100vh;
}

.live-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* TOP BAR */
.top-bar {
  position: absolute;
  top: 10px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 10px;
  color: white;
}

.profile {
  display: flex;
  align-items: center;
  gap: 8px;
}

.profile img {
  width: 35px;
  height: 35px;
  border-radius: 50%;
}

.profile button {
  background: #ff2d55;
  border: none;
  color: white;
  padding: 5px 10px;
  border-radius: 20px;
}

/* VIEWER */
.viewer {
  font-size: 14px;
}

/* CHAT */
.chat-box {
  position: absolute;
  bottom: 80px;
  left: 10px;
  width: 80%;
  color: white;
  font-size: 14px;
}

.chat-box div {
  margin-bottom: 5px;
}

/* INPUT */
.chat-input {
  position: absolute;
  bottom: 20px;
  width: 100%;
  padding: 10px;
}

.chat-input input {
  width: 90%;
  padding: 10px;
  border-radius: 20px;
  border: none;
}

/* MENU KANAN */
.right-menu {
  position: absolute;
  right: 10px;
  bottom: 120px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.right-menu div {
  font-size: 24px;
  cursor: pointer;
}

/* LOADING */
#loadingScreen {
  position: fixed;
  width: 100%;
  height: 100%;
  background: black;
  display: none;
  justify-content: center;
  align-items: center;
  color: white;
}

/* ANIMASI LOVE */
@keyframes fly {
  0% {transform:translateY(0);opacity:1;}
  100% {transform:translateY(-300px);opacity:0;}
}
}

.right-menu {
  position: absolute;
  right: 10px;
  bottom: 120px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

#loadingScreen {
  position: fixed;
  width: 100%;
  height: 100%;
  background: black;
  display: none;
  justify-content: center;
  align-items: center;
  color: white;
}

.top-bar {
  position:absolute;
  top:10px;
  width:100%;
  display:flex;
  justify-content:space-between;
  padding:10px;
  color:white;
}

.profile {
  display:flex;
  align-items:center;
  gap:8px;
}

.profile img {
  width:35px;
  height:35px;
  border-radius:50%;
}

.profile button {
  background:#ff2d55;
  border:none;
  color:white;
  padding:5px 10px;
  border-radius:20px;
}

.viewer {
  font-size:14px;
}

.chat-input {
  position:absolute;
  bottom:20px;
  width:100%;
  padding:10px;
}

.chat-input input {
  width:90%;
  padding:10px;
  border-radius:20px;
  border:none;
}

.chat-box div {
  margin-bottom:5px;
}