/* =========================================
   IMPORTS & FONTS
   ========================================= */

@font-face {
    font-family: 'Material Icons';
    font-style: normal;
    src: url(https://fonts.gstatic.com/s/materialicons/v114/flUhRq6tzZclQEJ-Vdg-IuiaDsNc.woff2) format('woff2');
}

/* =========================================
   RESET & BASICS
   ========================================= */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    color: #1d3557;
}

a {
    background-color: transparent;
    -webkit-text-decoration-skip: objects;
    color: #457b9d;
    text-decoration: none;
}

a:active,
a:hover {
    outline-width: 0;
}

a.secondary {
    color: #287ef7;
}

a.secondary:hover {
    color: #559cff;
}

abbr[title] {
    border-bottom: none;
    text-decoration: underline;
    -webkit-text-decoration: underline dotted;
    -moz-text-decoration: underline dotted;
}

b,
strong {
    font-weight: bolder;
}

dfn {
    font-style: italic;
}

p {
    font-size: 1em;
}

hr.new1 {
    border-top: 1px solid #ddd;
    margin: 3px 0;
}

ul {
    list-style-type: none;
    margin-block-start: 0;
    margin-block-end: 0;
    margin-inline-start: 0;
    margin-inline-end: 0;
    padding-inline-start: 0;
}

/* =========================================
   TYPOGRAPHY
   ========================================= */
h1, h2, h3, h4, h5, h6 {
    font-weight: 500;
    margin: 0;
    padding: 0;
    font-family: Rubik, sans-serif;
}

h1 { font-size: 19px; margin: 0.67em 0; }
h2 { font-size: 18px; }
h3 { font-size: 17px; }
h4, h5, h6 { font-size: 16px; }

small { font-size: 80%; }
mark { background-color: #ff0; color: #000; }

.lead {
    font-size: 1.25em;
    line-height: 2em;
}

.dark-text, .dark-text a { color: #252f4a; }
.light-text, .light-text a { color: #99a1b7; }

.title {
    background: #f7f7f7 !important;
    font-weight: bold;
    border-bottom: 1px solid #ddd;
    text-transform: uppercase;
}

.rtitle, #maintitle {
    font-size: 1.25rem;
    display: block;
    font-weight: 500;
    font-family: Rubik, sans-serif;
}

.rsubtitle {
    font-size: 0.91em;
    display: block;
    margin-bottom: 32px;
}

.rlist {
    font-size: 0.86em;
    display: block;
    opacity: 0.8;
    margin-top: -4px;
}

.rlist span {
    font-size: 0.82rem;
    text-transform: uppercase;
    opacity: 0.7;
}

/* =========================================
   ICONS
   ========================================= */
.material-icons {
    font-family: 'Material Icons';
    font-weight: normal;
    font-style: normal;
    font-size: 18px; /* Default size updated to match specificity */
    display: inline-block;
    line-height: 1;
    text-transform: none;
    letter-spacing: normal;
    word-wrap: normal;
    white-space: nowrap;
    direction: ltr;
    -webkit-font-smoothing: antialiased;
    vertical-align: middle;
}

.material-icons.md-10 { font-size: 10px; }
.material-icons.md-12 { font-size: 12px; }
.material-icons.md-14 { font-size: 14px; }
.material-icons.md-18 { font-size: 18px; }
.material-icons.md-24 { font-size: 24px; }
.material-icons.md-36 { font-size: 36px; }
.material-icons.md-48 { font-size: 48px; }

.icon {
    width: 30px;
    height: 30px;
    fill: currentColor;
    vertical-align: text-bottom;
}

.tsatus .icon {
    float: right;
    border-radius: 50%;
    height: 22px;
    width: 22px;
    background-color: #000;
    font-size: 0.86em;
    color: #fcfcfc;
}

/* =========================================
   LAYOUT & CONTAINERS
   ========================================= */
.lime-body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    padding-bottom: 50px;
    padding-top: 68px;
    background: #f2f5f7;
    background-repeat: no-repeat;
}

.hfix { flex: 1; }

.lime-container {
    padding-top: 0 !important;
    width: 100%;
    overflow: hidden;
}

.search-results .lime-container { width: auto; }

.container {
    margin-left: auto;
    margin-right: auto;
    padding-left: 12px;
    padding-right: 12px;
    background: #f2f5f7;
    max-width: 100%;
}

.container-fluid {
    /* Kept empty as per origin, often populated by Bootstrap but customized here */
}

.row {
    margin-right: 0 !important;
    margin-left: 0 !important;
}

/* =========================================
   COMPONENTS: CARDS & BOXES
   ========================================= */
.card,
.card:hover {
    background-color: #fff;
}

.card-border {
    border: 1px solid #eae4e6;
}

.card-header {
    color: #000;
}

.card-header .badge {
    cursor: pointer;
}

.card-subheader {
    background: #f1f5f3;
    padding: 0.75rem 1.25rem;
}

.card-subheader .btn {
    margin: 0 0.4em;
}

.ccard {
    border: 1px solid #f3f3f3;
    box-shadow: 0 3px 10px rgba(62, 85, 120, 0.045);
    border-radius: 4px;
    background-color: #f2f2f2;
}

.box {
    width: 32.8%;
    margin: 0.2%;
    border-radius: 3px;
    padding: 3px;
    box-shadow: 0 3px 10px rgba(62, 85, 120, 0.045);
}

.box:hover {
    background: #fcfcfc;
}

.box div {
    display: inline;
}

.box img {
    float: left;
    margin: 3px;
    border-radius: 3px;
    width: 80px;
    text-align: center;
    line-height: 106px;
}

.ctbox { margin-bottom: 20px; }

/* =========================================
   COMPONENTS: NOTICES & ALERTS
   ========================================= */
.notice {
    border-style: dashed !important;
    border-radius: 0.475rem !important;
    padding: 1.1rem !important;
    border: 1px solid transparent; /* Fixed missing border type */
    display: flex;
    align-items: flex-start;
    flex-wrap: nowrap;
    font-size: 0.89rem;
    color: #4b5675;
}

.notice .icn {
    font-size: 24px;
    margin-right: 16px;
}

.notice .content {
    display: flex;
    align-items: flex-start;
    flex-wrap: nowrap;
    justify-content: space-between;
    width: 100%;
}

.notice span { font-size: 0.82rem; }
.notice h3 { color: #071437; font-size: 1.08rem; }

.notice-info {
    background: #e9f3ff;
    border-color: rgba(27, 132, 255, 1);
}
.notice-info i { color: rgba(27, 132, 255, 1); }

.notice-warning {
    background: #fff8dd;
    border-color: rgba(246, 192, 0, 1);
}
.notice-warning i { color: rgba(246, 192, 0, 1); }

.erf {
    background: red;
    color: #fcfcfc;
    font-weight: bold;
    padding: 2px 10px;
    border-radius: 10px;
    margin: 0 6px;
    cursor: pointer;
}

/* =========================================
   COMPONENTS: STATUS & BADGES
   ========================================= */
.status {
    display: inline-flex;
    align-items: center;
    font-size: 12px;
    font-weight: 500;
    padding: 2px 8px;
    border-radius: 0.25rem;
    letter-spacing: 0.2px;
    white-space: nowrap;
    gap: 4px;
    min-width: auto;
    justify-content: center;
    transition: all 0.15s ease-in-out;
    color: #111;
    background-color: #f9fafb;
    border: 1px solid #e5e7eb;
    text-transform: uppercase;
    line-height: 1;
}

.status i { padding-right: 3px; }

.status-draft { background-color: #f3f4f6; color: #1f2937; }
.status-draft a { color: #1f2937; }
.status-draft a:hover { color: #007bff !important; }

.status-in-review { background-color: #fef3c7; color: #92400e; }
.status-approved { background-color: #d7f9fc; color: #000036; }
.status-submitted { background-color: #dbeafe; color: #1e3a8a; }
.status-delivered { background-color: #e9ffdb; color: #006400; }
.status-rejected { background-color: #fee2e2; color: #991b1b; }
.status-taken-down { background-color: #e5e7eb; color: #374151; }

/* Legacy Status Classes (kept for compatibility) */
.draft { background: #ffecda; color: #ed9121; }
.panding { background: #f8f4d9; color: #3d0c02; }
.approved { background: #d7f9fc; color: #000036; }
.live { background: #e9ffdb; color: #006400; }
.reject { color: #ce2029; background: #fcfcfc !important; }

.tsatus {
    display: block;
    font-size: 0.85em;
    background-color: #e5e5e5;
    border-radius: 16px;
    padding-left: 16px;
    color: #000;
    margin-right: 25px;
    text-transform: uppercase;
    margin-bottom: 20px;
    left: 0;
}
.tsatus div { display: inline; }

/* =========================================
   COMPONENTS: FORMS & INPUTS
   ========================================= */
#idFormg .form-control,
#addTrackg .form-control {
    border-top: 0;
    border-bottom: 1px solid #ddd; /* Fixed typo "soild" */
    border-left: 0;
    border-right: 0;
    border-radius: 0;
    padding: 2px 10px 3px 10px;
    font-size: 16px;
}

#idFormg .form-control:focus,
#addTrackg .form-control:focus {
    box-shadow: none;
    border-bottom: 1px solid #000;
}

#idForm .form-control:disabled,
#addTrack .form-control:disabled {
    cursor: text;
}

#idFormg .form-group label,
#addTrackg .form-group label {
    margin-bottom: 2px;
    padding: 0 10px;
}

#idFormg .form-group {
    margin-top: 8px;
}

.form-group label {
    font-size: 0.85rem;
    padding: 3px 10px;
    margin-bottom: 1px;
    color: #6c757d; /* Fixed typo "color: color:" */
}

/* Category Dropdown Area */
.cat-top {
    background: #fcfcfc;
    padding: 12px 18px;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    border-bottom: 2px solid #ddd;
}

.cat-top select {
    background: rgba(238, 238, 238, 0.418) !important;
    border-radius: 5px;
    padding: 4px 20px 3px;
    border: 1px solid #ddd;
    margin: 0 8px;
}

.cat-top .btn {
    float: right;
    margin-left: 5px;
}

.cop select {
    border-radius: 0.475rem;
    padding: 0.48rem 1.15rem;
    border: 1px solid #f9f9f9;
    margin: 3px 8px;
    background: #f1f1f4;
    color: #4b5675 !important;
    transition: color 0.2s ease;
    font-size: 0.92rem;
}

.cop form { display: inline-block; }

/* =========================================
   COMPONENTS: LISTS (TRACKS & CATEGORIES)
   ========================================= */
/* Track List */
.track-top {
    background: #ccc;
    padding: 6px 20px;
    width: 100%;
    height: 20px;
}

.tracklist {
    width: 100%;
    padding: 10px 20px;
    display: flex;
}

.tracklist div { overflow: hidden; }

.tracklist img { width: 32px; height: 32px; }
.tracklist .img { min-width: 32px !important; display: block; margin: auto 0; }

.tracklist .imgb {
    min-height: 32px;
    margin: auto;
    flex: 0 0 80px;
    min-width: 95px;
    padding: 2px 8px;
}

.tracklist .imgd {
    min-height: 32px;
    margin: auto;
    flex: 0 0 90px;
    min-width: 108px;
    padding: 2px 8px;
}

.tracklist .imgc {
    min-height: 32px;
    margin: auto;
    flex: 0 0 85px;
    min-width: 95px;
    padding: 2px 8px;
    opacity: 0.8;
}

.tracklist .txt {
    width: 100%;
    padding: 5px 10px 3px;
}

.tracklist span {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.tracklist .btnlight {
    background: #11ffee00;
}
.tracklist .btnlight:active,
.tracklist .btnlight:focus,
.tracklist .btnlight:focus-visible {
    outline: 0;
}

/* Category List */
.catlist {
    padding: 4px 9px;
    width: 100%;
    border: 1px solid #f0eeee;
    margin: 5px 0;
    background: #fff !important;
}

.catlist div {
    overflow: hidden;
    display: inline-block;
}

.catlist img {
    width: 70px;
    height: 70px;
    border-radius: 3px;
}

.catlist .imgb {
    width: 220px;
    margin: auto;
    opacity: 0.8;
    margin-bottom: 3px;
    padding-right: 10px;
}

.catlist .img {
    width: 70px !important;
    margin: auto;
    margin-bottom: -5px;
}

.catlist .imgc {
    width: 250px !important;
    padding: 2px 10px;
    opacity: 0.8;
    margin-bottom: 3px;
    margin-left: -20px;
}

.catlist .imgd {
    width: 100px;
    text-align: center;
}

.catlist .txt {
    width: calc(100% - 414px);
    padding: 5px 8px 3px;
    margin-bottom: 3px;
}

.catlist .txt1 {
    width: calc(100% - 60px);
    padding: 5px 8px 3px;
    margin-bottom: 3px;
}

.catlist span {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Horizontal Category List */
.hcatlist {
    width: 100%;
    padding: 4px 25px;
}

.hcatlist:nth-child(even) { background: #f4f5fa; }

.hcatlist div {
    overflow: hidden;
    display: inline-block;
}

.hcatlist img {
    width: 60px;
    height: 60px;
    border-radius: 3px;
}

.hcatlist .imgb {
    width: 280px;
    margin: auto;
    opacity: 0.8;
    margin-bottom: 3px;
}

.hcatlist .img {
    width: 60px !important;
    margin: auto;
    margin-bottom: -5px;
}

.hcatlist .imgc {
    width: 180px !important;
    padding: 2px 10px;
    opacity: 0.8;
    margin-bottom: 3px;
    margin-left: -20px;
}

.hcatlist .txt {
    width: calc(100% - 331px);
    padding: 5px 10px 3px;
    margin-bottom: 3px;
}

.hcatlist .txt1 {
    width: calc(100% - 70px);
    padding: 5px 10px 3px;
    margin-bottom: 3px;
}

.hcatlist span {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* List Utilities */
.nthp { padding: 1rem 1.25rem; }
.nthxp { padding-left: 1.25rem; padding-right: 1.25rem; }
.nthyp { padding-top: 1rem; padding-bottom: 1rem; }
.nthborder { border-bottom: 1px solid #f0eeee; }
.nthlist:nth-child(even),
.nthlist li:nth-child(even) { background: #f9f9f9; }

/* Analytics List */
.analytics-list { list-style: none; }
.analytics-list li { width: 100%; }
.analytics-list li div {
    display: inline-block;
    margin: 0 auto;
    padding: 4px 10px 0;
    width: 19.3%;
    white-space: nowrap;
    overflow: hidden;
    text-align: center;
    text-overflow: ellipsis;
}
.analytics-list li div:first-child { text-align: left; padding-left: 20px; }

/* User List */
.user-list li {
    flex-direction: row;
    display: flex;
    border-bottom: 1px dashed #f1f1f4;
    justify-content: space-between;
    align-items: center;
    min-height: 60px;
}
.user-list li div {
    padding: 2px 10px;
    margin: 0 4px;
    flex: 1 1 auto;
    white-space: nowrap;
    text-overflow: ellipsis;
    align-items: left;
    overflow: hidden;
}
.user-list li span { display: block; line-height: 1.3; }
.user-list li button { margin-left: 3px; }
.user-list img {
    display: inline-block;
    border-radius: 0.475rem;
    height: 50px;
    width: 50px;
}
.user-list li .title { font-weight: 500; text-transform: uppercase; }

/* Table List Utilities */
.user-list li .fright, .table-list li .fright { text-align: right; }
.user-list li .fcenter, .table-list li .fcenter { text-align: center; }
.user-list li .fleft, .table-list li .fleft { text-align: left; }

.user-list li .w50, .table-list li .w50 { flex: 0 0 50px; }
.user-list li .w100, .table-list li .w100 { flex: 0 0 100px; }
.user-list li .w150, .table-list li .w150 { flex: 0 0 150px; }
.user-list li .w200, .table-list li .w200 { flex: 0 0 200px; }
.user-list li .w250, .table-list li .w250 { flex: 0 0 250px; }
.user-list li .w300, .table-list li .w300 { flex: 0 0 300px; }
.user-list li .w350, .table-list li .w350 { flex: 0 0 350px; }
.user-list li .w400, .table-list li .w400 { flex: 0 0 400px; }
.user-list li .auto, .table-list li .auto { width: 100%; }

.table-list li {
    padding: 5px 18px;
    flex-direction: row;
    display: flex;
    justify-content: flex-start;
}
.table-list li div {
    margin: 0 4px;
    padding: 4px;
    flex: 1 1 auto;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
.table-list li button { margin-left: 3px; }
.table-list li:first-child { border-top: 1px solid rgba(0, 0, 0, 0.06); }
.table-list li:last-child { border-bottom: 1px solid rgba(0, 0, 0, 0.06); }
.table-list li:nth-of-type(even) { background: #f4f5fa; }
.table-list li .title { font-weight: 500; text-transform: uppercase; }

/* =========================================
   COMPONENTS: IMAGES & ARTWORK
   ========================================= */
#artworkimg,
#artworkimg2 {
    width: 150px;
    height: 150px;
    margin-right: auto;
    margin-left: auto;
    border-radius: 0.25rem;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}

#albumThumb { width: 250px; margin-right: 20px; }

.img button,
.img button:hover,
.img button:focus,
img:focus-visible {
    border: 0;
    border-radius: 50%;
    width: 100%;
    height: 100%;
    background: #fcfcfc;
}

.img button:hover { background: #f6f6f6; }

.avatar {
    position: relative;
    width: 36px;
    height: 36px;
    white-space: nowrap;
    border-radius: 50%;
    cursor: pointer;
    color: #fff;
    display: inline-flex;
    font-size: 0.8rem;
    text-align: center;
    vertical-align: middle;
    justify-content: center;
    align-items: center;
    background: linear-gradient(90deg, #ff6a4b 27%, #ff416a 75%);
}

/* =========================================
   COMPONENTS: INFO & TEXT UTILITIES
   ========================================= */
.text {
    display: block;
    float: left;
    padding: 5px 10px;
    width: calc(100% - 90px);
}

.text p {
    font-size: 1.12em;
    margin-bottom: -6px;
    font-weight: 500;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.text span {
    font-weight: 400;
    font-size: 0.78em;
    opacity: 0.8;
    margin-bottom: -6px;
}

.info p, .infob p {
    font-weight: 400;
    margin-bottom: -2px;
    margin-top: 6px;
    opacity: 0.8;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    padding-right: 3px;
}
.info p { font-size: 0.5em; }
.infob p { font-size: 0.6em; }

.info span, .info .tit,
.infob span, .infob .tit {
    font-weight: 400;
    margin-bottom: 5px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    padding-right: 3px;
}
.info span, .info .tit { font-size: 0.9em; margin-top: -2px; } /* Fixed -top */
.infob span, .infob .tit { margin-top: 5px; padding-bottom: -2px; }

.tit { font-size: 12px; }
.titl { font-size: 1.11em; margin-bottom: 0; }
.titu { font-size: 1em; margin-bottom: 0; }
.artist { font-size: 0.78em; }
.r-title { padding: 8px; font-size: 0.9em; }

.line {
    border-bottom: 1px solid #dadada;
    line-height: 0.1em;
    margin: 10px 0 20px;
}

.linetext {
    font-size: 0.8rem !important;
    text-align: center !important;
    color: #6b6f82 !important;
    margin-top: 2rem;
    margin-bottom: 1.6rem;
}

.line span { background: #fcfcfc; padding: 0 10px; }
.art { margin-top: 16px; }

/* =========================================
   COMPONENTS: PLAYER & CONTROLS
   ========================================= */
.player audio {
    position: fixed;
    left: 0;
    bottom: 0;
    width: calc(100% - 280px);
    color: white;
    text-align: center;
    z-index: 1000;
    margin-left: 280px;
    background: #f1f3f4;
}

.tm button { margin-right: 20px; }

.tm .btnlight {
    font-size: 0.6em;
    color: rgba(108, 88, 179, 0.75);
    letter-spacing: 1px;
    line-height: 15px;
    border: 2px solid rgba(108, 89, 179, 0.75);
    border-radius: 40px;
    background: transparent;
    transition: all 0.3s ease 0s;
}

.tmm .btnlight:hover {
    height: 40px;
    line-height: 40px;
    width: 40px;
    border-radius: 50%;
    background: #ddd;
    border-top: 0;
    text-align: center;
    cursor: pointer;
}

.stts {
    text-align: left;
    padding: 8px 1px;
    margin: auto;
}

.bclass {
    text-align: right;
    padding: 8px 1px;
    margin: auto;
}

.stts div, .tm .stts, .tm .bclass { display: inline-block; }
.stts span { margin: 0 8px; color: blue; }
.tm art { color: #000; }

.stts .lin {
    background-image: url('/assets/images/line.png');
    padding: 0 20px;
    background-position: center;
}

/* =========================================
   MISCELLANEOUS / HELPERS
   ========================================= */
.fl { float: left; }
.txtg { padding-right: 4px; }
.scroll { white-space: nowrap; overflow-x: scroll; }

.blnk {
    text-align: center;
    min-height: 400px;
    padding-top: 170px;
}

.empty {
    text-align: center;
    padding-top: 160px;
}

.catload {
    margin: auto;
    text-align: center;
    padding-top: 32px;
    padding-bottom: 32px;
    background: #fff;
    border: 1px solid #ebebeb;
}

.rload {
    margin: auto;
    text-align: center;
    padding-top: 142px;
    padding-bottom: 142px;
}

.catnav {
    background: #f8f8f8;
    padding: 12px 18px;
    border-top: 2px solid #ddd;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

#catlist {
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    min-height: 300px;
}

.clist { min-height: 282px; }
.clist .box {
    background: #fcfcfc;
    border: 1px solid #e2e2e2;
    box-shadow: 0 3px 10px rgba(62, 85, 120, 0.045);
    border-radius: 4px;
}

.sub-header {
    padding: 8px 13px;
    background: #fcfcfc;
    margin-top: -10px;
    z-index: 999;
    margin-bottom: 10px;
    align-items: center;
    justify-content: space-between;
}

.hrevnue {
    border: 1px solid #ccc;
    padding: 1px 8px;
    margin: 2px;
}

.hrevnue .month {
    font-weight: 500;
    font-size: 0.5em;
    text-align: center;
    opacity: 0.6;
}

.hrevnue .dollar {
    margin-top: -4px;
    display: block;
    font-weight: 600;
    font-size: 1em;
    text-align: center;
}

.d25 { width: 24.2% !important; }
.catlist .status, .hcatlist .status { margin-bottom: 10%; }
.mbtn { display: none; }
.srfix { margin: auto; }

/* Modals */
.modal-header {
    background: #f7f7f7;
    padding-bottom: 10px;
    padding-top: 18px;
    margin-bottom: 20px;
}
.modal-content { background: #fcfcfc; }
.modal-header .nobtn { background: #dfdfdf !important; }
.modal-footer {
    background: #f7f7f7;
    padding-bottom: 18px;
    padding-top: 20px;
    margin-top: 20px;
}
.noobtn {
    border: 0;
    box-shadow: none;
    background: #f0f0f0 !important;
}
.delete { margin-top: 0 !important; margin-bottom: 0 !important; }


/* =========================================
   MEDIA QUERIES
   ========================================= */

@media only screen and (max-width: 1280px) {
    .container {
        padding-left: 8px;
        padding-right: 8px;
    }
}

@media only screen and (max-width: 1160px) {
    .cop form { display: block; }
    .cop select {
        width: 100%;
        display: block;
        margin-bottom: 10px;
    }
}

@media only screen and (max-width: 992px) {
    .box {
        width: 47%;
        margin: 0;
        margin-left: 3px;
        margin-right: 3px;
        margin-bottom: 5px;
    }
    .player audio {
        width: 100% !important;
        z-index: 1000;
        margin-left: 0 !important;
        background: #f1f3f4;
    }
    .text { width: calc(100% - 100px); }
    .mhide { display: none !important; }
    .container-fluid {
        padding: 0 !important;
        margin: 2px !important;
    }
}

@media only screen and (max-width: 920px) {
    .thide { display: none; }
    .hcatlist { padding: 4px 15px; }
    .lime-container { margin-left: 0; margin-right: 0; }
    .bcrub_main { margin-left: -10px; margin-right: -10px; width: -webkit-fill-available; }

    .catlist .imgc,
    .hcatlist .imgc { width: 140px !important; }

    .catlist .imgb { width: 0; display: none; }
    .catlist .txt { width: calc(100% - 310px); }
    .hcatlist .txt { width: calc(100% - 291px); }

    .mbtn { display: block; margin-bottom: 12px; }
    .mbtn .btn { margin: 8px 5px; float: right; }

    .cat-top select { width: 46%; margin: 3px 5px; }
    .cat-top .btn { float: none; }
    .cat-top {
        border-top-left-radius: 0;
        border-top-right-radius: 0;
    }

    .clist .box { padding-left: 18px; padding-right: 16px; }
    #catlist .box {
        margin-bottom: 1px;
        margin-left: 0;
        padding: 2px 16px 2px 18px;
    }

    .analytics-list li div:first-child { padding-left: 10px; width: 40% !important; }
    .analytics-list li div:nth-child(2) { display: none; }
    .analytics-list li div { width: 16%; }

    .catlist { padding: 5px 6px !important; }
}

@media only screen and (max-width: 900px) {
    .tracklist .imgb { flex: 0 0 90px; }
    .modal-xl { max-width: 98%; }
}

@media only screen and (max-width: 768px) {
    .notice .content { flex-wrap: wrap; }
    #artworkimg, #artworkimg2 {
        width: 85% !important;
        height: auto !important;
        max-width: 400px;
    }
    .notice .content .btn { margin-top: 4px; }
    .notice .content h3 { margin-bottom: 4px; }
    .box {
        width: 94%;
        margin: 0;
        margin-left: 3%;
        margin-right: 3%;
        margin-bottom: 5px;
    }
    .text { width: calc(100% - 100px); }
    .mhide { display: none !important; }
    .container { max-width: 100%; }
    .container-fluid {
        padding: 0 !important;
        margin: 2px !important;
        max-width: 100%;
    }
}

@media only screen and (max-width: 600px) {
    .fl { float: none; }
    #albumThumb { width: 100%; margin-right: 0; margin-bottom: 20px; }
    .tm art { display: none; }
    .btnlight {
        height: 20px;
        line-height: 20px;
        width: 20px;
        padding: 8px 1px;
    }
    .tm button { margin-right: 8px; }
    .stts .lin { padding: 0 10px; }
    .rsubtitle { margin-bottom: 18px; }
    .rtitle, .rlist, .rsubtitle, .art #maintitle { padding-right: 15px; }
    .row { margin-right: 0; margin-left: 0; }
    .box {
        margin: 0;
        margin-bottom: 1px;
        width: 100%;
        padding: 2px 20px;
    }
    .card { margin-bottom: 0.75rem; }
    .col, [class*='col-'] {
        padding-right: 0;
        padding-left: 0;
        margin-bottom: 8px;
    }
    .container { margin: 0; }

    .tlist .hide, .tlist .atist, .tlist .size { display: none; }
    .tlist .player { width: 90px; }
    .tlist .title { width: calc(100% - 170px); }
    .tracklist .imgc { width: 0; display: none; }
}

@media only screen and (max-width: 599px) {
    .mhide { display: none; }
    .card-header { font-size: 1.12rem; }
    button, input, optgroup, select, textarea, .form-control { font-size: 0.9rem; }
    .lime-container { padding: 0; }
    .catlist { padding: 5px 6px !important; }
    .catlist .imgc, .hcatlist .imgc { width: 0; display: none; }
    .catlist .txt { width: calc(100% - 179px); }
    .hcatlist .txt { width: calc(100% - 168px); }
}

@media only screen and (max-width: 460px) {
    .shide { display: none; }
}

@media only screen and (max-width: 330px) {
    .shide { display: none; }
    .catlist, .hcatlist { max-height: 70px !important; }
    .hcatlist { padding: 5px 12px; }
    .catlist .imgc, .catlist .status, .hcatlist .status { width: 0; display: none; }
    .catlist .txt, .hcatlist .txt { width: calc(100% - 68px); }
}