.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: 300px;
  height: auto;
  margin: 12px auto;
}

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

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

section.content-header {
  min-height: 20px;
  height: auto;
  width: 100%;
  background-color: #1f2937;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  font-family: "JetBrains Mono", monospace;
  flex-wrap: wrap;
}

section.content-header > .logo {
  width: auto;
  height: 60px;
  padding: 4px 4px 4px 8px;
}

section.content-header > .logo > img {
  width: auto;
  height: 100%;
  object-fit: cover;
}

section.content-header > .title-breadcrumb {
  height: auto;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-left: 10px;
  white-space: nowrap;
}

.title-breadcrumb > .title {
  font-size: 18px;
  font-weight: bold;
  color: whitesmoke;
  margin-right: 16px;
  width: auto;
}

.title-breadcrumb > .my-breadcrumb {
  font-size: 14px;
  color: whitesmoke;
}

section.content-header > .cont-menu {
  height: auto;
  width: auto;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 0px 8px 0px 8px;
  margin-bottom: 4px;
}

.cont-menu a {
  text-decoration: none;
}

.cont-menu .menu {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  flex-wrap: nowrap;
  background-color: #737579;
  color: whitesmoke;
  padding: 2px 8px 2px 8px;
  margin: 4px;
  border-radius: 14px;
}

.cont-menu .menu:hover {
  background-color: #737579;
  color: whitesmoke;
  filter: brightness(120%);
  cursor: pointer;
}

.cont-menu .menu > .fa {
  font-size: 11pt;
  margin-right: 4px;
  margin: auto;
  vertical-align: middle;
  margin-right: 4px;
}

.cont-menu .menu > .title {
  font-size: 11pt;
  margin: auto;
  vertical-align: middle;
  white-space: nowrap;
  letter-spacing: -0.5pt;
}

.cont-menu .menu.selected {
  background-color: white;
  color: #737579;
}

section.content {
  background-color: whitesmoke;
  width: 100%;
  min-height: 200px;
  height: auto;
  padding: 20px 10px 30px 10px;
  font-family: "JetBrains Mono", monospace;
  margin-bottom: 40px;
}

.cont-center {
  display: flex;
  justify-content: center;
  margin-top: 12px;
  flex-wrap: nowrap;
}

.space-between {
  justify-content: space-between;
}

.space-around {
  justify-content: space-around;
}

.cont-left {
  display: flex;
  justify-content: flex-start;
  margin-top: 12px;
  flex-wrap: nowrap;
}

.wrap {
  flex-wrap: wrap;
}

.mw-600 {
  min-width: 600px;
}

.mw-500 {
  min-width: 500px;
}

.mw-400 {
  min-width: 400px;
}

.xw-700 {
  max-width: 700px;
}

.xw-800 {
  max-width: 800px;
}

.xw-900 {
  max-width: 900px;
}

.xw-1000 {
  max-width: 1000px;
}

.xw-1200 {
  max-width: 1200px;
}

.scroll-x {
  overflow-x: auto;
}

.fs-8 {
  font-size: 8pt;
}

.fs-9 {
  font-size: 9pt;
}

.fs-10 {
  font-size: 10pt;
}

.fs-11 {
  font-size: 11pt;
}

.fs-13 {
  font-size: 13pt;
}

.fs-14 {
  font-size: 14pt;
}

tr.pt-4 > td {
  padding-top: 4px !important;
}

tr.pb-4 > td {
  padding-bottom: 4px !important;
}

.col-hide {
  display: none !important;
  visibility: hidden !important;
}

.no-wrap {
  white-space: nowrap;
}

.height-auto {
  height: auto;
}

.switch-button {
  position: relative;
  display: block;
  width: 40px;
  height: 20px;
  background-color: #dc3545;
  border-radius: 20px;
  border: 2px solid #252525;
  box-sizing: content-box;
  transition: 0.25s;
}

.switch-button:hover {
  cursor: pointer;
}

.switch-button:hover > .toggle {
  transform: scale(1.1);
  transition: 0.25s;
}

.switch-button > .toggle {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 20px;
  height: 20px;
  background-color: #ffffff;
  border-radius: 20px;
  transition: 0.25s;
}

.switch-button.on {
  transition: 0.25s;
  background-color: #1abf1a;
}

.switch-button.on > .toggle {
  transition: 0.25s;
  transform: translateX(20px);
}

.switch-button-center {
  margin: auto;
}

.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;
}

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

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

.list-item > .text {
  flex: 1;
  height: auto;
  color: #232425;
  font-family: "JetBrains Mono", monospace;
  font-size: 11pt;
  line-height: 13pt;
  padding-left: 6px;
}

.pos-relative {
  position: relative !important;
}

.pos-absolute {
  position: absolute !important;
}

.text-deco-none:hover {
  color: inherit;
  background-color: inherit;
  cursor: pointer;
}

.width-65-perc {
  width: 65%;
}

.width-60-perc {
  width: 60%;
}

.width-55-perc {
  width: 55%;
}

.width-50-perc {
  width: 50%;
}

.width-45-perc {
  width: 45%;
}

.width-40-perc {
  width: 40%;
}

.width-35-perc {
  width: 35%;
}

.width-30-perc {
  width: 30%;
}

.width-25-perc {
  width: 25%;
}

.back-cont-media {
  display: none;
  visibility: hidden;
}

.back-cont-media.show {
  display: flex;
  justify-content: center;
  vertical-align: middle;
  visibility: visible;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  background-color: #00000071;
  z-index: 7777;
}

.back-cont-media.show > .cont-media {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: auto;
  position: relative;
  padding: 8px;
  box-sizing: content-box;
}

.back-cont-media.show > .cont-media > .btn-close {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 40px;
  height: 40px;
  display: block;
  text-align: center;
  align-items: center;
  align-content: center;
  font-size: 20pt;
  color: white;
  background-color: #252525;
  border-radius: 40px;
}

.back-cont-media.show > .cont-media > .btn-close:hover {
  cursor: pointer;
}

.cont-media > .btn-close::before {
  content: "";
}

.back-cont-media.show > .cont-media > .media-title {
  width: auto;
  height: 16px;
  position: absolute;
  left: 10px;
  right: 50px;
  top: 12px;
  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;
}

.back-cont-media.show > .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;
}

.back-cont-media.show > .cont-media > .show-loader {
  display: none;
  visibility: hidden;
}

.back-cont-media.show > .cont-media > .show-loader.show {
  width: auto;
  height: auto;
  background-color: rgba(255, 255, 255, 0.65);
  position: absolute;
  left: 0px;
  top: 0px;
  bottom: 0px;
  right: 0px;
  visibility: visible;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 8px;
  box-sizing: content-box;
}

.show-loader.show > p.loader-text {
  color: #1f2937;
  font-family: "JetBrains Mono", monospace;
  font-size: 11pt;
  line-height: 13pt;
}

.show-loader.show > img.loader-img {
  width: 100px;
  height: auto;
}

/* .col-hide {
  display: none !important;
  visibility: hidden !important;
} */
