.icon-fullscreen {
  fill: #fff;
  width: 30px;
  height: 30px;
  fill-rule: evenodd;
  clip-rule: evenodd;
}
.icon-exit-fullscreen {
  fill: #fff;
  width: 30px;
  height: 30px;
  fill-rule: evenodd;
  clip-rule: evenodd;
}
.icon-play-button {
  fill: #fff;
  width: 30px;
  height: 30px;
  fill-rule: evenodd;
  clip-rule: evenodd;
}
.icon-pause-button {
  fill: #fff;
  width: 30px;
  height: 30px;
  fill-rule: evenodd;
  clip-rule: evenodd;
}
.icon-secure-lock {
  fill: #fff;
  width: 30px;
  height: 30px;
  fill-rule: evenodd;
  clip-rule: evenodd;
}
.icon-channel {
  fill: #fff;
  width: 30px;
  height: 30px;
  fill-rule: evenodd;
  clip-rule: evenodd;
}
.icon-secure-unlock {
  fill: #fff;
  width: 30px;
  height: 30px;
  fill-rule: evenodd;
  clip-rule: evenodd;
}

.main-container {
  overflow: hidden;
}

.hide-content {
  display: none !important;
}

#video-container {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 98vh;
  object-fit: cover; /* Ensures video covers the screen without distortion */
  overflow: hidden;
}
#video-container #player {
  width: 100%;
  height: 100%;
  z-index: 90;
}
#video-container .player-control {
  position: absolute;
  top: 10px;
  z-index: 100;
  width: 50%;
  left: calc(50% - 15px);
  height: 3rem;
  display: flex;
  justify-content: space-between;
  background-color: rgba(51, 51, 51, 0.1725490196);
  padding: 0 1rem;
  align-items: center;
}
#video-container .player-control .control-wrapper {
  width: 100%;
  display: flex;
  gap: 1rem;
}
#video-container .player-control .control-wrapper .player-bnt-control {
  display: flex;
  gap: 1rem;
  color: #fff;
  cursor: pointer;
}
#video-container .player-control .control-wrapper .player-bnt-control svg {
  width: 30px;
  height: 30px;
}

.all-channel-list {
  z-index: 100;
  border-radius: 8px;
  position: absolute;
  height: 100%;
  display: flex;
  width: 100%;
  flex-direction: column;
  gap: 0.5rem;
  max-height: 100vh;
  overflow-y: auto;
}
.all-channel-list .btn-channel {
  background: rgba(255, 255, 255, 0.8196078431);
  height: 5rem;
  display: flex;
  align-items: center;
  padding: 1rem;
  width: 100%;
  gap: 0.5rem;
}
.all-channel-list .btn-channel:hover {
  cursor: pointer;
}
.all-channel-list .btn-channel.channel-lock {
  background: rgba(192, 190, 190, 0.9333333333);
}
.all-channel-list .btn-channel.channel-lock:hover {
  background: rgba(255, 255, 255, 0.9333333333);
}
.all-channel-list .btn-channel .channel-logo-wrapper {
  width: 80px;
  height: 80px;
  object-fit: cover;
  padding: 5px;
}
.all-channel-list .btn-channel .channel-logo-wrapper img {
  width: 100%;
  height: 100%;
}
.all-channel-list .btn-channel .channel-info {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.all-channel-list .btn-channel .channel-info .channel-title {
  font-weight: 600;
  font-size: 1.2rem;
  color: #333;
}
.all-channel-list .btn-channel .channel-info .lock-channel img {
  width: 20px;
  height: 20px;
}

@media only screen and (min-width: 768px) {
  .all-channel-list {
    width: 50%;
  }
}
@media only screen and (min-width: 992px) {
  .all-channel-list {
    width: 30%;
  }
  #video-container .player-control {
    width: 10%;
    left: calc(90% - 15px);
  }
}
@media only screen and (min-width: 1200px) {
  .all-channel-list {
    width: 30%;
  }
}

/*# sourceMappingURL=main.css.map */
