.container {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: flex-start;
  height: auto;
  flex-wrap: wrap;
}

.container > .cont-media {
  width: 70%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: auto;
  position: relative;
  box-sizing: border-box;
  padding: 6px;
}

.cont-media > .media-title {
  width: 100%;
  height: 16px;
  position: absolute;
  left: 0px;
  top: 0px;
  text-align: center;
  font-family: "JetBrains Mono", monospace;
  font-size: 12pt;
  line-height: 13pt;
  color: #e5e7eb;
  text-shadow:
    -1px -1px 0 #0f172a,
    1px -1px 0 #0f172a,
    -1px 1px 0 #0f172a,
    1px 1px 0 #0f172a;
}

.cont-media > .media-player {
  width: 100%;
  background-color: #0f172a;
  box-shadow:
    1px 1px 3px rgba(0, 0, 0, 0.25),
    -1px 1px 3px rgba(0, 0, 0, 0.25),
    -1px -1px 3px rgba(0, 0, 0, 0.25),
    1px -1px 3px rgba(0, 0, 0, 0.25);
  border-radius: 8px;
  overflow: hidden;
  height: calc(100vh - 30px);
  transition: 0.25s;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: unset;
}

.cont-media > .media-player > .panel {
  width: auto;
  min-height: 30px;
  height: auto;
  background-color: rgba(0, 0, 0, 0.25);
  position: absolute;
  left: 6px;
  right: 6px;
  bottom: 6px;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  padding: 0px 8px 0px 8px;
  box-sizing: border-box;
  border-radius: 0px 0px 8px 8px;
}

.panel > .btn-fullscreen {
  color: rgba(255, 255, 255, 0.75);
  text-align: center;
  font-size: 14pt;
  cursor: pointer;
}

.panel > .btn-fullscreen:hover {
  color: rgba(255, 255, 255, 1);
}

.cont-media > .media-player.fullscreen {
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 9999;
  border-radius: 0px;
}

.cont-media > .media-player.fullscreen > .panel {
  left: 0px;
  right: 0px;
  bottom: 0px;
  border-radius: 0px;
}

.media-player > iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.container > .cont-list {
  transition: 0.25s;
  width: 30%;
  padding: 6px;
  box-sizing: border-box;
}

.cont-list > ul.list-box {
  width: 100%;
  height: auto;
  max-height: calc(100vh - 30px);
  overflow-y: auto;
  border-radius: 4px;
  list-style: none;
  margin: 0px;
  box-sizing: border-box;
  padding: 0px 2px 0px 2px;
}

ul.list-box li.list-item {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 6px;
  padding: 6px;
  box-sizing: border-box;

  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  flex-wrap: nowrap;

  position: relative;

  -webkit-user-select: none; /* Safari */
  -ms-user-select: none; /* IE 10 dan Edge Lama */
  user-select: none;
}

li.list-item > .to-marker {
  position: absolute;
  right: 8px;
  bottom: 8px;
  width: 24px;
  height: 24px;
  background-color: white;
  border-radius: 50%;
  color: #1f2937;
  text-align: center;
  font-size: 14pt;
  line-height: 18pt;
}

ul.list-box li.list-item:nth-child(odd) {
  background-color: #374151;
}

li.list-item:nth-child(odd) > .to-marker {
  background-color: #e5e7eb;
  color: #1f2937;
}

ul.list-box li.list-item:nth-child(even) {
  background-color: #1f2937;
}

li.list-item:nth-child(even) > .to-marker {
  background-color: #e5e7eb;
  color: #1f2937;
}

ul.list-box > .list-item:hover {
  background-color: #4b5563 !important;
  color: #ffffff;
  cursor: pointer;
}

ul.list-box li.list-item.selected {
  background-color: #2563eb !important;
  color: #ffffff;
}

li.list-item > .thumb {
  width: 120px;
  height: 120px;
  background-color: #e5e7eb;
  border-radius: 6px;
  display: inline-flex;
  justify-content: center;
  overflow: hidden;
}

li.list-item > .thumb > img {
  height: 100%;
  width: auto;
  object-fit: cover;
}

li.list-item > .text {
  flex: 1;
  height: auto;
  color: #e5e7eb;
  font-family: "JetBrains Mono", monospace;
  font-size: 12pt;
  line-height: 14pt;
  padding-left: 8px;
}

.splash-screen {
  display: flex;
  visibility: visible;
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-color: #0f172a;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 8888;
  transition: 0.25s;
}

.splash-screen > img.splash-img {
  width: 350px;
  height: auto;
  margin: 12px auto;
}

.splash-screen.hide {
  transition: 0.5s;
  transform: translateY(-100%);
}

.splash-screen.destroy {
  display: none;
  visibility: hidden;
}

.loadscreen {
  display: none;
  visibility: hidden;
  -webkit-user-select: none; /* Safari */
  -ms-user-select: none; /* IE 10 dan Edge Lama */
  user-select: none;
}

.loadscreen.show {
  display: flex;
  visibility: visible;
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.75);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 7777;
}

.loadscreen.show > img.load-img {
  width: 200px;
  height: auto;
  margin: 12px auto;
}

.loadscreen.show > .loadscreen-content {
  max-width: 400px;
  width: auto;
  min-height: 20px;
  height: auto;
}

.loadscreen.show > .loadscreen-content > p.load-body {
  color: #1f2937;
  font-family: "JetBrains Mono", monospace;
  font-size: 12pt;
  line-height: 13pt;
}

@media (max-width: 1200px) {
  li.list-item > .text {
    font-size: 10pt;
    line-height: 12pt;
  }
}

@media (max-width: 1024px) {
  li.list-item > .thumb {
    width: 100px;
    height: 100px;
  }

  li.list-item > .text {
    font-size: 10pt;
    line-height: 12pt;
  }
}

@media (max-width: 960px) {
  .cont-media > .media-player {
    transition: 0.25s;
    height: 500px;
  }

  li.list-item > .text {
    font-size: 11pt;
    line-height: 13pt;
  }

  li.list-item > .thumb {
    width: 80px;
    height: 80px;
  }

  .cont-media > .media-title {
    font-size: 11pt;
    line-height: 12pt;
  }
}

@media (max-width: 896px) {
  .container > .cont-media {
    transition: 0.25s;
    width: 55%;
  }

  .cont-media > .media-player {
    transition: 0.25s;
    height: 300px;
  }

  .container > .cont-list {
    transition: 0.25s;
    width: 45%;
  }
}

@media (max-width: 720px) {
  .container {
    flex-direction: column;
  }

  .container > .cont-media {
    transition: 0.25s;
    width: 100%;
  }

  .container > .cont-list {
    transition: 0.25s;
    width: 100%;
  }

  .cont-list > ul.list-box {
    width: 100%;
    height: auto;
    max-height: calc(100vh - 340px);
  }

  li.list-item > .text {
    font-size: 12pt;
    line-height: 14pt;
  }
}

@media (max-width: 640px) {
  li.list-item > .text {
    font-size: 10pt;
    line-height: 12pt;
  }

  .cont-media > .media-title {
    font-size: 10pt;
    line-height: 12pt;
  }
}
