@charset "UTF-8";
*,
*::before {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

*::-webkit-scrollbar {
  width: 10px;
}

*::-webkit-scrollbar-thumb {
  background-color: #8e8e8e;
  border: 1px solid #424242;
  border-radius: 4px;
}

body {
  height: 100vh;
  background: #181818;
  color: white;
  font-family: "Roboto", sans-serif;
}

.masthead + main {
  height: calc(100vh - 56px);
  display: flex;
  position: relative;
  overflow: hidden;
}

:root {
  --icon-padding: 8px;
  --icon-width: 24px;
  --icon-height: 24px;
  --small-icon-width: 16px;
  --small-icon-height: 16px;
  --icon-color: white;
  --stroke-opacity: 0.2;
  --ripple-opacity: 0.2;
}

.icon-btn {
  flex-shrink: 0;
  color: var(--icon-color);
  background: none;
  border: none;
  padding: var(--icon-padding);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  cursor: pointer;
  overflow: hidden;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  border-radius: 100%;
}
.icon-btn .icon {
  fill: currentColor;
  width: var(--icon-width);
  height: var(--icon-height);
}
.icon-btn .icon svg {
  pointer-events: none;
  display: block;
  width: 100%;
  height: 100%;
}
.icon-btn .icon-big {
  flex-shrink: 0;
  fill: currentColor;
  width: calc(var(--icon-width) * 2);
  height: calc(var(--icon-height) * 2);
}
.icon-btn .icon-big svg {
  pointer-events: none;
  display: block;
  width: 100%;
  height: 100%;
  filter: drop-shadow(0px 2px 2px rgba(0, 0, 0, 0.7));
}
.icon-btn .icon-small {
  flex-shrink: 0;
  fill: currentColor;
  width: calc(var(--small-icon-width));
  height: calc(var(--small-icon-height));
}
.icon-btn .background {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: -1px;
  border-radius: 100%;
  transform: scale(0);
  opacity: 0;
  transition: transform 0.15s cubic-bezier(0, 0, 0.2, 1), opacity 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}
.icon-btn:hover .background {
  background-color: #e8eaed;
  opacity: 0.04;
  transform: scale(1);
}
.icon-btn .stroke {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  border-radius: 100%;
  opacity: 0;
  pointer-events: none;
  animation-duration: 400ms;
  animation-timing-function: cubic-bezier(0.2, 0, 0.6, 1);
}
.icon-btn .ripple {
  background: white;
  opacity: 0;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
.icon-btn .ripple.pressed {
  opacity: var(--stroke-opacity);
}
.icon-btn .stroke.animating {
  animation-name: stroke-animating;
}
@keyframes stroke-animating {
  0% {
    border: 1px solid white;
    opacity: var(--ripple-opacity);
  }
  100% {
    border: 1px solid white;
    opacity: 0;
  }
}

#full-screen:hover,
#zoom-in:hover,
#zoom-out:hover {
  background: rgba(255, 255, 255, 0.2);
}

#full-screen,
#zoom-in,
#zoom-out {
  border-radius: 0;
}

#full-screen .icon,
#zoom-in .icon,
#zoom-out .icon {
  transition: transform 0.1s ease;
}

#full-screen:active .icon,
#zoom-in:active .icon,
#zoom-out:active .icon {
  transform: scale(0.9);
}

.page-selector-area {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 1px;
  cursor: pointer;
  opacity: 0;
  transition: all 0.3s ease;
}

.page-selector-area:hover {
  opacity: 1;
}

.page-selector-list-id {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  transition: all 0.3s ease;
  left: 3px;
}

.page-selector-area:hover .page-selector-list-id {
  left: 3px;
}

.page-selector-id {
  flex-grow: 1;
  border-left: 1px solid #555;
  padding: 0 4em 0 1em;
  display: flex;
  align-items: center;
  justify-content: center;
  color: transparent;
  font-size: 2vh;
  position: relative;
  transition: all 0.2s ease;
  z-index: 30;
}

.page-selector-id:not(:last-child) {
  margin-bottom: 2px;
}

.page-selector-id.preloaded {
  border-left-color: #ba1f1f;
}

.page-selector-id:hover {
  box-shadow: 100px 0 20px -100px rgba(255, 255, 255, 0.5) inset, 100px 0 20px -100px rgba(0, 0, 0, 0.55) inset;
  text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.5), -1px -1px 0 rgba(0, 0, 0, 0.5), 1px -1px 0 rgba(0, 0, 0, 0.5), -1px 1px 0 rgba(0, 0, 0, 0.5), 1px 0 0 rgba(0, 0, 0, 0.5), -1px 0 0 rgba(0, 0, 0, 0.5), 0 -1px 0 rgba(0, 0, 0, 0.5), 0 1px 0 rgba(0, 0, 0, 0.5), 0 0 3px rgba(0, 0, 0, 0.5);
  left: 4px;
  color: #fff;
  border-left-color: #d3d3d3;
}

.page-selector-id.active {
  box-shadow: 100px 0 20px -100px #fff inset, 100px 0 20px -90px inset rgba(0, 0, 0, 0.62);
  text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.5), -1px -1px 0 rgba(0, 0, 0, 0.5), 1px -1px 0 rgba(0, 0, 0, 0.5), -1px 1px 0 rgba(0, 0, 0, 0.5), 1px 0 0 rgba(0, 0, 0, 0.5), -1px 0 0 rgba(0, 0, 0, 0.5), 0 -1px 0 rgba(0, 0, 0, 0.5), 0 1px 0 rgba(0, 0, 0, 0.5), 0 0 3px rgba(0, 0, 0, 0.5);
  left: 0;
  color: #fff;
  border-left-color: #fff;
}

.page-selector-id::before {
  content: "";
  background: #272b30;
  height: 100%;
  width: 2px;
  position: absolute;
  left: -4px;
  z-index: 20;
}

.page-selector-id::after {
  content: "";
  height: 100%;
  width: 7px;
  position: absolute;
  left: -8px;
  z-index: 10;
}

.page-selector-counter {
  display: none;
}

@media (max-width: 786px) {
  .page-selector-area {
    height: 1rem;
    min-height: 3rem;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: unset;
    top: unset;
    background: linear-gradient(0deg, black 10%, rgba(0, 0, 0, 0) 100%);
    opacity: 1;
  }

  .page-selector-list-id {
    flex-direction: row;
    bottom: 3px;
    left: unset;
  }

  .page-selector-area:hover .page-selector-list-id {
    left: unset;
  }

  .page-selector-id {
    left: unset;
    border: none;
    border-bottom: 1px solid #555;
    font-size: 0;
  }

  .page-selector-id::before {
    height: 3px;
    width: 100%;
    left: unset;
    bottom: -4px;
  }

  .page-selector-id::after {
    left: unset;
    height: 4px;
    width: 100%;
    bottom: -8px;
  }

  .page-selector-id.preloaded {
    border-color: #ba1f1f;
  }

  .page-selector-id:hover {
    box-shadow: 0 -100px 20px -100px rgba(255, 255, 255, 0.5) inset, 0 -100px 20px -100px rgba(0, 0, 0, 0.55) inset;
    left: unset;
    bottom: 4px;
    border-bottom-color: #d3d3d3;
  }

  .page-selector-id.active {
    box-shadow: 0 -100px 20px -100px #fff inset;
    left: unset;
    bottom: 0;
    color: #fff;
    border-bottom-color: #fff;
  }

  .page-selector-id:not(:last-child) {
    margin-bottom: 0;
    margin-right: 2px;
  }

  .page-selector-counter {
    display: flex;
    justify-content: center;
    width: 100%;
    position: absolute;
    bottom: 0;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    color: #fff;
    text-shadow: 1px 1px 1px black, -1px -1px 1px black, 1px -1px 1px black, -1px 1px 1px black, 1px 0px 1px black, 0px 1px 1px black, 0px -1px 1px black, -1px 0px 1px black;
  }
}
.chapter-viewer {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
  z-index: 0;
  cursor: pointer;
  background: transparent;
}

.chapter {
  width: 100%;
  height: 100%;
  display: flex;
  margin-left: 0;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  transition: margin-left 0.3s ease-in;
  background: transparent;
}

.page {
  overflow: auto;
  min-width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  background: transparent;
}

img {
  max-width: 100%;
  height: auto;
  background: url(../../../images/others/background.png);
  background-repeat: no-repeat;
  background-size: 30% auto;
  background-position: center;
  object-fit: contain;
}

.chapter.zoom-10 img {
  width: 10%;
}

.chapter.zoom-20 img {
  width: 20%;
}

.chapter.zoom-30 img {
  width: 30%;
}

.chapter.zoom-40 img {
  width: 40%;
}

.chapter.zoom-50 img {
  width: 50%;
}

.chapter.zoom-60 img {
  width: 60%;
}

.chapter.zoom-70 img {
  width: 70%;
}

.chapter.zoom-80 img {
  width: 80%;
}

.chapter.zoom-90 img {
  width: 90%;
}

.chapter.zoom-100 img {
  width: 100%;
}

:root {
  --icon-margin-left: 20px;
}

.masthead {
  position: relative;
  z-index: 10;
}
.masthead .masthead-content {
  min-width: 72px;
  background: #212121;
}
.masthead .masthead-content .content {
  height: 56px;
  padding: 0 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  overflow: hidden;
}
.masthead .masthead-content .content .left,
.masthead .masthead-content .content .right,
.masthead .masthead-content .content .center {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.masthead .masthead-content .content .center {
  position: relative;
  max-width: 700px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  height: 100%;
}
.masthead .masthead-content .content .center .dropdown {
  z-index: -1;
  position: fixed;
  top: 56px;
  top: -130vh;
  transition: all 0.2s ease-in;
}
.masthead .masthead-content .content .center .dropdown .dropdown-content {
  width: 300px;
  height: 130vh;
  background: linear-gradient(180deg, #151515, rgba(21, 21, 21, 0.6) 70%, transparent);
}
.masthead .masthead-content .content .center .dropdown .dropdown-content .dropdown-menu {
  position: relative;
  height: calc(100vh - 155px);
  overflow-y: auto;
}
.masthead .masthead-content .content .center .dropdown .dropdown-content .dropdown-menu::-webkit-scrollbar {
  background: transparent;
  width: 8px;
}
.masthead .masthead-content .content .center .dropdown .dropdown-content .dropdown-menu:hover::-webkit-scrollbar-thumb {
  background-color: #717171;
  border: 0;
  border-radius: 4px;
}
.masthead .masthead-content .content .center .dropdown .dropdown-content .dropdown-menu .section-items .section-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.masthead .masthead-content .content .center .dropdown .dropdown-content .dropdown-menu .section-items .section-item a {
  text-decoration: none;
  color: inherit;
  font-size: 1.1rem;
  width: 100%;
  display: flex;
  justify-content: center;
}
.masthead .masthead-content .content .center .dropdown .dropdown-content .dropdown-menu .section-items .section-item a .compact-item {
  display: flex;
  align-items: center;
  height: 56px;
  overflow-x: hidden;
}
.masthead .masthead-content .content .center .dropdown .dropdown-content .dropdown-menu .section-items .section-item a .compact-item .compact-item-text {
  display: none;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.masthead .masthead-content .content .center .dropdown .dropdown-content .dropdown-menu .section-items .section-item a .compact-item .compact-item-icon {
  display: none;
}
.masthead .masthead-content .content .center .dropdown .dropdown-content .dropdown-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 10px 10px 10px 23px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.masthead .masthead-content .content .center .dropdown .dropdown-content .dropdown-header .list-header-title {
  height: 30px;
  line-height: 30px;
  white-space: nowrap;
  word-wrap: normal;
  font-size: 1.2rem;
  text-overflow: ellipsis;
  overflow: hidden;
  padding-right: 20px;
}
.masthead .masthead-content .content .center .dropdown.popup {
  top: 56px;
}
.masthead .masthead-content .content .right {
  margin-left: var(--icon-margin-left);
}
.masthead .masthead-content .content .right button:last-child {
  margin: 0 0 0 var(--icon-margin-left);
}
.masthead .masthead-content .content .left {
  margin-right: var(--icon-margin-left);
}
.masthead .masthead-content .content .left button:first-child {
  margin: 0 var(--icon-margin-left) 0 0;
}
.masthead .masthead-content .content .title-nav {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background-color: #181818;
  border-radius: 20px;
  margin: 0 15px;
  flex-grow: 1;
  padding: 2px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}
.masthead .masthead-content .content .title-nav .title-chapter {
  width: 100%;
  text-align: center;
  color: white;
  font-size: 1.1rem;
  line-height: 2rem;
  font-weight: 400;
  padding: 0 12px 0 8px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.masthead .masthead-content .content .title-nav .chapter-rang {
  padding: 0 0 0 8px;
  color: white;
  font-size: 1.1rem;
  line-height: 2rem;
}
.masthead .masthead-content .content .title-nav .icon-btn {
  margin: 0;
}
.masthead .masthead-content .content button {
  margin: 0 var(--icon-margin-left);
}
.masthead .masthead-content .content #pop-down-btn {
  margin: 0;
}

@media all and (max-width: 500px) {
  #prev-chapter,
#next-chapter {
    display: none;
  }
}
@media all and (max-width: 500px) {
  :root {
    --icon-margin-left: 10px;
  }
}
@media all and (max-width: 380px) {
  .chapter-rang {
    display: none;
  }
}
@media all and (max-width: 500px) {
  .center .dropdown .dropdown-content {
    width: 100%;
  }
}
:root {
  --icon-margin-top: 30px;
}

.toolbar {
  display: flex;
  position: relative;
  margin-left: -56px;
  transition: margin-left 200ms ease;
  z-index: 1;
}
.toolbar .toolbar-content {
  overflow: hidden;
  width: 56px;
  z-index: 20;
  position: relative;
  background-color: #212121;
  box-shadow: rgba(0, 0, 0, 0.3) 0px 1px 2px 0px, rgba(0, 0, 0, 0.15) 0px 2px 6px 2px;
}
.toolbar .content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
.toolbar .content .top {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.toolbar .content bottom {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: var(--icon-margin-top);
}
.toolbar .content button {
  margin-top: var(--icon-margin-top);
}

.toolbar.display {
  margin-left: 0;
}
.toolbar.display .scrollable {
  width: min(400px, calc(100vw - 57px));
}

.top-right {
  position: absolute;
  right: 0;
  top: 0;
}
.top-right .top-right-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 40px 40px;
  /* visibility: hidden;
  opacity: 0;
  transition: visibility 0s linear 200ms, opacity 200ms; */
}
.top-right .top-right-content .screen {
  background: rgba(0, 0, 0, 0.7);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 30px;
}
.top-right .top-right-content .zoom {
  background: rgba(0, 0, 0, 0.7);
  border-radius: 3px;
  overflow: hidden;
}
.top-right .top-right-content .zoom .zoom-content {
  display: flex;
  flex-direction: column;
}

.center-right {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 2rem 2rem 3rem 2rem;
  background: linear-gradient(-45deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0) 50%);
  pointer-events: none;
}

.center-left {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 2rem;
  background: linear-gradient(45deg, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0) 50%);
  pointer-events: none;
}

#prev-page {
  text-align: center;
}

#prev-page::after {
  content: "PREV";
  color: white;
  font-size: 1rem;
  font-weight: 500;
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.7);
}

#next-page {
  text-align: center;
}

#next-page::after {
  content: "NEXT";
  color: white;
  font-size: 1rem;
  font-weight: 500;
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.7);
}

.screen-content button .icon:nth-child(2) {
  display: none;
}

.screen-content.close-full-sreen button .icon:nth-child(1) {
  display: none;
}

.screen-content.close-full-sreen button .icon:nth-child(2) {
  display: block;
}

@media all and (max-width: 780px) {
  .top-right {
    display: none;
  }

  .center-right {
    display: none;
  }

  .center-left {
    display: none;
  }
}
@media all and (max-height: 500px) {
  .center-right {
    display: none;
  }

  .center-left {
    display: none;
  }
}
.scrollable {
  position: absolute;
  transform: translateX(-100%);
  width: min(400px, 100vw);
  height: 100%;
  z-index: 10;
  transition: transform 0.3s ease-in;
}
.scrollable.display {
  transform: translateX(56px);
}
.scrollable .list-menu {
  background: #202124;
  width: 100%;
  max-width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
}
.scrollable .list-header {
  border-bottom: 1px solid #444;
  padding: 10px 10px 10px 23px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.scrollable .list-header .list-header-title {
  height: 30px;
  line-height: 30px;
  white-space: nowrap;
  word-wrap: normal;
  font-size: 1.4rem;
  text-overflow: ellipsis;
  overflow: hidden;
  padding-right: 20px;
}
.scrollable main {
  position: absolute;
  top: 80px;
  bottom: 0;
  left: 0;
  right: 0;
  overflow: auto;
}
.scrollable main .list-items {
  overflow: hidden;
  border: 1px solid #777;
  margin: 10px;
  border-radius: 3px;
}
.scrollable main::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
.scrollable main::-webkit-scrollbar-thumb {
  background-color: #8e8e8e;
  border: 1px solid #424242;
  border-radius: 4px;
}
.scrollable .menu-item {
  height: 140px;
  /*padding: 0 10px;*/
  display: flex;
  border-bottom: 1px solid #444;
  min-width: 160px;
}
.scrollable .menu-item .menu-item-content {
  display: flex;
  width: 100%;
  padding: 8px 0;
  overflow: hidden;
  cursor: pointer;
}
.scrollable .menu-item .menu-item-content .menu-item-index {
  height: 120px;
  line-height: 120px;
  padding: 5px;
  font-size: 1rem;
}
.scrollable .menu-item .menu-item-content .menu-item-thumbnail {
  position: relative;
  width: 90px;
  height: 100%;
  min-width: 90px;
  background: url("./../../../images/01 small/01 small.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.scrollable .menu-item .menu-item-content .menu-item-thumbnail::after {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding-top: 10px;
  height: 20px;
  line-height: 20px;
  text-align: center;
  content: attr(data-page);
  font-size: 0.8rem;
  background: linear-gradient(0deg, #000 50%, transparent);
  text-transform: capitalize;
  white-space: nowrap;
}
.scrollable .menu-item .menu-item-content .menu-item-text {
  overflow: hidden;
  width: 100%;
}
.scrollable .menu-item .menu-item-content .menu-item-title {
  font-weight: 500;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  max-height: 3rem;
  line-height: 1.4;
  padding-left: 10px;
  overflow: hidden;
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.scrollable .menu-item .menu-item-content .menu-item-details {
  padding-left: 10px;
  color: #aaa;
  overflow: hidden;
  white-space: nowrap;
  word-wrap: normal;
  text-overflow: ellipsis;
  font-size: 0.9rem;
  margin-bottom: 6px;
}
.scrollable .menu-item .menu-item-content .menu-item-details span::after {
  content: "•";
  margin: 0 3px;
}
.scrollable .menu-item .menu-item-content .menu-item-arc {
  padding-left: 10px;
  color: #aaa;
  overflow: hidden;
  white-space: nowrap;
  word-wrap: normal;
  text-overflow: ellipsis;
  font-size: 0.9rem;
  margin-bottom: 4px;
}
.scrollable .menu-item .menu-item-content .menu-item-saga {
  padding-left: 10px;
  color: #aaa;
  overflow: hidden;
  white-space: nowrap;
  word-wrap: normal;
  text-overflow: ellipsis;
  font-size: 0.9rem;
}
.scrollable .menu-item .menu-item-renderer {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.scrollable .menu-item:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
.scrollable .search {
  padding: 10px;
  position: relative;
  z-index: 1;
}
.scrollable .search-content {
  align-items: center;
  display: flex;
  border: 1px solid #777;
  border-radius: 3px;
  margin-bottom: 10px;
}
.scrollable .search-option {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.scrollable .search-filter-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.scrollable .filter-header {
  height: 40px;
  display: flex;
}
.scrollable .filter-header span {
  line-height: 40px;
  text-transform: uppercase;
  margin: 0 8px;
  font-size: 0.8rem;
  letter-spacing: 0.5px;
}
.scrollable .search-option label input {
  display: none;
}
.scrollable .search-option label {
  cursor: pointer;
  display: flex;
  position: relative;
  justify-content: space-between;
  align-items: center;
  margin: 8px;
}
.scrollable .search-option label .circle {
  height: 20px;
  width: 20px;
  border-radius: 50%;
  border: 2px solid #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: border-color 0.3s ease;
}
.scrollable .search-option label .circle::before {
  content: "";
  position: absolute;
  height: 8px;
  width: 8px;
  background-color: #3ea6ff;
  border-radius: 50%;
  transition: transform 0.3s ease;
  transform: scale(0);
}
.scrollable .search-option label span {
  font-size: 0.7rem;
  color: #ffffff;
  transition: color 0.3s ease;
  margin-left: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.scrollable .search-option label input:checked + .circle {
  border-color: #3ea6ff;
}
.scrollable .search-option label input:checked + .circle::before {
  transform: scale(1);
}
.scrollable .search-option label input:checked + .circle + span {
  color: #3ea6ff;
}
.scrollable .search-input {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.scrollable input[type=text] {
  height: 32px;
  background: none;
  outline: none;
  border: none;
  width: 100%;
  color: white;
  line-height: 32px;
  padding: 0 5px 0 10px;
  font-size: 1.1rem;
}
.scrollable .border {
  height: 24px;
  width: 1px;
  background: #777;
  display: inline-block;
}
.scrollable .drop-down {
  color: white;
  font-size: 0.8rem;
  display: flex;
  height: 40px;
  justify-content: space-between;
  align-items: center;
  position: relative;
  cursor: pointer;
}
.scrollable .drop-down span {
  padding: 0 5px 0 10px;
  letter-spacing: 0.2px;
}
.scrollable ul {
  list-style: none;
  font-size: 0.8rem;
  line-height: 20px;
}
.scrollable ul li {
  white-space: nowrap;
  padding: 0 10px;
  cursor: pointer;
}
.scrollable ul li:hover {
  background: rgba(255, 255, 255, 0.1);
}

.popup-container {
  position: absolute;
  top: 0;
  width: 100%;
}
.popup-container .dropdown {
  position: fixed;
  left: 50%;
  top: 56px;
  bottom: 0;
  transform: translateX(calc(-50%));
  display: none;
}
.popup-container .dropdown .dropdown-content {
  width: min(100vw, 300px);
  height: 130vh;
  background: linear-gradient(180deg, #121212, rgba(18, 18, 18, 0.5) 70%, transparent);
}
.popup-container .dropdown .dropdown-content .dropdown-menu {
  position: relative;
  padding-left: 8px;
  height: calc(100vh - 155px);
  overflow-y: auto;
}
.popup-container .dropdown .dropdown-content .dropdown-menu::-webkit-scrollbar {
  background: transparent;
  width: 8px;
}
.popup-container .dropdown .dropdown-content .dropdown-menu:hover::-webkit-scrollbar-thumb {
  background-color: #717171;
  border: 0;
  border-radius: 4px;
}
.popup-container .dropdown .dropdown-content .dropdown-menu .section-items .section-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.popup-container .dropdown .dropdown-content .dropdown-menu .section-items .section-item a {
  text-decoration: none;
  color: inherit;
  font-size: 1.1rem;
  width: 100%;
  display: flex;
  justify-content: center;
}
.popup-container .dropdown .dropdown-content .dropdown-menu .section-items .section-item a .compact-item {
  display: flex;
  align-items: center;
  height: 56px;
  overflow-x: hidden;
}
.popup-container .dropdown .dropdown-content .dropdown-menu .section-items .section-item a .compact-item .compact-item-text {
  display: none;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.popup-container .dropdown .dropdown-content .dropdown-menu .section-items .section-item a .compact-item .compact-item-icon {
  display: none;
}
.popup-container .dropdown .dropdown-content .dropdown-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 10px 10px 10px 23px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.popup-container .dropdown .dropdown-content .dropdown-header .list-header-title {
  height: 30px;
  line-height: 30px;
  white-space: nowrap;
  word-wrap: normal;
  font-size: 1.2rem;
  text-overflow: ellipsis;
  overflow: hidden;
  padding-right: 20px;
}
.popup-container .dropdown.popup {
  display: block;
}

@media all and (max-width: 500px) {
  .compact-item-text {
    display: none;
  }

  #center .dropdown-content {
    width: 100vh;
  }
}

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