button:disabled {
    opacity: 1 !important;
    cursor: not-allowed;
}

body {
    display: flex;
    align-items: center;
    justify-content: center;
}

/** Login: start */
.login-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-box {
    width: 400px;
    max-width: 95%;
}

.glow-box {
    background: #FFF;
    border: 1px solid #DFDFDF;
    padding: 15px;
    border-radius: 30px;
    position: relative;
}

.glow-box:before,
.glow-box:after {
    content: "";
    width: 95px;
    height: 95px;
    border-radius: 50%;
    background: var(--color-primary);
    position: absolute;
    filter: blur(25px);
    z-index: -1;
    bottom: 15px;
}

.glow-box:before {
    left: 15px;
}

.glow-box:after {
    right: 15px;
}

.login-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 15px;
}

.login-logo img {
    height: 72px;
    width: auto;
}

.or {
    height: 1px;
    background: #D1D1D1;
    margin: 30px 0;
    position: relative;
}

.or:before {
    content: "یا";
    background: #FFF;
    color: #D1D1D1;
    width: 15px;
    position: absolute;
    text-align: center;
    left: calc(50% - 7px);
    top: -10px;
}

.google-login img {
    width: 24px;
    height: auto;
    transition: 0.3s;
}

.google-login.loading img {
    width: 0;
}

.agreement {
    margin-top: 15px;
    text-align: center;
}

.otp-sent-number {
    margin: 15px 0;
}

#login-form h1,
#verify-form h1 {
    text-align: center;
    margin: 20px 0;
    font-size: 22px;
}

#verify-form {
    display: none;
}

.active-verify-form #verify-form {
    display: block;
}

.active-verify-form #login-form {
    display: none;
}

.otp-time {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 10px 0 25px 0;
    font-size: 15px;
}

.resend-otp {
    font-weight: 600;
    opacity: .4;
    color: var(--color-text);
    transition: 0.3s;
}

.otp-expired .resend-otp {
    opacity: 1;
    color: var(--color-primary)
}

.otp-resend-loading {
    display: none;
    position: relative;
    font-size: 14px;
    padding-right: 24px;
}

.otp-resend-loading:before {
    content: "";
    width: 20px;
    height: 20px;
    background: url('../images/loading-spinner-primary.svg') no-repeat;
    background-size: 100%;
    position: absolute;
    right: 0;
}

.otp-sending .otp-resend-loading {
    display: block;
}

.otp-sending .resend-otp {
    display: none;
}

.expired-text {
    display: none;
}

.otp-expired .count-down {
    display: none;
}

.otp-expired .expired-text {
    display: block;
}

/** Login: End */

/** Panel sidebar: Start */
.panel-container.glow-box {
    padding: 0;
    margin-top: 25px;
    margin-bottom: 25px;
}

.panel-container {
    width: 96%;
    display: grid;
    grid-template-columns: 280px auto;
}

.panel-container.full-width {
    width: calc(100% - 50px);
}

.sidebar {
    background: #F8F8F8;
    border-left: 1px solid #DFDFDF;
    padding: 10px;
    border-radius: 0 30px 30px 0;
}

.sidebar-logo {
    margin: 15px 0;
}

.sidebar-header {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sidebar-avatar {
    width: 64px;
    height: auto;
    border-radius: 50%;
}

a.sidebar-logo img {
    height: 64px;
}

.sidebar-header span {
    color: #7E7E7E;
}

.sidebar-header strong {
    font-size: 18px;
    margin-top: 5px;
}

.sidebar-menu h2 {
    font-size: 18px;
    margin-bottom: 10px;
}

.sidebar-menu {
    margin-top: 25px;
}

.sidebar-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    border-radius: 10px;
    color: var(--color-text);
    font-size: 18px;
    transition: 0.3s;
    position: relative;
}

.sidebar-menu a .count {
    background: var(--color-error-light);
    color: var(--color-error);
    min-width: 28px;
    text-align: center;
    position: absolute;
    left: 10px;
    border-radius: 6px;
}

.sidebar-menu a i {
    font-size: 22px;
}

.sidebar-menu a:hover {
    background: var(--color-info-light);
}

.sidebar-menu a.active {
    background: var(--gradient-primary);
    color: #FFF;
}

.sidebar-menu a.menu-logout {
    color: var(--color-error);
    background: var(--color-error-light);
}

/** Panel sidebar: End */

/** Panel Body: Start */
main.main header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 10px;
    border-bottom: 1px solid #E3E3E3;
}

.panel-menu-title {
    display: flex;
    align-items: center;
    gap: 10px;
}

.panel-menu-actions .btn {
    padding: 6px 15px;
}

main.main header h1 {
    font-size: 28px;
}

main.main header i {
    width: 45px;
    height: 45px;
    display: flex;
    font-size: 22px;
    color: var(--color-primary)
}

main.main header i:after {
    background: url('../images/circle-curve.svg') no-repeat;
    width: 45px;
    height: 45px;
    content: "";
    position: absolute;
}

.main-content {
    padding: 15px;
}

/** Panel Body: End */

/** Table Filter: Start */
.table-filter {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.right-filters {
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-filter {
    border: 1px solid #EEE;
    padding: 5px;
    border-radius: 10px;
    display: flex;
    gap: 5px;
}

.form-filter .select2-container--default .select2-selection--single,
.form-filter .select2-container--default .select2-selection--single .select2-selection__rendered,
.form-filter .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 30px;
    border: none;
}

.form-filter .select2-container--default .select2-selection--single {
    min-width: 100px;
}

.form-filter label {
    border-radius: 10px 8px 8px 10px;
    background: #F9F9F9;
    color: #C3C3C3;
    padding: 4px 10px;
    font-size: 14px;
    font-weight: 300;
}

.form-filter input,
.form-filter select {
    border: none;
    padding: 0 10px;
}

.left-filters {
    display: flex;
    align-items: center;
    gap: 5px;
}

.table-refresh {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-info-light);
    border-radius: 10px;
    transition: 0.3s;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.table-refresh.loading {
    background: none;
}

.table-refresh.loading i {
    animation: spin 1s linear infinite reverse;
}



/** Table Filter: End */

/** Table Start: Start */
.table-container thead th {
    background: var(--color-info-light);
    color: #888888;
    font-weight: 500;
}

.table-container table {
    border-collapse: collapse;
    width: 100%;
}

.table-container {
    margin: 15px 0;
    overflow: auto;
}

.table-container td,
.table-container th {
    padding: 15px 10px;
    vertical-align: middle;
}

.table-container thead th a {
    position: relative;
    padding-right: 26px;
}

.table-container thead th a:before,
.table-container thead th a:after {
    content: "\f101";
    font-family: 'musicjooyar', serif;
    position: absolute;
    right: 3px;
    font-size: 14px;
    color: #B4B6B8;
    top: 5px;
    transition: 0.3s;
}

.table-container thead th a:before {
    content: "\f109";
    right: 11px;
}

.table-container thead th a.order-desc:after,
.table-container thead th a.order-asc:before {
    color: var(--color-info);
    font-weight: bold;
}


.table-container tr:nth-child(even) td {
    background: #F9F9F9;
}

.table-container tr>*:first-child {
    border-radius: 0 10px 10px 0;
}

.table-container tr>*:last-child {
    border-radius: 10px 0 0 10px;
}

.music-title,
.music-artist,
.row-title {
    display: flex;
    align-items: center;
    gap: 5px;
}

.music-title {
    width: 240px;
}

.music-title img,
.row-title img {
    border-radius: 5px;
}

.music-artist img {
    border-radius: 50%;
}

.comment-count.unread-comment {
    position: relative;
}

.comment-count.unread-comment:before {
    content: "";
    width: 6px;
    height: 6px;
    background: #FF5B7D;
    border-radius: 50%;
    position: absolute;
    right: -7px;
}

.status {
    background: #e9e9e9;
    padding: 5px 20px 5px 10px;
    border-radius: 10px;
    position: relative;
    color: #b7b7b7;
    font-size: 14px;
    display: inline-block;
}

.status:before {
    content: "";
    width: 8px;
    height: 8px;
    background: #b7b7b7;
    border-radius: 50%;
    position: absolute;
    right: 7px;
    top: calc(50% - 4px);
    display: inline-block;
}

.status.deleted {
    color: var(--color-error);
    background: var(--color-error-light);
}

.status.deleted:before {
    background: var(--color-error);
}

.status.draft,
.status.inactive {
    color: var(--color-info);
    background: var(--color-info-light);
}

.status.draft:before,
.status.inactive:before {
    background: var(--color-info);
}

.status.publish,
.status.active {
    color: var(--color-success);
    background: var(--color-success-light);
}

.status.publish:before,
.status.active:before {
    background: var(--color-success);
}

.status.pending {
    color: var(--color-warning);
    background: var(--color-warning-light);
}

.status.pending:before {
    background: var(--color-warning);
}

.quality {
    background: var(--color-info-light);
    color: var(--color-info);
    padding: 2px 5px;
    border-radius: 5px;
    font-size: 14px;
}

.quality.q320 {
    color: var(--color-success);
    background: var(--color-success-light);
}

.action {
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    transition: 0.3s;
}

.action.action-delete {
    color: var(--color-error);
    background: var(--color-error-light);
}

.action.action-delete:hover {
    color: #FFF;
    background: var(--color-error);
}

.action.action-edit {
    background: var(--color-info-light);
    color: var(--color-info);
}

.action.action-edit:hover {
    background: var(--color-info);
    color: #FFF;
}

.action.action-play:hover {
    background: #e6e6e6;
}

table.loading td {
    position: relative;
    height: 45px;
}

table.loading td:before {
    content: "";
    background: #e2e2e2;
    position: absolute;
    left: 10px;
    right: 10px;
    top: 10px;
    bottom: 10px;
    border-radius: 4px;
}

/** Table Start: End */

/** Select2 Overwrite: Start */
.select2-container--default li.select2-selection__choice {
    background: var(--color-primary-light) !important;
    color: var(--color-primary);
    border: none !important;
    display: flex !important;
    flex-direction: row-reverse;
    gap: 3px;
    float: right !important;
}

.select2-container--default li.select2-selection__choice .select2-selection__choice__remove {
    color: var(--color-error);
}

.select2-container--default .select2-selection--multiple,
.select2-container--default .select2-selection--single {
    border-color: #CDCDCD !important;
    border-radius: 10px !important;
}

.select2-container--default .select2-selection--single,
.select2-container--default .select2-selection--single .select2-selection__rendered,
.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 42px;
}

/** Select2 Overwrite: End */

/** Edit Music: Start */
form.form-save-music {
    display: grid;
    grid-template-columns: auto 340px;
    gap: 15px;
}

.music-metas {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.cover-container {
    position: relative;
}

.cover-uploader {
    background: #FBFBFB;
    border: 1px dashed #707070;
    display: flex;
    gap: 5px;
    text-align: center;
    border-radius: 20px;
    padding: 20px;
    flex-direction: column;
    min-height: 300px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
}

.cover-uploader .upload-drop-text,
.cover-uploader .uploading-status,
.cover-uploader .uploading-error {
    background: #ffffffad;
    font-size: 18px;
    font-weight: 500;
    position: absolute;
    left: 5px;
    top: 5px;
    right: 5px;
    bottom: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    backdrop-filter: blur(3px);
    transition: 0.3s;
    visibility: hidden;
    opacity: 0;
}

.cover-container.file-hover .upload-drop-text {
    visibility: visible;
    opacity: 1;
}

.cover-container.error .uploading-error {
    visibility: visible;
    opacity: 1;
    color: red;
}

.cover-container.uploading .uploading-status {
    background: no-repeat;
    background-size: cover;
    visibility: visible;
    opacity: 1;
}

.uploading-text {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #ffffffb5;
    backdrop-filter: blur(3px);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}


label.cover-uploader .cover-uploader-icons img {
    width: 64px;
    height: auto;
}

label.cover-uploader p:not(.click-for-upload) {
    color: #A7A7A7;
    font-weight: 400;
}

.uploaded-image {
    position: absolute;
    left: 5px;
    top: 5px;
    right: 5px;
    bottom: 5px;
    background-size: cover;
    border-radius: 15px;
    transition: 0.3s;
    visibility: hidden;
    opacity: 0;
}

.cover-container.uploaded .uploaded-image {
    visibility: visible;
    opacity: 1;
}

.uploaded-image .delete-cover {
    color: red;
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 22px;
    cursor: pointer;
}

.btn-upload {
    background: var(--color-primary);
    padding: 2px 10px;
    border-radius: 5px;
    color: #FFF;
    cursor: pointer;
}


.music-uploader input {
    display: none;
}

.music-uploader {
    padding: 10px;
    border: 1px dashed var(--color-text);
    border-radius: 20px;
    margin-top: 25px;
    background: #FBFBFB;
}

.music-uploader label {
    display: flex;
    align-items: center;
    border-radius: 15px;
    padding: 5px;
    position: relative;
    cursor: pointer;
}

.music-uploader label img {
    width: 64px;
    height: 64px;
}

.music-uploader label p {
    color: var(--color-text-light)
}

.music-uploader .upload-music-text {
    font-size: 14px;
}


.music-uploader .music-quality {
    position: absolute;
    left: 5px;
    top: -15px;
    font-size: 14px;
    border: 1px solid #FFF;
    background: var(--color-success-light);
    color: var(--color-success);
    padding: 2px 5px;
    border-radius: 4px;
}

.music-uploader .quality-128 {
    background: var(--color-primary-light);
    color: var(--color-primary);
}

.music-item {
    direction: ltr;
    text-align: left;
}

.music-uploader.selected label {
    display: none;
}

.music-uploader:not(.selected) .music-item {
    display: none;
}

.music-uploader.uploaded .upload-progress-bar {
    display: none;
}

.music-uploader {
    position: relative;
}

.music-uploader .music-cancel-upload {
    background: var(--color-error-light);
    color: var(--color-error);
    font-size: 13px;
    padding: 5px;
    border-radius: 5px;
    top: 10px;
    right: 10px;
    position: absolute;
    cursor: pointer;
}

.music-uploader .music-item-title {
    margin-right: 25px;
}

.music-uploader .music-item-title .music-size {
    background: #E2E2E2;
    color: var(--color-text-light);
    font-size: 14px;
    padding: 0 5px;
    border-radius: 6px;
}

p.music-item-title svg>* {
    fill: var(--color-warning);
}

p.music-item-title svg,
p.music-item-title i {
    display: none;
}

p.music-item-title svg {
    width: 18px;
    height: 18px;
    position: relative;
    top: 5px;
}

p.music-item-title .mj-tick-circle {
    color: var(--color-success);
}

p.music-item-title .mj-close-circle {
    color: var(--color-error);
}

.music-uploader.uploading {
    border-color: var(--color-warning)
}

.music-uploader.uploading .music-item-title svg {
    display: inline;
}

.music-uploader.error {
    border-color: var(--color-error)
}

.music-uploader.error .music-item-title .mj-close-circle {
    display: inline;
}

.music-uploader.error .error-text {
    display: flex;
}

.music-uploader.uploaded {
    border-color: var(--color-success)
}

.music-uploader.uploaded .music-item-title .mj-tick-circle {
    display: inline;
}

.music-uploader audio {
    width: 100%;
    margin-top: 15px;
}

.upload-progress-bar {
    margin: 25px 0;
    background: #F2F2F2;
    border-radius: 8px;
    height: 7px;
    position: relative;
}

.upload-progress-bar .upload-progress {
    width: 50%;
    left: 0;
    top: 0;
    bottom: 0;
    position: absolute;
    background: var(--gradient-primary);
    border-radius: 8px;
    transition: linear 0.3s;
}

.upload-progress-bar span {
    background: #2D2C2C;
    color: #FFF;
    font-size: 13px;
    padding: 0 5px;
    border-radius: 5px;
    top: -25px;
    width: 40px;
    right: -20px;
    text-align: center;
    position: absolute;
}

.upload-progress-bar span:before {
    content: "";
    position: absolute;
    bottom: -9px;
    right: 15px;
    border: 5px solid transparent;
    border-top-color: #2D2C2C;
}

.music-uploader p.error-text {
    direction: rtl;
    text-align: right;
    background: var(--color-error-light);
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 10px;
    color: var(--color-error);
    display: none;
    align-items: center;
    gap: 5px;
}

.music-uploader.error .upload-progress-bar .upload-progress {
    background: var(--color-error)
}

/** Edit Music: End */

/** Profile: Start */
.profile-image-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 10px;
}

.profile-image-actions.no-avatar .delete-profile {
    display: none;
}



.profile-image-actions img {
    border-radius: 50%;
}

.profile-image-actions .btn {
    width: 150px;
    align-items: center;
    justify-content: center;
}

.profile-image-container {
    background: red;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
}

.profile-upload-progress {
    background: rgb(255 255 255 / 50%);
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 50%;
}

.inline-input {
    display: flex;
    align-items: center;
    gap: 10px;
}

#form-edit-profile .form-control {
    width: 300px;
}

.field-exists {
    color: var(--color-error);
}

.field-free {
    color: var(--color-success);
}

.checking {
    display: flex;
    align-items: center;
    gap: 4px;
    color: var(--color-text-light);
}

.field-exists-check {
    margin-top: 10px;
}

.field-exists-check div {
    display: none;
    align-items: center;
    gap: 10px;
}

.field-exists-check.checking .checking {
    display: flex;
}

.field-exists-check.error .field-exists {
    display: flex;
}

.field-exists-check.success .field-free {
    display: flex;
}

#cropper-wrapper {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: hsl(0deg 0% 0% / 20%);
    z-index: 9;
    visibility: hidden;
    opacity: 0;
    transition: 0.3s;
}

.cropper-box {
    background: #FFF;
    border-radius: 25px;
    padding: 15px;
}

.cropper-box .croppie {
    width: 500px;
    aspect-ratio: 16/9;
    margin-bottom: 15px;

}

.cropper-footer {
    display: flex;
    gap: 15px;
    margin-top: 50px;
}

.cropper-footer button {
    width: 150px;
}

#cropper-wrapper.show {
    visibility: visible;
    opacity: 1;
}

#table-comments .comment-text {
    font-size: 14px;
}

/** Profile: End */

/** Dashboard: Start **/


.widget-stats {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    z-index: 9;
    position: relative;
    margin-bottom: 30px;
}

.stat {
    border: 1px solid;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    background: #FFF;
    aspect-ratio: 1;
}

.stat i {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 28px;
    margin-bottom: 15px;
    border: 4px solid rgb(255 255 255 / 30%);
}

.stat strong {
    font-size: 28px;
}

.stat.stat-comments {
    border-color: #FF5B7D;
}

.stat.stat-comments strong {
    color: #FF5B7D;
}

.stat.stat-comments i {
    background: rgb(255 91 125 / 30%);
    color: #FF5B7D;
}

.stat span {
    color: var(--color-text-light);
}

.stat.stat-artists {
    border-color: var(--color-primary);
}

.stat.stat-artists i {
    background: var(--color-primary-light);
    color: var(--color-primary);
}

.stat.stat-artists strong {
    color: var(--color-primary);
}

.stat.stat-musics {
    border-color: #00AC28;
}

.stat.stat-musics i {
    color: #00AC28;
    background: rgb(0 172 40 / 30%);
}

.stat.stat-view {
    border-color: #DF8703;
}

.stat.stat-musics strong {
    color: #00AC28;
}

.stat.stat-view strong {
    color: #DF8703;
}

.stat.stat-view i {
    color: #DF8703;
    background: rgb(223 135 3 / 30%);
}

.stat.stat-view:before,
.stat.stat-view:after {
    background: #DF8703;
}

.stat:before,
.stat:after {
    background: var(--color-primary);
    width: 50px;
    height: 50px;
    content: "";
    position: absolute;
    border-radius: 50%;
    z-index: -1;
    filter: blur(25px);
    bottom: 10px;
}

.stat:before {
    left: 20px;
}

.stat:after {
    right: 20px;
}

.stat.stat-comments:before,
.stat.stat-comments:after {
    background: #FF5B7D;
}

.stat.stat-musics:before,
.stat.stat-musics:after {
    background: #00AC28;
}


.view-chart {
    background: #FFF;
    border: 1px solid #D6D6D6;
    border-radius: 15px;
    padding: 15px;
}

/** Dashboard: End **/

/** Artis: Start */
.panel-main-content-cols {
    display: grid;
    grid-template-columns: 400px auto;
    gap: 30px;
}

.artist-form-cols {
    display: grid;
    grid-template-columns: auto 130px;
    gap: 10px;
    align-items: center;
}

.artist-col-avatar {
    border: 1px dashed #707070;
    background: #F2F2F2;
    border-radius: 15px;
    aspect-ratio: 1;
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: var(--color-text-light);
    font-size: 14px;
    transition: 0.3s;
    position: relative;
}

.artist-col-avatar label i.mj-image {
    display: block;
    margin: 7px 0;
    font-size: 40px;
}

.artist-col-avatar label {
    cursor: pointer;
    width: 100%;
    height: 100%;
    text-align: center;
}

.artist-col-avatar.file-hover {
    border-color: var(--color-warning)
}

.artist-avatar-image {
    position: absolute;
    left: 5px;
    top: 5px;
    right: 5px;
    bottom: 5px;
    background: red;
    border-radius: 15px;
    display: none;
}

.artist-col-avatar.uploaded .artist-avatar-image {
    display: block;
}

.remove-artist-avatar {
    position: absolute;
    color: var(--color-error);
    font-size: 20px;
    cursor: pointer;
    top: 10px;
    right: 10px;
}

.artist-avatar-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
}

.artist-avatar-status {
    display: none;
}

.artist-avatar-status.uploading-error {
    position: absolute;
    left: 5px;
    top: 5px;
    right: 5px;
    bottom: 5px;
    background: white;
    border-radius: 15px;
    color: var(--color-error);
}

.artist-col-avatar.file-hover .click-for-upload {
    display: none;
}

.artist-col-avatar.file-hover .upload-drop-text {
    display: flex;
}

.artist-col-avatar.error .uploading-error {
    display: flex;
}

.artist-col-avatar.uploading .uploading-status {
    display: flex;
}

.artist-avatar-status.uploading-status {
    position: absolute;
    left: 5px;
    top: 5px;
    right: 5px;
    bottom: 5px;
    border-radius: 10px;
    display: none;
    align-items: center;
    justify-content: center;
    background-size: contain;
}

.artist-avatar-status.uploading-status .avatar-uploading-text {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    backdrop-filter: blur(3px);
    background: #ffffff70;
    border-radius: 10px;
    color: black;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

input#birthdate {
    padding-left: 40px;
}

/** Artis: End */


.modal {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: #0000004d;
    z-index: 9;
    display: flex;
    visibility: hidden;
    opacity: 0;
    transition: 0.3s;
    align-items: center;
    justify-content: center;
}

.modal.show {
    visibility: visible;
    opacity: 1;
}

.modal-box {
    background: #FFF;
    padding: 15px;
    border-radius: 15px;
    position: relative;
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 1;
    color: var(--color-error);
    font-size: 16px;
    cursor: pointer;
}

audio#music-preview {
    margin: 20px 0px 0;
}


/** Panel Favorite:Start **/
.favorite-musics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.favorite-music {
    border: 1px solid #e2e2e2;
    padding: 5px;
    background: #fcfcfc;
    border-radius: 8px;
    display: grid;
    grid-template-columns: 80px auto;
    gap: 10px;
    color: black;
}

.favorite-music h2 {
    font-size: 16px;
    height: 54px;
    font-weight: 500;
}

.favorite-music img {
    border-radius: 8px;
    width: 80px;
    height: auto;
}

/** Panel Favorite:End **/

/** Options: Start */
#options fieldset {
    padding: 15px;
    border-radius: 15px;
    border: 1px solid #eaeaea;
    background: #fdfdfd;
    margin-bottom: 15px;
}

#options fieldset legend {
    font-weight: bold;
    padding: 0 10px;
}

.options-cols {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.options-cols>div {
    width: calc(50% - 7.5px);
}

.info-box {
    background: var(--color-primary-light);
    color: var(--color-primary);
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 8px;
}

/** Options: End */