:root{
    --main-bg:#121212;
    --main-txt:#ffffff;
    --fnt-main:'Mulish';
    --bg-grey:#868686;
    --bg-popup:#171717;
    --border:#212121;
    --t-hover:#101010;
    --completed:#00BD10;
    --in-progress:#FF6923;
    --error:#FF0000;
    --agg:linear-gradient(90deg, #FF9F9F 0.41%, #F3EDB5 100%);
    --lgg:linear-gradient(90deg, #32CF0B 0%, #CAFFA0 105.56%);
    --org:#FF9F9F;
  }
  *, ::after, ::before, ::backdrop, ::file-selector-button {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    border: 0 solid;
  }
  html, body {
    height: 100%;
    margin: 0;
    -webkit-text-size-adjust: 100%;
  }
  ul,
  ol {
    list-style: none;
  }
  html{
    /* scrollbar-gutter: stable; */
    scrollbar-width: thin;
    scrollbar-color: var(--border) var(--main-bg);
  }
  html::-webkit-scrollbar {
    width: 8px; 
    height: 8px; 
  }
  html::-webkit-scrollbar-track {
    background: var(--main-bg);
  }
  html::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 4px; 
  }
  html:focus-within {
    scroll-behavior: smooth;
  }
  body { 
    font-family: var(--fnt-main), sans-serif;
    text-rendering: optimizeSpeed;
    line-height: 1.5;
    letter-spacing: 0.15px;
    max-width: 1920px;
    margin: 0 auto;
    background: var(--main-bg);
    color: var(--main-txt);
    overflow: hidden;
  }
  a, a:hover {
    color: inherit;
    text-decoration: none;
  }
  a:not([class]) {
    text-decoration-skip-ink: auto;
  }
  img, picture  {
    max-width: 100%;
    height: auto;
    display: block;
  }
  input,
  button,
  textarea,
  select {
    font: inherit;
  }
  textarea:focus, input:focus{
    outline: none;
  }
  ul, ol {
    padding-left: 1rem;
  }
  button {
    cursor: pointer;
    border: 0;
    background: transparent;
    color: var(--main-txt);
  }
  textarea{
    resize: none;
  }
  .pointer{
    cursor: pointer !important;
  }
  label {
    display: inline-block;
  }
  .flex{
    display: flex;
  }
  .items-center{
    align-items: center;
  }
  .justify-between{
    justify-content: space-between;
  }
  .flex-center{
    justify-content: center;
  }
  .flex-end{
    justify-content: flex-end;
  }
  .flex-col{
    flex-direction: column;
  }
  .flex-grow{
    flex-grow: 1;
  }
  .flex-shrink{
    flex-shrink: 0;
  }
  .items-end{
    align-items: flex-end;
  }
  .my-16{
    margin-top: 16px;
    margin-bottom: 16px;
  }
  .mx-auto{
    margin-left: auto;
    margin-right: auto;
  }
  .ml-auto{
    margin-left: auto;
  }
  .ml-14{
    margin-left: 14px;
  }
  .mr-auto{
    margin-right: auto;
  }
  .mb-27{
    margin-bottom: 27px;
  }
  .relative{
    position: relative;
  }
  .absolute{
    position: absolute;
  }
  .inset-0{
    inset: 0;
  }
  .w-100{
    width: 100%;
  }
  .h-100{
    height: 100%;
  }
  .transparent{
    background:transparent;
  }
  .overflow-hidden{
    overflow: hidden;
  }
  .gap-6{
    gap: 6px !important;
  }
  .gap-8{
    gap: 8px;
  }
  .gap-10{
    gap: 10px;
  }
  .gap-18{
    gap: 18px;
  }
  .gap-20{
    gap: 20px;
  }
  .gap-29{
    gap: 29px;
  }
  .gap-40{
    gap: 40px;
  }
  .mr-10{
    margin-right: 10px;
  }
  .mr-4{
    margin-right: 4px;
  }
  .ml-8{
    margin-left: 8px;
  }
  .ml-10{
    margin-left: 10px;
  }
  .mt-14{
    margin-top:14px;
  }
  .mt-26{
    margin-top: 26px;
  }
  .p-0{
    padding: 0 !important;
  }
  .p-20{
    padding: 20px;
  }
  .pl-12{
    padding-left: 12px !important;
  }
  .pr-12{
    padding-right: 12px !important;
  }
  .pr-24{
    padding-right: 24px !important;
  }
  .pt-0{
    padding-top: 0 !important;
  }
  .pt-6{
    padding-top: 6px !important;
  }
  .grey{
    color: var(--bg-grey);
  }
  .white{
    color: var(--main-txt);
  }
  .error{
    color: var(--error);
  }
  .truncate{
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .none{
    display: none;
  }
  .hidden{
    visibility: hidden;
  }
  /*=fonts=*/
  .bold{
    font-weight: bold;
  }
  .fs-10{
    font-size: 10px;
  }
  .fs-12{
    font-size: 12px;
  }
  .fs-14{
    font-size: 14px;
  }
  .fs-16{
    font-size: 16px;
  }
  .fs-18{
    font-size: 18px;
  }
  .fs-24{
    font-size: 24px;
  }
  .f-600{
    font-weight: 600;
  }
  h2{
    font-size: 28px;
    font-weight: bold;
  }
  .center{
    text-align: center;
  }
  .ti-hi,.ti-hv:hover{
    background: linear-gradient(90deg, #FF9F9F 0.41%, #F3EDB5 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  .notify{
    border: 0.5px solid rgba(189, 19, 59, 0.60);
    background: rgba(189, 19, 59, 0.30);
  }
  /*=ico=*/
  .ico-8{
    width: 8px;
  }
  .ico-10{
    width: 10px;
  }
  .ico-12{
    width: 12px;
  }
  .ico-14{
    width: 14px ;
  }
  .ico-16{
    width: 16px ;
  }
  .ico-18{
    width: 18px;
  }
  .ico-24{
    width: 24px;
  }
  .bgbr{
    background: var(--bg-popup);
    border: 1px solid var(--border);
  }
  .b-4{
    border-radius: 4px !important;
  }
  .b-8{
    border-radius: 8px !important;
  }
  /*=login=*/
  .login-container{
    min-height:100vh;
    min-height:100dvh;
    justify-content: center;
  }
  .login-box{
    width: 375px;
    gap: 12px;
    /* margin-bottom: 100px; */
  }
  .login-box .logo{
    margin-bottom:48px;
    min-width: 200px;
    max-width: 200px;
  }
  .login-box form{
    margin-bottom: 28px;
  }
  .apple{
    padding: 12px 40px;
    width: 100%;
  }
  .divider-line {
    flex-grow: 1;
    border-bottom: 1px solid var(--border);
  }
  .form-input{
    padding: 12px 16px;
    width: 100%;
  }
  /* .form-input:focus{
    border: 1px solid #FF9F9F;
    background: linear-gradient(90deg, rgba(255, 159, 159, 0.30) 0.41%, rgba(243, 237, 181, 0.30) 100%);
  } */
  .form-input::placeholder{
    color: #595959;
  }
  .login-btn{
    padding: 8px 20px;
    /* background: var(--agg, #FF9F9F);
    color: var(--main-bg); */
    margin-top: 28px;
    width: 108px;
    font-weight: 500;
  }
  .login-footer{
    bottom: calc(30px + env(safe-area-inset-bottom, 0px));
    left: 0;
    right: 0;
  }
  /*=style=*/
  header{
    padding: 32px 36px;
  }
  .logo,.search,.nav{
    flex-grow: 1;
    width: 33%;
    height: 100%;
  }
  .logo a,.logo img{
    max-width: 89px;
  }
  .searchbar, .search-results{
    width: 440px;
    max-width: 440px;
    background: var(--bg-popup);
    border:1px solid var(--border);
    border-radius:8px;
  }
  .searchbar input{
    caret-color: var(--bg-grey);
    color: var(--main-txt);
    padding: 8px 12px;
  }
  .searchbar button{
    padding: 8px 12px;
  }
  .search-results{
    top: 100%;
    left:0;
    right: 0;
    background: var(--main-bg);
    margin-top: 10px;
    padding:6px 0px;
    z-index: 10;
  }
  .search-results-content{
    max-height: calc(100vh - 250px);
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--border) var(--main-bg);
  }
  .search-results-item, .share-sx-item{
    padding: 5px 8px;
  }
  .search-results-item:hover, .share-sx-item:hover{
    background: var(--bg-popup);
  }
  .srsg-img{
    border-radius: 2px;
    overflow: hidden;
  }
  .head-btn{
    padding: 6px;
    border-radius: 8px;
    border: 1px solid transparent;
    transition: all 0.1s cubic-bezier(.6, 0, .6, 1);
  }
  .head-btn:hover, .head-btn.active{
    border: 1px solid #FF9F9F;
    background: linear-gradient(90deg, rgba(255, 159, 159, 0.30) 0.41%, rgba(243, 237, 181, 0.30) 100%);
  }
  .profile, .sm-img{
    height: 34px !important;
    width: 34px !important;
  }
  .profile-dd{
    border-radius: 34px;
    position: relative;
    transition: all 0.1s cubic-bezier(.6, 0, .6, 1);
  }
  .profile-dd img{
    overflow: hidden;
    border-radius: 34px;
  }
  .profile-dd:hover:after{
    content: '';
    position: absolute;
    inset: -2px;
    border: 2px solid color-mix(in srgb, #FF9F9F 90%, transparent);
    border-radius: 50%;
    pointer-events: none;
  }
  .profile .dropdown-menu{
    right: 0;
  }
  main{
    padding: 0 36px;
  }
  .notification{
    top: 100%;
    right: 0;
    z-index: 10;
    margin-top: 10px;
    background: var(--main-bg);
    border: 1px solid var(--border);
    max-height: calc(100vh - 250px);
    min-width: 489px;
    max-width: 489px;
    display: none;
  }
  .notification[opened]{
    display: flex;
  }
  .notification-header{
    margin-bottom: 18px;
    padding: 26px 29px 0;
  }
  .notification-item{
    padding: 10px;
    margin-top:16px;
    border: 1px solid var(--border);
    background: var(--bg-popup);
  }
  .notification-item:first-child{
    margin-top: 0;
  }
  .notification-item-header{
    margin-bottom: 8px;
    border-bottom: 1px solid var(--border);
    padding-bottom: 8px;
  }
  .notification-item-img{
    width: 17px;
    height: 17px;
    border-radius: 4px;
    overflow: hidden;
  }
  .notification-item-content-img{
    width: 26px;
    height: 26px;
    border-radius: 50%;
    overflow: hidden;
  }
  .notification-content,
  .notification-list{
    min-height: 0;
  }
  .notification-list{
    padding: 0 20px 26px 29px;
    overflow-y: auto;
    scrollbar-gutter: stable;
    scrollbar-width: thin;
    scrollbar-color: var(--border) var(--main-bg);
  }
  .notification-item[data-label="unread"]{
    &::before{
      content: '';
      position: absolute;
      top: 50%;
      left: -18px;
      transform: translateY(-50%);
      width: 8px;
      height: 8px;
      border-radius: 50%;
      border: 1px solid rgba(189, 19, 59, 0.60);
      background: rgba(189, 19, 59, 0.30);
    }
  }
  .recent-list{
    display: flex;
    flex-wrap: nowrap;
    overflow: hidden;
    gap: 20px;
  }
  .recent-item{
    background: var(--bg-popup);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 10px;
    width: 346px;
    cursor: pointer;
    transition: all 0.1s ease;
  }
  .recent-item:hover{
    background: color-mix(in srgb, var(--bg-popup) 30%, transparent);
    border: 1px solid color-mix(in srgb, var(--border) 60%, transparent);
  }
  .recent-item-img{
    width: 100px;
    height: 100px;
    border-radius: 8px;
    overflow: hidden;
  }
  .recent-item-img img, .akp-cmt-img,.playlist-thumbnail-img img, .t-user-img img, .player-img-wrapper img, .notification-item-img img, .notification-item-content-img img, .upload-thumbnail-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .label{
    padding: 4px;
    border-radius: 6px;
    font-size: 10px;
  }
  .label-dr .dropdown-menu, .player-settings .dropdown-menu{
    left: 0;
  }
  .label[data-label="completed"]{
    background: color-mix(in srgb, var(--completed) 30%, transparent);
    border: .5px solid color-mix(in srgb, var(--completed) 60%, transparent);
  }
  .label[data-label="in-progress"]{
    background: color-mix(in srgb, var(--in-progress) 30%, transparent);
    border: .5px solid color-mix(in srgb, var(--in-progress) 60%, transparent);
  }
  .recent-user{
    gap: 6px;
    padding-top: 4px;
    flex-shrink: 0;
  }
  .recent-user-img{
    width: 18px;
    height: 18px;
    border-radius: 50%;
    overflow: hidden;
  }
  .upload,.star,.trash,.copy,.menu:hover,.tstarbtn:hover,.comment-item:hover .cmt-pl{
    background: var(--bg-popup);
    border: 1px solid var(--border);
    padding: 9px 10px;
    border-radius: 8px;
    gap: 10px;
    cursor: pointer;
  }
  .upload:hover,.star:hover,.star.active,.trash:hover,.copy:hover,.meta-tab.active,.menu-pl:hover,.menu-pl.active,.version:hover,.version.active,.flx-ti, .cmt-pl.active,.high:hover,.p-btn:hover,.p-btn.active{
    border: 1px solid #FF9F9F !important;
    background: linear-gradient(90deg, rgba(255, 159, 159, 0.30) 0.41%, rgba(243, 237, 181, 0.30) 100%) !important;
  }
  .project-list{
    width: 100%;
    /* display: grid; */
    box-sizing: border-box;
    font-size: 14px;
    table-layout: auto;
  }
  .project-list thead{
    position: sticky;
    z-index: 2;
    display: grid;
    width: 100%;
    top: 0;
  }
  .project-list tbody{
    min-width: 0 !important;
  }
  .project-list thead tr, .project-list tbody tr{
    display: flex;
    flex-direction: row;
    min-height: 70px;
    background: var(--bg-popup);
    align-items: center;
    width: 100%;
    border-bottom: 1px solid var(--border);
  }
  .project-list thead tr{
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
  }
  .project-list tbody tr{
    background: #141313;
    border-bottom: 2px solid var(--bg-popup);
    cursor: pointer;
  }
  .project-list tbody tr:hover, .project-list tbody tr.active-hover, .project-list tbody tr:hover .feature-img-wrapper {
    background: var(--t-hover) !important;
    transition: all 0.1s cubic-bezier(.6, 0, .6, 1);
  }
  .project-list thead tr th, .project-list tbody tr td{
    text-align: left;
  }
  .tname{
    flex: 1 1 auto;
    min-width: 0;
  }
  .tname > .truncate{
    flex: 1 1 0;
    min-width: 0;
  }
  .tstar{
    flex: 0 0 147px;
  }
  .tstatus{
    flex: 0 0 220px;
  }
  .tby{
    flex: 0 0 180px;
  }
  .tmodified{
    flex: 0 0 120px;
  }
  .tshare{
    flex: 0 0 100px;
  }
  .tmenu{
    flex: 0 0 100px;
  }
  .checkbg{
    flex: 0 0 47px !important;
    padding: 0 20px 0;
    min-height: inherit;
    display: flex;
    align-items: center;
  }
  .checkbox, .m-checkbox{
    accent-color: var(--main-txt);
    border-radius: 6px;
    height: 22px;
    width: 22px;
    border: 1px solid var(--border);
    background-color: var(--bg-popup);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    -webkit-print-color-adjust: exact;
    color-adjust: exact;
    cursor: pointer;
  }
  .checkbox:checked {
    background-color: var(--main-txt) !important;
    border-color: var(--main-txt) !important;
  }
  .checkbox:checked[type=checkbox] {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 21 20'%3e%3cpath fill='none' stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M6 10l3 3l6-6'/%3e%3c/svg%3e") !important;
  }
  .tstarbtn, .menu, .menu-pl, .cmt-pl{
    padding: 9px 10px;
    border:1px solid transparent;
    border-radius: 8px;
  }
  .menu-pl, .ply-item-container .menu, .noti-btn{
    padding: 6px !important;
  }
  .t-user-img{
    width: 24px;
    height: 24px;
    border-radius: 50%;
    overflow: hidden;
  }
  .feature-img{
    width: 44px;
    height: 44px;
    border-radius: 4px;
    overflow: hidden;
  }
  .play-hover{
    background-color: color-mix(in srgb, var(--bg-popup) 80%, transparent);
    display: none;
    border-radius: 4px;
  }
  .project-list tbody tr:hover .play-hover, .project-list tbody tr.active-hover .play-hover{
    display: flex;
  }
  .feature-img-wrapper[data-label="playlist"]{
    position: relative;
    padding-top: 6px;
  }
  .feature-img-wrapper[data-label="playlist"]::after, .feature-img-wrapper[data-label="playlist"]::before{
    content: '';
    position: absolute;
    top: 3px;
    background: var(--bg-grey);
    width: 26px;
    height: 1px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
  }
  .feature-img-wrapper[data-label="playlist"]::before{
    width: 16px;
    top: 0px;
  }
  .feature-img-wrapper[data-label="playlist"] .play-hover{
    top: 6px;
  }
  /*=dropdown=*/
  .dropdown-menu{
    background: var(--main-bg);
    border: 1px solid var(--border);
    border-radius: 8px;
    position: absolute;
    min-width: 170px;
    right: 20px;
    z-index: 1;
    display: none;
    margin-top: 10px;
    padding: 7px 0;
    transition: all 0.1s ease-in-out;
    z-index: 10;
  }
  .dropdown-menu.drop-down {
    top: 100%;
    bottom: auto;
  }
  .dropdown-menu.drop-up {
    bottom: 100%;
    top: auto;
  }
  .dropdown-menu.active{
    display: flex;
    flex-direction: column;
  }
  .dropdown-item{
    padding: 11px 14px;
    cursor: pointer;
    width: 100%;
    text-align: left;
  }
  .dropdown-item:hover{
    background: var(--bg-popup);
  }
  .playlist-container{
    display: grid;
    grid-template-columns: 70fr 30fr;
    column-gap: 15px;
    width: 100%;
    margin: 0 auto;
  }
  .playlist-left{
    min-width: 0;
  }
  .aka-player{
    background: var(--bg-popup);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 15px;
    min-height: 140px;
    max-height: 156px;
  }
  .aka-player-header{
    margin-bottom: 8px;
  }
  .aka-p-thumb{
    width: 42px;
    height: 42px;
    border-radius: 8px;
    overflow: hidden;
  }
  .aka-p-thumb:hover .play-hover, .aka-p-thumb.active .play-hover{
    display: flex;
  }
  .waved-container{
    padding-top: 19px;
    margin-bottom: 7px;
  }
  .aka-p-timescale{
    top: 0;
    left: -1.4%;
    background: url("media/timescale-bg.svg");
    background-repeat: no-repeat;
    width: 27px;
    height: 18.5px;
    font-size: 10px;
    text-align: center;
    background-size: cover;
    cursor: move;
    cursor: grab;
    cursor: -moz-grab;
    cursor: -webkit-grab;
  }
  .akp-cmt{
    width:14px;
    height: 14px;
    border-radius: 50%;
    overflow: hidden;
    position: absolute;
    top:0;
    left:0;
  }
  .akap-cmts{
    margin-left: -5px;
    height: 15px;
  }
  .read{
    border: .5px solid var(--main-txt);
  }
  .unread{
    border: .5px solid var(--org); 
  }
  .ply-chb{
    flex: 0 0 22px !important;
  }
  .ply-list-table{
    width: 100%;
    box-sizing: border-box;
    padding-left: 42px;
  }
  .ply-list-body{
    min-width: 0 !important;
    gap: 14px;
  }
  .ply-list-row{
    display: flex;
    flex-direction: column;
    min-width: 0;
    background: var(--bg-popup);
    border: 1px solid var(--border);
    border-radius: 8px;
    cursor: pointer;
  }
  .ply-list-row .ply-item-container{
    flex-direction: row;
    min-height: 70px;
    min-width: 0;
    align-items: center;
    width: 100%;
    border-radius: 8px;
  }
  .ply-list-row .ply-item-container:hover, .version-item:hover{
    background: var(--t-hover);
  }
  .plychkbx{
    left: -42px;
  }
  .version{
    padding: 0 4px;
    height: 22px;
    border-radius: 6px;
    font-size: 10px;
    background: var(--bg-popup);
    border: 1px solid var(--border);
    gap: 4px;
  }
  .playlist-right{
    background: var(--bg-popup);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 15px;
    overflow: hidden;
    max-height: calc(100vh - 110px);
  }
  .playlist-thumbnail-img{
    width: 100%;
    height: 409px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 28px;
  }
  .p-img{
    width: 30px;
    height: 30px;
  }
  .ply-info{
    position: absolute;
    top: 0;
    right: 0;
    padding: 2px 8px;
    min-width: 115px;
    text-align: center;
    border-radius: 0 8px;
    background: var(--border);
  }
  .comment-list-container,.playlist-list-container{
    overflow-y: auto;
    max-height: calc(100vh - 252px);
    margin-right: -14px;
    padding-bottom: 1px;
    scrollbar-width: thin;
    scrollbar-gutter: stable;
  }
  .playlist-list-container{
    height: calc(100vh - 348px);
  }
  .comment-item{
    margin-top: 16px;
    margin-bottom: 8px;
  }
  .comment-item:first-child{
    margin-top: 0;
  }
  .comment-item:last-child{
    margin-bottom: 0;
  }
  .comment-item::after{
    content: '';
    position: absolute;
    top: calc(100% + 8px);
    left: 15px;
    width: calc(100% - 30px);
    height: 1px;
    background: var(--border);
  }
  .comment-item:last-child::after{
    display: none;
  }
  .add-comment{
    padding: 10px 8px;
    margin-bottom: 8px;
    background: #141414 !important;
  }
  .add-comment textarea, .comment-reply-textarea textarea{
    max-height: 80px;
    color: var(--main-txt);
    field-sizing: content;
  }
  .comment-reply-textarea{
    padding: 10px;
  }
  .flx-ti{
    padding: 7px 10px;
    border-radius: 4px;
  }
  .comment-item{
    padding: 10px;
  }
  .c-img{
    width: 22px;
    height: 22px;
  }
  .cmt-pl{
    padding:5px !important;
  }
  .comment-item-reply{
    margin-left: 30px;
  }
  .reply-btn::before {
    content: '';
    position: absolute;
    left: -30px;
    right: 0;
    display: block;
    width: 29px;
    height: 1px;
    background: var(--bg-grey);
  }
  .comment-item-reply-reply{
    margin-top: 6px;
  }
  .cmnt-rely{
    border-radius: 50%;
    top: -10px;
    right: -10px;
    font-size: 10px;
    padding: 0.5px 2px;
    min-width: 18px;
    text-align: center;
  }
  .versions{
    display: none !important;
  }
  .ply-list-row[opened] {
    .ply-item-container{
      border-radius: 8px 8px 0 0;
    }
    .version-item:last-child{
      border-radius: 0 0 8px 8px;
    }
    .versions{
      border-top: 1px solid var(--border);
      display: flex !important;
      flex-basis: 100%;
    }
    .upload-version{
      padding: 10px 14px;
    }
    .version-item{
      width: 100%;
      min-height: 51px;
    }
  }
  .pldb{
    min-width: 300px;
    max-width: 300px;
  }
  .pldb-img{
    width: 18px;
    height: 18px;
    border-radius: 2px;
  }
  .playlist-edit input, .playlist-edit textarea{
    background: #141414 !important;
    padding: 8px 12px;
    min-height: 40px;
  }
  .upload-thumbnail{
    margin-block: 29px;
  }
  .upload-thumbnail-img{
    width: 197px;
    height: 197px;
    border-radius: 8px;
    overflow: hidden;
  }
  /*=modal=*/
  body.modal-open{
    overflow: hidden;
  }
  .modal{
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.6);
    overflow-y: auto;
    padding: 30px; 
  }
  .meta .modal-dialog{
    max-width: 976px;
  }
  .meta .modal-title{
    font-size: 18px;
  }
  .modal.show{
    display: flex;
  }
  .mply .modal-dialog{
    max-width: 734px;
    min-height: 466px;
    max-height: 466px;
  }
  .mply .modal-content{
    min-height: 466px;
    max-height: 466px;
  }
  .mply .share-table thead tr{
    min-height: 51px !important;
  }
  .modal-dialog{
    width: 100%;
    display: flex;
    align-items: center;
    max-width: 480px;
    margin: auto;
    min-height: 690px;
  }
  .modal-content{
    background: var(--main-bg);
    border: 1px solid var(--border);
    border-radius: 18px;
    min-height: 690px;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    width: 100%;
  }
  .modal-header,
  .modal-body,
  .modal-footer,
  .share-header{
    padding: 16px 20px;
  }
  .modal-header{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
  }
  .modal-footer{
    display: flex;
    justify-content: flex-end;
    border-top: 1px solid var(--border);
  }
  .modal-title{
    font-size: 16px;
    font-weight: 700;
  }
  .btn-close{
    padding: 8px;
  }
  .save-btn{
    padding: 4px 8px;
  }
  .meta-body{
    display: grid;
    grid-template-columns: 170px 1fr;
  
    padding: 0;
    flex: 1;
    overflow: hidden;
  }
  .meta-sidebar{
    border-right: 1px solid var(--border);
    padding: 20px;
  
    display: flex;
    flex-direction: column;
    gap: 8px;
  
    flex-shrink: 0;
  }
  .meta-tab{
    background: transparent;
    border: none;
    text-align: left;
    padding: 10px;
    cursor: pointer;
    border-radius: 6px;
    border:1px solid transparent;
    width: fit-content;
  }
  .meta-tab.active{
    background: var(--btn-bg);
  }
  .meta-content{
    padding: 20px;
    overflow-y: auto;
    min-height: 0;
    scrollbar-gutter: stable;
    scrollbar-width: thin;
    scrollbar-color: var(--border) var(--main-bg);
  }
  .tab-pane{
    display: none;
  }
  .tab-pane.active{
    display: block;
  }
  .meta-form {
    margin-right: 200px;
    margin-left:20px;
  }
  .meta-form .input, .meta-form .tag-input{
    background: #141414 !important;
    padding: 6px 8px;
    min-height: 40px;
  }
  .tags-li{
    padding: 7px;
    background: #242426;
    border-radius: 8px;
  }
  .meta-item{
    min-height: 48px !important;
    max-height: 48px !important;
  }
  .meta-content .ply-list-body{
    gap: 10px !important;
  }
  .meta-content .tmenu{
    flex:0 0 50px;
  }
  .meta-lyrics{
    height:calc(100% - 60px);
  }
  .Uploder-progressbar-wrapper{
    width: 100%;
    min-width: 84px;
    height: 4px;
    background: var(--border);
    border-radius: 5px;
  }
  .Uploder-progressbar,.player-progress-bar,.player-volume-bar-bar{
    height: 100%;
    background: var(--agg);
    border-radius: 5px;
  }
  /*=player=*/
  .player{
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99999;
    width: 100vw;
    height: 88px;
    background: #1A1A1A;
    padding: 10px 30px;
  }
  .player-info{
    width: 250px;
    max-width: 250px;
  }
  .player-left{
    flex: 1 1 80%;
    min-width: 0;
  }
  .player-right{
    flex: 1 1 15%;
    min-width: 0;
  }
  .player-img-wrapper{
    width: 48px;
    height: 48px;
    border-radius: 8px;
    overflow: hidden;
  }
  .player-progress{
    flex: 1 1 0;
    min-width: 0;
  }
  .player-progress-wrapper{
    width: 100%;
    flex: 1 1 0;
    min-width: 0;
    height: 4px;
    background: var(--border);
    border-radius: 5px;
  }
  .player-volume-wrapper{
    width: 116px;
  }
  .player-volume-bar{
    width: 100%;
    height: 4px;
    background: var(--border);
    border-radius: 5px;
  }
  .player-control-btn:hover{
    transform: scale(1.15);
    transition: all 0.1s ease-in-out;
  }
  .s-img{
    width: 20px;
    height: 20px;
  }
  .share-input{
    padding: 5px 8px;
  }
  .share-sx{
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--main-bg);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 10px 0;
    z-index: 1000;
    margin-top: 10px;
    max-height: 250px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--border) var(--main-bg);
  }
  .link-btn{
    padding:12px 14px;
  }
  .share-list tr{
    padding: 10px 0 10px 24px;
  }
  .m-checkbox{
    width: 28px;
    height: 28px;
  }
  .m-checkbox:checked {
    background-color: rgba(0, 189, 16, 0.31) !important;
    border-color: var(--completed) !important;
  }
  .m-checkbox:checked[type=checkbox] {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 21 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M6 10l3 3l6-6'/%3e%3c/svg%3e") !important;
  }
  .share-list tbody tr{
    min-height: 63px;
  }
  .p-btn, .share-list tbody tr td .copy{
    padding:7px;
  }
  .p-btn{
    border: 1px solid transparent;
    border-radius: 8px;
  }
  .stems-list .playlist-list-container{
    height: inherit;
  }
  /* share modal: fixed thead, scrollable tbody */
  #shareModal .share-header,
  #mplaylistModal .share-header{
    flex-shrink: 0;
  }
  #shareModal .modal-body,
  #mplaylistModal .modal-body{
    flex: 1;
    min-height: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }
  #shareModal .share-head,
  #shareModal .modal-body > .share-list,
  #mplaylistModal .share-head{
    flex-shrink: 0;
  }
  #shareModal .share-table-wrap,
  #mplaylistModal .share-table-wrap{
    flex: 1;
    min-height: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }
  #shareModal .share-table,
  #mplaylistModal .share-table{
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 0;
    overflow: hidden;
  }
  #shareModal .share-table thead,
  #mplaylistModal .share-table thead{
    display: block;
    flex-shrink: 0;
    position: static;
  }
  #shareModal .share-table tbody,
  #mplaylistModal .share-table tbody{
    display: block;
    overflow-y: auto;
    flex: 1;
    min-height: 0;
    scrollbar-width: thin;
    scrollbar-color: var(--border) var(--main-bg);
  }
  #shareModal .share-table tr, #mplaylistModal .share-table tr{
    padding: 10px 0 10px 24px;
  }
  #shareModal .share-table tbody tr, #mplaylistModal .share-table tbody tr{
    min-height: 63px;
  }
  #shareModal .share-table tbody tr td .copy{
    padding: 7px;
  }
  /*=like=*/
  .tversion{
    flex: 0 0 240px;
  }
  .takap{
    flex: 0 0 300px;
  }
  .takap > .truncate{
    flex: 1 1 0;
    min-width: 0;
  }
  .tvrD{
    flex: 0 0 300px;
  }
  .pg-hd-btn{
    padding: 3px 6px;
  }
  /*=inbox=*/
  .inbox-main,
  .like-main,
  .playlist-main{
    height: calc(100vh - 110px);
  }
  .inbox-main .inbox-container,
  .inbox-main .inbox-list,
  .inbox-main .inbox-list-table,
  .inbox-main .inbox-table,
  .like-main .like-container,
  .like-main .like-list,
  .like-main .ply-list-table,
  .like-main .ply-list-body{
    min-height: 0;
  }
  .inbox-table thead{
    display: block;
    position: static;
  }
  .inbox-table tbody{
    display: block;
    overflow-y: auto;
    flex: 1;
    scrollbar-width: thin;
    scrollbar-color: var(--border) var(--main-bg);
  }
  .like-main .like-list{
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--border) var(--main-bg);
  }
  .playlist-main .playlist-container,
  .playlist-main .playlist-left{
    min-height: 0;
  }
  .playlist-main .playlist-left .playlist-list-container,
  .playlist-main .playlist-left .ply-list-table,
  .playlist-main .playlist-left .ply-list-body{
    min-height: 0;
  }
  .playlist-main .playlist-left .playlist-list-container{
    overflow-y: auto;
    height: auto;
    max-height: none;
    margin-right: 0;
    padding-right: 1px;
    scrollbar-gutter: auto;
  }
  .help-content{
    display: grid;
    grid-template-columns: 250px 1fr;
    column-gap: 15px;
  }
  .help-content .meta-sidebar{
    height: calc(100vh - 252px);
    gap: 32px;
  }
  .help-content-item{
    margin-right:30%;
    padding-right: 30px;
    margin-left:35px;
    padding-top: 20px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--border) var(--main-bg);
    max-height: calc(100vh - 252px);
  }
  .uploader{
    position: fixed;
    bottom: 100px;
    left: auto;
    right: 36px;
    z-index: 99999;
    width: 400px;
    padding: 24px 0 24px 18px;
    max-height: 440px;
  }
  .min-btn{
    right: 10px;
    top: 10px;
  }
  .min-btn img{
    transform: rotate(90deg);
  }
  .uploader-content{
    max-height: 400px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--border) var(--main-bg);
    padding-right: 18px;
  }
  .uploader-item{
    margin-bottom:17px;
    &:last-child{
      margin-bottom:0;
    }
  }
  .uploader-progress{
    margin-top:11px;
    align-items: flex-start;
  }
  .uploader-progress-wrapper{
    width: 100%;
    height: 3px;
    background: var(--border);
    border-radius: 5px;
  }
  .uploader-progress-bar{
    height: 100%;
    background: var(--agg);
    border-radius: 5px;
  }
  .uploader-progress-wrapper[data-label="completed"] .uploader-progress-bar{
    background: var(--lgg) !important;
  }
  .d-feed{
    position: fixed;
    bottom: 120px;
    left: 36px;
    z-index: 99999;
    width: 266px;
    padding: 10px 18px;
    background: var(--bg-popup);
    border-top:8px solid #FF9F9F;
    animation: d-feed-animation .2s ease-in;
  }
  @keyframes d-feed-animation {
    0% {
      transform: translateY(100%);
      opacity: 0;
    }
    35% {
      opacity: 0;
    }
    100% {
      transform: translateY(0);
      opacity: 1;
    }
  }
  #bgCanvas{
    position:fixed;
    inset:0;
    width:100%;
    height:100%;
    pointer-events:none;
    z-index:18;
  }
  /*=setting=*/
  .setting-content{
    display: grid;
    grid-template-columns: 520px 1fr;
    grid-template-rows: 154px 1fr; 
    column-gap: 34px;
    row-gap: 34px;
    padding: 32px 36px;
  }
  .setting-item{
    grid-column: 1;
    grid-row: 1 / span 2;
    border:1px solid var(--border);
    border-radius: 18px;
    padding: 20px;
  }
  .cp-set{
    grid-column: 2;
    grid-row: 1;
    border:1px solid var(--border);
    border-radius: 18px;
    padding: 20px;
  }
  .plan-set{
    grid-column: 2;
    grid-row: 2;
    border:1px solid var(--border);
    border-radius: 18px;
    padding: 20px;
  }
  @media(max-width: 1550px) {
    .tvrD{
      flex: 0 0 240px;
    }
  }
  /*=mobile=*/
  @media (max-width: 768px) {
    .login-container{
      height: 100svh;
    }
    .login-footer{
      bottom: calc(24px + env(safe-area-inset-bottom, 0px));
    }
  }