.Loading {
  display: block;
  margin: 30px auto;
  width: 60px;
  height: 30px;
  padding: 10px;
  text-align: center; }

.LoadingDots {
  margin: 0px 15px;
  position: relative;
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background-color: var(--Primary);
  color: var(--Primary);
  animation: dotFlashing 1s infinite linear alternate;
  animation-delay: .5s; }

.LoadingDots::before, .LoadingDots::after {
  content: '';
  display: inline-block;
  position: absolute;
  top: 0px; }

.LoadingDots::before {
  left: -15px;
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background-color: var(--Primary);
  color: #666666;
  animation: dotFlashing 1s infinite alternate;
  animation-delay: 0s; }

.LoadingDots::after {
  left: 15px;
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background-color: var(--Primary);
  color: var(--Primary);
  animation: dotFlashing 1s infinite alternate;
  animation-delay: 1s; }

@keyframes dotFlashing {
  0% {
    background-color: var(--Primary); }
  50%, 100% {
    background-color: var(--PrimaryAlt); } }

.videos-list-item {
  display: flex; }
  .videos-list-item__color-red {
    color: red !important; }
  .videos-list-item__video-details {
    display: flex;
    width: 100%;
    border-bottom: 1px solid var(--ModalHover);
    padding: 15px 0; }
    .videos-list-item__video-details:active {
      border-top: 1px solid var(--ModalHover); }
  .videos-list-item__thumbnail {
    padding-right: 15px; }
    .videos-list-item__thumbnail__wrapper {
      display: block;
      position: relative;
      background: black;
      width: 210px;
      height: 118px; }
      .videos-list-item__thumbnail__wrapper img {
        width: 100%;
        max-height: 100%;
        object-fit: contain;
        cursor: pointer;
        border-radius: 8px; }
      @media (max-width: 600px) {
        .videos-list-item__thumbnail__wrapper {
          width: 115px;
          height: 68px; }
          .videos-list-item__thumbnail__wrapper .item-has-audio::before {
            font-size: 9px !important;
            width: 60px !important;
            height: 20px !important; } }
  .videos-list-item--small {
    min-height: 100px;
    padding-right: 10px; }
    .videos-list-item--small .videos-list-item__thumbnail__wrapper {
      width: 120px;
      height: 68px; }
  .videos-list-item__drag-box {
    display: flex;
    justify-content: center;
    flex-direction: column;
    width: 40px;
    align-items: center;
    cursor: grab; }
    .videos-list-item__drag-box input {
      cursor: pointer; }
  .videos-list-item__duration {
    display: block;
    width: auto;
    background-color: rgba(0, 0, 0, 0.85);
    font-family: Roboto;
    font-size: 11px;
    color: #fff;
    position: absolute;
    z-index: 100;
    right: 5px;
    bottom: 5px;
    font-weight: 700;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    padding: 6px 5px 5px 5px;
    pointer-events: none;
    border-radius: 4px;
    line-height: 100%; }
  .videos-list-item__number {
    padding: 8px;
    background-color: #fff;
    font-size: 14px;
    font-weight: 700;
    color: #666;
    position: absolute;
    top: 0;
    left: 0; }
  .videos-list-item__order {
    width: 16px;
    opacity: 0;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin: 0 10px; }
    .videos-list-item__order__item {
      fill: #9c9c9c; }
      .videos-list-item__order__item:hover {
        fill: #6f6e6e; }
      .videos-list-item__order__item__first {
        display: block;
        width: 16px;
        height: 16px; }
      .videos-list-item__order__item__up {
        display: block;
        width: 16px;
        height: 16px;
        margin: 0px auto 8px; }
      .videos-list-item__order__item__down {
        display: block;
        width: 16px;
        height: 16px;
        margin: 0px auto; }
      .videos-list-item__order__item__last {
        display: block;
        width: 16px;
        height: 16px; }
      .videos-list-item__order__item__up--disabled, .videos-list-item__order__item__down--disabled, .videos-list-item__order__item__first--disabled, .videos-list-item__order__item__last--disabled {
        fill: #9c9c9c57; }
        .videos-list-item__order__item__up--disabled:hover, .videos-list-item__order__item__down--disabled:hover, .videos-list-item__order__item__first--disabled:hover, .videos-list-item__order__item__last--disabled:hover {
          fill: #9c9c9c57; }
  .videos-list-item__total-video {
    color: white;
    position: absolute;
    top: 0;
    left: 0px;
    z-index: 2;
    user-select: none;
    padding: 5px 5px 3px 24px;
    background-color: #000000;
    font-size: 13px;
    background-image: url([object Module]);
    background-repeat: no-repeat;
    background-size: auto auto;
    background-position: 5px center; }
  .videos-list-item__content {
    flex: 1;
    vertical-align: top;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 5px; }
  .videos-list-item__channel {
    color: #666666; }
    .videos-list-item__channel:hover {
      color: #666666; }
  .videos-list-item__title {
    font-weight: bold;
    font-size: 16px;
    color: #000;
    display: inline-block;
    overflow-wrap: break-word;
    word-break: break-word;
    cursor: pointer; }
    .videos-list-item__title:hover {
      color: inherit;
      text-decoration: none; }
    @media (min-width: 1024px) {
      .videos-list-item__title {
        font-size: 16px; } }
    @media (max-width: 600px) {
      .videos-list-item__title {
        font-size: 14px;
        display: -webkit-box;
        max-height: 40px;
        margin: 0 auto;
        -webkit-line-clamp: 2;
        /* autoprefixer: off */
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis; } }
  .videos-list-item__detail {
    font-size: 12px;
    color: #666666; }
    .videos-list-item__detail .d-block {
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis; }
  .videos-list-item__actions {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -8px;
    font-size: 12px;
    color: #666666;
    text-transform: uppercase; }
    @media (max-width: 600px) {
      .videos-list-item__actions {
        margin: 0 -1px; } }
    .videos-list-item__actions__item {
      display: inline-block;
      margin-right: 5px; }
      .videos-list-item__actions__item button {
        font-size: 12px;
        background-color: transparent;
        color: #666666;
        text-transform: uppercase;
        border: none; }
        @media (max-width: 600px) {
          .videos-list-item__actions__item button {
            font-size: 11px;
            padding: 1px; } }
        .videos-list-item__actions__item button:hover {
          color: #ed1a3b;
          text-decoration: none;
          background: transparent; }
        .videos-list-item__actions__item button:focus, .videos-list-item__actions__item button:active {
          outline: 0;
          background-color: transparent !important;
          box-shadow: none !important; }
        .videos-list-item__actions__item button.btn-link:active {
          background-color: transparent !important;
          box-shadow: none !important; }
  .videos-list-item__sales {
    text-align: right;
    padding: 0 20px; }
    @media (max-width: 600px) {
      .videos-list-item__sales {
        padding: 0 10px; } }
    .videos-list-item__sales__amount {
      color: black;
      font-weight: 700;
      font-size: 19px; }
    .videos-list-item__sales__link {
      font-size: 12px;
      color: #666666; }
      .videos-list-item__sales__link:hover {
        text-decoration: underline !important; }
  .videos-list-item__premium-item, .videos-list-item__free-premium-item, .videos-list-item__sponsored-item {
    display: flex;
    font-family: 'Roboto', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.9rem;
    color: #68711d;
    text-shadow: #fc0 1px 0 10px; }
    @media (max-width: 990px) {
      .videos-list-item__premium-item, .videos-list-item__free-premium-item, .videos-list-item__sponsored-item {
        justify-content: flex-end; } }
  .videos-list-item__free-premium-item {
    color: #555a5a;
    text-shadow: #00c4ff 1px 0 10px; }
  .videos-list-item__sponsored-item {
    color: #4c5a3d;
    text-shadow: #00ff08 1px 0 10px; }

.bottom-line {
  border-bottom: solid 1px #ececec; }

.item-label {
  color: white;
  position: absolute;
  top: 0;
  left: 0px;
  z-index: 2;
  user-select: none;
  padding: 0px 16px;
  font-size: 14px;
  min-width: 105px; }
  .item-label--reject {
    background-color: #df1e3a; }
  .item-label--under-review {
    background-color: #1c2e5a;
    min-width: 70px; }
  @media (max-width: 600px) {
    .item-label {
      font-size: 9px;
      width: 100%;
      text-align: center; } }

.thumbnail__wrap {
  position: relative;
  padding-bottom: 56.2%;
  border-radius: 4px; }
  .thumbnail__wrap img {
    position: absolute;
    object-fit: contain;
    width: 100%;
    height: 100%;
    background-color: black; }

.thumbnail-info {
  font-size: 13px;
  color: #666666;
  line-height: 13px;
  margin-top: 10px; }
  .thumbnail-info b {
    color: #FFFFFF; }

@media (max-width: 600px) {
  .modal {
    padding: 0 10px; } }

@media (max-width: 768px) {
  .modal-settings.modal-window {
    width: 95%; } }

.modal-settings {
  top: 40%;
  overflow-x: hidden;
  overflow-y: auto; }
  @media (max-width: 991px) {
    .modal-settings {
      position: absolute;
      top: 0;
      height: 100%;
      transform: translate(-50%, 0%); } }
  .modal-settings__title {
    font-size: 16px;
    font-weight: 700;
    color: #000000;
    margin: 0px auto 20px auto; }
  .modal-settings__button {
    position: relative;
    z-index: 2; }
  .modal-settings a {
    cursor: pointer;
    color: #666666;
    font-size: 12px; }
    .modal-settings a:hover {
      color: #ed1a3b;
      text-decoration: none; }
  .modal-settings label {
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 2px; }
  .modal-settings .modal-window__content {
    margin: 0;
    padding: 0;
    border: none; }
    @media (max-width: 600px) {
      .modal-settings .modal-window__content {
        background-color: #ffffff; } }
  .modal-settings .modal-window__footer {
    position: absolute;
    bottom: 16px;
    right: 18px; }
    @media (max-width: 991px) {
      .modal-settings .modal-window__footer {
        position: relative;
        bottom: 34px;
        right: -8px; } }

.share-playlist-url:disabled, .share-playlist-field {
  background-color: #ffffff !important; }

.form__input--disabled {
  background-color: #ffffff !important;
  cursor: default;
  padding: 10px !important; }

.ModalPlaylistSettings .ModalPlaylist__Head__Title {
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 15px; }

.ModalPlaylistSettings .ModalPlaylist__Body__Form--Left {
  display: flex;
  flex-direction: column;
  gap: 10px; }

.ModalPlaylistSettings .ModalPlaylist__Body__Form__Field__Label {
  font-weight: 600;
  font-size: 12px;
  margin-bottom: 5px; }
  .ModalPlaylistSettings .ModalPlaylist__Body__Form__Field__Label--Center {
    font-size: 16px;
    font-weight: 600;
    margin: 10px 0 20px 0; }

.ModalPlaylistSettings .ModalPlaylist__Body__Form .img-thumbnail {
  border: none; }

.ModalPlaylistSettings .ModalPlaylist__Buttons {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 5px;
  margin-top: 15px; }

.ModalPlaylistConfirm__Content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column; }
  .ModalPlaylistConfirm__Content__Title {
    font-size: 18px;
    font-weight: 600; }
  .ModalPlaylistConfirm__Content__Message {
    font-size: 14px;
    margin: 15px 0 50px 0;
    color: var(--TextSecondary); }
  .ModalPlaylistConfirm__Content__Buttons {
    display: flex;
    gap: 5px; }

@media (min-width: 900px) {
  .ModalPlaylistSettings {
    max-width: 700px;
    width: 700px; }
    .ModalPlaylistSettings .ModalPlaylist__Body__Form {
      display: flex;
      flex-wrap: nowrap;
      gap: 15px; }
      .ModalPlaylistSettings .ModalPlaylist__Body__Form--Left {
        width: 40%;
        display: flex;
        flex-direction: column;
        gap: 10px; }
      .ModalPlaylistSettings .ModalPlaylist__Body__Form--Center {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 10px; }
      .ModalPlaylistSettings .ModalPlaylist__Body__Form--Right {
        width: 60%;
        padding-left: 15px; }
  .ModalPlaylistSmall {
    max-width: 400px; }
  .ModalPlaylistConfirm {
    max-width: 320px; } }

@media (min-width: 600px) and (max-width: 899px) {
  .ModalPlaylistSettings {
    height: 100%; }
  .ModalPlaylistMedium {
    width: 95%;
    max-width: 700px;
    height: 90%; }
  .ModalPlaylistSmall {
    min-width: 400px;
    height: 354px; }
  .ModalPlaylistConfirm {
    height: 220px; }
  .ModalAddToPlaylist {
    min-width: 600px;
    min-height: 240px;
    max-height: 270px; }
  .ModalCreatePlayList {
    height: 100%; }
    .ModalCreatePlayList .ModalPlaylist {
      position: relative; }
      .ModalCreatePlayList .ModalPlaylist__Body {
        overflow-x: hidden;
        overflow-y: auto;
        max-height: 70vh; }
        .ModalCreatePlayList .ModalPlaylist__Body__Form {
          display: flex;
          flex-direction: column;
          gap: 10px; }
          .ModalCreatePlayList .ModalPlaylist__Body__Form--Left {
            width: 100%; }
          .ModalCreatePlayList .ModalPlaylist__Body__Form--Right {
            width: 100%; }
          .ModalCreatePlayList .ModalPlaylist__Body__Form__Field__Label--Center {
            font-size: 16px;
            font-weight: 600;
            margin-top: 20px !important; }
      .ModalCreatePlayList .ModalPlaylist__Buttons {
        position: absolute;
        bottom: 0;
        right: 0; } }

@media (max-width: 599px) {
  .ModalPlaylistSettings {
    width: 100%;
    height: 100%;
    max-height: 80%;
    top: unset !important;
    left: 0 !important;
    bottom: 0 !important;
    transform: none !important;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    padding: 30px !important;
    border-radius: 15px 15px 0 0 !important; }
  .ModalCreatePlayList {
    height: 100%; }
    .ModalCreatePlayList .ModalPlaylist {
      height: 100%; }
      .ModalCreatePlayList .ModalPlaylist__Body {
        overflow-x: hidden;
        overflow-y: auto;
        max-height: 90%; } }
      @media (max-width: 599px) and (max-width: 400px) {
        .ModalCreatePlayList .ModalPlaylist__Body {
          max-height: 85%; } }

@media (max-width: 599px) {
        .ModalCreatePlayList .ModalPlaylist__Body__Form {
          display: flex;
          flex-direction: column;
          gap: 10px; }
          .ModalCreatePlayList .ModalPlaylist__Body__Form--Left {
            width: 100%; }
          .ModalCreatePlayList .ModalPlaylist__Body__Form--Right {
            width: 100%; }
      .ModalCreatePlayList .ModalPlaylist__Buttons {
        position: fixed;
        bottom: 10px;
        right: 30px; } }

#ChannelModal {
  display: none; }
  #ChannelModal .form {
    margin-bottom: 0; }
  #ChannelModal.open {
    display: flex;
    justify-content: center;
    align-items: center; }
  #ChannelModal .notificationOption {
    font-size: var(--FS14);
    color: var(--TextSecondary); }
    #ChannelModal .notificationOption b {
      color: var(--TextPrimary); }
  #ChannelModal .ModalPanel {
    background-color: var(--Modal);
    border: solid 1px var(--ModalBorder);
    border: solid 1px #17181c; }
    #ChannelModal .ModalPanel .ModalPanelTitle {
      text-align: center;
      font-weight: 600;
      font-size: 24px;
      color: #ffffff;
      display: block;
      margin: 0 auto 15px auto; }
    #ChannelModal .ModalPanel .ButtonIconClose {
      opacity: 1;
      pointer-events: auto;
      position: absolute;
      z-index: 999999;
      top: 8px;
      right: 8px;
      cursor: pointer;
      display: inline-block;
      width: 30px;
      height: 30px;
      padding: 3px;
      border-radius: 5px;
      cursor: pointer;
      -webkit-transition: all 0.2s ease;
      -moz-transition: all 0.2s ease;
      transition: all 0.2s ease;
      background-color: rgba(0, 0, 0, 0); }
      #ChannelModal .ModalPanel .ButtonIconClose:hover {
        background-color: rgba(66, 67, 68, 0.7); }
      #ChannelModal .ModalPanel .ButtonIconClose .Icon {
        display: block;
        width: 24px;
        height: 24px;
        -webkit-mask-size: 24px;
        pointer-events: none !important;
        position: relative; }
    #ChannelModal .ModalPanel .ButtonBox .Button {
      height: 33px;
      padding-left: 20px;
      padding-right: 20px;
      margin-left: 8px; }
    #ChannelModal .ModalPanel .ButtonBox .ButtonClose {
      background-color: #1a7efa;
      border-color: transparent !important; }

@media (min-width: 600px) {
  #ChannelModal {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 999999; }
    #ChannelModal .ModalBox {
      display: inline-block;
      margin: 0px auto;
      position: relative;
      max-width: 600px; }
      #ChannelModal .ModalBox .ModalPanel {
        display: block;
        margin: 0px auto;
        padding: 40px;
        text-align: left;
        border-radius: 15px; } }

@media (max-width: 599px) {
  #ChannelModal {
    width: 100%;
    height: 100%;
    max-height: 80%;
    position: fixed;
    left: 0px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    z-index: 999999;
    display: flex;
    bottom: -100%;
    transition: all 0.3s ease; }
    #ChannelModal.open {
      bottom: 0; }
    #ChannelModal .ModalBox {
      display: block;
      height: 100%;
      overflow-x: hidden;
      overflow-y: hidden;
      padding: 0; }
      #ChannelModal .ModalBox .ButtonIconClose {
        position: absolute;
        z-index: 22;
        top: 8px;
        right: 8px;
        cursor: pointer; }
      #ChannelModal .ModalBox .ModalPanel {
        display: block;
        text-align: left;
        height: 100%;
        padding: 40px 20px 0 20px; } }

:root {
  --SYSTEM_White: #FFFFFF;
  --SYSTEM_Gray10: #DFE1E3;
  --SYSTEM_Gray20: #B0B3B8;
  --SYSTEM_Gray30: #909090;
  --SYSTEM_Gray40: #424345;
  --SYSTEM_Gray50: #242529;
  --SYSTEM_Gray60: #17181C;
  --SYSTEM_Gray70: #0F1013;
  --SYSTEM_Gray80: #090A0C;
  --SYSTEM_Black: #000000;
  --SYSTEM_BlackAlt: #090A0C;
  /* /////////////////////////////////////////////////////////////// */
  --SYSTEM_Primary: #1A7EFA;
  --SYSTEM_PrimaryAlt: #2A87F9;
  --SYSTEM_Gray: #424345;
  --SYSTEM_GrayAlt: #4e5052;
  --SYSTEM_Blue: #1A7EFA;
  --SYSTEM_BlueAlt: #2A87F9;
  --SYSTEM_Orange: #FF3300;
  --SYSTEM_OrangeAlt: #FF4E00;
  --SYSTEM_Red: #E0203C;
  --SYSTEM_RedAlt: #EE3048;
  --SYSTEM_Green: #45BD62;
  --SYSTEM_GreenAlt: #4BD66C;
  --SYSTEM_Purple: #4E39D1;
  --SYSTEM_PurpleAlt: #5E48ED;
  --SYSTEM_Aqua: #2ECFF5;
  --SYSTEM_AquaAlt: #54DEFF;
  --SYSTEM_Yellow: #FFCC00;
  --SYSTEM_YellowAlt: #FFDE00;
  --SYSTEM_Pink: #CC0383;
  --SYSTEM_PinkAlt: #DB088E;
  --SYSTEM_Gold: #D4B665;
  --SYSTEM_GoldAlt: #EACD80;
  --SYSTEM_Brighteon: #1B2E5A;
  --SYSTEM_BrighteonAlt: #213668;
  /* /////////////////////////////////////////////////////////////// */
  --SYSTEM_Transparent: rgba(0,0,0,0);
  --SYSTEM_TransparentDark: rgba(0,0,0,0.75);
  --SYSTEM_TransparentLight: rgba(255,255,255,0.85);
  --SYSTEM_TransparentHover: rgba(66,67,68,0.7);
  --SYSTEM_Shadow: rgba(0,0,0,20);
  /* /////////////////////////////////////////////////////////////// */
  --SYSTEM_TextPrimary: var(--SYSTEM_White);
  --SYSTEM_TextSecondary: var(--SYSTEM_Gray30);
  --SYSTEM_TextDisabled:  var(--SYSTEM_Gray40);
  --SYSTEM_TextButton: var(--SYSTEM_White);
  /* /////////////////////////////////////////////////////////////// */
  --SYSTEM_Page: var(--SYSTEM_Gray80);
  --SYSTEM_Icon: var(--SYSTEM_White);
  /* /////////////////////////////////////////////////////////////// */
  --SYSTEM_ToolTip: var(--SYSTEM_Gray40);
  --SYSTEM_TextToolTip: var(--SYSTEM_Gray10);
  /* /////////////////////////////////////////////////////////////// */
  --SYSTEM_Track: var(--SYSTEM_Gray80);
  --SYSTEM_Thumb: var(--SYSTEM_Gray40);
  --SYSTEM_BodyTrack: var(--SYSTEM_Gray80);
  --SYSTEM_BodyThumb: var(--SYSTEM_Gray40);
  /* /////////////////////////////////////////////////////////////// */
  --SYSTEM_Input: var(--SYSTEM_Gray50);
  --SYSTEM_InputBorder: var(--SYSTEM_Gray40);
  --SYSTEM_InputText: var(--SYSTEM_TextPrimary);
  --SYSTEM_InputPlaceholder: var(--SYSTEM_TextSecondary);
  --SYSTEM_InputSelected: var(--SYSTEM_Primary);
  /* /////////////////////////////////////////////////////////////// */
  --SYSTEM_Privacy: var(--SYSTEM_Gray60);
  --SYSTEM_PrivacyBorder: var(--SYSTEM_Gray50);
  /* /////////////////////////////////////////////////////////////// */
  --SYSTEM_Search: var(--SYSTEM_Gray50);
  --SYSTEM_SearchBorder: var(--SYSTEM_Gray50);
  /* /////////////////////////////////////////////////////////////// */
  --SYSTEM_Helper: var(--SYSTEM_Gray80);
  --SYSTEM_HelperBorder: var(--SYSTEM_Gray60);
  /* /////////////////////////////////////////////////////////////// */
  --SYSTEM_Menu: var(--SYSTEM_Gray60);
  --SYSTEM_MenuHover: var(--SYSTEM_Gray40);
  --SYSTEM_MenuBorder: var(--SYSTEM_Gray50);
  --SYSTEM_Dropdown: var(--SYSTEM_Gray60);
  --SYSTEM_DropdownHover: var(--SYSTEM_Gray40);
  --SYSTEM_DropdownBorder: var(--SYSTEM_Gray40);
  --SYSTEM_Modal: var(--SYSTEM_Gray60);
  --SYSTEM_ModalHover: var(--SYSTEM_Gray40);
  --SYSTEM_ModalBorder: var(--SYSTEM_Gray60);
  --SYSTEM_ModalSection: var(--SYSTEM_Gray70);
  --SYSTEM_PopUp: var(--SYSTEM_Gray60);
  --SYSTEM_PopUpHover: var(--SYSTEM_Gray40);
  --SYSTEM_PopUpBorder: var(--SYSTEM_Gray60);
  --SYSTEM_Notifications: var(--SYSTEM_Gray70);
  --SYSTEM_NotificationsHover: var(--SYSTEM_Gray50);
  --SYSTEM_NotificationsBorder: var(--SYSTEM_Gray50);
  --SYSTEM_Button: var(--SYSTEM_Primary);
  --SYSTEM_ButtonHover: var(--SYSTEM_PrimaryAlt);
  --SYSTEM_ButtonBorder: var(--SYSTEM_Gray40);
  /* /////////////////////////////////////////////////////////////// */
  --SYSTEM_Masthead: rgba(9,10,12,0.85);
  --SYSTEM_MastheadHover: var(--SYSTEM_Gray40);
  --SYSTEM_MastheadBorder: var(--SYSTEM_Gray50);
  /* /////////////////////////////////////////////////////////////// */
  --SYSTEM_Footer: var(--SYSTEM_Gray80);
  --SYSTEM_FooterHover: var(--SYSTEM_Gray50);
  --SYSTEM_FooterBorder: var(--SYSTEM_Gray50);
  /* /////////////////////////////////////////////////////////////// */
  --SYSTEM_Duration: rgba(0,0,0,0.85);
  --SYSTEM_StatBox: var(--SYSTEM_Gray50);
  /* /////////////////////////////////////////////////////////////// */
  --SYSTEM_Tag: var(--SYSTEM_Gray50);
  --SYSTEM_TagHover: var(--SYSTEM_Gray40);
  --SYSTEM_TagText: var(--SYSTEM_White);
  --SYSTEM_TagFollowing: var(--SYSTEM_White);
  --SYSTEM_TagFollowingHover: var(--SYSTEM_White);
  --SYSTEM_TagFollowingText: var(--SYSTEM_Black);
  --SYSTEM_TagLive: var(--SYSTEM_Red);
  --SYSTEM_TagLiveHover: var(--SYSTEM_RedAlt);
  --SYSTEM_TagLiveText: var(--SYSTEM_White);
  /* /////////////////////////////////////////////////////////////// */
  --SYSTEM_InputText: var(--SYSTEM_TextPrimary);
  --SYSTEM_InputPlaceholder: var(--SYSTEM_TextSecondary);
  /* /////////////////////////////////////////////////////////////// */
  --SYSTEM_UI: var(--SYSTEM_Primary);
  --SYSTEM_UIText: var(--SYSTEM_White);
  /* /////////////////////////////////////////////////////////////// */
  --SYSTEM_Section: var(--SYSTEM_Transparent);
  --SYSTEM_SectionBorder: var(--SYSTEM_Gray50);
  --LIGHT_White: #FFFFFF;
  --LIGHT_Gray10: #F7F7F9;
  --LIGHT_Gray20: #ECECEC;
  --LIGHT_Gray30: #DBDBDB;
  --LIGHT_Gray40: #828282;
  --LIGHT_Gray50: #666666;
  --LIGHT_Gray60: #333333;
  --LIGHT_Gray70: #171819;
  --LIGHT_Gray80: #121212;
  --LIGHT_Black: #000000;
  --LIGHT_BlackAlt: #121212;
  --LIGHT_Primary: #287CED;
  --LIGHT_PrimaryAlt: #3399FF;
  --LIGHT_Gray: #B0B3B8;
  --LIGHT_GrayAlt: #BABCBF;
  --LIGHT_Blue: #1A94FA;
  --LIGHT_BlueAlt: #41A5FC;
  --LIGHT_Orange: #FF3300;
  --LIGHT_OrangeAlt: #FF4E00;
  --LIGHT_Red: #E0203C;
  --LIGHT_RedAlt: #EE3048;
  --LIGHT_Green: #219150;
  --LIGHT_GreenAlt: #24AF5F;
  --LIGHT_Purple: #4E39D1;
  --LIGHT_PurpleAlt: #5E48ED;
  --LIGHT_Aqua: #2ECFF5;
  --LIGHT_AquaAlt: #54DEFF;
  --LIGHT_Yellow: #FFCC00;
  --LIGHT_YellowAlt: #FFDE00;
  --LIGHT_Pink: #CC0383;
  --LIGHT_PinkAlt: #DB088E;
  --LIGHT_Gold: #D4B665;
  --LIGHT_GoldAlt: #EACD80;
  --LIGHT_Brighteon: #1B2E5A;
  --LIGHT_BrighteonAlt: #213668;
  --LIGHT_Transparent: rgba(0,0,0,0);
  --LIGHT_TransparentDark: rgba(0,0,0,0.85);
  --LIGHT_TransparentLight: rgba(255,255,255,0.85);
  --LIGHT_TransparentHover: rgba(0,0,0,0.08);
  --LIGHT_Shadow: rgba(0,0,0,0.4);
  --LIGHT_TextPrimary: var(--LIGHT_Gray80);
  --LIGHT_TextSecondary: var(--LIGHT_Gray40);
  --LIGHT_TextDisabled:  var(--LIGHT_Gray40);
  --LIGHT_TextButton: var(--LIGHT_White);
  --LIGHT_Page: var(--LIGHT_White);
  --LIGHT_Icon: var(--LIGHT_Gray70);
  --LIGHT_ToolTip: var(--LIGHT_Gray30);
  --LIGHT_TextToolTip: var(--LIGHT_Gray40);
  --LIGHT_Track: var(--LIGHT_Gray20);
  --LIGHT_Thumb: var(--LIGHT_Gray30);
  --LIGHT_BodyTrack: var(--LIGHT_Gray20);
  --LIGHT_BodyThumb: var(--LIGHT_Gray30);
  --LIGHT_Input: var(--LIGHT_Gray10);
  --LIGHT_InputBorder: var(--LIGHT_Gray30);
  --LIGHT_InputText: var(--LIGHT_TextPrimary);
  --LIGHT_InputPlaceholder: var(--LIGHT_TextSecondary);
  --LIGHT_InputSelected: var(--LIGHT_Primary);
  --LIGHT_Privacy: var(--LIGHT_Gray60);
  --LIGHT_PrivacyBorder: var(--LIGHT_Gray50);
  --LIGHT_Search: var(--LIGHT_Gray10);
  --LIGHT_SearchBorder: var(--LIGHT_Gray30);
  --LIGHT_Helper: var(--LIGHT_White);
  --LIGHT_HelperBorder: var(--LIGHT_Gray20);
  --LIGHT_Menu: var(--LIGHT_White);
  --LIGHT_MenuHover: var(--LIGHT_Gray10);
  --LIGHT_MenuBorder: var(--LIGHT_Gray20);
  --LIGHT_Dropdown: var(--LIGHT_White);
  --LIGHT_DropdownHover: var(--LIGHT_Gray10);
  --LIGHT_DropdownBorder: var(--LIGHT_Gray10);
  --LIGHT_Modal: var(--LIGHT_White);
  --LIGHT_ModalHover: var(--LIGHT_Gray10);
  --LIGHT_ModalBorder: var(--LIGHT_Gray20);
  --LIGHT_ModalSection: var(--LIGHT_Gray20);
  --LIGHT_PopUp: var(--LIGHT_White);
  --LIGHT_PopUpHover: var(--LIGHT_Gray10);
  --LIGHT_PopUpBorder: var(--LIGHT_Gray20);
  --LIGHT_Notifications: var(--LIGHT_White);
  --LIGHT_NotificationsHover: var(--LIGHT_Gray10);
  --LIGHT_NotificationsBorder: var(--LIGHT_Gray20);
  --LIGHT_Button: var(--LIGHT_Primary);
  --LIGHT_ButtonHover: var(--LIGHT_PrimaryAlt);
  --LIGHT_ButtonBorder: var(--LIGHT_Gray20);
  --LIGHT_Masthead: rgba(255,255,255,0.85);
  --LIGHT_MastheadHover: var(--LIGHT_Gray10);
  --LIGHT_MastheadBorder: var(--LIGHT_Gray20);
  --LIGHT_Footer: var(--LIGHT_White);
  --LIGHT_FooterHover: var(--LIGHT_Gray10);
  --LIGHT_FooterBorder: var(--LIGHT_Gray20);
  --LIGHT_Duration: rgba(0,0,0,0.85);
  --LIGHT_StatBox: var(--LIGHT_Gray20);
  --LIGHT_Tag: var(--LIGHT_Gray20);
  --LIGHT_TagHover: var(--LIGHT_Gray30);
  --LIGHT_TagText: var(--LIGHT_Gray40);
  --LIGHT_TagFollowing: var(--LIGHT_Brighteon);
  --LIGHT_TagFollowingHover: var(--LIGHT_BrighteonAlt);
  --LIGHT_TagFollowingText: var(--LIGHT_White);
  --LIGHT_TagLive: var(--LIGHT_Red);
  --LIGHT_TagLiveHover: var(--LIGHT_RedAlt);
  --LIGHT_TagLiveText: var(--LIGHT_White);
  --LIGHT_InputText: var(--LIGHT_TextPrimary);
  --LIGHT_InputPlaceholder: var(--LIGHT_TextSecondary);
  --LIGHT_UI: var(--LIGHT_Primary);
  --LIGHT_UIText: var(--LIGHT_White);
  --LIGHT_Section: var(--LIGHT_Transparent);
  --LIGHT_SectionBorder: var(--LIGHT_Gray20);
  --DARK_White: #FFFFFF;
  --DARK_Gray10: #DFE1E3;
  --DARK_Gray20: #B0B3B8;
  --DARK_Gray30: #909090;
  --DARK_Gray40: #424345;
  --DARK_Gray50: #242529;
  --DARK_Gray60: #17181C;
  --DARK_Gray70: #0F1013;
  --DARK_Gray80: #090A0C;
  --DARK_Black: #000000;
  --DARK_BlackAlt: #090A0C;
  --DARK_Primary: #1A7EFA;
  --DARK_PrimaryAlt: #2A87F9;
  --DARK_Gray: #424345;
  --DARK_GrayAlt: #4e5052;
  --DARK_Blue: #1A7EFA;
  --DARK_BlueAlt: #2A87F9;
  --DARK_Orange: #FF3300;
  --DARK_OrangeAlt: #FF4E00;
  --DARK_Red: #E0203C;
  --DARK_RedAlt: #EE3048;
  --DARK_Green: #45BD62;
  --DARK_GreenAlt: #4BD66C;
  --DARK_Purple: #4E39D1;
  --DARK_PurpleAlt: #5E48ED;
  --DARK_Aqua: #2ECFF5;
  --DARK_AquaAlt: #54DEFF;
  --DARK_Yellow: #FFCC00;
  --DARK_YellowAlt: #FFDE00;
  --DARK_Pink: #CC0383;
  --DARK_PinkAlt: #DB088E;
  --DARK_Gold: #D4B665;
  --DARK_GoldAlt: #EACD80;
  --DARK_Brighteon: #1B2E5A;
  --DARK_BrighteonAlt: #213668;
  --DARK_Transparent: rgba(0,0,0,0);
  --DARK_TransparentDark: rgba(0,0,0,0.75);
  --DARK_TransparentLight: rgba(255,255,255,0.85);
  --DARK_TransparentHover: rgba(66,67,68,0.7);
  --DARK_Shadow: rgba(0,0,0,20);
  --DARK_TextPrimary: var(--DARK_White);
  --DARK_TextSecondary: var(--DARK_Gray30);
  --DARK_TextDisabled:  var(--DARK_Gray40);
  --DARK_TextButton: var(--DARK_White);
  --DARK_Page: var(--DARK_Gray80);
  --DARK_Icon: var(--DARK_White);
  --DARK_ToolTip: var(--DARK_Gray40);
  --DARK_TextToolTip: var(--DARK_Gray10);
  --DARK_Track: var(--DARK_Gray80);
  --DARK_Thumb: var(--DARK_Gray40);
  --DARK_BodyTrack: var(--DARK_Gray80);
  --DARK_BodyThumb: var(--DARK_Gray40);
  --DARK_Input: var(--DARK_Gray50);
  --DARK_InputBorder: var(--DARK_Gray40);
  --DARK_InputText: var(--DARK_TextPrimary);
  --DARK_InputPlaceholder: var(--DARK_TextSecondary);
  --DARK_InputSelected: var(--DARK_Primary);
  --DARK_Privacy: var(--DARK_Gray60);
  --DARK_PrivacyBorder: var(--DARK_Gray50);
  --DARK_Search: var(--DARK_Gray50);
  --DARK_SearchBorder: var(--DARK_Gray50);
  --DARK_Helper: var(--DARK_Gray80);
  --DARK_HelperBorder: var(--DARK_Gray60);
  --DARK_Menu: var(--DARK_Gray60);
  --DARK_MenuHover: var(--DARK_Gray40);
  --DARK_MenuBorder: var(--DARK_Gray50);
  --DARK_Dropdown: var(--DARK_Gray60);
  --DARK_DropdownHover: var(--DARK_Gray40);
  --DARK_DropdownBorder: var(--DARK_Gray40);
  --DARK_Modal: var(--DARK_Gray60);
  --DARK_ModalHover: var(--DARK_Gray40);
  --DARK_ModalBorder: var(--DARK_Gray60);
  --DARK_ModalSection: var(--DARK_Gray70);
  --DARK_PopUp: var(--DARK_Gray60);
  --DARK_PopUpHover: var(--DARK_Gray40);
  --DARK_PopUpBorder: var(--DARK_Gray60);
  --DARK_Notifications: var(--DARK_Gray70);
  --DARK_NotificationsHover: var(--DARK_Gray50);
  --DARK_NotificationsBorder: var(--DARK_Gray50);
  --DARK_Button: var(--DARK_Primary);
  --DARK_ButtonHover: var(--DARK_PrimaryAlt);
  --DARK_ButtonBorder: var(--DARK_Gray40);
  --DARK_Masthead: rgba(9,10,12,0.85);
  --DARK_MastheadHover: var(--DARK_Gray40);
  --DARK_MastheadBorder: var(--DARK_Gray50);
  --DARK_Footer: var(--DARK_Gray80);
  --DARK_FooterHover: var(--DARK_Gray50);
  --DARK_FooterBorder: var(--DARK_Gray50);
  --DARK_Duration: rgba(0,0,0,0.85);
  --DARK_StatBox: var(--DARK_Gray50);
  --DARK_Tag: var(--DARK_Gray50);
  --DARK_TagHover: var(--DARK_Gray40);
  --DARK_TagText: var(--DARK_White);
  --DARK_TagFollowing: var(--DARK_White);
  --DARK_TagFollowingHover: var(--DARK_White);
  --DARK_TagFollowingText: var(--DARK_Black);
  --DARK_TagLive: var(--DARK_Red);
  --DARK_TagLiveHover: var(--DARK_RedAlt);
  --DARK_TagLiveText: var(--DARK_White);
  --DARK_InputText: var(--DARK_TextPrimary);
  --DARK_InputPlaceholder: var(--DARK_TextSecondary);
  --DARK_UI: var(--DARK_Primary);
  --DARK_UIText: var(--DARK_White);
  --DARK_Section: var(--DARK_Transparent);
  --DARK_SectionBorder: var(--DARK_Gray50);
  --DIM_White: #FFFFFF;
  --DIM_Gray10: #DFE1E3;
  --DIM_Gray20: #B0B3B8;
  --DIM_Gray30: #3E5F7D;
  --DIM_Gray40: #233B51;
  --DIM_Gray50: #0F2B44;
  --DIM_Gray60: #0A2034;
  --DIM_Gray70: #061726;
  --DIM_Gray80: #04111C;
  --DIM_Black: #000000;
  --DIM_BlackAlt: #030B16;
  --DIM_Primary: #204ECF;
  --DIM_PrimaryAlt: #2A5AE1;
  --DIM_Gray: #45586D;
  --DIM_GrayAlt: #4d6178;
  --DIM_Blue: #204ECF;
  --DIM_BlueAlt: #2A5AE1;
  --DIM_Orange: #FF3300;
  --DIM_OrangeAlt: #FF4E00;
  --DIM_Red: #E0203C;
  --DIM_RedAlt: #EE3048;
  --DIM_Green: #45BD62;
  --DIM_GreenAlt: #4BD66C;
  --DIM_Purple: #4E39D1;
  --DIM_PurpleAlt: #5E48ED;
  --DIM_Aqua: #2ECFF5;
  --DIM_AquaAlt: #54DEFF;
  --DIM_Yellow: #FFCC00;
  --DIM_YellowAlt: #FFDE00;
  --DIM_Pink: #CC0383;
  --DIM_PinkAlt: #DB088E;
  --DIM_Gold: #D4B665;
  --DIM_GoldAlt: #EACD80;
  --DIM_Brighteon: #1B2E5A;
  --DIM_BrighteonAlt: #213668;
  --DIM_Transparent: rgba(0,0,0,0);
  --DIM_TransparentDark: rgba(0,0,0,0.85);
  --DIM_TransparentLight: rgba(255,255,255,0.85);
  --DIM_TransparentHover: rgba(30,60,90,0.4);
  --DIM_Shadow: rgba(0,0,0,20);
  --DIM_TextPrimary: var(--DIM_White);
  --DIM_TextSecondary: var(--DIM_Gray20);
  --DIM_TextDisabled:  var(--DIM_Gray40);
  --DIM_TextButton: var(--DIM_White);
  --DIM_Page: var(--DIM_Gray70);
  --DIM_Icon: var(--DIM_White);
  --DIM_ToolTip: var(--DIM_Gray40);
  --DIM_TextToolTip: var(--DIM_Gray10);
  --DIM_Track: var(--DIM_Gray80);
  --DIM_Thumb: var(--DIM_Gray40);
  --DIM_BodyTrack: var(--DIM_Gray80);
  --DIM_BodyThumb: var(--DIM_Gray40);
  --DIM_Input: var(--DIM_Gray50);
  --DIM_InputBorder: var(--DIM_Gray40);
  --DIM_InputText: var(--DIM_TextPrimary);
  --DIM_InputPlaceholder: var(--DIM_TextSecondary);
  --DIM_InputSelected: var(--DIM_Primary);
  --DIM_Privacy: var(--DIM_Gray60);
  --DIM_PrivacyBorder: var(--DIM_Gray50);
  --DIM_Search: var(--DIM_Gray60);
  --DIM_SearchBorder: var(--DIM_Gray50);
  --DIM_Helper: var(--DIM_Gray80);
  --DIM_HelperBorder: var(--DIM_Gray60);
  --DIM_Menu: var(--DIM_Gray70);
  --DIM_MenuHover: var(--DIM_Gray60);
  --DIM_MenuBorder: var(--DIM_Gray50);
  --DIM_Dropdown: var(--DIM_Gray60);
  --DIM_DropdownHover: var(--DIM_Gray50);
  --DIM_DropdownBorder: var(--DIM_Gray50);
  --DIM_Modal: var(--DIM_Gray60);
  --DIM_ModalHover: var(--DIM_Gray50);
  --DIM_ModalBorder: var(--DIM_Gray50);
  --DIM_ModalSection: var(--DIM_Gray80);
  --DIM_PopUp: var(--DIM_Gray60);
  --DIM_PopUpHover: var(--DIM_Gray50);
  --DIM_PopUpBorder: var(--DIM_Gray50);
  --DIM_Notifications: var(--DIM_Gray60);
  --DIM_NotificationsHover: var(--DIM_Gray50);
  --DIM_NotificationsBorder: var(--DIM_Gray50);
  --DIM_Button: var(--DIM_Primary);
  --DIM_ButtonHover: var(--DIM_PrimaryAlt);
  --DIM_ButtonBorder: var(--DIM_Gray40);
  --DIM_Masthead: rgba(6,23,38,0.85);
  --DIM_MastheadHover: var(--DIM_Gray60);
  --DIM_MastheadBorder: var(--DIM_Gray50);
  --DIM_Footer: var(--DIM_Gray70);
  --DIM_FooterHover: var(--DIM_Gray60);
  --DIM_FooterBorder: var(--DIM_Gray50);
  --DIM_Duration: rgba(0,0,0,0.85);
  --DIM_StatBox: var(--DIM_Gray50);
  --DIM_Tag: var(--DIM_Gray50);
  --DIM_TagHover: var(--DIM_Gray40);
  --DIM_TagText: var(--DIM_White);
  --DIM_TagFollowing: var(--DIM_White);
  --DIM_TagFollowingHover: var(--DIM_White);
  --DIM_TagFollowingText: var(--DIM_Black);
  --DIM_TagLive: var(--DIM_Red);
  --DIM_TagLiveHover: var(--DIM_RedAlt);
  --DIM_TagLiveText: var(--DIM_White);
  --DIM_InputText: var(--DIM_TextPrimary);
  --DIM_InputPlaceholder: var(--DIM_TextSecondary);
  --DIM_UI: var(--DIM_Primary);
  --DIM_UIText: var(--DIM_White);
  --DIM_Section: var(--DIM_Transparent);
  --DIM_SectionBorder: var(--DIM_Gray40);
  --NIGHT_White: #FFFFFF;
  --NIGHT_Gray10: #B0B3B8;
  --NIGHT_Gray20: #4E4B68;
  --NIGHT_Gray30: #312D4D;
  --NIGHT_Gray40: #26233E;
  --NIGHT_Gray50: #1B192E;
  --NIGHT_Gray60: #100E1F;
  --NIGHT_Gray70: #090813;
  --NIGHT_Gray80: #070A0D;
  --NIGHT_Black: #000000;
  --NIGHT_BlackAlt: #070A0D;
  --NIGHT_Primary: #5E48ED;
  --NIGHT_PrimaryAlt: #7F6CFA;
  --NIGHT_Gray: #3B375D;
  --NIGHT_GrayAlt: #433f68;
  --NIGHT_Blue: #1994E8;
  --NIGHT_BlueAlt: #31A5F4;
  --NIGHT_Orange: #FF3300;
  --NIGHT_OrangeAlt: #FF4E00;
  --NIGHT_Red: #E0203C;
  --NIGHT_RedAlt: #EE3048;
  --NIGHT_Green: #45BD62;
  --NIGHT_GreenAlt: #4BD66C;
  --NIGHT_Purple: #4E39D1;
  --NIGHT_PurpleAlt: #5E48ED;
  --NIGHT_Aqua: #2ECFF5;
  --NIGHT_AquaAlt: #54DEFF;
  --NIGHT_Yellow: #FFCC00;
  --NIGHT_YellowAlt: #FFDE00;
  --NIGHT_Pink: #CC0383;
  --NIGHT_PinkAlt: #DB088E;
  --NIGHT_Gold: #D4B665;
  --NIGHT_GoldAlt: #EACD80;
  --NIGHT_Brighteon: #1B2E5A;
  --NIGHT_BrighteonAlt: #213668;
  --NIGHT_Transparent: rgba(0,0,0,0);
  --NIGHT_TransparentDark: rgba(0,0,0,0.85);
  --NIGHT_TransparentLight: rgba(255,255,255,0.85);
  --NIGHT_TransparentHover: rgba(49,45,77,0.7);
  --NIGHT_Shadow: rgba(0,0,0,20);
  --NIGHT_TextPrimary: var(--NIGHT_White);
  --NIGHT_TextSecondary: var(--NIGHT_Gray10);
  --NIGHT_TextDisabled: var(--NIGHT_Gray40);
  --NIGHT_TextButton: var(--NIGHT_White);
  --NIGHT_Page: var(--NIGHT_Gray50);
  --NIGHT_Icon: var(--NIGHT_White);
  --NIGHT_ToolTip: var(--NIGHT_Gray40);
  --NIGHT_TextToolTip: var(--NIGHT_Gray10);
  --NIGHT_Track: var(--NIGHT_Gray80);
  --NIGHT_Thumb: var(--NIGHT_Gray30);
  --NIGHT_BodyTrack: var(--NIGHT_Gray80);
  --NIGHT_BodyThumb: var(--NIGHT_Gray30);
  --NIGHT_Input: var(--NIGHT_Gray30);
  --NIGHT_InputBorder: var(--NIGHT_Gray20);
  --NIGHT_InputText: var(--NIGHT_TextPrimary);
  --NIGHT_InputPlaceholder: var(--NIGHT_TextSecondary);
  --NIGHT_InputSelected: var(--NIGHT_Primary);
  --NIGHT_Privacy: var(--NIGHT_Gray60);
  --NIGHT_PrivacyBorder: var(--NIGHT_Gray50);
  --NIGHT_Search: var(--NIGHT_Gray30);
  --NIGHT_SearchBorder: var(--NIGHT_Gray40);
  --NIGHT_Helper: var(--NIGHT_Gray80);
  --NIGHT_HelperBorder: var(--NIGHT_Gray60);
  --NIGHT_Menu: var(--NIGHT_Gray40);
  --NIGHT_MenuHover: var(--NIGHT_Gray30);
  --NIGHT_MenuBorder: var(--NIGHT_Gray30);
  --NIGHT_Dropdown: var(--NIGHT_Gray40);
  --NIGHT_DropdownHover: var(--NIGHT_Gray30);
  --NIGHT_DropdownBorder: var(--NIGHT_Gray30);
  --NIGHT_Modal: var(--NIGHT_Gray40);
  --NIGHT_ModalHover: var(--NIGHT_Gray30);
  --NIGHT_ModalBorder: var(--NIGHT_Gray30);
  --NIGHT_ModalSection: var(--NIGHT_Gray50);
  --NIGHT_PopUp: var(--NIGHT_Gray40);
  --NIGHT_PopUpHover: var(--NIGHT_Gray30);
  --NIGHT_PopUpBorder: var(--NIGHT_Gray30);
  --NIGHT_Notifications: var(--NIGHT_Gray40);
  --NIGHT_NotificationsHover: var(--NIGHT_Gray30);
  --NIGHT_NotificationsBorder: var(--NIGHT_Gray30);
  --NIGHT_Button: var(--NIGHT_Primary);
  --NIGHT_ButtonHover: var(--NIGHT_PrimaryAlt);
  --NIGHT_ButtonBorder: var(--NIGHT_Gray40);
  --NIGHT_Masthead: rgba(27,25,46,0.85);
  --NIGHT_MastheadHover: var(--NIGHT_Gray40);
  --NIGHT_MastheadBorder: var(--NIGHT_Gray40);
  --NIGHT_Footer: var(--NIGHT_Gray50);
  --NIGHT_FooterHover: var(--NIGHT_Gray40);
  --NIGHT_FooterBorder: var(--NIGHT_Gray40);
  --NIGHT_Duration: rgba(0,0,0,0.85);
  --NIGHT_StatBox: var(--NIGHT_Gray60);
  --NIGHT_Tag: var(--NIGHT_Gray40);
  --NIGHT_TagHover: var(--NIGHT_Gray30);
  --NIGHT_TagText: var(--NIGHT_White);
  --NIGHT_TagFollowing: var(--NIGHT_White);
  --NIGHT_TagFollowingHover: var(--NIGHT_White);
  --NIGHT_TagFollowingText: var(--NIGHT_Black);
  --NIGHT_TagLive: var(--NIGHT_Red);
  --NIGHT_TagLiveHover: var(--NIGHT_RedAlt);
  --NIGHT_TagLiveText: var(--NIGHT_White);
  --NIGHT_InputText: var(--NIGHT_TextPrimary);
  --NIGHT_InputPlaceholder: var(--NIGHT_TextSecondary);
  --NIGHT_UI: var(--NIGHT_Primary);
  --NIGHT_UIText: var(--NIGHT_White);
  --NIGHT_Section: var(--NIGHT_Transparent);
  --NIGHT_SectionBorder: var(--NIGHT_Gray40);
  --Promo: #4646FE;
  --PromoError: #FBFB62; }

@media (prefers-color-scheme: dark) {
  :root .theme__system {
    /* /////////////////////////////////////////////////////////////// */
    --White: #ffffff;
    --Gray10: #dfe1e3;
    --Gray20: #b0b3b8;
    --Gray30: #909090;
    --Gray40: #424345;
    --Gray50: #242529;
    --Gray60: #17181c;
    --Gray70: #0f1013;
    --Gray80: #090a0c;
    --Black: #000000;
    --BlackAlt: #090a0c;
    /* /////////////////////////////////////////////////////////////// */
    --Primary: #1a7efa;
    --PrimaryAlt: #2a87f9;
    --Gray: #424345;
    --GrayAlt: #4e5052;
    --Blue: #1a7efa;
    --BlueAlt: #2a87f9;
    --Orange: #ff3300;
    --OrangeAlt: #ff4e00;
    --Red: #e0203c;
    --RedAlt: #ee3048;
    --Green: #45bd62;
    --GreenAlt: #4bd66c;
    --Purple: #4e39d1;
    --PurpleAlt: #5e48ed;
    --Aqua: #2ecff5;
    --AquaAlt: #54deff;
    --Yellow: #ffcc00;
    --YellowAlt: #ffde00;
    --Pink: #cc0383;
    --PinkAlt: #db088e;
    --Gold: #d4b665;
    --GoldAlt: #eacd80;
    --Brighteon: #1b2e5a;
    --BrighteonAlt: #213668;
    --Promo: #4646FE;
    --PromoError: #FBFB62;
    /* /////////////////////////////////////////////////////////////// */
    --Transparent: rgba(0, 0, 0, 0);
    --TransparentDark: rgba(0, 0, 0, 0.75);
    --TransparentLight: rgba(255, 255, 255, 0.85);
    --TransparentHover: rgba(66, 67, 68, 0.7);
    --Shadow: rgba(0, 0, 0, 20);
    /* /////////////////////////////////////////////////////////////// */
    --TextPrimary: var(--White);
    --TextSecondary: var(--Gray30);
    --TextDisabled: var(--Gray40);
    --TextButton: var(--White);
    /* /////////////////////////////////////////////////////////////// */
    --Page: var(--Gray80);
    --Icon: var(--White);
    /* /////////////////////////////////////////////////////////////// */
    --ToolTip: var(--Gray40);
    --TextToolTip: var(--Gray10);
    /* /////////////////////////////////////////////////////////////// */
    --Track: var(--Gray80);
    --Thumb: var(--Gray40);
    --BodyTrack: var(--Gray80);
    --BodyThumb: var(--Gray40);
    /* /////////////////////////////////////////////////////////////// */
    --Input: var(--Gray50);
    --InputBorder: var(--Gray40);
    --InputText: var(--TextPrimary);
    --InputPlaceholder: var(--TextSecondary);
    --InputSelected: var(--Primary);
    /* /////////////////////////////////////////////////////////////// */
    --Privacy: var(--Gray60);
    --PrivacyBorder: var(--Gray50);
    /* /////////////////////////////////////////////////////////////// */
    --Search: var(--Gray50);
    --SearchBorder: var(--Gray50);
    /* /////////////////////////////////////////////////////////////// */
    --Helper: var(--Gray80);
    --HelperBorder: var(--Gray60);
    /* /////////////////////////////////////////////////////////////// */
    --Menu: var(--Gray60);
    --MenuHover: var(--Gray40);
    --MenuBorder: var(--Gray50);
    --Dropdown: var(--Gray60);
    --DropdownHover: var(--Gray40);
    --DropdownBorder: var(--Gray40);
    --Modal: var(--Gray60);
    --ModalHover: var(--Gray40);
    --ModalBorder: var(--Gray60);
    --ModalSection: var(--Gray70);
    --PopUp: var(--Gray60);
    --PopUpHover: var(--Gray40);
    --PopUpBorder: var(--Gray60);
    --Notifications: var(--Gray70);
    --NotificationsHover: var(--Gray50);
    --NotificationsBorder: var(--Gray50);
    --Button: var(--Primary);
    --ButtonHover: var(--PrimaryAlt);
    --ButtonBorder: var(--Gray40);
    /* /////////////////////////////////////////////////////////////// */
    --Masthead: rgba(9, 10, 12, 0.85);
    --MastheadHover: var(--Gray40);
    --MastheadBorder: var(--Gray50);
    /* /////////////////////////////////////////////////////////////// */
    --Footer: var(--Gray80);
    --FooterHover: var(--Gray50);
    --FooterBorder: var(--Gray50);
    /* /////////////////////////////////////////////////////////////// */
    --Duration: rgba(0, 0, 0, 0.85);
    --StatBox: var(--Gray50);
    /* /////////////////////////////////////////////////////////////// */
    --Tag: var(--Gray50);
    --TagHover: var(--Gray40);
    --TagText: var(--White);
    --TagFollowing: var(--White);
    --TagFollowingHover: var(--White);
    --TagFollowingText: var(--Black);
    --TagLive: var(--Red);
    --TagLiveHover: var(--RedAlt);
    --TagLiveText: var(--White);
    /* /////////////////////////////////////////////////////////////// */
    --InputText: var(--TextPrimary);
    --InputPlaceholder: var(--TextSecondary);
    /* /////////////////////////////////////////////////////////////// */
    --UI: var(--Primary);
    --UIText: var(--White);
    /* /////////////////////////////////////////////////////////////// */
    --Section: var(--Transparent);
    --SectionBorder: var(--Gray50);
    /* /////////////////////////////////////////////////////////////// */
    --Article: var(--Gray10);
    --ArticleHover: var(--White);
    /* /////////////////////////////////////////////////////////////// */
    --Newsletter: var(--Gray60);
    --NewsletterBorder: var(--Gray40);
    --PlaylistBorder: var(--Gray50);
    --PlaylistHover: var(--Gray60);
    --PlaylistItemHover: var(--Gray50);
    --Premium: var(--Gray60);
    --PremiumBorder: var(--Gray50); }
    :root .theme__system .PrivacyBox .PrivacyTable .ButtonPrivacy {
      border-color: var(--White); } }

@media (prefers-color-scheme: light) {
  :root .theme__system {
    /* /////////////////////////////////////////////////////////////// */
    --White: #ffffff;
    --Gray10: #f7f7f9;
    --Gray20: #ececec;
    --Gray30: #dbdbdb;
    --Gray40: #828282;
    --Gray50: #666666;
    --Gray60: #333333;
    --Gray70: #171819;
    --Gray80: #121212;
    --Black: #000000;
    --BlackAlt: #121212;
    /* /////////////////////////////////////////////////////////////// */
    --Primary: #287ced;
    --PrimaryAlt: #3399ff;
    --Gray: #b0b3b8;
    --GrayAlt: #babcbf;
    --Blue: #1a94fa;
    --BlueAlt: #41a5fc;
    --Orange: #ff3300;
    --OrangeAlt: #ff4e00;
    --Red: #e0203c;
    --RedAlt: #ee3048;
    --Green: #219150;
    --GreenAlt: #24af5f;
    --Purple: #4e39d1;
    --PurpleAlt: #5e48ed;
    --Aqua: #2ecff5;
    --AquaAlt: #54deff;
    --Yellow: #ffcc00;
    --YellowAlt: #ffde00;
    --Pink: #cc0383;
    --PinkAlt: #db088e;
    --Gold: #d4b665;
    --GoldAlt: #eacd80;
    --Brighteon: #1b2e5a;
    --BrighteonAlt: #213668;
    /* /////////////////////////////////////////////////////////////// */
    --Transparent: rgba(0, 0, 0, 0);
    --TransparentDark: rgba(0, 0, 0, 0.85);
    --TransparentLight: rgba(255, 255, 255, 0.85);
    --TransparentHover: rgba(0, 0, 0, 0.08);
    --Shadow: rgba(0, 0, 0, 0.4);
    /* /////////////////////////////////////////////////////////////// */
    --TextPrimary: var(--Gray80);
    --TextSecondary: var(--Gray40);
    --TextDisabled: var(--Gray40);
    --TextButton: var(--White);
    /* /////////////////////////////////////////////////////////////// */
    --Page: var(--White);
    --Icon: var(--Gray70);
    /* /////////////////////////////////////////////////////////////// */
    --ToolTip: var(--Gray30);
    --TextToolTip: var(--Gray40);
    /* /////////////////////////////////////////////////////////////// */
    --Track: var(--Gray20);
    --Thumb: var(--Gray30);
    --BodyTrack: var(--Gray20);
    --BodyThumb: var(--Gray30);
    /* /////////////////////////////////////////////////////////////// */
    --Input: var(--Gray10);
    --InputBorder: var(--Gray30);
    --InputText: var(--TextPrimary);
    --InputPlaceholder: var(--TextSecondary);
    --InputSelected: var(--Primary);
    /* /////////////////////////////////////////////////////////////// */
    --Privacy: var(--Gray60);
    --PrivacyBorder: var(--Gray50);
    /* /////////////////////////////////////////////////////////////// */
    --Search: var(--Gray10);
    --SearchBorder: var(--Gray30);
    /* /////////////////////////////////////////////////////////////// */
    --Helper: var(--White);
    --HelperBorder: var(--Gray20);
    /* /////////////////////////////////////////////////////////////// */
    --Menu: var(--White);
    --MenuHover: var(--Gray10);
    --MenuBorder: var(--Gray20);
    --Dropdown: var(--White);
    --DropdownHover: var(--Gray10);
    --DropdownBorder: var(--Gray10);
    --Modal: var(--White);
    --ModalHover: var(--Gray10);
    --ModalBorder: var(--Gray20);
    --ModalSection: var(--Gray20);
    --PopUp: var(--White);
    --PopUpHover: var(--Gray10);
    --PopUpBorder: var(--Gray20);
    --Notifications: var(--White);
    --NotificationsHover: var(--Gray10);
    --NotificationsBorder: var(--Gray20);
    --Button: var(--Primary);
    --ButtonHover: var(--PrimaryAlt);
    --ButtonBorder: var(--Gray20);
    /* /////////////////////////////////////////////////////////////// */
    --Masthead: rgba(255, 255, 255, 0.85);
    --MastheadHover: var(--Gray10);
    --MastheadBorder: var(--Gray20);
    /* /////////////////////////////////////////////////////////////// */
    --Footer: var(--White);
    --FooterHover: var(--Gray10);
    --FooterBorder: var(--Gray20);
    /* /////////////////////////////////////////////////////////////// */
    --Duration: rgba(0, 0, 0, 0.85);
    --StatBox: var(--Gray20);
    /* /////////////////////////////////////////////////////////////// */
    --Tag: var(--Gray20);
    --TagHover: var(--Gray30);
    --TagText: var(--Gray60);
    --TagFollowing: var(--Brighteon);
    --TagFollowingHover: var(--BrighteonAlt);
    --TagFollowingText: var(--White);
    --TagLive: var(--Red);
    --TagLiveHover: var(--RedAlt);
    --TagLiveText: var(--White);
    /* /////////////////////////////////////////////////////////////// */
    --InputText: var(--TextPrimary);
    --InputPlaceholder: var(--TextSecondary);
    /* /////////////////////////////////////////////////////////////// */
    --UI: var(--Primary);
    --UIText: var(--White);
    /* /////////////////////////////////////////////////////////////// */
    --Section: var(--Transparent);
    --SectionBorder: var(--Gray20);
    /* /////////////////////////////////////////////////////////////// */
    --Article: var(--Gray60);
    --ArticleHover: var(--Gray80);
    /* /////////////////////////////////////////////////////////////// */
    --Newsletter: var(--White);
    --NewsletterBorder: var(--Gray20);
    --PlaylistBorder: var(--Gray20);
    --PlaylistHover: var(--Gray10);
    --PlaylistItemHover: var(--Gray20);
    --Premium: var(--Gray10);
    --PremiumBorder: var(--Gray20);
    /* /////////////////////////////////////////////////////////////// */ }
    :root .theme__system .TagsNavLeft {
      background: linear-gradient(to right, white 40%, rgba(255, 255, 255, 0) 100%); }
    :root .theme__system .TagsNavRight {
      background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, white 60%); }
    :root .theme__system .CardsNavLeft .CardsBackground {
      background: linear-gradient(to right, white 0%, rgba(255, 255, 255, 0) 100%); }
    :root .theme__system .CardsNavRight .CardsBackground {
      background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, white 100%); }
    :root .theme__system .AuthBody {
      background-color: var(--Gray10); }
    :root .theme__system .ButtonTransparent {
      background-color: var(--Transparent) !important;
      color: var(--Gray40) !important; }
    :root .theme__system .ButtonTransparent:hover {
      color: var(--Gray40) !important; }
    :root .theme__system .ButtonTransBorder {
      background-color: var(--Transparent) !important;
      border-color: var(--BorderAlt);
      color: var(--TextPrimary) !important; }
    :root .theme__system .ButtonTransBorder:hover {
      background-color: var(--Border) !important;
      color: var(--TextButton) !important;
      color: var(--Gray40) !important; }
    :root .theme__system .PrivacyNotice .ButtonTransBorder {
      background-color: var(--Transparent) !important;
      border-color: var(--White) !important;
      color: var(--TextPrimary) !important; }
      :root .theme__system .PrivacyNotice .ButtonTransBorder:hover {
        color: var(--Gray40) !important;
        border-color: var(--Gray40) !important; }
    :root .theme__system .InputFieldDefault {
      border-color: #ececec !important;
      background-color: #ffffff !important;
      color: #121212 !important; }
    :root .theme__system .ScrollNavLeft .ScrollNavBackgroundLarge {
      background: linear-gradient(to right, white 0%, rgba(255, 255, 255, 0) 100%); }
    :root .theme__system .ScrollNavRight .ScrollNavBackgroundLarge {
      background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, white 100%); }
    :root .theme__system .ScrollNavLeft .ScrollNavBackgroundSmall {
      background: linear-gradient(to right, white 40%, rgba(255, 255, 255, 0) 100%); }
    :root .theme__system .ScrollNavRight .ScrollNavBackgroundSmall {
      background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, white 60%); }
    :root .theme__system .PrivacyBox .PrivacyTable .PrivacyNoticeHeadline {
      color: var(--White); }
    :root .theme__system .PrivacyBox .PrivacyTable .ButtonPrivacy {
      color: var(--White) !important; } }

/* /////////////////////////////////////////////////////////////// */
:root .theme__dark {
  /* /////////////////////////////////////////////////////////////// */
  --White: #ffffff;
  --Gray10: #dfe1e3;
  --Gray20: #b0b3b8;
  --Gray30: #909090;
  --Gray40: #424345;
  --Gray50: #242529;
  --Gray60: #17181c;
  --Gray70: #0f1013;
  --Gray80: #090a0c;
  --Black: #000000;
  --BlackAlt: #090a0c;
  /* /////////////////////////////////////////////////////////////// */
  --Primary: #1a7efa;
  --PrimaryAlt: #2a87f9;
  --Gray: #424345;
  --GrayAlt: #4e5052;
  --Blue: #1a7efa;
  --BlueAlt: #2a87f9;
  --Orange: #ff3300;
  --OrangeAlt: #ff4e00;
  --Red: #e0203c;
  --RedAlt: #ee3048;
  --Green: #45bd62;
  --GreenAlt: #4bd66c;
  --Purple: #4e39d1;
  --PurpleAlt: #5e48ed;
  --Aqua: #2ecff5;
  --AquaAlt: #54deff;
  --Yellow: #ffcc00;
  --YellowAlt: #ffde00;
  --Pink: #cc0383;
  --PinkAlt: #db088e;
  --Gold: #d4b665;
  --GoldAlt: #eacd80;
  --Brighteon: #1b2e5a;
  --BrighteonAlt: #213668;
  --Promo: #4646FE;
  --PromoError: #FBFB62;
  /* /////////////////////////////////////////////////////////////// */
  --Transparent: rgba(0, 0, 0, 0);
  --TransparentDark: rgba(0, 0, 0, 0.75);
  --TransparentLight: rgba(255, 255, 255, 0.85);
  --TransparentHover: rgba(66, 67, 68, 0.7);
  --Shadow: rgba(0, 0, 0, 20);
  /* /////////////////////////////////////////////////////////////// */
  --TextPrimary: var(--White);
  --TextSecondary: var(--Gray30);
  --TextDisabled: var(--Gray40);
  --TextButton: var(--White);
  /* /////////////////////////////////////////////////////////////// */
  --Page: var(--Gray80);
  --Icon: var(--White);
  /* /////////////////////////////////////////////////////////////// */
  --ToolTip: var(--Gray40);
  --TextToolTip: var(--Gray10);
  /* /////////////////////////////////////////////////////////////// */
  --Track: var(--Gray80);
  --Thumb: var(--Gray40);
  --BodyTrack: var(--Gray80);
  --BodyThumb: var(--Gray40);
  /* /////////////////////////////////////////////////////////////// */
  --Input: var(--Gray50);
  --InputBorder: var(--Gray40);
  --InputText: var(--TextPrimary);
  --InputPlaceholder: var(--TextSecondary);
  --InputSelected: var(--Primary);
  /* /////////////////////////////////////////////////////////////// */
  --Privacy: var(--Gray60);
  --PrivacyBorder: var(--Gray50);
  /* /////////////////////////////////////////////////////////////// */
  --Search: var(--Gray50);
  --SearchBorder: var(--Gray50);
  /* /////////////////////////////////////////////////////////////// */
  --Helper: var(--Gray80);
  --HelperBorder: var(--Gray60);
  /* /////////////////////////////////////////////////////////////// */
  --Menu: var(--Gray60);
  --MenuHover: var(--Gray40);
  --MenuBorder: var(--Gray50);
  --Dropdown: var(--Gray60);
  --DropdownHover: var(--Gray40);
  --DropdownBorder: var(--Gray40);
  --Modal: var(--Gray60);
  --ModalHover: var(--Gray40);
  --ModalBorder: var(--Gray60);
  --ModalSection: var(--Gray70);
  --PopUp: var(--Gray60);
  --PopUpHover: var(--Gray40);
  --PopUpBorder: var(--Gray60);
  --Notifications: var(--Gray70);
  --NotificationsHover: var(--Gray50);
  --NotificationsBorder: var(--Gray50);
  --Button: var(--Primary);
  --ButtonHover: var(--PrimaryAlt);
  --ButtonBorder: var(--Gray40);
  /* /////////////////////////////////////////////////////////////// */
  --Masthead: rgba(9, 10, 12, 0.85);
  --MastheadHover: var(--Gray40);
  --MastheadBorder: var(--Gray50);
  /* /////////////////////////////////////////////////////////////// */
  --Footer: var(--Gray80);
  --FooterHover: var(--Gray50);
  --FooterBorder: var(--Gray50);
  /* /////////////////////////////////////////////////////////////// */
  --Duration: rgba(0, 0, 0, 0.85);
  --StatBox: var(--Gray50);
  /* /////////////////////////////////////////////////////////////// */
  --Tag: var(--Gray50);
  --TagHover: var(--Gray40);
  --TagText: var(--White);
  --TagFollowing: var(--White);
  --TagFollowingHover: var(--White);
  --TagFollowingText: var(--Black);
  --TagLive: var(--Red);
  --TagLiveHover: var(--RedAlt);
  --TagLiveText: var(--White);
  /* /////////////////////////////////////////////////////////////// */
  --InputText: var(--TextPrimary);
  --InputPlaceholder: var(--TextSecondary);
  /* /////////////////////////////////////////////////////////////// */
  --UI: var(--Primary);
  --UIText: var(--White);
  /* /////////////////////////////////////////////////////////////// */
  --Section: var(--Transparent);
  --SectionBorder: var(--Gray50);
  /* /////////////////////////////////////////////////////////////// */
  --Article: var(--Gray10);
  --ArticleHover: var(--White);
  /* /////////////////////////////////////////////////////////////// */
  --Newsletter: var(--Gray60);
  --NewsletterBorder: var(--Gray40);
  --PlaylistBorder: var(--Gray50);
  --PlaylistHover: var(--Gray60);
  --PlaylistItemHover: var(--Gray50);
  --Premium: var(--Gray60);
  --PremiumBorder: var(--Gray50); }

/* /////////////////////////////////////////////////////////////// */
/* /////////////////////////////////////////////////////////////// */
/* /////////////////////////////////////////////////////////////// */
/* /////////////////////////////////////////////////////////////// */
/* /////////////////////////////////////////////////////////////// */
/* same color as masthead */
.theme__dark .TagsNavLeft {
  background: linear-gradient(to right, #090a0c 40%, rgba(9, 10, 12, 0) 100%) !important; }

.theme__dark .TagsNavRight {
  background: linear-gradient(to right, rgba(9, 10, 12, 0) 0%, #090a0c 60%) !important; }

.theme__dark .CardsNavLeft .CardsBackground {
  background: linear-gradient(to right, #090a0c 0%, rgba(9, 10, 12, 0) 100%) !important; }

.theme__dark .CardsNavRight .CardsBackground {
  background: linear-gradient(to right, rgba(9, 10, 12, 0) 0%, #090a0c 100%) !important; }

.theme__dark .ScrollNavLeft .ScrollNavBackgroundLarge {
  background: linear-gradient(to right, #090a0c 0%, rgba(9, 10, 12, 0) 100%); }

.theme__dark .ScrollNavRight .ScrollNavBackgroundLarge {
  background: linear-gradient(to right, rgba(9, 10, 12, 0) 0%, #090a0c 100%); }

.theme__dark .ScrollNavLeft .ScrollNavBackgroundSmall {
  background: linear-gradient(to right, #090a0c 40%, rgba(9, 10, 12, 0) 100%); }

.theme__dark .ScrollNavRight .ScrollNavBackgroundSmall {
  background: linear-gradient(to right, rgba(9, 10, 12, 0) 0%, #090a0c 60%); }

.theme__dark .PrivacyBox .PrivacyTable .ButtonPrivacy {
  border-color: var(--White); }

/* /////////////////////////////////////////////////////////////// */
:root .theme__dim {
  /* /////////////////////////////////////////////////////////////// */
  --White: #ffffff;
  --Gray10: #dfe1e3;
  --Gray20: #b0b3b8;
  --Gray30: #3e5f7d;
  --Gray40: #233b51;
  --Gray50: #0f2b44;
  --Gray60: #0a2034;
  --Gray70: #061726;
  --Gray80: #04111c;
  --Black: #000000;
  --BlackAlt: #030b16;
  /* /////////////////////////////////////////////////////////////// */
  --Primary: #204ecf;
  --PrimaryAlt: #2a5ae1;
  --Gray: #45586d;
  --GrayAlt: #4d6178;
  --Blue: #204ecf;
  --BlueAlt: #2a5ae1;
  --Orange: #ff3300;
  --OrangeAlt: #ff4e00;
  --Red: #e0203c;
  --RedAlt: #ee3048;
  --Green: #45bd62;
  --GreenAlt: #4bd66c;
  --Purple: #4e39d1;
  --PurpleAlt: #5e48ed;
  --Aqua: #2ecff5;
  --AquaAlt: #54deff;
  --Yellow: #ffcc00;
  --YellowAlt: #ffde00;
  --Pink: #cc0383;
  --PinkAlt: #db088e;
  --Gold: #d4b665;
  --GoldAlt: #eacd80;
  --Brighteon: #1b2e5a;
  --BrighteonAlt: #213668;
  /* /////////////////////////////////////////////////////////////// */
  --Transparent: rgba(0, 0, 0, 0);
  --TransparentDark: rgba(0, 0, 0, 0.85);
  --TransparentLight: rgba(255, 255, 255, 0.85);
  --TransparentHover: rgba(30, 60, 90, 0.4);
  --Shadow: rgba(0, 0, 0, 20);
  /* /////////////////////////////////////////////////////////////// */
  --TextPrimary: var(--White);
  --TextSecondary: var(--Gray20);
  --TextDisabled: var(--Gray40);
  --TextButton: var(--White);
  /* /////////////////////////////////////////////////////////////// */
  --Page: var(--Gray70);
  --Icon: var(--White);
  /* /////////////////////////////////////////////////////////////// */
  --ToolTip: var(--Gray40);
  --TextToolTip: var(--Gray10);
  /* /////////////////////////////////////////////////////////////// */
  --Track: var(--Gray80);
  --Thumb: var(--Gray40);
  --BodyTrack: var(--Gray80);
  --BodyThumb: var(--Gray40);
  /* /////////////////////////////////////////////////////////////// */
  --Input: var(--Gray50);
  --InputBorder: var(--Gray40);
  --InputText: var(--TextPrimary);
  --InputPlaceholder: var(--TextSecondary);
  --InputSelected: var(--Primary);
  /* /////////////////////////////////////////////////////////////// */
  --Privacy: var(--Gray60);
  --PrivacyBorder: var(--Gray50);
  /* /////////////////////////////////////////////////////////////// */
  --Search: var(--Gray60);
  --SearchBorder: var(--Gray50);
  /* /////////////////////////////////////////////////////////////// */
  --Helper: var(--Gray80);
  --HelperBorder: var(--Gray60);
  /* /////////////////////////////////////////////////////////////// */
  --Menu: var(--Gray70);
  --MenuHover: var(--Gray60);
  --MenuBorder: var(--Gray50);
  --Dropdown: var(--Gray60);
  --DropdownHover: var(--Gray50);
  --DropdownBorder: var(--Gray50);
  --Modal: var(--Gray60);
  --ModalHover: var(--Gray50);
  --ModalBorder: var(--Gray50);
  --ModalSection: var(--Gray80);
  --PopUp: var(--Gray60);
  --PopUpHover: var(--Gray50);
  --PopUpBorder: var(--Gray50);
  --Notifications: var(--Gray60);
  --NotificationsHover: var(--Gray50);
  --NotificationsBorder: var(--Gray50);
  --Button: var(--Primary);
  --ButtonHover: var(--PrimaryAlt);
  --ButtonBorder: var(--Gray40);
  /* /////////////////////////////////////////////////////////////// */
  --Masthead: rgba(6, 23, 38, 0.85);
  --MastheadHover: var(--Gray60);
  --MastheadBorder: var(--Gray50);
  /* /////////////////////////////////////////////////////////////// */
  --Footer: var(--Gray70);
  --FooterHover: var(--Gray60);
  --FooterBorder: var(--Gray50);
  /* /////////////////////////////////////////////////////////////// */
  --Duration: rgba(0, 0, 0, 0.85);
  --StatBox: var(--Gray50);
  /* /////////////////////////////////////////////////////////////// */
  --Tag: var(--Gray50);
  --TagHover: var(--Gray40);
  --TagText: var(--White);
  --TagFollowing: var(--White);
  --TagFollowingHover: var(--White);
  --TagFollowingText: var(--Black);
  --TagLive: var(--Red);
  --TagLiveHover: var(--RedAlt);
  --TagLiveText: var(--White);
  /* /////////////////////////////////////////////////////////////// */
  --InputText: var(--TextPrimary);
  --InputPlaceholder: var(--TextSecondary);
  /* /////////////////////////////////////////////////////////////// */
  --UI: var(--Primary);
  --UIText: var(--White);
  /* /////////////////////////////////////////////////////////////// */
  --Section: var(--Transparent);
  --SectionBorder: var(--Gray40);
  /* /////////////////////////////////////////////////////////////// */
  --Article: var(--Gray10);
  --ArticleHover: var(--White);
  /* /////////////////////////////////////////////////////////////// */
  --Newsletter: var(--Gray60);
  --NewsletterBorder: var(--Gray40);
  --PlaylistBorder: var(--Gray50);
  --PlaylistHover: var(--Gray60);
  --PlaylistItemHover: var(--Gray50);
  --Premium: var(--Gray60);
  --PremiumBorder: var(--Gray40); }

/* /////////////////////////////////////////////////////////////// */
/* /////////////////////////////////////////////////////////////// */
/* /////////////////////////////////////////////////////////////// */
/* /////////////////////////////////////////////////////////////// */
/* /////////////////////////////////////////////////////////////// */
/* same color as masthead */
.theme__dim .TagsNavLeft {
  background: linear-gradient(to right, #061726 40%, rgba(6, 23, 38, 0) 100%); }

.theme__dim .TagsNavRight {
  background: linear-gradient(to right, rgba(6, 23, 38, 0) 0%, #061726 60%); }

.theme__dim .CardsNavLeft .CardsBackground {
  background: linear-gradient(to right, #061726 0%, rgba(6, 23, 38, 0) 100%); }

.theme__dim .CardsNavRight .CardsBackground {
  background: linear-gradient(to right, rgba(6, 23, 38, 0) 0%, #061726 100%); }

.theme__dim input.ButtonSubmitDefault[type=submit] {
  background-color: #204ECF !important; }

.theme__dim .InputFieldDefault {
  border-color: #233B51 !important;
  background-color: #0F2B44 !important;
  color: #FFFFFF !important; }
  .theme__dim .InputFieldDefault:focus {
    border-color: #204ECF !important;
    outline-color: #204ECF !important; }

.theme__dim .ScrollNavLeft .ScrollNavBackgroundLarge {
  background: linear-gradient(to right, #061726 0%, rgba(6, 23, 38, 0) 100%); }

.theme__dim .ScrollNavRight .ScrollNavBackgroundLarge {
  background: linear-gradient(to right, rgba(6, 23, 38, 0) 0%, #061726 100%); }

.theme__dim .ScrollNavLeft .ScrollNavBackgroundSmall {
  background: linear-gradient(to right, #061726 40%, rgba(6, 23, 38, 0) 100%); }

.theme__dim .ScrollNavRight .ScrollNavBackgroundSmall {
  background: linear-gradient(to right, rgba(6, 23, 38, 0) 0%, #061726 60%); }

.theme__dim .PrivacyBox .PrivacyTable .ButtonPrivacy {
  border-color: var(--White); }

/* /////////////////////////////////////////////////////////////// */
:root .theme__light {
  /* /////////////////////////////////////////////////////////////// */
  --White: #ffffff;
  --Gray10: #f7f7f9;
  --Gray20: #ececec;
  --Gray30: #dbdbdb;
  --Gray40: #828282;
  --Gray50: #666666;
  --Gray60: #333333;
  --Gray70: #171819;
  --Gray80: #121212;
  --Black: #000000;
  --BlackAlt: #121212;
  /* /////////////////////////////////////////////////////////////// */
  --Primary: #287ced;
  --PrimaryAlt: #3399ff;
  --Gray: #b0b3b8;
  --GrayAlt: #babcbf;
  --Blue: #1a94fa;
  --BlueAlt: #41a5fc;
  --Orange: #ff3300;
  --OrangeAlt: #ff4e00;
  --Red: #e0203c;
  --RedAlt: #ee3048;
  --Green: #219150;
  --GreenAlt: #24af5f;
  --Purple: #4e39d1;
  --PurpleAlt: #5e48ed;
  --Aqua: #2ecff5;
  --AquaAlt: #54deff;
  --Yellow: #ffcc00;
  --YellowAlt: #ffde00;
  --Pink: #cc0383;
  --PinkAlt: #db088e;
  --Gold: #d4b665;
  --GoldAlt: #eacd80;
  --Brighteon: #1b2e5a;
  --BrighteonAlt: #213668;
  /* /////////////////////////////////////////////////////////////// */
  --Transparent: rgba(0, 0, 0, 0);
  --TransparentDark: rgba(0, 0, 0, 0.85);
  --TransparentLight: rgba(255, 255, 255, 0.85);
  --TransparentHover: rgba(0, 0, 0, 0.08);
  --Shadow: rgba(0, 0, 0, 0.4);
  /* /////////////////////////////////////////////////////////////// */
  --TextPrimary: var(--Gray80);
  --TextSecondary: var(--Gray40);
  --TextDisabled: var(--Gray40);
  --TextButton: var(--White);
  /* /////////////////////////////////////////////////////////////// */
  --Page: var(--White);
  --Icon: var(--Gray70);
  /* /////////////////////////////////////////////////////////////// */
  --ToolTip: var(--Gray30);
  --TextToolTip: var(--Gray40);
  /* /////////////////////////////////////////////////////////////// */
  --Track: var(--Gray20);
  --Thumb: var(--Gray30);
  --BodyTrack: var(--Gray20);
  --BodyThumb: var(--Gray30);
  /* /////////////////////////////////////////////////////////////// */
  --Input: var(--Gray10);
  --InputBorder: var(--Gray30);
  --InputText: var(--TextPrimary);
  --InputPlaceholder: var(--TextSecondary);
  --InputSelected: var(--Primary);
  /* /////////////////////////////////////////////////////////////// */
  --Privacy: var(--Gray60);
  --PrivacyBorder: var(--Gray50);
  /* /////////////////////////////////////////////////////////////// */
  --Search: var(--Gray10);
  --SearchBorder: var(--Gray30);
  /* /////////////////////////////////////////////////////////////// */
  --Helper: var(--White);
  --HelperBorder: var(--Gray20);
  /* /////////////////////////////////////////////////////////////// */
  --Menu: var(--White);
  --MenuHover: var(--Gray10);
  --MenuBorder: var(--Gray20);
  --Dropdown: var(--White);
  --DropdownHover: var(--Gray10);
  --DropdownBorder: var(--Gray10);
  --Modal: var(--White);
  --ModalHover: var(--Gray10);
  --ModalBorder: var(--Gray20);
  --ModalSection: var(--Gray20);
  --PopUp: var(--White);
  --PopUpHover: var(--Gray10);
  --PopUpBorder: var(--Gray20);
  --Notifications: var(--White);
  --NotificationsHover: var(--Gray10);
  --NotificationsBorder: var(--Gray20);
  --Button: var(--Primary);
  --ButtonHover: var(--PrimaryAlt);
  --ButtonBorder: var(--Gray20);
  /* /////////////////////////////////////////////////////////////// */
  --Masthead: rgba(255, 255, 255, 0.85);
  --MastheadHover: var(--Gray10);
  --MastheadBorder: var(--Gray20);
  /* /////////////////////////////////////////////////////////////// */
  --Footer: var(--White);
  --FooterHover: var(--Gray10);
  --FooterBorder: var(--Gray20);
  /* /////////////////////////////////////////////////////////////// */
  --Duration: rgba(0, 0, 0, 0.85);
  --StatBox: var(--Gray20);
  /* /////////////////////////////////////////////////////////////// */
  --Tag: var(--Gray20);
  --TagHover: var(--Gray30);
  --TagText: var(--Gray60);
  --TagFollowing: var(--Brighteon);
  --TagFollowingHover: var(--BrighteonAlt);
  --TagFollowingText: var(--White);
  --TagLive: var(--Red);
  --TagLiveHover: var(--RedAlt);
  --TagLiveText: var(--White);
  /* /////////////////////////////////////////////////////////////// */
  --InputText: var(--TextPrimary);
  --InputPlaceholder: var(--TextSecondary);
  /* /////////////////////////////////////////////////////////////// */
  --UI: var(--Primary);
  --UIText: var(--White);
  /* /////////////////////////////////////////////////////////////// */
  --Section: var(--Transparent);
  --SectionBorder: var(--Gray20);
  /* /////////////////////////////////////////////////////////////// */
  --Article: var(--Gray60);
  --ArticleHover: var(--Gray80);
  /* /////////////////////////////////////////////////////////////// */
  --Newsletter: var(--White);
  --NewsletterBorder: var(--Gray20);
  --PlaylistBorder: var(--Gray20);
  --PlaylistHover: var(--Gray10);
  --PlaylistItemHover: var(--Gray20);
  --Premium: var(--Gray10);
  --PremiumBorder: var(--Gray20); }

/* /////////////////////////////////////////////////////////////// */
/* /////////////////////////////////////////////////////////////// */
/* /////////////////////////////////////////////////////////////// */
/* /////////////////////////////////////////////////////////////// */
/* /////////////////////////////////////////////////////////////// */
/* same color as masthead */
.theme__light {
  /* /////////////////////////////////////////////////////////////// */ }
  .theme__light .TagsNavLeft {
    background: linear-gradient(to right, white 40%, rgba(255, 255, 255, 0) 100%); }
  .theme__light .TagsNavRight {
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, white 60%); }
  .theme__light .CardsNavLeft .CardsBackground {
    background: linear-gradient(to right, white 0%, rgba(255, 255, 255, 0) 100%); }
  .theme__light .CardsNavRight .CardsBackground {
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, white 100%); }
  .theme__light .AuthBody {
    background-color: var(--Gray10); }
  .theme__light .ButtonTransparent {
    background-color: var(--Transparent) !important;
    color: var(--Gray40) !important; }
  .theme__light .ButtonTransparent:hover {
    color: var(--Gray40) !important; }
  .theme__light .ButtonTransBorder {
    background-color: var(--Transparent) !important;
    border-color: var(--BorderAlt);
    color: var(--TextPrimary) !important; }
  .theme__light .ButtonTransBorder:hover {
    background-color: var(--Border) !important;
    color: var(--TextButton) !important;
    color: var(--Gray40) !important; }
  .theme__light .PrivacyNotice .ButtonTransBorder {
    background-color: var(--Transparent) !important;
    border-color: var(--TextPrimary) !important;
    color: var(--TextPrimary) !important; }
    .theme__light .PrivacyNotice .ButtonTransBorder:hover {
      color: var(--Gray40) !important;
      border-color: var(--Gray40) !important; }
  .theme__light .InputFieldDefault {
    border-color: #ececec !important;
    background-color: #ffffff !important;
    color: #121212 !important; }
  .theme__light .ScrollNavLeft .ScrollNavBackgroundLarge {
    background: linear-gradient(to right, white 0%, rgba(255, 255, 255, 0) 100%); }
  .theme__light .ScrollNavRight .ScrollNavBackgroundLarge {
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, white 100%); }
  .theme__light .ScrollNavLeft .ScrollNavBackgroundSmall {
    background: linear-gradient(to right, white 40%, rgba(255, 255, 255, 0) 100%); }
  .theme__light .ScrollNavRight .ScrollNavBackgroundSmall {
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, white 60%); }
  .theme__light .PrivacyBox .PrivacyTable .PrivacyNoticeHeadline {
    color: var(--White); }
  .theme__light .PrivacyBox .PrivacyTable .ButtonPrivacy {
    color: var(--White) !important;
    border-color: var(--White) !important; }

/* /////////////////////////////////////////////////////////////// */
:root .theme__night {
  /* /////////////////////////////////////////////////////////////// */
  --White: #ffffff;
  --Gray10: #b0b3b8;
  --Gray20: #4e4b68;
  --Gray30: #312d4d;
  --Gray40: #26233e;
  --Gray50: #1b192e;
  --Gray60: #100e1f;
  --Gray70: #090813;
  --Gray80: #070a0d;
  --Black: #000000;
  --BlackAlt: #070a0d;
  /* /////////////////////////////////////////////////////////////// */
  --Primary: #5e48ed;
  --PrimaryAlt: #7f6cfa;
  --Gray: #3b375d;
  --GrayAlt: #433f68;
  --Blue: #5E48ED;
  --BlueAlt: #31a5f4;
  --Orange: #ff3300;
  --OrangeAlt: #ff4e00;
  --Red: #e0203c;
  --RedAlt: #ee3048;
  --Green: #45bd62;
  --GreenAlt: #4bd66c;
  --Purple: #4e39d1;
  --PurpleAlt: #5e48ed;
  --Aqua: #2ecff5;
  --AquaAlt: #54deff;
  --Yellow: #ffcc00;
  --YellowAlt: #ffde00;
  --Pink: #cc0383;
  --PinkAlt: #db088e;
  --Gold: #d4b665;
  --GoldAlt: #eacd80;
  --Brighteon: #1b2e5a;
  --BrighteonAlt: #213668;
  /* /////////////////////////////////////////////////////////////// */
  --Transparent: rgba(0, 0, 0, 0);
  --TransparentDark: rgba(0, 0, 0, 0.85);
  --TransparentLight: rgba(255, 255, 255, 0.85);
  --TransparentHover: rgba(49, 45, 77, 0.7);
  --Shadow: rgba(0, 0, 0, 20);
  /* /////////////////////////////////////////////////////////////// */
  --TextPrimary: var(--White);
  --TextSecondary: var(--Gray10);
  --TextDisabled: var(--Gray40);
  --TextButton: var(--White);
  /* /////////////////////////////////////////////////////////////// */
  --Page: var(--Gray50);
  --Icon: var(--White);
  /* /////////////////////////////////////////////////////////////// */
  --ToolTip: var(--Gray40);
  --TextToolTip: var(--Gray10);
  /* /////////////////////////////////////////////////////////////// */
  --Track: var(--Gray80);
  --Thumb: var(--Gray30);
  --BodyTrack: var(--Gray80);
  --BodyThumb: var(--Gray30);
  /* /////////////////////////////////////////////////////////////// */
  --Input: var(--Gray30);
  --InputBorder: var(--Gray20);
  --InputText: var(--TextPrimary);
  --InputPlaceholder: var(--TextSecondary);
  --InputSelected: var(--Primary);
  /* /////////////////////////////////////////////////////////////// */
  --Privacy: var(--Gray60);
  --PrivacyBorder: var(--Gray50);
  /* /////////////////////////////////////////////////////////////// */
  --Search: var(--Gray30);
  --SearchBorder: var(--Gray40);
  /* /////////////////////////////////////////////////////////////// */
  --Helper: var(--Gray80);
  --HelperBorder: var(--Gray60);
  /* /////////////////////////////////////////////////////////////// */
  --Menu: var(--Gray40);
  --MenuHover: var(--Gray30);
  --MenuBorder: var(--Gray30);
  --Dropdown: var(--Gray40);
  --DropdownHover: var(--Gray30);
  --DropdownBorder: var(--Gray30);
  --Modal: var(--Gray40);
  --ModalHover: var(--Gray30);
  --ModalBorder: var(--Gray30);
  --ModalSection: var(--Gray50);
  --PopUp: var(--Gray40);
  --PopUpHover: var(--Gray30);
  --PopUpBorder: var(--Gray30);
  --Notifications: var(--Gray40);
  --NotificationsHover: var(--Gray30);
  --NotificationsBorder: var(--Gray30);
  --Button: var(--Primary);
  --ButtonHover: var(--PrimaryAlt);
  --ButtonBorder: var(--Gray40);
  /* /////////////////////////////////////////////////////////////// */
  --Masthead: rgba(27, 25, 46, 0.85);
  --MastheadHover: var(--Gray40);
  --MastheadBorder: var(--Gray40);
  /* /////////////////////////////////////////////////////////////// */
  --Footer: var(--Gray50);
  --FooterHover: var(--Gray40);
  --FooterBorder: var(--Gray40);
  /* /////////////////////////////////////////////////////////////// */
  --Duration: rgba(0, 0, 0, 0.85);
  --StatBox: var(--Gray60);
  /* /////////////////////////////////////////////////////////////// */
  --Tag: var(--Gray40);
  --TagHover: var(--Gray30);
  --TagText: var(--White);
  --TagFollowing: var(--White);
  --TagFollowingHover: var(--White);
  --TagFollowingText: var(--Black);
  --TagLive: var(--Red);
  --TagLiveHover: var(--RedAlt);
  --TagLiveText: var(--White);
  /* /////////////////////////////////////////////////////////////// */
  --InputText: var(--TextPrimary);
  --InputPlaceholder: var(--TextSecondary);
  /* /////////////////////////////////////////////////////////////// */
  --UI: var(--Primary);
  --UIText: var(--White);
  /* /////////////////////////////////////////////////////////////// */
  --Section: var(--Transparent);
  --SectionBorder: var(--Gray40);
  /* /////////////////////////////////////////////////////////////// */
  --Article: var(--Gray10);
  --ArticleHover: var(--White);
  /* /////////////////////////////////////////////////////////////// */
  --Newsletter: var(--Gray60);
  --NewsletterBorder: var(--Gray40);
  --PlaylistBorder: var(--Gray30);
  --PlaylistHover: var(--Gray40);
  --PlaylistItemHover: var(--Gray30);
  --Premium: var(--Gray60);
  --PremiumBorder: var(--Gray40); }

/* /////////////////////////////////////////////////////////////// */
/* /////////////////////////////////////////////////////////////// */
/* /////////////////////////////////////////////////////////////// */
/* /////////////////////////////////////////////////////////////// */
/* /////////////////////////////////////////////////////////////// */
/* same color as masthead */
.theme__night .TagsNavLeft {
  background: linear-gradient(to right, #1b192e 40%, rgba(27, 25, 46, 0) 100%); }

.theme__night .TagsNavRight {
  background: linear-gradient(to right, rgba(27, 25, 46, 0) 0%, #1b192e 60%); }

.theme__night .CardsNavLeft .CardsBackground {
  background: linear-gradient(to right, #1b192e 0%, rgba(27, 25, 46, 0) 100%); }

.theme__night .CardsNavRight .CardsBackground {
  background: linear-gradient(to right, rgba(27, 25, 46, 0) 0%, #1b192e 100%); }

.theme__night input.ButtonSubmitDefault[type=submit] {
  background-color: #5E48ED !important; }

.theme__night .InputFieldDefault {
  border-color: #4E4B68 !important;
  background-color: #312D4D !important;
  color: #FFFFFF !important; }
  .theme__night .InputFieldDefault:focus {
    border-color: #5E48ED !important;
    outline-color: #5E48ED !important; }

.theme__night .ScrollNavLeft .ScrollNavBackgroundLarge {
  background: linear-gradient(to right, #1b192e 0%, rgba(27, 25, 46, 0) 100%); }

.theme__night .ScrollNavRight .ScrollNavBackgroundLarge {
  background: linear-gradient(to right, rgba(27, 25, 46, 0) 0%, #1b192e 100%); }

.theme__night .ScrollNavLeft .ScrollNavBackgroundSmall {
  background: linear-gradient(to right, #1b192e 40%, rgba(27, 25, 46, 0) 100%); }

.theme__night .ScrollNavRight .ScrollNavBackgroundSmall {
  background: linear-gradient(to right, rgba(27, 25, 46, 0) 0%, #1b192e 60%); }

.theme__night .PrivacyBox .PrivacyTable .ButtonPrivacy {
  border-color: var(--White); }

/* /////////////////////////////////////////////////////////////// */
#PlaylistCreateButtons {
  border-top: solid 1px var(--ModalBorder); }

.ModalAddPlaylist .FormCheckbox {
  margin-bottom: 15px; }
  .ModalAddPlaylist .FormCheckbox label {
    padding-left: 20px; }
  .ModalAddPlaylist .FormCheckbox.add-to-playlist-item-checkbox {
    display: flex; }
    .ModalAddPlaylist .FormCheckbox.add-to-playlist-item-checkbox label.add-to-playlist-item-label {
      display: -webkit-box;
      -webkit-box-orient: vertical;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: normal;
      -webkit-line-clamp: 2; }

.ModalAddPlaylist #PlaylistCreateButtons {
  padding-top: 20px; }

.ModalAddPlaylist .PlaylistsContent {
  overflow-x: hidden;
  overflow-y: auto;
  max-height: 50vh;
  padding: 15px;
  margin-top: 15px; }

.ModalAddPlaylist .PlaylistsHeader {
  border-bottom: 1px solid var(--ModalBorder);
  padding-bottom: 15px; }
  .ModalAddPlaylist .PlaylistsHeader .AutoText {
    font-size: 18px;
    font-weight: 700; }

@media (min-width: 600px) {
  .ModalAddPlaylist {
    width: 400px; } }

@media (max-width: 599px) {
  .ModalAddPlaylist {
    width: 100%;
    height: 100%;
    max-height: 80%;
    top: unset !important;
    left: 0 !important;
    bottom: 0 !important;
    transform: none !important;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    padding: 30px !important;
    border-radius: 15px 15px 0 0 !important; }
    .ModalAddPlaylist .PlaylistsContent {
      overflow-x: hidden;
      overflow-y: auto;
      max-height: 60vh; } }
    @media (max-width: 599px) and (max-width: 400px) {
      .ModalAddPlaylist .PlaylistsContent {
        max-height: 55vh; } }

@media (max-width: 599px) {
    .ModalAddPlaylist #PlaylistCreateButtons {
      padding: 20px 0 0 0 !important; } }


