/* ----------------------------------
    Template Name: Grant Document share
    Author: Startupgrants
    Description:
    Version: 1.0
    -------------------------------------
*/
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@700&family=Open+Sans:wght@400&display=swap");
/*-- Variables --*/
:root {
  --font-default: 'Open Sans', sans-serif;
  --font-heading: 'Montserrat', sans-serif;
  --black: #000000;
  --dark: #0a1828;
  --dark-secondary: #202942;
  --white: #ffffff;
  --color-primary: #ff2256;
  --color-primary-hover: #c7143e;
  --color-secondary: #112035;
  --color-heading: #202942;
  --color-paragraph: #A0AEC0;
  --text-grey: #A0AEC0;
  --card-bg: #171C23;
  --gr1: #FF4845;
  --gr2: #FF0D60;
  --h1: 48px;
  --h2: 40px;
  --h3: 32px;
  --h4: 24px;
  --h5: 20px;
  --h6: 18px;
  --border-color: rgba(45, 49, 57, 0.6784313725);
}

/*=========================*/
/*  Responsive breakpoints
/*=========================*/
/* Box-sizing reset */
*, *::before, *::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Base HTML & body */
html, body, .wrapper {
  width: 100%;
  height: 100%;
  font-family: var(--font-default, "Arial", sans-serif);
  font-size: 16px;
  line-height: 28px;
  font-weight: 400;
  color: var(--color-paragraph, #333);
  background-color: #171C23;
  position: relative;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading, "Arial", sans-serif);
  font-weight: normal;
  line-height: 1.2;
  color: var(--text-grey, #000);
  margin-bottom: 15px;
  letter-spacing: 0;
}

h1 {
  font-size: var(--h1);
}

h2 {
  font-size: var(--h2);
}

h3 {
  font-size: var(--h3);
}

h4 {
  font-size: var(--h4);
}

h5 {
  font-size: var(--h5);
}

h6 {
  font-size: var(--h6);
}

/* Paragraphs */
p {
  margin-bottom: 15px;
  font-family: var(--font-default);
  font-weight: 400;
  color: var(--color-paragraph);
}

li {
  color: var(--color-paragraph);
}

/* Links */
a {
  color: var(--color-heading);
  font-weight: 900;
  text-decoration: none;
  -webkit-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}

/* Strong & Bold */
b, strong {
  font-weight: 900;
}

/* Images & iframes */
img, iframe {
  max-width: 100%;
  display: block;
  border: 0;
}

/* Horizontal rules */
hr {
  border: 0;
  border-top: 1px solid #eee;
  margin: 0;
}

/* Preformatted text */
pre {
  display: block;
  padding: 9.5px;
  margin-bottom: 30px;
  color: #333;
  background-color: #f9f9f9;
  border: 1px solid #ededed;
  border-radius: inherit;
  font-size: 13px;
  line-height: 1.42857143;
  word-break: break-word;
}

/* Forms: Inputs, Textareas, Selects */
input, textarea, select {
  border: 1px solid #e7e7e7;
  border-radius: inherit;
  font-family: inherit;
  font-size: inherit;
  -webkit-box-shadow: inherit;
          box-shadow: inherit;
  padding: 0.5rem;
  -webkit-transition: border-color 0.3s, -webkit-box-shadow 0.3s;
  transition: border-color 0.3s, -webkit-box-shadow 0.3s;
  transition: border-color 0.3s, box-shadow 0.3s;
  transition: border-color 0.3s, box-shadow 0.3s, -webkit-box-shadow 0.3s;
}

input:focus, textarea:focus, select:focus {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
  -webkit-box-shadow: inherit;
          box-shadow: inherit;
}

/* Labels */
label {
  display: inline-block;
  font-weight: normal;
  margin-bottom: 5px;
  max-width: 100%;
}

small {
  color: var(--text-grey);
}

.alert li {
  color: #0c0c0c;
}

.alert ul {
  padding: 0;
}

/* Buttons */
.btn {
  display: inline-block;
  color: #fff;
  text-align: center;
  vertical-align: middle;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  background-color: var(--color-primary);
  border: none;
  padding: 0.5rem 1rem;
  font-family: var(--font-default);
  line-height: 1.5;
  cursor: pointer;
  -webkit-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}

.btn:hover, .btn:focus {
  background-color: var(--color-primary-hover);
  color: #fff;
}

.btn.active, .btn:active {
  outline: 0;
  -webkit-box-shadow: inherit;
          box-shadow: inherit;
}

.btn-check:checked + .btn, .btn.active, .btn.show, .btn:first-child:active, :not(.btn-check) + .btn:active {
  color: #fff;
  background-color: var(--color-primary-hover);
  border-color: var(--color-primary-hover);
}

.btn.disabled, .btn:disabled, fieldset:disabled .btn {
  color: #fff;
  background-color: var(--color-primary-hover);
  border-color: var(--color-primary-hover);
}

.btn:focus-visible {
  color: #fff;
  background-color: var(--color-primary-hover);
  border-color: var(--color-primary-hover);
  outline: 0;
  -webkit-box-shadow: var(--color-primary-hover);
          box-shadow: var(--color-primary-hover);
}

.sd-radius {
  border-radius: 50px;
}

.modal-content {
  background: var(--color-secondary);
}
.modal-content .modal-title {
  color: var(--text-grey) !important;
  font-size: 14px;
}
@media (min-width: 768px) {
  .modal-content .modal-title {
    font-size: 16px;
  }
}
.modal-content .modal-header {
  border-color: rgba(255, 255, 255, 0.0901960784);
  padding: 10px 15px;
}
@media (min-width: 768px) {
  .modal-content .modal-header {
    padding: 16px;
  }
}
.modal-content .modal-footer {
  border-color: rgba(255, 255, 255, 0.0901960784);
}

.modal-backdrop {
  backdrop-filter: blur(8px);
  background-color: rgba(70, 79, 91, 0.3607843137);
  opacity: 1 !important;
}

button.btn-close {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}

label {
  color: var(--text-grey);
}

a.btn.btn-dark {
  background-color: var(--dark);
}

.custom_form {
  padding: 15px;
  background: #1b1d23;
  border-radius: 8px;
}
@media (min-width: 992px) {
  .custom_form {
    padding: 24px;
  }
}
.custom_form .form-control {
  background: #1b1d23;
  border: 1px solid #2c313a;
  padding: 8px 12px;
  height: 50px;
  font-size: 14px;
  line-height: 20px;
  border-radius: 10px;
  color: var(--text-grey);
}
.custom_form .form-control:focus, .custom_form .form-control:focus-visible, .custom_form .form-control:active, .custom_form .form-control:hover {
  background: #1b1d23;
  border: 1px solid #2c313a;
}
.custom_form .notic {
  font-size: 14px;
  line-height: 1.4;
  margin: 0 0 25px;
  font-weight: 600;
  color: var(--text-grey);
}
.custom_form .features_inputs input,
.custom_form .delivery_days input,
.custom_form .price_inputs input {
  margin-bottom: 16px;
}
@media (min-width: 992px) {
  .custom_form .features_inputs input,
  .custom_form .delivery_days input,
  .custom_form .price_inputs input {
    margin-bottom: 0;
  }
}

.modal .modal-header {
  background: -webkit-gradient(linear, left top, right top, from(var(--gr1)), color-stop(61%, var(--gr2)));
  background: linear-gradient(90deg, var(--gr1) 0%, var(--gr2) 61%);
}
.modal .modal-header .modal-title {
  color: var(--white) !important;
}
.modal .modal-content {
  background: #171C23;
}
.modal .modal-body {
  padding: 35px 20px;
}
.modal .modal-title {
  font-size: 16px;
}
.modal .footer_action {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (min-width: 768px) {
  .modal .footer_action {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.modal .btn {
  font-size: 16px;
  color: var(--white) !important;
  background: -webkit-gradient(linear, left top, right top, from(var(--gr1)), color-stop(61%, var(--gr2)));
  background: linear-gradient(90deg, var(--gr1) 0%, var(--gr2) 61%);
  font-weight: normal;
  margin-right: 5px;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
  padding: 10px 25px;
  border-radius: 50px;
  margin-top: 20px;
  min-width: 150px;
}
.modal #back_to_existing,
.modal #create_new_play_list {
  background: #000 !important;
}

html body .select2-search--dropdown .select2-search__field,
html body .select2-container .select2-selection--single,
html body .select2-container .select2-selection--multiple {
  background-color: #1b1d23 !important;
  border: 1px solid #2c313a !important;
  height: 50px !important;
}

html body .select2-results__option--highlighted,
html body .select2-container--default .select2-results__option--selected {
  background-color: #444444 !important;
}

html body .select2-dropdown {
  background-color: #1b1d23 !important;
  border-color: #2c313a !important;
}

html body .select2-results__option {
  font-size: 14px;
}

html body .select2-container--default .select2-results__group {
  background-color: #020304 !important;
}

html body .select2-selection__clear {
  display: none;
}

html body .select2-container .select2-selection--multiple .select2-selection__rendered {
  display: inline !important;
  line-height: 1.5 !important;
}

html body .select2-container--default .select2-search--inline .select2-search__field {
  color: var(--text-grey);
}
html body .select2-container--default .select2-search--inline .select2-search__field::-webkit-input-placeholder {
  color: rgba(160, 174, 192, 0.5882352941);
}
html body .select2-container--default .select2-search--inline .select2-search__field:-ms-input-placeholder {
  color: rgba(160, 174, 192, 0.5882352941);
}
html body .select2-container--default .select2-search--inline .select2-search__field::-ms-input-placeholder {
  color: rgba(160, 174, 192, 0.5882352941);
}
html body .select2-container--default .select2-search--inline .select2-search__field::-moz-placeholder {
  color: rgba(160, 174, 192, 0.5882352941);
}
html body .select2-container--default .select2-search--inline .select2-search__field::placeholder {
  color: rgba(160, 174, 192, 0.5882352941);
}

.asp_area {
  font-size: 13px;
  margin: 0 0 0 0;
}

@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .artist_list_page .custom_col {
    width: 33%;
  }
}

.playlist {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 10px;
}
.playlist .card {
  padding: 12px;
  background: rgba(23, 28, 35, 0.7098039216);
  border-radius: 6px;
  color: var(--text-grey);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.playlist .card:hover {
  background: transparent;
}
.playlist .playlist-img {
  border-radius: 6px;
  display: block;
  width: 100%;
}
.playlist .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 10px;
}
.playlist .playlist-title {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  white-space: normal;
  -webkit-line-clamp: 1;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  font-size: 14px;
  line-height: 1.2;
  color: var(--text-grey);
}
.playlist .playlist-artist {
  font-size: 12px;
  line-height: 1.2;
  font-weight: 600;
}

.sd-breadcrumb a {
  color: var(--text-grey);
  font-size: 14px;
}
.sd-breadcrumb a:hover {
  color: var(--color-primary);
}

.homepage .playlist {
  margin: 0;
}
.homepage .artists_slider:hover .owl-nav {
  opacity: 1;
}
.homepage .artists_slider .owl-nav {
  margin: 0;
  opacity: 0;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.homepage .artists_slider .owl-nav .owl-prev,
.homepage .artists_slider .owl-nav .owl-next {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  margin: 0;
  width: 30px;
  height: 30px;
  background: #3e444a !important;
  border-radius: 100px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.homepage .artists_slider .owl-nav .owl-prev:hover,
.homepage .artists_slider .owl-nav .owl-next:hover {
  background: var(--color-primary) !important;
}
.homepage .artists_slider .owl-nav .owl-prev span,
.homepage .artists_slider .owl-nav .owl-next span {
  font-size: 25px;
  line-height: 1;
}
.homepage .artists_slider .owl-nav .owl-prev {
  left: -6px;
}
.homepage .artists_slider .owl-nav .owl-next {
  right: -6px;
}

.dropdown_info .dropdown-menu.show {
  background-color: #171c23;
}
.dropdown_info .dropdown-menu.show .dropdown-item {
  color: var(--text-grey);
  font-size: 14px;
}
.dropdown_info .dropdown-menu.show .dropdown-item:hover {
  color: var(--color-primary) !important;
  background-color: #23282f;
}

.list_item .card .dropdown_info .add-to-playlist-btn {
  background-color: transparent !important;
}
.list_item .card .dropdown_info .dropdown-item span {
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.list_item .card .dropdown_info .dropdown-item span:hover {
  color: var(--color-primary) !important;
  background-color: #23282f;
}

.playlistModal-add .modal-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: self-start;
      -ms-flex-align: self-start;
          align-items: self-start;
  gap: 5px;
}
@media (min-width: 768px) {
  .playlistModal-add .modal-title {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.playlistModal-add #song_name {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 270px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .playlistModal-add #song_name {
    max-width: 250px;
  }
}

.loadSongInfoModal .block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .loadSongInfoModal .block {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.loadSongInfoModal .block .image_area {
  width: 100%;
  border-radius: 10px;
}
@media (min-width: 768px) {
  .loadSongInfoModal .block .image_area {
    width: 150px;
  }
}
.loadSongInfoModal .block .image_area img {
  width: 100%;
}
.loadSongInfoModal .block .name {
  margin-bottom: 0;
}
.loadSongInfoModal .block .created_at {
  color: var(--text-grey);
  font-size: 14px;
  line-height: 1;
  margin: 10px 0;
}
.loadSongInfoModal .block .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
}
.loadSongInfoModal .block .content i {
  margin-right: 5px;
}
.loadSongInfoModal .block .content p {
  color: var(--text-grey);
  font-size: 14px;
}
.loadSongInfoModal .block .name {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.loadSongInfoModal .block .action a {
  font-size: 20px !important;
  color: var(--text-grey);
  background: transparent !important;
}
.loadSongInfoModal .block .left_action {
  gap: 20px;
}
.loadSongInfoModal .artist_area {
  margin-bottom: 0;
}
.loadSongInfoModal .artist_area .follow_now_btn {
  font-size: 14px;
  padding: 10px 0;
  margin-top: 0;
  background: rgb(2, 3, 4);
  border-color: rgb(2, 3, 4);
  color: var(--text-grey, #000);
}
.loadSongInfoModal .artist_area .follow_now_btn i {
  margin-right: 5px;
}
.loadSongInfoModal .aboutArtist,
.loadSongInfoModal .viewLyrics {
  color: var(--text-grey);
}
.loadSongInfoModal .section_title {
  color: var(--text-grey);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgb(35, 40, 46);
}

@media (max-width: 768px) {
  .min-height-100vh {
    min-height: 100vh;
  }
}
.disabled {
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 72, 69, 0.65)), color-stop(61%, rgba(255, 13, 96, 0.65))) !important;
  background: linear-gradient(90deg, rgba(255, 72, 69, 0.65) 0%, rgba(255, 13, 96, 0.65) 61%) !important;
}

.cancel-btn {
  color: var(--text-grey) !important;
  background-color: #3b4047 !important;
}

.swal2-popup {
  border-radius: 10px;
  padding: 30px;
}
.swal2-popup .swal2-title {
  color: var(--color-primary) !important;
}
.swal2-popup .swal2-title,
.swal2-popup .swal2-html-container {
  padding: 0;
}
.swal2-popup .swal2-actions {
  margin-top: 0;
}
.swal2-popup p {
  color: var(--text-grey);
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 0;
}
.swal2-popup .custom-close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  background: #000000;
  border: none;
  color: #a0aec0;
  font-size: 16px;
  cursor: pointer;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
  width: 25px;
  height: 25px;
  border-radius: 50px;
  line-height: 1;
}
.swal2-popup .custom-close-btn:hover {
  color: #fff;
}

.custom-app-popup .app_download_modal {
  margin: 20px 0 30px;
}
.custom-app-popup .app_download_modal .app_links_area {
  margin: 20px 0 0;
}
.custom-app-popup .app_download_modal .app_links_area a {
  max-width: 130px;
}
.custom-app-popup .dont_show_btn:hover {
  color: var(--white) !important;
  background-color: var(--color-primary) !important;
}

.app_area .app_links_area {
  max-width: 240px;
  gap: 10px !important;
}

.custom-lyrics-popup .swal2-title,
.custom-lyrics-popup .swal2-html-container {
  padding: 0;
  text-align: left;
}
.custom-lyrics-popup .swal2-title {
  color: var(--color-primary);
  font-size: 20px;
  line-height: 30px;
}
.custom-lyrics-popup .swal2-actions {
  margin: 0 !important;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
}
.custom-lyrics-popup .lyrics_modal_content {
  margin: 20px 0 30px;
}
.custom-lyrics-popup .lyrics_modal_content p {
  color: var(--text-grey);
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 15px;
}
.custom-lyrics-popup .dont_show_btn {
  margin-top: 15px;
}
@media (min-width: 768px) {
  .custom-lyrics-popup .dont_show_btn {
    margin-top: 0;
    margin-left: 15px;
  }
}

div:where(.swal2-container).swal2-backdrop-show, div:where(.swal2-container).swal2-noanimation {
  backdrop-filter: blur(10px);
}

.alert_custom_bg {
  background: rgba(255, 255, 255, 0.0392156863);
  border-color: rgba(255, 255, 255, 0.0392156863);
  color: var(--text-grey, #000);
}

.swal2-popup.no-icon-margin .swal2-icon {
  margin: 5px auto 20px;
}

@media (max-width: 768px) {
  .user_name {
    width: 80px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: center;
  }
}

body .offcanvas {
  background: #171C23;
}

body .offcanvas-backdrop {
  background-color: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(5px);
}

body .offcanvas-backdrop.show {
  opacity: 1;
}

.highlight_color {
  color: #ff2256 !important;
}

.filepond--root .filepond--drop-label {
  background: #020304 !important;
  border-radius: 5px !important;
}

.bg-avid {
  background: -webkit-gradient(linear, left top, right top, from(var(--gr1)), color-stop(61%, var(--gr2))) !important;
  background: linear-gradient(90deg, var(--gr1) 0%, var(--gr2) 61%) !important;
}

.custom-currency-popup .swal2-title {
  margin-bottom: 12px;
}
.custom-currency-popup .swal2-icon {
  margin-top: 0;
  margin-bottom: 20px;
}
.custom-currency-popup .currency_class {
  margin: 0 auto 20px;
  font-size: 16px;
}
.custom-currency-popup .text_content {
  margin-bottom: 25px !important;
}
.custom-currency-popup .form-group {
  margin-bottom: 20px;
}
.custom-currency-popup .form-control {
  background: #1b1d23 !important;
  border: 1px solid #2c313a !important;
  padding: 0.7rem 0.75rem;
  color: var(--text-grey);
  -webkit-box-shadow: none;
          box-shadow: none;
}
.custom-currency-popup .form-control::-webkit-input-placeholder {
  color: #40434d;
  opacity: 1;
}
.custom-currency-popup .form-control::-moz-placeholder {
  color: #40434d;
  opacity: 1;
}
.custom-currency-popup .form-control:-ms-input-placeholder {
  color: #40434d;
  opacity: 1;
}
.custom-currency-popup .form-control::-ms-input-placeholder {
  color: #40434d;
  opacity: 1;
}
.custom-currency-popup .form-control::placeholder {
  color: #40434d;
  opacity: 1;
}
.custom-currency-popup .form-control:hover {
  background-color: rgba(150.8006329114, 166.1563291139, 185.8993670886, 0.4784313725);
}
.custom-currency-popup .form-control:focus {
  background-color: rgba(160, 174, 192, 0.4784313725);
  border: 0;
  color: var(--text-grey);
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.custom-currency-popup .form-control:active {
  background-color: rgba(144.667721519, 160.9272151899, 181.832278481, 0.4784313725);
  border: 0;
  color: var(--text-grey);
  -webkit-box-shadow: none;
          box-shadow: none;
}
.custom-currency-popup .form-control:disabled, .custom-currency-popup .form-control[readonly] {
  background-color: rgba(129.335443038, 147.8544303797, 171.664556962, 0.4784313725);
  opacity: 0.7;
  cursor: not-allowed;
}
.custom-currency-popup .swal2-validation-message {
  margin: 0px 0;
  background: transparent;
  color: var(--color-primary) !important;
  padding-top: 0;
}
.custom-currency-popup .swal2-validation-message::before {
  background-color: var(--color-primary) !important;
}

.advertisement-item {
  margin: 20px 0;
  background: rgba(229, 56, 94, 0.1);
  border: 1px solid rgba(229, 56, 94, 0.3);
  border-radius: 0.75rem;
  -webkit-transition: background-color 0.2s;
  transition: background-color 0.2s;
  color: var(--text-grey);
  position: relative;
  padding: 15px;
}
.advertisement-item img {
  width: 112px;
  border-radius: 6px;
}
.advertisement-item .content_area {
  gap: 15px;
}
.advertisement-item .sponsored {
  background: #272c35;
  padding: 2px 8px;
  color: #a0aec0;
  font-weight: 300;
  font-size: 12px;
  border-radius: 4px;
}
.advertisement-item p {
  font-size: 14px;
}

.select2-container .select2-selection--single,
.select2-container .select2-selection--multiple {
  height: 45px !important;
  background-color: #222E3E !important;
  border: 1px solid #444 !important;
  border-radius: 6px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.select2-container .select2-selection--single .select2-selection__rendered,
.select2-container .select2-selection--multiple .select2-selection__rendered {
  color: #fff !important;
  line-height: 45px !important;
  padding-left: 12px !important;
}
.select2-container .select2-selection--single .select2-selection__arrow,
.select2-container .select2-selection--multiple .select2-selection__arrow {
  height: 45px !important;
  right: 10px;
}
.select2-container .select2-selection--multiple .select2-selection__choice {
  background-color: #344057 !important;
  border: none !important;
  color: #fff !important;
  padding: 4px 8px;
  border-radius: 4px;
}

.select2-dropdown {
  background-color: #222E3E !important;
  border: 1px solid #444 !important;
}

.select2-results__option {
  color: #fff !important;
  padding: 8px 12px;
}
.select2-results__option--highlighted {
  background-color: #344057 !important;
  color: #fff !important;
}

.select2-search--dropdown {
  padding: 6px;
}
.select2-search--dropdown .select2-search__field {
  background-color: #222E3E !important;
  color: #fff !important;
  border: 1px solid #444 !important;
  border-radius: 4px;
  padding: 6px 10px;
}
.select2-search--dropdown .select2-search__field:focus {
  outline: none !important;
  border-color: rgb(93.5, 93.5, 93.5) !important;
}

.page_area {
  position: relative;
  overflow: hidden;
}

.logo_area {
  width: 150px;
}

.page_header {
  width: 100%;
  max-width: 100vw;
  position: fixed;
  top: 0;
  z-index: 10;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  background-color: #1a1f2f;
  padding: 15px;
  background: #171C23;
}
@media (min-width: 768px) {
  .page_header {
    padding: 15px 30px;
  }
}
@media (min-width: 1200px) {
  .page_header {
    margin-left: 300px;
    width: calc(100% - 300px);
    max-width: 100vw;
    margin-left: 300px;
  }
  .page_header.back_color {
    background-color: #112035;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .page_header {
    margin-left: 250px !important;
    width: calc(100% - 240px);
  }
}
@media (min-width: 1200px) {
  .page_header {
    padding: 15px 30px 15px 18px;
  }
}
.page_header .login_btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
}
.page_header .login_btn .btn {
  padding: 10px 15px;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 600;
  border-radius: 40px;
}
.page_header .login_btn .btn i {
  margin-right: 3px;
}
@media (min-width: 992px) {
  .page_header .login_btn .btn i {
    margin-right: 5px;
  }
}
@media (min-width: 992px) {
  .page_header .login_btn .btn {
    padding: 10px 25px;
  }
}
.page_header .notification_profile {
  position: relative;
}
.page_header .notification_profile a {
  width: 36px;
  height: 36px;
  background: #2b323a;
  border-radius: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #758599;
}
@media (min-width: 992px) {
  .page_header .notification_profile a {
    width: 45px;
    height: 45px;
  }
}
.page_header .notification_profile #count {
  background-color: var(--color-primary);
  width: 18px;
  height: 18px;
  border-radius: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #fff;
  font-size: 12px;
  position: absolute;
  top: 0;
  right: -5px;
}
.page_header .right_options {
  gap: 15px;
}
.page_header .search_notification {
  gap: 10px;
}
@media (min-width: 768px) {
  .page_header .search_notification {
    margin-left: 20px;
  }
}
@media (min-width: 1200px) {
  .page_header .search_notification {
    margin-left: 0;
  }
}
.page_header .mobile_menu .btn {
  font-size: 24px;
  margin-right: 3px;
  color: #758599;
}
.page_header .search_area .input-group {
  background-color: #2b323a;
  border-radius: 100px;
  overflow: hidden;
}
.page_header .search_area .form-control {
  min-height: 45px;
  width: 250px;
  padding: 0 15px 0 25px;
  color: var(--text-grey);
  border-top-left-radius: 100px;
  border-bottom-left-radius: 100px;
}
@media (min-width: 768px) {
  .page_header .search_area .form-control {
    width: 190px;
  }
}
@media (min-width: 992px) {
  .page_header .search_area .form-control {
    width: 210px;
  }
}
@media (min-width: 1200px) {
  .page_header .search_area .form-control {
    width: 350px;
  }
}
.page_header .search_area .form-control:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
}
.page_header .search_area .form-control::-webkit-input-placeholder {
  color: var(--text-grey);
  opacity: 1;
}
.page_header .search_area .form-control::-moz-placeholder {
  color: var(--text-grey);
  opacity: 1;
}
.page_header .search_area .form-control:-ms-input-placeholder {
  color: var(--text-grey);
  opacity: 1;
}
.page_header .search_area .form-control::-ms-input-placeholder {
  color: var(--text-grey);
  opacity: 1;
}
.page_header .search_area .form-control::placeholder {
  color: var(--text-grey);
  opacity: 1;
}
.page_header .search_area .btn i {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.page_header .search_area .btn:hover i {
  color: var(--color-primary) !important;
}
.page_header .show_name_asp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  gap: 15px;
  margin-right: 15px;
}
.page_header .show_name_asp a {
  font-size: 16px;
}
.page_header .dropdown-menu.show {
  background-color: #171c23;
  min-width: 250px;
}
@media (min-width: 992px) {
  .page_header .dropdown-menu.show {
    min-width: 300px;
  }
}
.page_header .dropdown-menu.show .dropdown-item {
  color: var(--text-grey);
  font-size: 14px;
}
.page_header .dropdown-menu.show .dropdown-item:hover {
  color: var(--color-primary);
  background-color: #23282f;
}
.page_header .title {
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-grey);
  padding: 4px 15px;
}
.page_header .menu_links {
  border-bottom: 1px solid #26282b;
  padding: 4px 15px;
}
.page_header .menu_links .menu_link {
  color: var(--text-grey);
  font-weight: 400;
  padding: 5px 10px;
  font-size: 14px;
  border-radius: 5px;
}
.page_header .menu_links .menu_link i {
  margin-right: 5px;
}
.page_header .menu_links .menu_link:hover {
  color: var(--color-primary);
  background: #2d3136;
}
.page_header .menu_links .menu_link.active {
  color: var(--color-primary);
  background: #2d3136;
}

.page_body_area {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  padding-top: 70px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
}
.page_body_area::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(23, 28, 35, 0.7607843137);
}
@media (min-width: 768px) {
  .page_body_area {
    padding-top: 80px;
  }
}
@media (min-width: 992px) {
  .page_body_area {
    padding-top: 77px;
    background-position: center right;
    background-size: contain;
  }
}
@media (min-width: 1200px) {
  .page_body_area {
    padding-top: 75px;
  }
}
@media only screen and (min-width: 600px) and (max-width: 768px) {
  .page_body_area {
    display: block;
  }
}

.mobileApp .page_body_area {
  padding-top: 0 !important;
}

.page_sidebar {
  position: fixed;
  top: 0;
  z-index: 9;
  height: 100%;
  line-height: inherit;
  background: #171C23;
  width: 300px;
  text-align: left;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  padding: 15px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
@media (min-width: 992px) {
  .page_sidebar {
    padding: 35px 15px 35px 35px;
    height: calc(100vh - 80px);
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .page_sidebar {
    width: 250px;
  }
}

.offcanvas-body::-webkit-scrollbar,
.page_sidebar::-webkit-scrollbar {
  width: 8px;
}

.offcanvas-body::-webkit-scrollbar-track,
.page_sidebar::-webkit-scrollbar-track {
  background: var(--scrollbar-track, #1c2129);
}

.offcanvas-body::-webkit-scrollbar-thumb,
.page_sidebar::-webkit-scrollbar-thumb {
  background: var(--scrollbar-thumb, #292d33);
  border-radius: 10px;
  border: 2px solid var(--scrollbar-track, #1c2129);
}

.offcanvas-body::-webkit-scrollbar-thumb:hover,
.page_sidebar::-webkit-scrollbar-thumb:hover {
  background: var(--scrollbar-thumb-hover, #1c2129);
}

.page_song_info {
  position: fixed;
  top: 50%;
  right: 0;
  z-index: 9;
  height: calc(100vh - 150px);
  line-height: inherit;
  background: #171C23;
  width: 100%;
  text-align: left;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  padding-top: 0;
  padding: 0 15px;
  overflow-y: auto;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media (max-width: 1024px) {
  .page_song_info {
    width: 30%;
    padding: 60px 30px 20px;
    margin-top: 33px;
    height: calc(100vh - 70px);
  }
}
@media (max-width: 768px) {
  .page_song_info {
    margin-top: 0;
    height: 100vh;
    z-index: 99;
    width: 50%;
    padding: 60px 30px 20px;
    position: absolute;
  }
}
@media (max-width: 575.98px) {
  .page_song_info {
    margin-top: 0;
    height: 100vh;
    z-index: 99;
    width: 100%;
    padding: 60px 30px 20px;
  }
}
@media (min-width: 1200px) {
  .page_song_info {
    width: 300px;
  }
}
.page_song_info .nav {
  margin-top: 0;
}
.page_song_info .block {
  margin-bottom: 30px;
}
.page_song_info #song_info_container {
  padding: 3px;
}
.page_song_info .animation::before {
  left: -3px !important;
  top: -3px !important;
  width: calc(100% + 6px) !important;
  height: calc(100% + 6px) !important;
}
.page_song_info .image_area {
  border-radius: 10px;
  background-color: #242c36;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: var(--text-grey);
  position: relative;
}
.page_song_info .image_area img {
  width: 100%;
  border-radius: 10px;
  position: relative;
}
.page_song_info .image_area::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background: linear-gradient(45deg, var(--color-primary), #020304, var(--color-primary));
  background-size: 200% 200%;
  -webkit-animation: gradient-animate 4s linear infinite;
          animation: gradient-animate 4s linear infinite;
}
.page_song_info .image_area .play_button {
  position: absolute;
}
.page_song_info .image_area .play_button .btn {
  width: 36px;
  height: 36px;
}
.page_song_info .artisat_name,
.page_song_info .name {
  color: var(--white);
  margin: 0;
}
.page_song_info .mate_info {
  padding: 15px 0;
}
.page_song_info .content {
  margin: 10px 0;
}
.page_song_info .content p {
  font-size: 14px;
  font-weight: 500;
  margin: 5px 0;
  line-height: 1.5;
  color: var(--text-grey);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.page_song_info .content p a {
  color: var(--color-primary);
}
.page_song_info .name {
  font-size: 18px;
  line-height: 1.5;
  font-weight: 600;
  display: block;
  max-width: 100%;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.page_song_info .icon_area {
  width: 25px;
  height: 25px;
  color: var(--white);
  line-height: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-right: 5px;
  color: var(--text-grey);
}
.page_song_info .action {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.page_song_info .action a {
  font-size: 22px;
  color: var(--text-grey);
}
.page_song_info .action a:hover {
  color: var(--color-primary);
}
.page_song_info .action .left_action {
  gap: 20px;
}
.page_song_info .action .left_action .sharebtn {
  width: auto;
  height: auto;
  background: transparent !important;
  font-size: 22px !important;
}
.page_song_info .follow_now_btn {
  background: -webkit-gradient(linear, left top, right top, from(var(--gr1)), color-stop(61%, var(--gr2)));
  background: linear-gradient(90deg, var(--gr1) 0%, var(--gr2) 61%);
  font-weight: normal;
  padding: 6px 15px;
  border-radius: 50px;
  color: var(--white) !important;
  font-size: 14px !important;
}
.page_song_info .follow_now_btn:hover {
  color: var(--white);
}
.page_song_info .follow_now_btn i {
  margin-right: 3px;
}
.page_song_info .artist_area .content {
  margin: 15px 0 20px;
}
.page_song_info .close_btn_area {
  position: absolute;
  top: 5px;
  right: 15px;
}
@media (min-width: 992px) {
  .page_song_info .close_btn_area {
    right: 12px;
  }
}
@media (min-width: 1200px) {
  .page_song_info .close_btn_area {
    display: none;
  }
}
.page_song_info .close_btn_area .close_btn {
  color: var(--text-grey);
  font-size: 20px;
}

@media (max-width: 1200px) {
  .page_song_info {
    display: none;
  }
  .page_song_info.show {
    display: block;
    width: 300px;
    padding: 45px 15px 20px;
  }
}
@media (max-width: 575.98px) {
  .page_song_info.show {
    width: 100%;
  }
}
.page_song_info::-webkit-scrollbar {
  width: 8px;
}

.page_song_info::-webkit-scrollbar-track {
  background: var(--scrollbar-track, #1e1e1e);
}

.page_song_info::-webkit-scrollbar-thumb {
  background: var(--scrollbar-thumb, #555);
  border-radius: 10px;
  border: 2px solid var(--scrollbar-track, #1e1e1e);
}

.page_song_info::-webkit-scrollbar-thumb:hover {
  background: var(--scrollbar-thumb-hover, #888);
}

.custom_sidebar {
  width: 100%;
}
@media (min-width: 1200px) {
  .custom_sidebar {
    margin-right: 300px !important;
  }
}
@media (min-width: 1600px) {
  .custom_sidebar {
    margin-right: 300px !important;
    padding: 0px !important;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .page_body_fix_width {
    max-width: calc(100vw - 575px) !important;
  }
}
@media (min-width: 1200px) {
  .page_body_fix_width {
    max-width: calc(100vw - 630px);
  }
}

.page_body {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  color: var(--white);
  position: relative;
  position: relative;
  background: #020304;
}
@media (min-width: 992px) {
  .page_body {
    padding: 25px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .page_body {
    margin-left: 270px !important;
    margin-right: 20px;
  }
}
@media (min-width: 1200px) {
  .page_body {
    margin-top: 0;
    margin-left: 320px;
    margin-right: 20px;
    width: 100%;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
  }
}

.scroll_area {
  overflow-y: scroll;
  height: calc(100vh - 70px);
  padding: 20px;
}
@media (min-width: 992px) {
  .scroll_area {
    height: calc(100vh - 100px);
  }
}
@media (min-width: 1200px) {
  .scroll_area {
    height: calc(100vh - 155px);
  }
}
.scroll_area {
  /* Hide scrollbar for Chrome, Safari, Edge */
}
.scroll_area::-webkit-scrollbar {
  display: none;
}
.scroll_area {
  /* Hide scrollbar for Firefox */
  scrollbar-width: none;
  /* Hide scrollbar for IE/Edge Legacy */
  -ms-overflow-style: none;
}

.active_player {
  padding-bottom: 140px;
}
@media (min-width: 992px) {
  .active_player {
    padding-bottom: 100px;
  }
}
@media (min-width: 992px) {
  .active_player {
    padding-bottom: 140px;
  }
}

.list_item:last-child .card {
  margin-bottom: 0;
}
.list_item .form-check-input {
  background-color: #363d48;
  border: var(--bs-border-width) solid #171c23;
}
.list_item .form-check-input:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  background-color: #363d48;
  border: var(--bs-border-width) solid #171c23;
}
.list_item .form-check-input:checked {
  background-color: var(--color-primary);
  border: var(--bs-border-width) solid var(--color-primary);
}
.list_item .card {
  border: 0;
  border-radius: 15px;
  padding: 10px 10px;
  margin-bottom: 10px;
  background-color: rgba(23, 28, 35, 0.5803921569);
  border: 1px solid rgba(45, 49, 57, 0.6784313725);
  border-radius: 0.75rem;
  -webkit-transition: background-color 0.2s;
  transition: background-color 0.2s;
  color: var(--text-grey);
  position: relative;
}
.list_item .card:hover {
  background-color: #242a33;
}
@media (min-width: 992px) {
  .list_item .card {
    padding: 15px 30px;
  }
}
@media (max-width: 575.98px) {
  .list_item .card .form-check {
    position: absolute;
    bottom: 10px;
    left: 30px;
  }
}
.list_item .card span {
  color: var(--text-grey);
}
@media (max-width: 768px) {
  .list_item .card span {
    font-size: 14px;
  }
}
.list_item .card span.title {
  color: var(--text-grey);
}
@media (max-width: 768px) {
  .list_item .card span.title {
    font-size: 14px;
    line-height: 1.5;
  }
}
.list_item .card span.title {
  display: block;
  max-width: 70%;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (min-width: 768px) {
  .list_item .card span.title {
    max-width: 60%;
  }
}
@media (min-width: 992px) {
  .list_item .card span.title {
    max-width: 100%;
  }
}
.list_item .image_area img {
  width: 60px;
  height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (min-width: 768px) {
  .list_item .image_area img {
    width: 40px;
    height: 40px;
  }
}
.list_item .song_preview .load_song_info {
  width: 36px;
  height: 36px;
  line-height: 1;
  color: var(--text-grey);
  background-color: #3b4047 !important;
  font-size: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.list_item .play_button .btn {
  width: 36px;
  height: 36px;
}
@media (max-width: 768px) {
  .list_item .play_button .btn {
    width: 28px;
    height: 28px;
  }
}
.list_item .play_button .btn {
  background-color: var(--color-primary);
  line-height: 1;
}
.list_item .add-to-playlist-btn {
  color: var(--text-grey);
  background-color: #3b4047 !important;
}
.list_item .play_action {
  gap: 15px;
}
@media (max-width: 768px) {
  .list_item .play_action {
    padding: 0px 15px;
  }
}
.list_item a {
  color: var(--text-grey);
  font-size: 22px;
}
.list_item a.song-action {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 1200px) {
  .list_item .info {
    display: none;
  }
}
.list_item .dropdown_info {
  display: none;
}
@media (min-width: 1201px) {
  .list_item .dropdown_info {
    display: block;
  }
}
.list_item .right_action {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
}

.card_content_area {
  gap: 15px;
}
@media (max-width: 768px) {
  .card_content_area {
    gap: 8px;
  }
}

.song_filter {
  margin-bottom: 30px;
}
.song_filter .btn {
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
  font-weight: normal;
  padding: 5px 15px;
  margin-right: 5px;
  border-radius: 50px;
  color: var(--text-grey);
  background: #171C23;
}
.song_filter .btn:hover {
  background: -webkit-gradient(linear, left top, right top, from(var(--gr1)), color-stop(61%, var(--gr2)));
  background: linear-gradient(90deg, var(--gr1) 0%, var(--gr2) 61%);
  color: var(--white);
}
.song_filter .active {
  background: -webkit-gradient(linear, left top, right top, from(var(--gr1)), color-stop(61%, var(--gr2)));
  background: linear-gradient(90deg, var(--gr1) 0%, var(--gr2) 61%);
  color: var(--white);
}

.song_filter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  gap: 10px;
}
.song_filter a {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  white-space: nowrap;
}
.song_filter::-webkit-scrollbar {
  display: none;
}
@media (max-width: 768px) {
  .song_filter {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

@media (max-width: 1024px) {
  .player_show_hide {
    display: none;
  }
}

.select_to_action {
  margin-right: 15px;
}

.page_footer {
  background-color: #171C23;
  width: 100%;
  position: fixed;
  bottom: 0;
  left: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  z-index: 8;
}
@media (min-width: 992px) {
  .page_footer {
    width: 100%;
    max-width: 100vw;
  }
}
.page_footer .select_to_action_area {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #171C23;
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  z-index: 9;
}
.page_footer .select_to_action_area .inner_area {
  width: 64%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.page_footer .select_to_action_area.active {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.page_footer .select_to_action_close_btn {
  color: var(--text-grey);
  font-size: 26px;
}
.page_footer .album_playing {
  background: -webkit-gradient(linear, left top, right top, from(var(--gr1)), color-stop(61%, var(--gr2)));
  background: linear-gradient(90deg, var(--gr1) 0%, var(--gr2) 61%);
  border-radius: 0 7px 7px 0;
  padding: 15px;
  max-width: 300px;
  width: 100%;
  display: none;
}
@media (min-width: 1200px) {
  .page_footer .album_playing {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.page_footer .album_playing .artist_info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.page_footer .album_playing .artist_info p {
  margin-bottom: 0;
  margin-left: 10px;
}
.page_footer .album_playing .image_area {
  border-radius: 100px;
}
.page_footer .album_playing .openAlbumSidebar {
  width: 30px;
  height: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 100px;
  border: 2px solid #fff;
}
.page_footer .player_area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.page_footer .song_queue {
  margin-right: 43px;
}
@media (min-width: 768px) {
  .page_footer .song_queue {
    margin-right: 30px;
    width: 145px;
  }
}
@media (min-width: 992px) {
  .page_footer .song_queue {
    margin-right: 20px;
    width: 210px;
  }
}
.page_footer .song_queue a {
  background: -webkit-gradient(linear, left top, right top, from(var(--gr1)), color-stop(61%, var(--gr2)));
  background: linear-gradient(90deg, var(--gr1) 0%, var(--gr2) 61%);
  font-weight: normal;
  padding: 12px 20px;
  border-radius: 50px;
}

@media (min-width: 992px) {
  .nav {
    margin-top: 30px;
  }
}
.nav .menu_category {
  color: rgb(108, 117, 125);
  text-transform: uppercase;
  font-weight: 700;
  font-size: 14px;
  font-family: var(--font-heading, "Arial", sans-serif);
  margin-top: 20px;
  margin-bottom: 15px;
}
.nav .nav-link {
  border-radius: 10px;
  color: var(--text-grey);
  font-weight: 400;
  font-family: var(--font-default);
  padding-left: 0;
}
.nav .nav-link i {
  margin-right: 10px;
  width: 20px;
  text-align: center;
}
.nav .nav-link:hover {
  color: var(--color-primary);
}
.nav .active {
  color: var(--color-primary);
}

.offcanvas.offcanvas-start {
  width: 300px;
  background: #171C23 !important;
}
.offcanvas.offcanvas-start .offcanvas-header {
  padding: 25px 25px 0px 25px;
}
.offcanvas.offcanvas-start .offcanvas-body {
  padding-left: 25px;
  padding-right: 25px;
}

.mobile_search_area {
  margin-bottom: 30px;
  display: none;
}
@media (max-width: 575.98px) {
  .mobile_search_area {
    display: block;
  }
}
.mobile_search_area .input-group {
  background-color: rgba(34, 46, 62, 0.5882352941);
  border-radius: 100px;
  overflow: hidden;
}
.mobile_search_area .form-control {
  min-height: 45px;
  width: 250px;
  padding: 0 15px 0 25px;
  color: var(--text-grey);
}
.mobile_search_area .form-control:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
}
.mobile_search_area .form-control::-webkit-input-placeholder {
  color: var(--text-grey);
  opacity: 1;
}
.mobile_search_area .form-control::-moz-placeholder {
  color: var(--text-grey);
  opacity: 1;
}
.mobile_search_area .form-control:-ms-input-placeholder {
  color: var(--text-grey);
  opacity: 1;
}
.mobile_search_area .form-control::-ms-input-placeholder {
  color: var(--text-grey);
  opacity: 1;
}
.mobile_search_area .form-control::placeholder {
  color: var(--text-grey);
  opacity: 1;
}

.sd-breadcrumb {
  border-bottom: 1px solid rgba(52, 56, 60, 0.7);
  margin-bottom: 25px;
}
.sd-breadcrumb h4 {
  color: var(--text-grey);
  font-size: 20px;
}

.empty {
  min-height: calc(100vh - 285px);
  background-color: #171c23;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 10px;
  color: var(--text-grey);
  text-align: center;
  margin-bottom: 30px;
}
@media (max-width: 1024px) {
  .empty {
    min-height: calc(100vh - 320px);
  }
}
@media (max-width: 768px) {
  .empty {
    min-height: calc(100vh - 420px);
  }
}
.empty i {
  font-size: 42px;
  opacity: 0.3;
  margin-bottom: 30px;
}
.empty h4 {
  opacity: 0.3;
}

.user_dp {
  position: relative;
  display: inline-block;
}
.user_dp img {
  border-radius: 50%;
  padding: 5px;
  width: 40px;
  height: 40px;
  background: linear-gradient(45deg, var(--color-primary), #112035, var(--color-primary));
  background-size: 200% 200%;
  -webkit-animation: gradient-animate 4s linear infinite;
          animation: gradient-animate 4s linear infinite;
}

@-webkit-keyframes gradient-animate {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes gradient-animate {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.visualizer_area {
  margin: 0 0 25px;
  height: 230px;
  border-radius: 15px;
  overflow: hidden;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.visualizer_area canvas {
  width: 100%;
  height: 230px;
  max-width: 90vw;
  border-radius: 16px;
  -webkit-box-shadow: 0px 0px 40px 3px rgba(0, 0, 0, 0.3);
          box-shadow: 0px 0px 40px 3px rgba(0, 0, 0, 0.3);
  background-color: rgba(31, 38, 47, 0.29);
}
.visualizer_area .visualizer_content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(23, 28, 35, 0.5490196078);
  background-position: center center;
  background-size: cover;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 30px;
}
.visualizer_area .visualizer_content p,
.visualizer_area .visualizer_content .title {
  color: #fff;
}
.visualizer_area .visualizer_content .title {
  font-size: 24px;
  margin-bottom: 6px;
}
.visualizer_area .btn {
  font-size: 16px;
  color: var(--white);
  background: -webkit-gradient(linear, left top, right top, from(var(--gr1)), color-stop(61%, var(--gr2)));
  background: linear-gradient(90deg, var(--gr1) 0%, var(--gr2) 61%);
  font-weight: normal;
  margin-right: 5px;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
  padding: 10px 25px;
  border-radius: 50px;
  margin-top: 15px;
}

.lyricsModal .body,
.lyricsModal .title {
  color: var(--text-grey);
}
.lyricsModal .modal-body {
  padding: 30px;
}
.lyricsModal .title {
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 15px;
}

.aboutArtist .modal-body {
  color: var(--text-grey);
}

.artist_sidebar .list_item .title {
  line-height: 1.2;
}
.artist_sidebar .list_item .image_area {
  background: transparent;
  width: 60px;
  height: 60px;
  margin-right: 15px;
}
.artist_sidebar .list_item .image_area img {
  width: 60px;
  height: 60px;
}
.artist_sidebar .list_item .play_action {
  gap: 15px;
  width: 100%;
  padding: 0 0 0 10px;
}
.artist_sidebar .add-to-playlist-btn {
  background-color: #3e4650 !important;
}
.artist_sidebar .add-to-playlist-btn:hover {
  background-color: var(--color-primary) !important;
}

.following_page_content .card {
  background-color: transparent;
  border: 0;
  margin-bottom: 20px;
}

.following_card {
  background: #171C23;
  padding: 20px;
  border-radius: 10px;
  height: 100%;
}
.following_card .image_area {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  background: #2c343e;
  background-size: cover;
  background-position: center;
  margin: 0 auto;
  aspect-ratio: 1;
}
.following_card .title {
  color: var(--text-grey);
  margin: 15px 0;
}
.following_card .meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  text-align: center;
}
.following_card .metaInfo {
  color: var(--text-grey);
  font-weight: 600;
  font-size: 14px;
  width: 85px;
  height: 65px;
  border-radius: 5px;
  padding: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (min-width: 992px) {
  .following_card .metaInfo {
    width: 80px;
  }
}
@media (min-width: 1200px) {
  .following_card .metaInfo {
    width: 95px;
    height: 65px;
  }
}
.following_card .metaInfo h6 {
  color: var(--text-grey);
  margin: 0;
  font-size: 16px;
}
.following_card .metaInfo > div {
  line-height: 1.3;
}
.following_card .content {
  padding-left: 30px;
}
.following_card .c_footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 15px;
}
.following_card .remove_profile,
.following_card .view_profile {
  font-size: 14px;
  padding: 13px 15px;
  border-radius: 5px;
  margin-top: 19px;
  background: #383f48;
  font-weight: 400;
  width: 100%;
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .following_card .remove_profile,
  .following_card .view_profile {
    font-size: 12px;
    padding: 13px 5px;
  }
}
.following_card .view_profile {
  background: -webkit-gradient(linear, left top, right top, from(var(--gr1)), color-stop(61%, var(--gr2)));
  background: linear-gradient(90deg, var(--gr1) 0%, var(--gr2) 61%);
  color: var(--white);
}
.following_card .remove_profile {
  background: #000;
}
.following_card .card-body {
  padding: 0;
}

.songs_page .col_item {
  margin-bottom: 24px;
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .songs_page .col_item {
    width: 33%;
  }
}
.songs_page .card {
  background: #171C23;
  padding: 20px;
  border-radius: 10px;
  height: 100%;
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .songs_page .card {
    padding: 10px;
  }
}
.songs_page .card:hover .image_preview {
  border-color: var(--color-primary);
}
.songs_page .card .image_area {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}
.songs_page .card .image_preview {
  width: 100%;
  min-height: 330px;
  border-radius: 10px;
  background: #2c343e;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin: 0 auto;
  position: relative;
  border: 1px solid transparent;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .songs_page .card .image_preview {
    min-height: 222px;
  }
}
.songs_page .card .disk {
  position: absolute;
  background-color: var(--color-primary);
  color: #fff;
  height: 32px;
  width: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 100px;
  bottom: 15px;
  right: 15px;
}
.songs_page .card .card-title {
  color: var(--text-grey);
  margin: 30px 0;
  text-align: center;
}
.songs_page .card .card-body {
  padding: 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}
.songs_page .card .song_mate .mate_title {
  font-weight: 600;
  color: var(--text-grey);
  background: #171C23;
  z-index: 1;
  padding: 0 10px 0 0;
}
.songs_page .card .song_mate p {
  color: var(--text-grey);
  margin-bottom: 5px;
  font-size: 14px;
  background: #171C23;
  z-index: 1;
  padding: 0 0 0 10px;
}
.songs_page .card .song_mate > div {
  position: relative;
}
.songs_page .card .song_mate > div:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 100%;
  height: 1px;
  border-top: 1px dotted #3e444d;
}
.songs_page .card .badge {
  line-height: 1;
  padding: 6px;
  border-radius: 4px;
  color: var(--text-grey);
}
.songs_page .card .live_status,
.songs_page .card .approved_status {
  color: #37d32f;
}
.songs_page .action_area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.songs_page .action_area .left_action {
  gap: 5px;
  margin-top: 10px;
}
.songs_page .action_area .editBtn,
.songs_page .action_area .deleteBtn {
  font-size: 14px;
  padding: 13px 15px;
  border-radius: 5px;
  margin-top: 0;
  background: #383f48;
  font-weight: 400;
}
.songs_page .action_area .deleteBtn {
  background: var(--color-primary);
}
.songs_page .action_area .viewBtn {
  background: #334d44;
}
.songs_page .update_lyrics,
.songs_page .cancle_btn {
  color: var(--white);
  background: -webkit-gradient(linear, left top, right top, from(var(--gr1)), color-stop(61%, var(--gr2)));
  background: linear-gradient(90deg, var(--gr1) 0%, var(--gr2) 61%);
  font-weight: normal;
  margin-right: 5px;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
  padding: 10px 25px;
  border-radius: 50px;
  font-size: 14px;
  line-height: 20px;
  padding: 8px 16px;
}
.songs_page .cancle_btn {
  background: #2a2b2b;
}
.songs_page .filter_action_area {
  margin-bottom: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (min-width: 768px) {
  .songs_page .filter_action_area {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.songs_page .filter_action_area .btn {
  background-color: #171C23;
  border-color: #171C23;
  font-size: 14px;
  padding: 8px 17px;
}
@media (min-width: 768px) {
  .songs_page .filter_action_area .btn {
    padding: 10px 25px;
  }
}
@media (min-width: 1200px) {
  .songs_page .filter_action_area .btn {
    padding: 10px 25px;
  }
}
.songs_page .filter_action_area .btn.active {
  background-color: #c7143e;
  border-color: #c7143e;
}
.songs_page .filter_action_area .search_area .input-group {
  background-color: #2b323a;
  border-radius: 100px;
  overflow: hidden;
}
.songs_page .filter_action_area .search_area .form-control {
  min-height: 45px;
  width: 250px;
  padding: 0 15px 0 25px;
  color: var(--text-grey);
}
@media (min-width: 768px) {
  .songs_page .filter_action_area .search_area .form-control {
    min-height: 40px;
    width: 170px;
  }
}
@media (min-width: 1200px) {
  .songs_page .filter_action_area .search_area .form-control {
    width: 350px;
  }
}
.songs_page .filter_action_area .search_area .form-control:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
}
.songs_page .filter_action_area .search_area .form-control::-webkit-input-placeholder {
  color: var(--text-grey);
  opacity: 1;
}
.songs_page .filter_action_area .search_area .form-control::-moz-placeholder {
  color: var(--text-grey);
  opacity: 1;
}
.songs_page .filter_action_area .search_area .form-control:-ms-input-placeholder {
  color: var(--text-grey);
  opacity: 1;
}
.songs_page .filter_action_area .search_area .form-control::-ms-input-placeholder {
  color: var(--text-grey);
  opacity: 1;
}
.songs_page .filter_action_area .search_area .form-control::placeholder {
  color: var(--text-grey);
  opacity: 1;
}
.songs_page .filter_action_area .search_area .btn i {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.songs_page .filter_action_area .search_area .btn:hover i {
  color: var(--color-primary) !important;
}
.songs_page .filter_action_area .action_btn {
  margin-bottom: 25px;
  text-align: center;
}
@media (min-width: 768px) {
  .songs_page .filter_action_area .action_btn {
    margin-bottom: 0;
  }
}
.songs_page .filter_action_area .action_btn .btn {
  font-size: 16px;
  color: var(--white);
  background: -webkit-gradient(linear, left top, right top, from(var(--gr1)), color-stop(61%, var(--gr2)));
  background: linear-gradient(90deg, var(--gr1) 0%, var(--gr2) 61%);
  font-weight: normal;
  margin-right: 5px;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
  padding: 10px 25px;
  border-radius: 50px;
  margin-top: 0;
}
.songs_page .player {
  padding: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.songs_page .player .btn {
  background: #ff2256;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-size: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #fff !important;
  border: 0;
}

.help_info ul {
  margin: 0;
  padding: 0;
}
.help_info ul li {
  list-style: none;
  display: block;
  border-radius: 15px;
  margin-bottom: 10px;
  background-color: rgba(23, 28, 35, 0.5803921569);
  border: 1px solid rgba(45, 49, 57, 0.6784313725);
  border-radius: 0.75rem;
  -webkit-transition: background-color 0.2s;
  transition: background-color 0.2s;
  position: relative;
}
.help_info ul li a {
  color: var(--text-grey);
  padding: 30px;
}
.help_info ul li:hover {
  background-color: #242a33;
}

.page_content p, .page_content li, .page_content h1, .page_content h2, .page_content h3, .page_content h4, .page_content h5, .page_content h6 {
  color: var(--text-grey);
}

a.backToadmin {
  background: #636363;
  position: fixed;
  top: 50%;
  right: -20px;
  z-index: 100000;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  color: #e7e7e7;
  padding: 9px 26px;
  border-radius: 0 0 10px 10px;
}

.download_buttons .app_links_area img {
  max-width: 150px;
  width: 100%;
}

.download_song {
  margin-left: 5px;
}

.download_song_ico {
  margin-left: 10px;
  background-color: var(--color-primary);
  color: #fff !important;
  width: 32px;
  height: 32px;
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 100px;
}
@media (max-width: 575.98px) {
  .download_song_ico {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }
}

.bg_green {
  background-color: #198754 !important;
}

@media (min-width: 1410px) and (max-width: 1900px) {
  .action_area .editBtn,
  .action_area .deleteBtn {
    font-size: 12px;
  }
}

.song_genre {
  background: #3b4047;
  color: var(--text-grey);
  border-radius: 15px;
  display: inline-block;
  padding: 4px 9px;
  font-size: 12px;
  line-height: 1;
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
}

.ready_song {
  position: absolute;
  top: 2%;
  left: 2%;
  -webkit-transform: translate(-2%, -2%);
          transform: translate(-2%, -2%);
  background-color: var(--color-primary);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.ready_song i {
  color: var(--white);
}

.cursor-pointer {
  cursor: pointer;
}

.filepond--drop-label {
  cursor: pointer;
}
.filepond--drop-label label {
  cursor: pointer;
}

#cover_help {
  -webkit-transform: translateY(-16px);
          transform: translateY(-16px);
  font-style: italic;
}

.promoted {
  background: rgba(255, 34, 86, 0.7411764706);
  color: #fff;
  font-weight: 500;
  line-height: 1;
  padding: 5px 10px 5px 10px;
  border-radius: 30px;
  font-size: 13px;
  position: absolute;
  top: 20px;
  left: 20px;
}

.sidebar_overlay {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5019607843);
  z-index: 999;
  backdrop-filter: blur(10px);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  cursor: crosshair;
}
.sidebar_overlay.active {
  opacity: 1;
  visibility: visible;
}

.sidebar_area {
  background-color: #253046;
  position: fixed;
  top: 0;
  right: -100%;
  max-width: 450px;
  width: 100%;
  height: 100vh;
  z-index: 9999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-transition: right 0.4s ease;
  transition: right 0.4s ease;
}
.sidebar_area.active {
  right: 0;
}
.sidebar_area .sidebar_close {
  position: absolute;
  left: -50px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: #171C23;
  color: #fff;
  width: 50px;
  height: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-radius: 10px 0 0 10px;
  cursor: pointer;
}
.sidebar_area .sidebar_close:hover {
  background: #ff2256;
}
.sidebar_area .sidebar_close i {
  font-size: 20px;
}
.sidebar_area .sidebar_content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 15px;
  overflow-y: auto;
  scrollbar-width: thin;
  background: #171C23;
  scrollbar-color: #555 #253046;
}
.sidebar_area .sidebar_content::-webkit-scrollbar {
  width: 6px;
}
.sidebar_area .sidebar_content::-webkit-scrollbar-thumb {
  background: #555;
  border-radius: 10px;
}
.sidebar_area .sidebar_content::-webkit-scrollbar-track {
  background: transparent;
}
.sidebar_area .sidebar_content p {
  font-weight: bold;
  color: #fff;
}
.sidebar_area .sidebar_content ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.sidebar_area .sidebar_content ul .song-item {
  background: #020304;
  border-radius: 10px;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}
.sidebar_area .sidebar_content ul .song-item:hover {
  background: #020304;
}
.sidebar_area .sidebar_content ul .song-item img {
  border: 1px solid var(--color-primary);
}
.sidebar_area .sidebar_content ul .song-item p {
  color: #fff;
}
.sidebar_area .sidebar_content ul .song-item i,
.sidebar_area .sidebar_content ul .song-item span {
  color: #ccc;
}
.sidebar_area .sidebar_content ul .song-item a {
  color: inherit;
}
.sidebar_area .play-button {
  background: #ff2256;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-size: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #fff !important;
  border: 0;
}

.player {
  padding: 20px;
  border-radius: 0;
  width: 100%;
  max-width: 800px;
}
@media (max-width: 767.98px) {
  .player {
    padding: 10px 10px 20px;
  }
}
@media (min-width: 992px) {
  .player {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.player .inner_player_area {
  gap: 5px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.player .controls button {
  background: none;
  border: none;
  color: #ccc;
  font-size: 22px;
  margin: 0 10px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (max-width: 767.98px) {
  .player .controls button {
    font-size: 18px;
  }
}
.player .controls button:hover {
  color: #ff2256;
}
.player .controls .play-btn {
  background: #ff2256;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  font-size: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #fff !important;
}
@media (max-width: 767.98px) {
  .player .controls .play-btn {
    width: 32px;
    height: 32px;
  }
}
@media (min-width: 992px) {
  .player .controls .play-btn {
    width: 42px;
    height: 42px;
  }
}
.player .progress-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  margin-top: 0;
  margin-bottom: 5px;
}
@media (min-width: 768px) {
  .player .progress-container {
    margin-bottom: 0;
    margin-right: 15px;
  }
}
@media (min-width: 992px) {
  .player .progress-container {
    width: 300px;
    margin-top: 0;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .player .progress-container {
    width: 280px !important;
  }
}
@media (min-width: 1200px) {
  .player .progress-container {
    width: 315px;
  }
}
.player .progress-container .progress {
  height: 5px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  background: #54595f;
  cursor: pointer;
}
.player .progress-container .progress .progress-bar {
  background: #ff2256;
}
.player .progress-container .time {
  font-size: 12px;
  min-width: 40px;
}
.player .volume-control {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 10px;
  margin-right: 15px;
}
@media (min-width: 992px) {
  .player .volume-control {
    margin-top: 0;
  }
}
.player .volume-control input[type=range] {
  width: 80px;
  padding: 0;
  accent-color: #ff2256;
}
.player .volume-control input[type=range]:focus {
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.player .volume-control .volume-circle {
  border: 2px solid #ff2256;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-right: 10px;
}
@media (min-width: 992px) {
  .player .volume-control .volume-circle {
    width: 42px;
    height: 42px;
  }
}
.player .action_control {
  gap: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 767.98px) {
  .player .action_control {
    position: absolute;
    bottom: 20px;
    left: 50%;
    -webkit-transform: translateX(-110px);
            transform: translateX(-110px);
  }
}
.player .action_control a {
  background: #393f46;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  font-size: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #fff !important;
}
@media (max-width: 767.98px) {
  .player .action_control a {
    width: 32px;
    height: 32px;
    font-size: 12px;
  }
}
@media (min-width: 992px) {
  .player .action_control a {
    width: 42px;
    height: 42px;
  }
}
.player .action_control a.active {
  background: var(--color-primary);
}
@media (max-width: 767.98px) {
  .player .shuffle_control {
    right: 50%;
    left: auto;
    -webkit-transform: translateX(110px);
            transform: translateX(110px);
  }
}
@media (min-width: 1200px) {
  .player .shuffle_control {
    margin-left: 5px;
  }
}
.player .player_song_info .player_image_area {
  width: 35px;
  height: 35px;
  border-radius: 100px;
  background: #2a2d31;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
@media (max-width: 767.98px) {
  .player .player_song_info .player_image_area {
    width: 32px;
    height: 32px;
  }
}
.player .player_song_info .player_title {
  text-align: left;
  font-size: 14px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-left: 5px;
}
@media (max-width: 767.98px) {
  .player .player_song_info .player_title {
    font-size: 12px;
  }
}

.artist_body_area {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}

.artist_page_content {
  height: auto !important;
}
.artist_page_content .artist_song .single_song {
  position: relative;
  background-color: #171c23;
  padding: 0;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 25px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.artist_page_content .artist_song .single_song::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(25%, rgb(23, 28, 35)), to(rgba(23, 28, 35, 0.2)));
  background: linear-gradient(0deg, rgb(23, 28, 35) 25%, rgba(23, 28, 35, 0.2) 100%);
}
.artist_page_content .artist_song .single_song .image_area img {
  width: 100%;
}
.artist_page_content .artist_song .single_song .art_head {
  text-align: center;
  padding: 60px 0 30px 0;
}
.artist_page_content .artist_song .single_song .art_head a {
  color: #fff;
  font-size: 42px;
}
.artist_page_content .artist_song .single_song .art_info {
  padding: 20px;
  margin-top: -95px;
}
.artist_page_content .artist_song .single_song .art_info p {
  margin-top: 10px;
  margin-bottom: 0;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.artist_page_content .artist_song .single_song .art_info small {
  font-size: 12px;
}
.artist_page_content .artist_song .single_song .art_info small a {
  color: var(--text-grey);
}
.artist_page_content .artist_song .single_song .art_info small a:hover {
  color: var(--color-primary);
}
.artist_page_content .artist_song .single_song .art_footer {
  margin-top: 10px;
}
.artist_page_content .artist_song .single_song .art_footer a {
  color: var(--color-primary);
  margin-right: 10px;
  font-size: 20px;
}
.artist_page_content .ads_area {
  margin-bottom: 25px;
}
.artist_page_content .ads_area img {
  width: 100%;
  border-radius: 10px;
}

.autor_profile {
  background-color: #171C23;
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 30px;
  text-align: center;
}
@media (min-width: 768px) {
  .autor_profile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: left;
  }
}
.autor_profile .author_img {
  position: relative;
  margin-right: 20px;
}
@media (max-width: 1024px) {
  .autor_profile .author_img {
    margin-right: 25px;
  }
}
@media (max-width: 575.98px) {
  .autor_profile .author_img {
    margin-right: 0;
  }
}
.autor_profile .author_img img {
  border-radius: 10px;
  max-width: 400px;
  width: 100%;
}
.autor_profile .author_img img.active {
  border: 1px solid var(--color-primary);
}
.autor_profile .author_img .stock_money {
  background-color: var(--color-primary);
  width: 42px;
  height: 42px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 100%;
  position: absolute;
  bottom: 25px;
  right: 25px;
}
.autor_profile .author_img .stock_money i {
  color: var(--white);
}
.autor_profile .author_img .image_area {
  position: relative;
}
.autor_profile .author_img .image_area::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background: linear-gradient(45deg, var(--color-primary), #020304, var(--color-primary));
  background-size: 200% 200%;
  -webkit-animation: gradient-animate 4s linear infinite;
          animation: gradient-animate 4s linear infinite;
}
.autor_profile .author_img .image_area img {
  width: 100%;
  border-radius: 10px;
  position: relative;
}
@media (max-width: 575.98px) {
  .autor_profile .author_img .animation::before {
    left: -3px !important;
    top: -3px !important;
    width: calc(100% + 6px) !important;
    height: calc(100% + 6px) !important;
  }
}
.autor_profile .author_info h4 {
  margin: 10px 0 20px;
}
.autor_profile .author_info ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: var(--color-primary);
}
@media (max-width: 768px) {
  .autor_profile .author_info ul li {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.autor_profile .author_info ul li span {
  color: var(--white);
  margin-left: 10px;
}
.autor_profile .author_info ul li a {
  color: var(--white);
}
@media (max-width: 768px) {
  .autor_profile .author_info p {
    display: none;
  }
}
.autor_profile .author_img {
  display: inline-block;
  width: 100%;
}
@media (min-width: 768px) {
  .autor_profile .author_img {
    max-width: 260px;
  }
}
.autor_profile .author_img.single_track_author_img {
  max-width: unset !important;
}
.autor_profile .author_img {
  position: relative;
}
.autor_profile .author_img::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background: linear-gradient(45deg, var(--color-primary), #020304, var(--color-primary));
  background-size: 200% 200%;
  -webkit-animation: gradient-animate 4s linear infinite;
          animation: gradient-animate 4s linear infinite;
}
.autor_profile .author_img img {
  width: 100%;
  border-radius: 10px;
  position: relative;
}
@media (max-width: 575.98px) {
  .autor_profile .animation::before {
    left: -3px !important;
    top: -3px !important;
    width: calc(100% + 6px) !important;
    height: calc(100% + 6px) !important;
  }
}
.autor_profile .author_info ul {
  margin: 5px 0 25px;
  padding: 0;
}
@media (min-width: 768px) {
  .autor_profile .author_info ul {
    margin: 25px 0;
  }
}
.autor_profile .author_info ul li {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (min-width: 768px) {
  .autor_profile .author_info ul li {
    -webkit-box-pack: left;
        -ms-flex-pack: left;
            justify-content: left;
  }
}
.autor_profile .artistImage {
  width: 100%;
  height: 260px;
  background-color: #171C23;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  border-radius: 10px;
  border: 1px solid var(--color-primary);
  margin: 0 auto;
}
@media (min-width: 768px) {
  .autor_profile .artistImage {
    width: 260px;
  }
}

#sortable-songs {
  margin: 0;
  padding: 0;
}
#sortable-songs li {
  list-style: none;
}

.update_playlist {
  margin-bottom: 10px;
  width: 100% !important;
}
@media (min-width: 768px) {
  .update_playlist {
    margin-bottom: 0;
    width: auto !important;
  }
}
@media (min-width: 992px) {
  .update_playlist {
    margin-right: 10px;
  }
}

.follow_btn,
.share_btn,
.play_all_btn {
  background: rgb(2, 3, 4);
  border-color: rgb(2, 3, 4);
  color: var(--text-grey, #000);
  font-weight: normal;
  padding: 10px 20px;
  border-radius: 50px;
  margin-bottom: 10px;
  width: 100% !important;
  display: block;
  height: 45px;
}
.follow_btn i,
.share_btn i,
.play_all_btn i {
  margin-right: 3px;
}
@media (min-width: 768px) {
  .follow_btn,
  .share_btn,
  .play_all_btn {
    width: auto !important;
    display: inline-block;
    margin-bottom: 0;
  }
}
@media (min-width: 992px) {
  .follow_btn,
  .share_btn,
  .play_all_btn {
    margin-right: 10px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .follow_btn,
  .share_btn,
  .play_all_btn {
    margin-bottom: 10px !important;
  }
}

.play_all_btn {
  background: -webkit-gradient(linear, left top, right top, from(var(--gr1)), color-stop(61%, var(--gr2)));
  background: linear-gradient(90deg, var(--gr1) 0%, var(--gr2) 61%);
}

.learn_more {
  color: var(--text-grey, #000);
  margin: 15px 0;
  display: block;
}
.learn_more i {
  margin-left: 3px;
}

.share_page .song_info .action_btns .followAjax,
.share_page .song_info .action_btns .follow_btn,
.share_page .song_info .action_btns .follow_btn {
  width: 48px !important;
  height: 48px;
  border-radius: 50px;
  font-size: 22px;
  margin-bottom: 0;
  margin-right: 10px;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.share_page .song_info .action_btns .play_button .btn {
  margin-right: 10px;
  width: 105px;
  font-size: 14px;
  font-size: 18px;
}
.share_page .song_info .action_btns .play_button .btn i {
  margin-right: 5px;
}
@media (min-width: 768px) {
  .share_page .song_info .action_btns .followAjax {
    width: auto !important;
    margin-top: 0 !important;
    padding: 12px 24px !important;
    font-size: 18px;
  }
  .share_page .song_info .action_btns .followAjax i {
    margin-right: 5px;
  }
}
.share_page .sd-breadcrumb {
  margin-bottom: 0;
}
.share_page .sd-breadcrumb h4 {
  font-size: 16px;
  margin: 0;
  padding: 10px 10px 15px;
}
@media (min-width: 1200px) {
  .share_page .sd-breadcrumb h4 {
    padding-top: 0;
    padding-bottom: 25px !important;
    padding-left: 0 !important;
  }
}
.share_page .track_list {
  padding: 5px !important;
}
@media (min-width: 1200px) {
  .share_page .track_list {
    padding: 25px !important;
  }
}
.share_page .track_list .right_action {
  gap: 10px;
}
@media (min-width: 992px) {
  .share_page .track_list .right_action {
    gap: 15px;
  }
}
.share_page .track_list .load_song_info,
.share_page .track_list .follow_btn,
.share_page .track_list .follow_btn {
  width: 28px;
  height: 29px;
  border-radius: 50px;
  font-size: 14px;
}
@media (min-width: 992px) {
  .share_page .track_list .load_song_info,
  .share_page .track_list .follow_btn,
  .share_page .track_list .follow_btn {
    width: 36px;
    height: 36px;
  }
}
.share_page .artist_info .author_info ul li {
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: normal !important;
      -ms-flex-direction: row !important;
          flex-direction: row !important;
}

.weareworking {
  height: 100vh;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 25px;
}
.weareworking h1 {
  color: var(--color-primary);
}
.weareworking i {
  font-size: 42px;
}
.weareworking input.form-control {
  background-color: #dddddd;
  border-radius: 30pc;
  max-width: 300px;
  width: 100%;
  margin: 0 auto;
}

.genre {
  margin-top: 25px;
}
@media (max-width: 768px) {
  .genre {
    margin-top: 0;
  }
}
.genre .title_gen h4 {
  color: var(--text-grey);
}
.genre .genre_item {
  margin-bottom: 30px;
}
.genre .genre_item a {
  background: var(--text-grey);
  color: #000;
  text-align: center;
  padding: 30px;
  border-radius: 10px;
  display: block;
}
.genre .genre_item a:hover {
  background: -webkit-gradient(linear, left top, right top, from(var(--gr1)), color-stop(61%, var(--gr2)));
  background: linear-gradient(90deg, var(--gr1) 0%, var(--gr2) 61%);
  color: var(--white);
}

.single_track {
  margin-top: 20px;
  padding: 20px;
  background: #1b1d23;
  border-radius: 8px;
}
@media (max-width: 768px) {
  .single_track {
    margin-top: 0px;
  }
}
@media (min-width: 768px) {
  .single_track {
    padding: 24px;
  }
}
.single_track .song_cover {
  position: relative;
}
.single_track .song_cover::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background: linear-gradient(45deg, var(--color-primary), #020304, var(--color-primary));
  background-size: 200% 200%;
  -webkit-animation: gradient-animate 4s linear infinite;
          animation: gradient-animate 4s linear infinite;
}
.single_track .song_cover img {
  width: 100%;
  border-radius: 10px;
  position: relative;
}
@media (max-width: 575.98px) {
  .single_track .animation::before {
    left: -3px !important;
    top: -3px !important;
    width: calc(100% + 6px) !important;
    height: calc(100% + 6px) !important;
  }
}
@media (max-width: 768px) {
  .single_track .song_info {
    margin-top: 15px;
  }
}
.single_track .song_info .general_info p {
  margin-bottom: 0;
  color: var(--text-grey);
  font-size: 14px;
}
.single_track .song_info .general_info .genre_meta {
  font-size: 12px;
  letter-spacing: 2px;
  color: #fff;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 5px;
  display: inline-block;
  line-height: 1;
  padding: 6px 20px;
  border-radius: 15px;
  background: rgba(255, 34, 86, 0.368627451);
}
.single_track .song_info .general_info h4 {
  margin: 15px 0 5px 0;
  font-size: 18px;
  color: var(--text-grey);
}
.single_track .song_info .general_info .singer {
  font-size: 12px;
  color: var(--text-grey);
}
.single_track .song_info .general_info .singer a {
  color: var(--text-grey);
}
.single_track .song_info .general_info .singer a:hover {
  color: var(--color-primary);
}
.single_track .song_info .play_btn {
  width: 48px;
}
@media (max-width: 768px) {
  .single_track .song_info .play_btn {
    width: 48px !important;
  }
  .single_track .song_info .play_btn i {
    margin-right: 0 !important;
  }
}
.single_track .song_info .play_btn {
  height: 48px;
  border-radius: 50px;
  font-size: 22px;
}
.single_track .song_info .follow_btn {
  font-size: 22px;
  color: var(--text-grey);
}

.single_track_page .track_list {
  margin-top: 20px;
  padding: 24px;
  background: #1b1d23;
  border-radius: 8px;
}
.single_track_page .artist_info {
  margin-top: 20px;
  padding: 24px;
  background: #1b1d23;
  border-radius: 8px;
  height: calc(100% - 20px);
}
.single_track_page .autor_profile {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 0;
  margin: 0;
}
.single_track_page .autor_profile .author_img {
  margin: 0;
}
.single_track_page .autor_profile .author_info {
  width: 100%;
}
.single_track_page .autor_profile .author_info ul {
  margin: 25px 0;
}
.single_track_page .autor_profile .author_info ul li {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (min-width: 768px) {
  .single_track_page .autor_profile .author_info ul li {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media (min-width: 992px) {
  .single_track_page .autor_profile .author_info ul li {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.single_track_page .autor_profile .btn {
  width: 100%;
}

.add-to-playlist-ts {
  width: 48px !important;
  height: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 50%;
}
.add-to-playlist-ts i {
  margin-right: 0 !important;
}

.share_content ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.share_content ul li a {
  background: var(--text-grey);
  color: #000;
  padding: 8px 15px;
  display: block;
  border-radius: 30px;
  margin-bottom: 15px;
}
.share_content ul li a:hover {
  background: #7a8491;
}
.share_content ul li a i {
  margin-right: 5px;
}

.user_info_card .user_card {
  background: var(--text-grey);
  color: var(--dark);
  padding: 15px;
  border-radius: 10px;
  text-align: center;
  margin-bottom: 30px;
}
.user_info_card .user_card .c_head {
  margin-bottom: 15px;
}
.user_info_card .user_card .c_head img {
  border-radius: 50%;
  max-width: 130px;
  width: 100%;
  margin: 0 auto;
}
.user_info_card .user_card .c_body .meta {
  margin: 30px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
}
.user_info_card .user_card .c_body .meta h6 {
  margin-bottom: 0;
}

.asp_page_content .asp_page_hero {
  background: url("../images/hero-music.jpg") no-repeat center;
  background-size: cover;
  padding: 130px 30px;
  color: #fff;
  position: relative;
  z-index: 1;
  margin-bottom: 60px;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}
@media (max-width: 768px) {
  .asp_page_content .asp_page_hero {
    padding: 40px 20px;
    margin-bottom: 30px;
  }
}
.asp_page_content .asp_page_hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: -1;
}
.asp_page_content .asp_page_hero .hero_content {
  max-width: 600px;
  width: 100%;
  text-align: center;
  margin: 0 auto;
}
.asp_page_content .asp_page_hero .hero_content h4 {
  margin-bottom: 20px;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
}
@media (max-width: 768px) {
  .asp_page_content .asp_page_hero .hero_content h4 {
    font-size: 24px;
  }
}
.asp_page_content .asp_page_hero .hero_content p {
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .asp_page_content .how_asp_works {
    padding: 0 30px;
  }
}
.asp_page_content .how_asp_works .how_work {
  text-align: center;
  margin-bottom: 40px;
}
.asp_page_content .how_asp_works .how_work h4 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .asp_page_content .how_asp_works .how_work h4 {
    font-size: 22px;
  }
}
.asp_page_content .how_asp_works .how_work p {
  font-size: 16px;
  color: #666;
}
.asp_page_content .how_asp_works .asp_box {
  background: var(--text-grey);
  padding: 30px 20px;
  text-align: center;
  border-radius: 10px;
  margin-bottom: 30px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (max-width: 768px) {
  .asp_page_content .how_asp_works .asp_box {
    margin-bottom: 30px;
  }
}
.asp_page_content .how_asp_works .asp_box i {
  font-size: 40px;
  color: var(--color-primary);
  margin-bottom: 20px;
}
.asp_page_content .how_asp_works .asp_box h5 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--dark);
}
.asp_page_content .how_asp_works .asp_box p {
  font-size: 14px;
  color: var(--dark);
}

.policy_list_page {
  min-height: calc(100vh - 220px);
}
.policy_list_page .policy_list li {
  margin-bottom: 15px;
}
.policy_list_page .policy_list li a {
  color: #fff;
}
.policy_list_page .policy_list li a:hover {
  color: var(--color-primary);
}

.wh-120 {
  width: 120px;
  height: 120px;
}

.profile_update {
  background: rgba(31, 38, 47, 0.6);
  padding: 30px;
}
@media (max-width: 768px) {
  .profile_update {
    padding: 15px;
  }
}
.profile_update {
  border-radius: 15px;
  width: 100%;
}
.profile_update h4 {
  font-size: 18px;
  font-weight: 600;
  border-bottom: 1px solid rgba(31, 38, 47, 0.6);
  padding-bottom: 10px;
  margin-bottom: 20px;
}

.pro_img_wrapper {
  position: relative;
  display: inline-block;
}
.pro_img_wrapper #remove_pro_pic {
  position: absolute;
  background-color: var(--color-primary);
  color: var(--white);
  border: 4px solid var(--white);
  bottom: 15px;
  right: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.pro_img_wrapper #remove_pro_pic img {
  width: 16px;
  height: 16px;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}

.form-group {
  margin-bottom: 20px;
}

.form-control {
  background: #1b1d23 !important;
  border: 1px solid #2c313a !important;
  padding: 0.7rem 0.75rem;
  color: var(--text-grey);
  -webkit-box-shadow: none;
          box-shadow: none;
}
.form-control::-webkit-input-placeholder {
  color: #40434d;
  opacity: 1;
}
.form-control::-moz-placeholder {
  color: #40434d;
  opacity: 1;
}
.form-control:-ms-input-placeholder {
  color: #40434d;
  opacity: 1;
}
.form-control::-ms-input-placeholder {
  color: #40434d;
  opacity: 1;
}
.form-control::placeholder {
  color: #40434d;
  opacity: 1;
}
.form-control:hover {
  background-color: rgba(150.8006329114, 166.1563291139, 185.8993670886, 0.4784313725);
}
.form-control:focus {
  background-color: rgba(160, 174, 192, 0.4784313725);
  border: 0;
  color: var(--text-grey);
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.form-control:active {
  background-color: rgba(144.667721519, 160.9272151899, 181.832278481, 0.4784313725);
  border: 0;
  color: var(--text-grey);
  -webkit-box-shadow: none;
          box-shadow: none;
}
.form-control:disabled, .form-control[readonly] {
  background-color: rgba(129.335443038, 147.8544303797, 171.664556962, 0.4784313725);
  opacity: 0.7;
  cursor: not-allowed;
}

.cr-slider {
  border: 0 !important;
}

.sd-modal-crop {
  max-width: 350px !important;
}

.btn-dark {
  background-color: rgba(160, 174, 192, 0.4784313725) !important;
  border-color: rgba(160, 174, 192, 0.4784313725) !important;
  color: var(--text-grey) !important;
}
.btn-dark:hover {
  background-color: rgba(110, 119, 132, 0.4784313725) !important;
  border-color: rgba(110, 119, 132, 0.4784313725) !important;
}

.btn-done {
  background-color: rgba(14, 108, 0, 0.4784313725) !important;
  border-color: rgba(14, 108, 0, 0.4784313725) !important;
  color: var(--text-grey) !important;
}
.btn-done:hover {
  background-color: rgba(12, 81, 2, 0.4784313725) !important;
  border-color: rgba(12, 81, 2, 0.4784313725) !important;
}

.btn-black {
  background-color: #000 !important;
  border-color: #000 !important;
  color: var(--text-grey) !important;
}

img#previewImage {
  cursor: pointer;
}

.verificatio_notice_card {
  height: initial !important;
}
.verificatio_notice_card .ico_are {
  line-height: 1;
}
.verificatio_notice_card .msg_area h6 {
  margin-bottom: 10px;
  line-height: 1;
}
.verificatio_notice_card .msg_area p {
  margin-bottom: 0;
}

.verification_pending {
  min-height: calc(100vh - 260px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}
.verification_pending i {
  font-size: 50px;
  margin: 0 0 20px 0;
  color: rgba(255, 255, 255, 0.5882352941);
}

.artist_carousel {
  overflow: hidden;
  width: 100%;
}
.artist_carousel .carousel_wraper {
  margin-bottom: 30px;
}
.artist_carousel .carousel_wraper .single_carousel {
  border-radius: 10px;
  position: relative;
}
.artist_carousel .carousel_wraper .single_carousel img {
  width: 100%;
  border-radius: 10px;
}
.artist_carousel .carousel_wraper .single_carousel .carousel_info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 10px 20px;
}
.artist_carousel .carousel_wraper .single_carousel .carousel_info h6 {
  margin-bottom: 0;
  font-size: 16px;
}
.artist_carousel .carousel_wraper .single_carousel .carousel_info p {
  margin-bottom: 0;
}
.artist_carousel .carousel_wraper .single_carousel::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(25%, rgb(23, 28, 35)), to(rgba(23, 28, 35, 0.2)));
  background: linear-gradient(0deg, rgb(23, 28, 35) 25%, rgba(23, 28, 35, 0.2) 100%);
  border-radius: 10px;
}

.verify_wraper {
  min-height: calc(100vh - 125px);
  text-align: center;
  padding: 0 15px;
}
.verify_wraper .feature-cards4 i {
  font-size: 64px;
  opacity: 0.3;
  margin-bottom: 30px;
}

.translate_msg i {
  font-size: 16px !important;
  margin-bottom: 0 !important;
}

.avid_card {
  border-radius: 15px;
  padding: 20px;
  margin-bottom: 25px;
  background-color: rgba(23, 28, 35, 0.5803921569);
  border: 1px solid rgba(45, 49, 57, 0.6784313725);
  border-radius: 0.75rem;
  -webkit-transition: background-color 0.2s;
  transition: background-color 0.2s;
  position: relative;
}
@media (min-width: 768px) {
  .avid_card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.avid_card:hover {
  background-color: #242a33;
}
.avid_card .card_media {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.avid_card .card_media .card_icon {
  margin-right: 15px;
}
@media (max-width: 575.98px) {
  .avid_card .card_media .card_icon {
    margin-bottom: 10px;
  }
}
.avid_card .card_media .card_icon img {
  width: 48px;
  height: 48px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
  aspect-ratio: 1/1;
}
.avid_card .card_info h6 {
  margin: 0;
}
.avid_card .card_info p {
  margin-bottom: 0;
  font-size: 14px;
  margin-right: 15px;
}
@media (max-width: 575.98px) {
  .avid_card .card_meta_button {
    margin-top: 15px;
  }
  .avid_card .card_meta_button .sd-full-btn {
    width: 100%;
  }
}

.track_distribute_plan .head_area {
  margin-bottom: 35px;
  margin-top: 15px;
}
.track_distribute_plan .head_area i {
  background: -webkit-gradient(linear, left top, right top, from(var(--gr1)), color-stop(61%, var(--gr2)));
  background: linear-gradient(90deg, var(--gr1) 0%, var(--gr2) 61%);
  font-size: 30px;
  padding: 20px;
  border-radius: 15px;
}
.track_distribute_plan .head_area h3 {
  margin-top: 15px;
  margin-bottom: 5px;
}

.plan_card {
  border-radius: 15px;
  padding: 20px;
  margin-bottom: 25px;
  background-color: rgba(23, 28, 35, 0.5803921569);
  border: 1px solid rgba(45, 49, 57, 0.6784313725);
  border-radius: 0.75rem;
  -webkit-transition: background-color 0.2s;
  transition: background-color 0.2s;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
}
.plan_card:hover {
  background-color: #242a33;
}
.plan_card.no-hover:hover {
  background-color: rgba(23, 28, 35, 0.5803921569) !important;
}
.plan_card .card_media {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 100%;
}
.plan_card .card_media .card_head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.plan_card .card_media .card_head .card_icon i {
  background: rgba(243, 57, 98, 0.1019607843);
  color: #f33962;
  padding: 15px;
  border-radius: 10px;
}
.plan_card .card_media .card_head .card_info {
  margin-left: 15px;
}
.plan_card .card_media .card_head .card_info h4 {
  margin: 0;
  font-size: 20px;
}
@media (max-width: 575.98px) {
  .plan_card .card_media .card_head .card_info h4 {
    font-size: 16px;
  }
}
.plan_card .card_media .card_head .card_info p {
  margin: 0;
  font-size: 14px;
  color: #b0b3b8;
}
.plan_card .card_media .card_list {
  margin-top: 25px;
  margin-bottom: 10px;
}
.plan_card .card_media .card_list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.plan_card .card_media .card_list ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
}
.plan_card .card_media .card_list ul li:before {
  content: "\f192";
  font-family: "Font Awesome 6 Free";
  font-weight: 400;
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--color-primary);
  font-size: 14px;
}
.plan_card .card_media .card_price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}
.plan_card .card_media .card_price h5 {
  margin: 0 5px 0 0;
  font-size: 30px;
  color: var(--color-primary);
}
.plan_card .card_media .discount_text {
  font-style: italic;
}

.sd-pill {
  font-weight: 500;
  font-size: 0.75rem;
  line-height: 1rem;
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  border-radius: 50px;
  border-width: 1px;
}

.pill-success {
  background-color: rgba(34, 197, 94, 0.2);
  border-color: rgba(34, 197, 94, 0.3019607843);
  color: #4ade80;
}

.pill-notstarted {
  background-color: #2d3853;
  border-color: #2d3853;
  color: #a6a6a6;
}

.pill-pending {
  background-color: rgba(234, 179, 8, 0.2);
  border-color: rgba(234, 179, 8, 0.3019607843);
  color: #facc15;
}

.pill-failed {
  background-color: rgba(239, 68, 68, 0.2);
  border-color: rgba(239, 68, 68, 0.3019607843);
  color: #f87171;
}

.pill-running {
  background-color: rgba(87, 213, 95, 0.53);
  border-color: rgba(87, 213, 95, 0.53);
  color: #fff;
}

.pill-processing {
  background-color: rgba(59, 130, 246, 0.2);
  border-color: rgba(59, 130, 246, 0.3019607843);
  color: #60a5fa;
}

.small-text {
  font-size: 14px;
}

.offer-wrapper {
  min-height: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 20px;
}

.offer-glow {
  position: relative;
  padding: 14px 34px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  color: #ffb3c7;
  background: linear-gradient(135deg, rgba(255, 0, 90, 0.12), rgba(255, 0, 90, 0.05));
  letter-spacing: 0.3px;
  -webkit-animation: glowPulse 2.2s ease-in-out infinite;
          animation: glowPulse 2.2s ease-in-out infinite;
  -webkit-box-shadow: 0 0 18px rgba(255, 0, 80, 0.35);
          box-shadow: 0 0 18px rgba(255, 0, 80, 0.35);
}
.offer-glow span {
  font-weight: 700;
  color: #FF4845;
}
.offer-glow::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: -webkit-gradient(linear, left top, right top, from(#ff2256), color-stop(#FF4845), to(#ff2256));
  background: linear-gradient(90deg, #ff2256, #FF4845, #ff2256);
  z-index: -1;
  -webkit-filter: blur(4px);
          filter: blur(4px);
  opacity: 0.9;
}

@-webkit-keyframes glowPulse {
  0% {
    -webkit-box-shadow: 0 0 12px rgba(255, 34, 86, 0.35);
            box-shadow: 0 0 12px rgba(255, 34, 86, 0.35);
  }
  50% {
    -webkit-box-shadow: 0 0 28px rgba(255, 72, 69, 0.7);
            box-shadow: 0 0 28px rgba(255, 72, 69, 0.7);
  }
  100% {
    -webkit-box-shadow: 0 0 12px rgba(255, 34, 86, 0.35);
            box-shadow: 0 0 12px rgba(255, 34, 86, 0.35);
  }
}

@keyframes glowPulse {
  0% {
    -webkit-box-shadow: 0 0 12px rgba(255, 34, 86, 0.35);
            box-shadow: 0 0 12px rgba(255, 34, 86, 0.35);
  }
  50% {
    -webkit-box-shadow: 0 0 28px rgba(255, 72, 69, 0.7);
            box-shadow: 0 0 28px rgba(255, 72, 69, 0.7);
  }
  100% {
    -webkit-box-shadow: 0 0 12px rgba(255, 34, 86, 0.35);
            box-shadow: 0 0 12px rgba(255, 34, 86, 0.35);
  }
}
.landing_page_wraper {
  background-color: hsla(220, 30%, 12%, 0.5);
  border: 1px solid hsl(220, 25%, 20%);
  border-radius: 1rem;
  max-width: 48rem;
  width: 96%;
  text-align: center;
  padding: 1rem 1.5rem;
  margin-left: 15px;
  margin-right: 15px;
}
@media (min-width: 992px) {
  .landing_page_wraper {
    padding: 4rem;
    margin-left: auto;
    margin-right: auto;
    border-radius: 2rem;
    width: 100%;
  }
}
@media only screen and (max-width: 575px) {
  .landing_page_wraper {
    width: 92%;
  }
}
.landing_page_wraper h1 {
  color: #fafafa;
  font-size: 2.25rem;
  line-height: 2.5rem;
}
@media (min-width: 992px) {
  .landing_page_wraper h1 {
    font-size: 3.75rem;
    line-height: 1;
  }
}
.landing_page_wraper h1 span {
  color: var(--color-primary);
}
.landing_page_wraper h3 {
  margin-bottom: 40px;
  font-size: 1.5rem;
  line-height: 2rem;
}
@media (min-width: 992px) {
  .landing_page_wraper h3 {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }
}
.landing_page_wraper p {
  font-size: 1.125rem;
  line-height: 1.75rem;
}
.landing_page_wraper .btn {
  font-size: 1.125rem;
  line-height: 1.75rem;
  width: 100%;
}
@media (max-width: 768px) {
  .landing_page_wraper .btn {
    margin-bottom: 10px;
  }
}
.landing_page_wraper .ac_button {
  margin-top: 50px;
}
@media (min-width: 992px) {
  .landing_page_wraper .ac_button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 1rem;
  }
}

.page_body_landing {
  min-height: calc(100vh - 75px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: url("../images/hero-music.jpg") no-repeat center;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
  z-index: 1;
}
.page_body_landing::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: -1;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}

.avid_academy {
  margin-top: 30px;
}
.avid_academy .avid_academy_head {
  text-align: center;
}
.avid_academy .avid_academy_head .lesson_title_area {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
}
.avid_academy .avid_academy_head h1 {
  font-size: 1.8rem;
  line-height: 2.25rem;
  margin-bottom: 10px;
}
@media (min-width: 992px) {
  .avid_academy .avid_academy_head h1 {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }
}
.avid_academy .course_items {
  margin-top: 40px;
}
@media (min-width: 992px) {
  .avid_academy .course_items {
    margin-top: 60px;
  }
}
.avid_academy .course_items .lesson {
  border-radius: 15px;
  padding: 20px;
  margin-bottom: 25px;
  background-color: rgba(23, 28, 35, 0.5803921569);
  border: 1px solid rgba(45, 49, 57, 0.6784313725);
  border-radius: 0.75rem;
  -webkit-transition: background-color 0.2s;
  transition: background-color 0.2s;
  position: relative;
}
.avid_academy .course_items .lesson .lesson_meta {
  margin-bottom: 20px;
}
.avid_academy .course_items .lesson .lesson_meta span {
  color: var(--text-grey);
  line-height: 1;
  font-size: 14px;
}
.avid_academy .course_items .lesson .lesson_meta .ls_title span {
  border: 1px solid var(--color-primary);
  padding: 2px 10px;
  border-radius: 50px;
}
.avid_academy .course_items .lesson .lesson_content h4 {
  font-size: 1.25rem;
  line-height: 1.75rem;
  margin-bottom: 10px;
}
.avid_academy .course_items .lesson .lesson_content h4 a {
  color: rgba(255, 255, 255, 0.6823529412);
}
.avid_academy .course_items .lesson .lesson_content p {
  font-size: 14px;
}
.avid_academy .course_items .lesson .lesson_content.details p {
  font-size: 16px;
}
.avid_academy .course_items .lesson.single_list:hover {
  background-color: #242a33;
}
.avid_academy .course_items .lesson.single_list:hover .lesson_content a {
  color: var(--color-primary);
}
.avid_academy .course_items .lession_link {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.avid_academy .my_custom_box {
  max-width: 970px;
  width: 100%;
  margin: 0 auto;
}

.notifications_page .notification_header {
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgb(39, 44, 53);
}
.notifications_page .notification_header .title_area {
  gap: 10px;
}
.notifications_page .notification_header .bell_icon_area {
  width: 40px;
  height: 40px;
  background: -webkit-gradient(linear, left top, right top, from(var(--gr1)), color-stop(61%, var(--gr2)));
  background: linear-gradient(90deg, var(--gr1) 0%, var(--gr2) 61%);
  border-radius: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 20px;
}
.notifications_page .notification_header .clear_all_notfication,
.notifications_page .notification_header .mark_all_btn {
  background-color: #020304 !important;
  border: 1px solid rgb(39, 44, 53) !important;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  white-space: nowrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.notifications_page .notification_header .clear_all_notfication:hover,
.notifications_page .notification_header .mark_all_btn:hover {
  color: var(--white) !important;
  background: -webkit-gradient(linear, left top, right top, from(var(--gr1)), color-stop(61%, var(--gr2))) !important;
  background: linear-gradient(90deg, var(--gr1) 0%, var(--gr2) 61%) !important;
}
.notifications_page .notification-card {
  position: relative;
  background-color: #222529;
  border: 1px solid rgb(48, 53, 65);
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 15px;
}
@media (min-width: 768px) {
  .notifications_page .notification-card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.notifications_page .notification-icon {
  width: 60px;
  height: 60px;
  font-size: 20px;
  border-radius: 50%;
  background-color: rgb(48, 53, 65);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: var(--text-grey);
  margin-right: 16px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.notifications_page .notification-body {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--text-grey);
}
.notifications_page .notification-title {
  line-height: 1;
  font-size: 14px;
  font-weight: 600;
  margin: 3px 0 6px;
}
.notifications_page .notification-desc {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.notifications_page .notification-time {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-grey);
  white-space: nowrap;
  margin-top: 16px;
}
@media (min-width: 768px) {
  .notifications_page .notification-time {
    margin-top: 0;
    margin-left: 16px;
  }
}
.notifications_page .notification-card.active {
  border-color: rgba(255, 34, 86, 0.4784313725);
}
.notifications_page .notification-card.active .notification-icon {
  background: rgba(255, 34, 86, 0.25);
}
.notifications_page .notification-card.active .notification-icon i {
  color: var(--color-primary);
}
.notifications_page .animate_pulse {
  width: 8px;
  height: 8px;
  background: #ff3860;
  position: absolute;
  right: 15px;
  bottom: 20px;
  border-radius: 50px;
  -webkit-animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
          animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
@media (min-width: 768px) {
  .notifications_page .animate_pulse {
    bottom: 15px;
  }
}
.notifications_page .offcanvas .offcanvas-title {
  font-size: 16px;
}
.notifications_page .offcanvas .offcanvas-header {
  border-bottom: 1px solid #303541;
}
.notifications_page .offcanvas .offcanvas-header .btn-close {
  padding: 0;
}
.notifications_page .offcanvas .notification-icon {
  width: 65px;
  height: 65px;
  font-size: 28px;
}
.notifications_page .offcanvas .notification-body .notification-title {
  font-weight: 400;
  margin-bottom: 5px;
  font-size: 14px;
}
.notifications_page .offcanvas .notification-body .title {
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  display: block;
  margin-bottom: 5px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.notifications_page .offcanvas .notification-time {
  margin: 15px 0;
}
.notifications_page .offcanvas .view_profile {
  color: var(--color-primary);
}

@-webkit-keyframes pulse {
  50% {
    opacity: 0.5;
  }
}

@keyframes pulse {
  50% {
    opacity: 0.5;
  }
}
.service_block {
  padding: 15px;
  background: rgba(23, 28, 35, 0.7098039216);
  border-radius: 6px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.service_block:hover {
  -webkit-box-shadow: 3px 3px 0px 0px rgba(255, 34, 86, 0.75);
          box-shadow: 3px 3px 0px 0px rgba(255, 34, 86, 0.75);
  -webkit-transform: translate(-3px, -3px);
          transform: translate(-3px, -3px);
}
.service_block:hover .action_area a {
  background: var(--color-primary);
}
.service_block:hover .action_area .sharebtn {
  background: rgba(160, 174, 192, 0.2);
  color: var(--color-primary);
}
.service_block .img_area {
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}
.service_block .price {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 13px;
  line-height: 1;
  padding: 4px 8px;
  background: var(--color-primary);
  border-radius: 50px;
  color: #fff;
  font-weight: 400;
}
.service_block .content {
  margin-top: 10px;
}
.service_block .content .title {
  font-size: 16px;
  line-height: 24px;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 5px;
  min-height: 48px;
}
.service_block .service_footer {
  margin-top: 13px;
  color: var(--text-grey);
  font-size: 16px;
  line-height: 24px;
}
.service_block .service_footer .review_area i {
  color: var(--color-primary);
}
.service_block .service_footer .days {
  font-size: 16px;
}
.service_block .service_footer .days i {
  margin-right: 5px;
}
.service_block .action_area {
  margin-top: 20px;
}
.service_block .action_area a {
  background: var(--color-primary);
  border-radius: 100px;
}

.sharebtn {
  color: var(--text-grey);
  background: rgba(160, 174, 192, 0.2) !important;
  padding: 0;
  width: 37px;
  height: 37px;
  font-size: 17px !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 50px;
}

.tag_area {
  margin-bottom: 10px;
}
.tag_area span {
  display: inline-block;
  font-size: 12px;
  line-height: 1;
  padding: 5px 10px;
  color: var(--color-paragraph);
  background-color: #33383e;
  font-weight: 400;
  border-radius: 10px;
}

.gig_categoris:hover .owl-nav {
  opacity: 1;
}
.gig_categoris .gig_categoris_slider {
  width: 100%;
}
.gig_categoris .item a {
  color: var(--text-grey);
  padding: 5px 12px 7px;
  line-height: 1.5;
  font-size: 13px;
  display: block;
  background: rgba(23, 28, 35, 0.7);
  text-align: center;
  border-radius: 50px;
  border: 1px solid rgba(52, 56, 60, 0.7);
  white-space: nowrap;
}
.gig_categoris .item a:hover {
  background: var(--color-primary);
  color: #FFF;
}
.gig_categoris .owl-nav {
  margin: 0;
  opacity: 0;
}
.gig_categoris .owl-nav button.owl-prev,
.gig_categoris .owl-nav button.owl-next {
  background: rgb(44, 44, 44) !important;
  color: #fff;
  border-radius: 50%;
  width: 34px;
  height: 34px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: absolute;
  top: 6px;
  left: 1px;
}
.gig_categoris .owl-nav button.owl-prev:hover,
.gig_categoris .owl-nav button.owl-next:hover {
  background: var(--color-primary) !important;
}
.gig_categoris .owl-nav button.owl-next {
  left: auto;
  right: 0;
}
.gig_categoris .owl-nav button span {
  font-size: 16px;
}
.gig_categoris .owl-stage-outer {
  padding: 6px 0;
}

.author_info {
  margin-bottom: 10px;
}
.author_info .img_area {
  width: 45px;
  height: 45px;
  border-radius: 50px;
  overflow: hidden;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.author_info .name {
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 0;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
}
.author_info .location {
  font-size: 12px;
  line-height: 16px;
  margin-bottom: 0;
}

.card {
  background-color: rgba(23, 28, 35, 0.7);
  border-radius: 10px;
  -webkit-box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
          box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  margin-bottom: 1.5rem;
  overflow: hidden;
  border: none;
  color: var(--text-grey);
}
.card .card-header {
  background-color: rgba(29, 33, 38, 0.7);
  border-bottom: 1px solid rgba(29, 33, 38, 0.7);
  padding: 15px;
  font-weight: 600;
  color: var(--text-grey);
}
@media (min-width: 768px) {
  .card .card-header {
    padding: 20px 24px;
  }
}
.card .card-header p {
  font-size: 14px;
  line-height: 1.5;
}
.card .card-body {
  padding: 15px;
}
@media (min-width: 768px) {
  .card .card-body {
    padding: 20px 24px;
  }
}
.card .stats-value,
.card .balance-amount {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 10px;
  line-height: 1.5;
}
.card .withdrawn-amount {
  color: var(--color-primary);
}
.card .balance-label {
  font-size: 0.9rem;
  margin-bottom: 20px;
}
.card .btn-outline-custom,
.card .btn-primary-custom {
  border-radius: 50px;
  text-transform: capitalize;
}

.earnings_table .table > :not(caption) > * > * {
  color: var(--text-grey);
  background: transparent;
  border-color: rgba(43, 49, 58, 0.7607843137);
  padding: 0.8rem 0.5rem;
}
.earnings_table .activity-type i {
  color: var(--color-primary);
}
.earnings_table .activity-earning i {
  color: #00e300;
}
.earnings_table .amount-negative {
  color: var(--color-primary) !important;
}
.earnings_table .amount-positive {
  color: #00e300 !important;
}

.status-badge {
  font-size: 12px;
  padding: 6px 15px;
  border-radius: 20px;
  font-weight: 600;
  line-height: 1.2;
  min-width: 100px;
  text-align: center;
}
.status-badge.status-complete {
  background-color: #2a2d33;
  color: #85ffcd;
}
.status-badge.status-order-placed {
  background-color: #2a2d33;
  color: #ff7494;
}
.status-badge.status-completed {
  background-color: #2a2d33;
  color: #4dff39;
}
.status-badge.status-revision {
  background-color: #2a2d33;
  color: #f1d37f;
}
.status-badge.status-delivered {
  background-color: #2a2d33;
  color: #b6c3ff;
}

.seller_dashboard .stat-card {
  background-color: rgba(23, 28, 35, 0.7);
  border-radius: 12px;
  -webkit-box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
          box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  -webkit-transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  padding: 15px;
  height: 100%;
  border: none;
  text-align: center;
}
@media (min-width: 768px) {
  .seller_dashboard .stat-card {
    padding: 20px;
  }
}
@media (min-width: 992px) {
  .seller_dashboard .stat-card {
    text-align: left;
  }
}
.seller_dashboard .stat-card:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
          box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.seller_dashboard .stat-value {
  font-size: 20px;
  font-weight: 700;
  margin: 3px 0 0;
  color: var(--color-primary);
}
@media (min-width: 768px) {
  .seller_dashboard .stat-value {
    font-size: 35px;
    margin: 10px 0;
  }
}
.seller_dashboard .stat-title {
  font-size: 13px;
  color: #6c757d;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
@media (min-width: 768px) {
  .seller_dashboard .stat-title {
    font-size: 14px;
  }
}
.seller_dashboard .stat-change {
  font-size: 0.85rem;
  font-weight: 600;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.seller_dashboard .positive-change {
  color: #28a745;
}
.seller_dashboard .stat-detail {
  font-size: 0.85rem;
  color: #6c757d;
  margin-top: 5px;
}
.seller_dashboard .card-icon {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 20px;
  margin: 0 auto 5px;
}
@media (min-width: 992px) {
  .seller_dashboard .card-icon {
    margin: 0 0 15px;
    font-size: 24px;
  }
}
.seller_dashboard .icon-earnings {
  background-color: rgba(67, 97, 238, 0.1);
  color: #4361ee;
}
.seller_dashboard .icon-orders {
  background-color: rgba(76, 201, 240, 0.1);
  color: #4cc9f0;
}
.seller_dashboard .icon-sales {
  background-color: rgba(114, 9, 183, 0.1);
  color: #7209b7;
}
.seller_dashboard .icon-products {
  background-color: rgba(247, 37, 133, 0.1);
  color: #f72585;
}
.seller_dashboard .icon-impressions {
  background-color: rgba(72, 149, 239, 0.1);
  color: #4895ef;
}
.seller_dashboard .icon-clicks {
  background-color: rgba(58, 134, 255, 0.1);
  color: #3a86ff;
}
.seller_dashboard .icon-shares {
  background-color: rgba(255, 183, 3, 0.1);
  color: #ffb703;
}
.seller_dashboard .icon-count {
  background-color: rgba(233, 196, 106, 0.1);
  color: #e9c46a;
}
.seller_dashboard .service_block .tag_area span {
  background: rgba(160, 174, 192, 0.2);
}

.upload_files {
  border: 1px solid #2c313a !important;
}
.upload_files i {
  color: var(--color-paragraph);
}
.upload_files button {
  padding: 5px 20px;
  font-size: 12px;
  background: rgba(160, 174, 192, 0.4);
  border-radius: 50px;
}

.create_gig {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 60px;
  color: var(--text-grey);
}
.create_gig:hover {
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-transform: translate(0, -3px);
          transform: translate(0, -3px);
  color: var(--color-primary);
}

.order-card {
  background-color: rgba(23, 28, 35, 0.7);
  border-radius: 10px;
  -webkit-box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
          box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  margin-bottom: 1.5rem;
  overflow: hidden;
  border: none;
}
.order-card .card-header {
  background-color: rgba(29, 33, 38, 0.7);
  border-bottom: 1px solid rgba(29, 33, 38, 0.7);
  padding: 15px;
  font-weight: 600;
  color: var(--text-grey);
}
@media (min-width: 768px) {
  .order-card .card-header {
    padding: 20px 24px;
  }
}
.order-card .card-body {
  padding: 15px;
  font-size: 14px;
  line-height: 1.5;
}
@media (min-width: 768px) {
  .order-card .card-body {
    padding: 24px;
  }
}
.order-card .content {
  margin-top: 15px;
}

.order_summary .offcanvas-title {
  font-size: 16px;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  padding-right: 15px;
}
.order_summary .offcanvas-body {
  background: #020304;
}
.order_summary .offcanvas-body .title h4 {
  font-size: 20px;
  line-height: 1.5;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  color: var(--text-grey);
  margin: 0;
}
.order_summary .offcanvas-body .show_price {
  padding: 15px;
  background: #191d23;
  border-radius: 6px;
}
.order_summary .offcanvas-body .show_price .price_area {
  margin-bottom: 15px;
}
.order_summary .offcanvas-body .show_price .price_area p {
  margin: 0;
  font-size: 16px;
}
.order_summary .offcanvas-body .show_price .price_area p.price {
  font-size: 20px;
  font-weight: 600;
  color: var(--color-primary);
}
.order_summary .offcanvas-body .quantity_section p {
  margin: 0;
  font-size: 16px;
}
.order_summary .offcanvas-body .quantity-controls {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.order_summary .offcanvas-body .quantity-btn {
  color: var(--text-grey);
  background-color: #3a3f46;
  border: 1px solid #3a3f46;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: bold;
  cursor: pointer;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.order_summary .offcanvas-body .quantity-btn:hover {
  background-color: var(--color-primary);
  color: #FFF;
}
.order_summary .offcanvas-body .quantity-input {
  color: var(--text-grey);
  width: 35px;
  text-align: center;
  background: #3a3f46;
  border: 1px solid #3a3f46;
  border-radius: 5px;
  padding: 2px 6px;
  margin: 0 10px;
  font-weight: 600;
  font-size: 14px;
}
.order_summary .offcanvas-body .package-summary {
  background-color: #191d23;
  border-radius: 8px;
  padding: 20px;
  margin: 15px 0;
}
.order_summary .offcanvas-body .package-summary .price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 5px;
}
.order_summary .offcanvas-body .package-summary .order-type {
  color: var(--text-grey);
  margin-bottom: 20px;
}
.order_summary .offcanvas-body .package-summary .feature {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 10px;
  color: var(--text-grey);
}
.order_summary .offcanvas-body .package-summary .checkbox {
  margin-right: 10px;
}
.order_summary .offcanvas-body .package-summary .order-type {
  color: var(--text-grey);
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #3d4044;
}
.order_summary .offcanvas-body .payment_type {
  margin-bottom: 25px;
  background-color: #191d23;
  border-radius: 8px;
  padding: 20px;
  margin: 15px 0;
}
.order_summary .offcanvas-body .payment_type .title {
  color: var(--text-grey);
}
.order_summary .offcanvas-body .payment_type .form-check-input {
  --bs-form-check-bg: #1b1d23 !important;
  border: var(--bs-border-width) solid #4e4e4e !important;
}
.order_summary .offcanvas-body .payment_type .form-check-input:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
}
.order_summary .offcanvas-body .payment_type .form-check-input:checked {
  background-color: #1b1d23;
}
.order_summary .plan_card {
  margin-top: 15px;
}
.order_summary .plan_card .card_media .card_head .card_info h4 {
  font-size: 18px;
}
.order_summary .plan_card .card_media .card_head .card_info p {
  line-height: 1.5;
  margin-top: 5px;
}
.order_summary .plan_card .card_media .card_list {
  margin-top: 15px;
  margin-bottom: 15px;
}

.section_title {
  color: var(--text-grey);
  font-size: 16px;
  margin-top: 25px;
  margin-bottom: 0;
  padding-bottom: 15px;
  border-bottom: 1px solid #26282b;
  font-weight: 600;
}
@media (min-width: 768px) {
  .section_title {
    font-size: 20px;
  }
}

.sd-breadcrumb .action_area a {
  margin-bottom: 15px;
  width: 100%;
}
@media (min-width: 768px) {
  .sd-breadcrumb .action_area a {
    margin-bottom: 0;
    width: auto;
  }
}

.back_btn {
  padding: 5px 10px;
}

.requirements_card .question {
  font-size: 15px;
  margin-bottom: 10px;
}
.requirements_card .answer {
  font-size: 14px;
  margin-left: 15px;
  margin-bottom: 0;
}
.requirements_card .item {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(48, 53, 60, 0.5882352941);
}
.requirements_card .item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border: 0;
}

.text_highlight_card {
  padding: 16px;
  color: var(--white);
  background: #1e2226;
  border-radius: 10px;
}

.order_delivery .delivery_note {
  margin: 25px 0;
}
.order_delivery .note_title {
  color: var(--text-grey);
  margin-bottom: 5px;
}
.order_delivery .accept_revision {
  margin-left: 5px;
  background-color: rgb(47, 50, 53) !important;
  border-color: rgb(2, 3, 4) !important;
  color: var(--text-grey) !important;
}
.order_delivery .download_file {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.4rem 0.6rem;
  border: 1px solid #30353c;
  border-radius: 0.5rem;
  text-decoration: none;
  color: #495057;
  background-color: #30353c;
  font-size: 0.9rem;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.order_delivery .download_file:hover {
  background-color: rgba(48, 53, 60, 0.4784313725);
  border-color: #30353c;
}
.order_delivery .download_file:hover i,
.order_delivery .download_file:hover .file-name {
  color: #ff2256;
}
.order_delivery .download_file .file-name {
  font-weight: 400;
  max-width: 200px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #a0aec0;
}
.order_delivery .download_file i {
  font-size: 1.1rem;
  color: #a0aec0;
}

.reviewModal .cancel_btn,
.revisionModal .cancel_btn {
  background: rgb(47, 50, 53) !important;
  border-color: rgb(2, 3, 4) !important;
  color: var(--text-grey) !important;
}

.review_star {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  line-height: 1;
  color: var(--color-primary);
  font-weight: 600;
  font-size: 14px;
  line-height: 1;
}

.marketplace_page .page_body {
  height: calc(100vh - 75px);
}
.marketplace_page .author_info .img_area {
  width: 35px;
  height: 35px;
}
.marketplace_page .earnings-card .status-badge {
  padding: 0.35rem 0.65rem;
  border-radius: 0.375rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.marketplace_page .earnings-card .status-completed {
  background-color: rgba(25, 135, 84, 0.1);
  color: #198754;
  border: 1px solid rgba(25, 135, 84, 0.2);
}
.marketplace_page .earnings-card .status-inprogress {
  background-color: rgba(13, 110, 253, 0.1);
  color: #0d6efd;
  border: 1px solid rgba(13, 110, 253, 0.2);
}
.marketplace_page .earnings-card .status-pending {
  background-color: rgba(255, 193, 7, 0.1);
  color: #ffc107;
  border: 1px solid rgba(255, 193, 7, 0.2);
}
.marketplace_page .earnings-card .status-delivered {
  background-color: rgba(111, 66, 193, 0.1);
  color: #6f42c1;
  border: 1px solid rgba(111, 66, 193, 0.2);
}
.marketplace_page .earnings-card {
  /* Custom styling for better mobile experience */
}
@media (max-width: 768px) {
  .marketplace_page .earnings-card .table-responsive {
    border: 0;
  }
  .marketplace_page .earnings-card .table thead {
    display: none;
  }
  .marketplace_page .earnings-card .table, .marketplace_page .earnings-card .table tbody, .marketplace_page .earnings-card .table tr, .marketplace_page .earnings-card .table td {
    display: block;
    width: 100%;
  }
  .marketplace_page .earnings-card .table tr {
    margin-bottom: 1rem;
    border: 1px solid rgba(52, 56, 60, 0.7);
    border-radius: 0.375rem;
    -webkit-box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
            box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  }
  .marketplace_page .earnings-card .table td {
    text-align: right;
    padding-left: 50%;
    position: relative;
    border-top: 1px solid rgba(52, 56, 60, 0.7);
    border-bottom: 0;
    font-size: 14px;
  }
  .marketplace_page .earnings-card .table td:before {
    content: attr(data-label);
    position: absolute;
    left: 0.75rem;
    width: 45%;
    padding-right: 0.75rem;
    font-weight: 600;
    text-align: left;
  }
  .marketplace_page .earnings-card .table td:last-child {
    border-bottom: 1px solid rgba(52, 56, 60, 0.7);
  }
}
.marketplace_page .earnings-card {
  /* For very small screens */
}
@media (max-width: 576px) {
  .marketplace_page .earnings-card .table td {
    padding-left: 40%;
  }
  .marketplace_page .earnings-card .table td:before {
    width: 35%;
  }
}

.marketplace_details_page .image_area {
  border-radius: 6px;
  overflow: hidden;
}
.marketplace_details_page .scroll_area {
  padding: 10px 0;
}
@media (min-width: 992px) {
  .marketplace_details_page .scroll_area {
    padding: 0;
  }
}
.marketplace_details_page .git_title {
  font-size: 20px;
  line-height: 28px;
  font-weight: 600;
  margin: 0 0 10px;
}
@media (min-width: 992px) {
  .marketplace_details_page .git_title {
    font-size: 26px;
    line-height: 36px;
  }
}
.marketplace_details_page .gig_content {
  padding: 20px;
  background: rgba(23, 28, 35, 0.71);
  border-radius: 6px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (min-width: 992px) {
  .marketplace_details_page .gig_content {
    padding: 25px;
  }
}
.marketplace_details_page .gig_content .review_star {
  font-size: 13px;
}
.marketplace_details_page .gig_content .sharebtn:hover {
  background: var(--color-primary) !important;
  color: var(--white);
}
.marketplace_details_page .seller_info {
  margin: 30px 0 30px;
  padding-top: 10px;
  padding-bottom: 10px;
}
@media (min-width: 992px) {
  .marketplace_details_page .seller_info {
    border: 0;
    padding-bottom: 0;
    padding-top: 0;
  }
}
.marketplace_details_page .about_area {
  font-size: 14px;
  line-height: 1.5;
}
@media (min-width: 992px) {
  .marketplace_details_page .about_area {
    font-size: 16px;
  }
}
.marketplace_details_page .mate {
  gap: 10px;
  font-size: 12px;
  color: var(--text-grey);
}
.marketplace_details_page .mate .total_review_count,
.marketplace_details_page .mate .show_review {
  color: var(--color-primary);
  font-weight: 600;
  letter-spacing: 1px;
}
.marketplace_details_page .about_area {
  color: var(--text-grey);
  margin-top: 15px !important;
}
@media (min-width: 992px) {
  .marketplace_details_page .about_area {
    margin: 20px 0;
  }
}
.marketplace_details_page .about_area .title {
  font-size: 20px;
}
.marketplace_details_page .author_info .name a {
  color: var(--color-paragraph) !important;
}
.marketplace_details_page .author_info .name a:hover {
  color: var(--color-primary) !important;
}
.marketplace_details_page .contact_now {
  font-size: 14px;
  padding: 10px 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  line-height: 1;
  font-weight: 600;
  border-radius: 100px;
  display: inline-block;
  margin-left: 60px;
}
@media (min-width: 768px) {
  .marketplace_details_page .contact_now {
    margin-left: 0px;
  }
}
.marketplace_details_page .review_area .review_title {
  font-size: 20px;
  margin-bottom: 25px;
}
.marketplace_details_page .review_area .block {
  padding: 15px;
  background: rgba(23, 28, 35, 0.71);
  border-radius: 10px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  margin-bottom: 15px;
}
@media (min-width: 768px) {
  .marketplace_details_page .review_area .block {
    padding: 25px;
  }
}
.marketplace_details_page .review_area .buyer_review {
  margin-bottom: 20px;
}
.marketplace_details_page .review_area .review_content .review_star {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  line-height: 1;
  color: var(--color-primary);
  font-weight: 600;
  font-size: 14px;
  line-height: 1;
}
.marketplace_details_page .review_area .review_content .time {
  font-size: 14px;
  line-height: 1;
  color: var(--text-grey);
  margin-left: 25px;
  font-weight: 600;
}
.marketplace_details_page .review_area .review_content .content {
  margin: 25px 0;
  font-size: 14px;
  line-height: 1.5;
}
@media (min-width: 768px) {
  .marketplace_details_page .review_area .review_content .content {
    font-size: 16px;
  }
}
.marketplace_details_page .review_area .accordion-header .accordion-button {
  padding: 15px 0 0;
}
.marketplace_details_page .review_area .accordion-body {
  font-size: 14px;
  line-height: 1.5;
}
@media (min-width: 768px) {
  .marketplace_details_page .review_area .accordion-body {
    font-size: 16px;
  }
}
.marketplace_details_page .seller_review {
  border-top: 1px solid rgba(160, 174, 192, 0.18);
}
.marketplace_details_page .seller_review button {
  -webkit-box-shadow: none;
          box-shadow: none;
}
.marketplace_details_page .seller_review button:active, .marketplace_details_page .seller_review button:focus-visible, .marketplace_details_page .seller_review button:focus {
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  outline: none !important;
}
.marketplace_details_page .seller_review .accordion-button::after {
  -webkit-filter: invert(65%) sepia(7%) saturate(246%) hue-rotate(177deg) brightness(92%) contrast(88%);
          filter: invert(65%) sepia(7%) saturate(246%) hue-rotate(177deg) brightness(92%) contrast(88%);
}
.marketplace_details_page .seller_review .accordion-body {
  color: var(--text-grey);
}
.marketplace_details_page .load_more a {
  font-size: 14px;
  padding: 10px 15px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 6px;
  line-height: 1;
  font-weight: 600;
  border-radius: 100px;
}
.marketplace_details_page .nav-tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  border-bottom: 1px solid rgba(160, 174, 192, 0.25);
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  overflow: hidden;
}
.marketplace_details_page .nav-tabs button {
  padding: 0;
  line-height: 1;
  border-radius: 0;
  width: 100%;
  max-width: 33.33%;
  padding: 15px 0;
  font-size: 14px;
  background: rgba(23, 28, 35, 0.71);
  font-weight: 600;
  text-transform: uppercase;
  border: 0;
  letter-spacing: 0.5px;
}
.marketplace_details_page .nav-tabs button:hover {
  background-color: var(--color-primary);
  color: #fff;
  letter-spacing: 0.5px;
}
@media (min-width: 992px) {
  .marketplace_details_page .nav-tabs button {
    padding: 20px 0;
    font-size: 15px;
  }
}
.marketplace_details_page .nav-tabs button.active {
  background-color: #20252c;
  color: #fff;
}
.marketplace_details_page .packages .card {
  padding: 15px;
  background: rgba(23, 28, 35, 0.71);
  border-radius: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  color: var(--text-grey);
}
@media (max-width: 1024px) {
  .marketplace_details_page .packages .card {
    margin-bottom: 0;
  }
}
.marketplace_details_page .packages .card .card-header {
  background: transparent;
  padding: 0px 0 10px;
  border: 0;
}
@media (min-width: 1200px) {
  .marketplace_details_page .packages .card .card-header {
    padding: 0px 15px 10px;
  }
}
.marketplace_details_page .packages .card .card-header .title {
  font-size: 16px;
  line-height: 26px;
}
@media (min-width: 992px) {
  .marketplace_details_page .packages .card .card-header .title {
    font-size: 18px;
    line-height: 28px;
  }
}
.marketplace_details_page .packages .card .card-header .time {
  font-size: 14px;
  line-height: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  margin-top: 3px;
}
.marketplace_details_page .packages .card .card-header .price {
  font-size: 20px;
  line-height: 28px;
  font-weight: 700;
}
@media (min-width: 992px) {
  .marketplace_details_page .packages .card .card-header .price {
    font-size: 24px;
    line-height: 32px;
  }
}
.marketplace_details_page .packages .card .card-body {
  border-top: 1px solid rgba(160, 174, 192, 0.15);
  padding: 15px 0 15px;
  margin-top: 10px;
}
@media (min-width: 992px) {
  .marketplace_details_page .packages .card .card-body {
    padding: 16px 0;
  }
}
@media (min-width: 1200px) {
  .marketplace_details_page .packages .card .card-body {
    padding: 16px 16px;
  }
}
.marketplace_details_page .packages .card .card-body .item {
  margin: 5px 0 15px;
  font-size: 14px;
  line-height: 1.5;
}
@media (min-width: 992px) {
  .marketplace_details_page .packages .card .card-body .item {
    font-size: 16px;
  }
}
.marketplace_details_page .packages .card .card-body .item::last-child {
  margin-bottom: 0;
}
.marketplace_details_page .packages .card .question {
  font-size: 18px;
  margin-bottom: 5px;
}
.marketplace_details_page .packages .card .card-footer {
  border: 0;
  padding: 0;
}
@media (min-width: 992px) {
  .marketplace_details_page .packages .card .card-footer {
    padding: 8px 0;
  }
}
@media (min-width: 1200px) {
  .marketplace_details_page .packages .card .card-footer {
    padding: 8px 16px;
  }
}
.marketplace_details_page .packages .card .card-footer a {
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  width: 100%;
}
@media (min-width: 992px) {
  .marketplace_details_page .packages .card .card-footer a {
    width: 100%;
  }
}
@media (min-width: 992px) {
  .marketplace_details_page .gigDetailsPrice {
    height: calc(100vh - 100px);
    background: rgb(21, 26, 33);
    position: sticky;
    top: 0;
    right: 0;
    border-radius: 10px;
  }
}
@media (min-width: 1200px) {
  .marketplace_details_page .gigDetailsPrice {
    height: calc(100vh - 155px);
  }
}
.marketplace_details_page .gig_pricing_area {
  margin: 16px 0;
}
@media (min-width: 992px) {
  .marketplace_details_page .gig_pricing_area {
    margin: 0;
  }
}

.gig-categories {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
.gig-categories .badge {
  color: var(--text-grey);
  background: rgba(160, 174, 192, 0.2) !important;
  border-radius: 20px;
  padding: 10px 15px;
}

.marketplace_order_page .page_body {
  height: calc(100vh - 75px);
}
.marketplace_order_page .order_list_tab {
  background: transparent;
}
.marketplace_order_page .order_list_tab .card-header .nav {
  background: rgb(23, 28, 35);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 5px 0;
  border-radius: 8px;
  width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (min-width: 768px) {
  .marketplace_order_page .order_list_tab .card-header .nav {
    padding: 5px;
    width: auto;
  }
}
.marketplace_order_page .order_list_tab .card-header .nav-link {
  padding: 5px 10px;
  border-color: transparent;
  border-radius: 5px;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 600;
  letter-spacing: 0.5px;
}
@media (min-width: 768px) {
  .marketplace_order_page .order_list_tab .card-header .nav-link {
    padding: 5px 15px;
  }
}
.marketplace_order_page .order_list_tab .card-header .nav-link.active {
  color: #fff;
  background-color: var(--color-primary);
}
.marketplace_order_page .order_content .order-card {
  border: 1px solid rgba(23, 28, 35, 0.7);
  border-radius: 10px;
  padding: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 15px;
  background-color: rgba(23, 28, 35, 0.7);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.marketplace_order_page .order_content .order-card:hover {
  -webkit-box-shadow: 0px 2px 0px 0px rgba(255, 34, 86, 0.75);
          box-shadow: 0px 2px 0px 0px rgba(255, 34, 86, 0.75);
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}
@media (min-width: 768px) {
  .marketplace_order_page .order_content .order-card {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.marketplace_order_page .order_content .order-card .order-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  gap: 15px;
}
@media (min-width: 768px) {
  .marketplace_order_page .order_content .order-card .order-left {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.marketplace_order_page .order_content .order-card .order-left img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
.marketplace_order_page .order_content .order-card .order-left .order-info h6 {
  margin-bottom: 6px;
  font-weight: 600;
  font-size: 16px;
}
.marketplace_order_page .order_content .order-card .order-left .order-info p {
  margin: 0;
  font-size: 13px;
}
.marketplace_order_page .order_content .order-card .order-left .order-info .seller {
  color: var(--color-primary);
}
.marketplace_order_page .order_content .order-card .order-left .order-info .order-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  color: var(--text-grey);
  font-size: 14px;
}
.marketplace_order_page .order_content .order-card .order-left .order-info .order-meta .price {
  font-weight: 600;
}
.marketplace_order_page .order_content .order-card .status-badge {
  margin-top: 12px;
  max-width: 120px;
}
@media (min-width: 768px) {
  .marketplace_order_page .order_content .order-card .status-badge {
    margin-top: 0;
  }
}
.marketplace_order_page .order_content .order-card .in_complete_text {
  font-size: 12px;
  margin: 5px 0 0 0;
  color: var(--color-primary);
}
.marketplace_order_page .order_content .buyer .order-left img {
  width: 120px;
  height: 80px;
  border-radius: 10px;
}

.marketplace_order_details_page .page_body {
  height: calc(100vh - 75px);
}
.marketplace_order_details_page .header {
  color: white;
  border-radius: 0 0 10px 10px;
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  .marketplace_order_details_page .header {
    margin-top: 20px;
    margin-bottom: 24px;
  }
}
.marketplace_order_details_page .header .title {
  font-size: 20px;
  margin-bottom: 15px;
}
@media (min-width: 768px) {
  .marketplace_order_details_page .header .title {
    font-size: 28px;
  }
}
.marketplace_order_details_page .countdown {
  background-color: rgba(23, 28, 35, 0.7);
  color: var(--color-primary);
  padding: 1rem;
  border-radius: 8px;
  text-align: center;
  margin-bottom: 1.5rem;
}
.marketplace_order_details_page .left_area {
  margin-bottom: 15px;
}
.marketplace_order_details_page .left_area h5 {
  font-size: 18px;
}
.marketplace_order_details_page .left_area p {
  font-size: 14px;
}
.marketplace_order_details_page .countdown-timer {
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0.5rem 0;
}
.marketplace_order_details_page .requirement-item {
  padding: 1rem 0;
  border-bottom: 1px solid #dee2e6;
}
.marketplace_order_details_page .requirement-item:last-child {
  border-bottom: none;
}
.marketplace_order_details_page .requirement-icon {
  background-color: #f8f9fa;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-right: 1rem;
  color: #2c5aa0;
}
.marketplace_order_details_page .submit-section {
  background-color: #191d23;
  padding: 15px;
  border-radius: 8px;
  margin-top: 0;
}
@media (min-width: 768px) {
  .marketplace_order_details_page .submit-section {
    padding: 24px;
  }
}
.marketplace_order_details_page .submit-section .btn {
  margin-top: 15px;
  width: 100%;
}
@media (min-width: 768px) {
  .marketplace_order_details_page .submit-section .btn {
    margin-top: 0;
    width: auto;
  }
}
.marketplace_order_details_page .btn-submit {
  background: linear-gradient(135deg, #2c5aa0, #1a3a6d);
  color: white;
  padding: 0.75rem 2rem;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.marketplace_order_details_page .btn-submit:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 6px 12px rgba(44, 90, 160, 0.3);
          box-shadow: 0 6px 12px rgba(44, 90, 160, 0.3);
}
.marketplace_order_details_page .order-details {
  color: var(--text-grey);
  padding: 1.25rem;
}
.marketplace_order_details_page .buyer-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 1rem;
  border-radius: 8px;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
.marketplace_order_details_page .buyer-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2c5aa0, #1a3a6d);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: white;
  font-weight: bold;
  margin-right: 1rem;
}
.marketplace_order_details_page .message-btn {
  background-color: white;
  border: 1px solid #2c5aa0;
  color: #2c5aa0;
  padding: 0.5rem 1.5rem;
  border-radius: 6px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.marketplace_order_details_page .message-btn:hover {
  background-color: #2c5aa0;
  color: white;
}
.marketplace_order_details_page .logo-preview {
  background: linear-gradient(135deg, #e3f2fd, #f0f7ff);
  height: 120px;
  border-radius: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 1rem;
  border: 1px dashed #dee2e6;
}
.marketplace_order_details_page .logo-preview i {
  font-size: 2.5rem;
  color: #2c5aa0;
  opacity: 0.7;
}
@media (max-width: 768px) {
  .marketplace_order_details_page .countdown-timer {
    font-size: 1.5rem;
  }
  .marketplace_order_details_page .header h1 {
    font-size: 1.5rem;
  }
}
.marketplace_order_details_page .view_prodile_link {
  color: var(--color-primary);
  font-weight: 400;
}
.marketplace_order_details_page .countdown-display {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1.5rem;
}
.marketplace_order_details_page .time-section {
  text-align: center;
  min-width: 50px;
}
.marketplace_order_details_page .time-digits {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 0.5rem;
  line-height: 1;
}
.marketplace_order_details_page .time-label {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.marketplace_order_details_page .time-separator {
  min-height: 65px;
  width: 2px;
  background: rgba(43, 49, 58, 0.7607843137);
}
@media (max-width: 768px) {
  .marketplace_order_details_page .countdown-display {
    gap: 0.8rem;
  }
  .marketplace_order_details_page .time-digits {
    font-size: 1.8rem;
    letter-spacing: 2px;
  }
  .marketplace_order_details_page .time-separator {
    font-size: 1.5rem;
    margin-top: -0.3rem;
  }
  .marketplace_order_details_page .time-label {
    font-size: 0.75rem;
  }
  .marketplace_order_details_page .time-section {
    min-width: 60px;
  }
}
@media (max-width: 576px) {
  .marketplace_order_details_page .countdown-display {
    gap: 8px;
  }
  .marketplace_order_details_page .time-digits {
    font-size: 22px;
    letter-spacing: 1px;
  }
  .marketplace_order_details_page .time-separator {
    font-size: 1.2rem;
  }
  .marketplace_order_details_page .time-label {
    font-size: 11px;
  }
  .marketplace_order_details_page .time-section {
    min-width: 50px;
  }
}
.marketplace_order_details_page .order_id {
  padding: 10px 20px;
  font-size: 14px;
  background: rgba(160, 174, 192, 0.25);
}
.marketplace_order_details_page .review_star {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  line-height: 1;
  color: var(--text-grey);
  font-weight: 600;
  font-size: 22px;
  line-height: 1;
}
.marketplace_order_details_page .review_star i {
  cursor: pointer;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
}
.marketplace_order_details_page .review_star i.active, .marketplace_order_details_page .review_star i:hover {
  color: var(--color-primary);
}
.marketplace_order_details_page .status-badge {
  font-size: 12px;
  padding: 6px 15px;
  border-radius: 20px;
  font-weight: 600;
  line-height: 1.2;
  min-width: 100px;
  text-align: center;
}
.marketplace_order_details_page .status-badge.status-inprogress {
  background-color: #2a2d33;
  color: #85ffcd;
}
.marketplace_order_details_page .status-badge.status-completed {
  background-color: #2a2d33;
  color: #4dff39;
}
.marketplace_order_details_page .status-badge.status-pending {
  background-color: #2a2d33;
  color: #f1d37f;
}
.marketplace_order_details_page .status-badge.status-delivered {
  background-color: #2a2d33;
  color: #b6c3ff;
}
.marketplace_order_details_page .nav-tabs {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  background-color: rgba(29, 33, 38, 0.7);
  border-bottom: 1px solid rgba(29, 33, 38, 0.7);
}

.marketplace_earnings_page .page_body {
  height: calc(100vh - 75px);
}
.marketplace_earnings_page .card {
  background-color: rgba(23, 28, 35, 0.7);
  border-radius: 10px;
  -webkit-box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
          box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  margin-bottom: 1.5rem;
  overflow: hidden;
  border: none;
  color: var(--text-grey);
}
.marketplace_earnings_page .card .card-header {
  background-color: rgba(29, 33, 38, 0.7);
  border-bottom: 1px solid rgba(29, 33, 38, 0.7);
  padding: 15px;
  font-weight: 600;
  color: var(--text-grey);
}
.marketplace_earnings_page .card .card-header h5 {
  font-size: 18px;
}
@media (min-width: 768px) {
  .marketplace_earnings_page .card .card-header {
    padding: 20px 24px;
  }
}
.marketplace_earnings_page .card .card-body {
  padding: 15px;
}
@media (min-width: 768px) {
  .marketplace_earnings_page .card .card-body {
    padding: 20px 24px;
  }
}
.marketplace_earnings_page .card .stats-value,
.marketplace_earnings_page .card .balance-amount {
  font-size: 22px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 0;
  line-height: 1.5;
}
@media (min-width: 768px) {
  .marketplace_earnings_page .card .stats-value,
  .marketplace_earnings_page .card .balance-amount {
    font-size: 24px;
    margin-bottom: 10px;
  }
}
.marketplace_earnings_page .card .withdrawn-amount {
  color: var(--color-primary);
}
.marketplace_earnings_page .card .balance-label {
  font-size: 14px;
  margin-bottom: 3px;
}
@media (min-width: 768px) {
  .marketplace_earnings_page .card .balance-label {
    margin-bottom: 20px;
  }
}
.marketplace_earnings_page .card .btn-outline-custom,
.marketplace_earnings_page .card .btn-primary-custom {
  border-radius: 50px;
  text-transform: capitalize;
}
.marketplace_earnings_page .earnings_table .table > :not(caption) > * > * {
  color: var(--text-grey);
  background: transparent;
  border-color: rgba(43, 49, 58, 0.7607843137);
  padding: 0.8rem 0.5rem;
}
.marketplace_earnings_page .earnings_table .activity-type i {
  color: var(--color-primary);
}
.marketplace_earnings_page .earnings_table .activity-earning i {
  color: #00e300;
}
.marketplace_earnings_page .earnings_table .amount-negative {
  color: var(--color-primary) !important;
}
.marketplace_earnings_page .earnings_table .amount-positive {
  color: #00e300 !important;
}
@media (max-width: 768px) {
  .marketplace_earnings_page .earnings_table .table-responsive {
    border: 0;
  }
  .marketplace_earnings_page .earnings_table .table thead {
    display: none;
  }
  .marketplace_earnings_page .earnings_table .table, .marketplace_earnings_page .earnings_table .table tbody, .marketplace_earnings_page .earnings_table .table tr, .marketplace_earnings_page .earnings_table .table td {
    display: block;
    width: 100%;
  }
  .marketplace_earnings_page .earnings_table .table tr {
    margin-bottom: 1rem;
    border: 1px solid rgba(52, 56, 60, 0.7);
    border-radius: 0.375rem;
    -webkit-box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
            box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    padding: 0;
  }
  .marketplace_earnings_page .earnings_table .table td {
    text-align: right;
    padding-left: 50%;
    position: relative;
    border-top: 1px solid rgba(52, 56, 60, 0.7);
    border-bottom: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    font-size: 14px;
  }
  .marketplace_earnings_page .earnings_table .table td:before {
    content: attr(data-label);
    position: absolute;
    left: 0.75rem;
    width: 45%;
    padding-right: 0.75rem;
    font-weight: 600;
    text-align: left;
    color: #6c757d;
  }
  .marketplace_earnings_page .earnings_table .table td:first-child {
    border-top: 0;
  }
  .marketplace_earnings_page .earnings_table .table td:last-child {
    border-bottom: 0px solid rgba(52, 56, 60, 0.7);
  }
}
.marketplace_earnings_page .earnings_table {
  /* For very small screens */
}
@media (max-width: 576px) {
  .marketplace_earnings_page .earnings_table .table td {
    padding-left: 40%;
  }
  .marketplace_earnings_page .earnings_table .table td:before {
    width: 35%;
  }
}

.marketplace_create_gig .page_body {
  height: calc(100vh - 50px);
}
.marketplace_create_gig input::-webkit-input-placeholder {
  color: rgba(160, 174, 192, 0.5882352941);
}
.marketplace_create_gig input:-ms-input-placeholder {
  color: rgba(160, 174, 192, 0.5882352941);
}
.marketplace_create_gig input::-ms-input-placeholder {
  color: rgba(160, 174, 192, 0.5882352941);
}
.marketplace_create_gig input::-moz-placeholder {
  color: rgba(160, 174, 192, 0.5882352941);
}
.marketplace_create_gig input::placeholder {
  color: rgba(160, 174, 192, 0.5882352941);
}
.marketplace_create_gig .select2-search {
  display: block;
  margin-top: -22px;
  float: unset !important;
}
.marketplace_create_gig .select2-search .select2-search__field {
  height: 22px;
  margin-top: 0 !important;
  margin-left: 15px !important;
}
.marketplace_create_gig .select2-container--default .select2-selection--multiple .select2-selection__rendered li {
  margin: 8px 5px;
  padding: 5px 5px 5px 35px;
  line-height: 1.5;
  font-size: 14px;
  background: var(--color-primary) !important;
}
.marketplace_create_gig .select2-container--default .select2-selection--multiple .select2-selection__rendered li .select2-selection__choice__remove {
  height: 100%;
  padding: 0 8px;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.45);
}
.marketplace_create_gig .select2-container--default .select2-selection--multiple .select2-selection__rendered li .select2-selection__choice__remove:hover {
  background-color: rgba(255, 255, 255, 0.1607843137);
}
.marketplace_create_gig .form_repeat_area .remove_item {
  margin-top: 0;
}
@media (min-width: 768px) {
  .marketplace_create_gig .form_repeat_area .remove_item {
    margin-top: 9px;
    height: 100%;
  }
}
.marketplace_create_gig .form_repeat_area .remove_item a {
  border-radius: 6px;
  color: var(--text-grey);
  font-size: 18px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 35px;
  height: 35px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: 0.1s ease;
  transition: 0.1s ease;
}
.marketplace_create_gig .form_repeat_area .remove_item a:hover {
  background: var(--color-primary);
  color: #FFF;
}
@media (min-width: 768px) {
  .marketplace_create_gig .form_repeat_area .remove_item a {
    width: 100%;
    height: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 5px;
  }
}
@media (min-width: 992px) {
  .marketplace_create_gig .form_repeat_area .remove_item a {
    margin-top: 18px;
  }
}
@media (min-width: 1200px) {
  .marketplace_create_gig .form_repeat_area .remove_item a {
    margin-top: 15px;
    background: rgba(42, 45, 52, 0.6);
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .marketplace_create_gig .form_repeat_area .remove_item a {
    background: transparent;
  }
}
.marketplace_create_gig .form_repeat_area .add_more {
  font-size: 13px;
  padding: 3px 10px;
  border-radius: 25px;
  margin-top: 15px;
}

.errors_list {
  background: #171c23;
  border-color: #2c313a;
}
.errors_list p {
  margin: 0;
  color: var(--color-primary);
}

.checkout-page .page_body {
  height: calc(100vh - 75px);
}
.checkout-page .border {
  border-color: rgba(52, 56, 60, 0.7) !important;
}
.checkout-page .git_img {
  width: 170px;
}
.checkout-page .retting_text {
  color: var(--color-primary);
}
.checkout-page .card {
  border: 1px solid rgba(23, 28, 35, 0.7);
  border-radius: 10px;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}
.checkout-page .order-details img {
  border-radius: 8px;
}
.checkout-page .order-details .seller-info img {
  width: 24px;
  height: 24px;
}
.checkout-page .payment-method input.form-control {
  padding: 10px 14px;
  border-radius: 8px;
  border: 1px solid #ccc;
}
.checkout-page .payment-method input.form-control:focus {
  border-color: #000;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.checkout-page .payment-method label.form-label {
  font-weight: 500;
  margin-bottom: 6px;
}
.checkout-page .payment-method .form-check-label {
  font-weight: 500;
}
.checkout-page .price-summary {
  background-color: rgba(23, 28, 35, 0.7);
}
.checkout-page .price-summary .border-top {
  border-color: rgba(52, 56, 60, 0.7) !important;
}
.checkout-page .price-summary h5 {
  font-size: 1.1rem;
}
.checkout-page .price-summary .btn {
  border-radius: 8px;
}
.checkout-page .price-summary p {
  color: #777;
}
.checkout-page .form-check-input {
  --bs-form-check-bg: #1b1d23 !important;
  border: var(--bs-border-width) solid #4e4e4e !important;
}
.checkout-page .form-check-input:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
}
.checkout-page .form-check-input:checked {
  background-color: #1b1d23;
}
.checkout-page .price {
  color: var(--color-primary);
}

.discussion_area {
  margin-bottom: 50px;
}
.discussion_area ul,
.discussion_area li {
  list-style: none;
  padding: 0;
}
.discussion_area .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 1rem;
  background: linear-gradient(45deg, #209cff, #68e0cf);
  padding: 3rem 0;
}
.discussion_area .wrapper {
  background: #eaf6ff;
  padding: 2rem;
  border-radius: 15px;
}
.discussion_area .revision_content {
  background: #191d23;
  padding: 15px 30px;
}
.discussion_area .delivered_content {
  background: #191d23;
  padding: 15px;
  margin-top: 10px;
  border-radius: 10px;
}
.discussion_area li {
  padding-bottom: 20px;
  border-left: 1px solid #30353c;
  position: relative;
  padding-left: 30px;
  margin-left: 10px;
  margin-top: 0;
}
.discussion_area li:last-child {
  border: 0px;
  padding-bottom: 0;
}
.discussion_area li .icon_area {
  width: 30px;
  height: 30px;
  border-radius: 50px;
  position: absolute;
  left: -15px;
  top: 0px;
  background: #30353c;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 14px;
  top: -5px;
}
.discussion_area .name {
  font-weight: 600;
  margin-right: 10px;
}
.discussion_area .time {
  font-weight: 500;
  color: rgba(160, 174, 192, 0.6509803922);
}
@media screen and (min-width: 601px) {
  .discussion_area .time {
    font-size: 0.9rem;
  }
}
@media screen and (max-width: 600px) {
  .discussion_area .time {
    margin-bottom: 0.3rem;
    font-size: 0.85rem;
  }
}
.discussion_area p {
  font-family: sans-serif;
  line-height: 1.5;
  margin: 15px 0;
}
@media screen and (max-width: 600px) {
  .discussion_area p {
    font-size: 0.9rem;
  }
}
.discussion_area .chat-file a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.4rem 0.6rem;
  border: 1px solid #30353c;
  border-radius: 0.5rem;
  text-decoration: none;
  color: #495057;
  background-color: #30353c;
  font-size: 0.9rem;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.discussion_area .chat-file a:hover {
  background-color: rgba(48, 53, 60, 0.4784313725);
  border-color: #30353c;
}
.discussion_area .chat-file a:hover i,
.discussion_area .chat-file a:hover .file-name {
  color: #ff2256;
}
.discussion_area .chat-file a .file-name {
  font-weight: 400;
  max-width: 200px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #a0aec0;
}
.discussion_area .chat-file a i {
  font-size: 1.1rem;
  color: #a0aec0;
}

.profile_page .gig_profile_info {
  background-color: #171C23;
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 30px;
  text-align: center;
}
@media (min-width: 768px) {
  .profile_page .gig_profile_info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    text-align: left;
    gap: 30px;
  }
}
.profile_page .gig_profile_info .author_img {
  max-width: 180px;
  display: inline-block;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
}
.profile_page .gig_profile_info .name {
  font-size: 24px;
  font-weight: 600;
  color: var(--color-paragraph);
}
.profile_page .gig_profile_info .mate {
  margin: 10px 0;
  color: var(--color-primary);
}
.profile_page .gig_profile_info .about_me .title {
  color: var(--color-paragraph);
  font-weight: 600;
}
.profile_page .gig_area {
  margin-bottom: 30px;
}

/**=====================
     14. Chat CSS Start
==========================**/
.status-circle {
  width: 12px;
  height: 12px;
  position: absolute;
  top: 4px;
  left: 44px;
  border-radius: 50%;
  border: 2px solid #fff;
}

.user-image {
  height: 52px;
  margin-right: 5px;
}
.user-image .about {
  float: left;
  margin-top: 5px;
  padding-left: 10px;
}
.user-image .about .name {
  color: #000;
  letter-spacing: 1px;
  font-weight: 500;
}

.left-sidebar-wrapper {
  padding: 20px;
  border-radius: 10px 0 0 10px;
  z-index: 1;
  border: 2px solid #171c23;
  border-right: unset;
  background: #171c23;
}
[dir=rtl] .left-sidebar-wrapper {
  border-left: unset;
}
@media (max-width: 767px) {
  .left-sidebar-wrapper {
    border-radius: 10px;
    padding: 15px;
  }
}
.left-sidebar-wrapper {
  /* ===== Scrollbar CSS ===== */
  /* Firefox */
}
.left-sidebar-wrapper * {
  scrollbar-width: auto;
  scrollbar-color: #272b30;
}
.left-sidebar-wrapper {
  /* Chrome, Edge, and Safari */
}
.left-sidebar-wrapper *::-webkit-scrollbar {
  width: 6px;
}
.left-sidebar-wrapper *::-webkit-scrollbar-track {
  background: transparent;
}
.left-sidebar-wrapper *::-webkit-scrollbar-thumb {
  background-color: #272b30;
  border-radius: 8px;
  border: 3px solid transparent;
}
.left-sidebar-wrapper .left-sidebar-chat .input-group .input-group-text {
  background-color: var(--text-gray);
  padding-right: 0;
  margin-right: 1px;
  border-right: none;
}
[dir=rtl] .left-sidebar-wrapper .left-sidebar-chat .input-group .input-group-text {
  padding-left: 0;
  padding-right: 12px;
  margin-left: 1px;
  border-left: none;
  margin-right: unset;
  border-right: unset;
}
.left-sidebar-wrapper .left-sidebar-chat .input-group .input-group-text svg {
  width: 16px;
  height: 16px;
}
.left-sidebar-wrapper .left-sidebar-chat .input-group > :not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.left-sidebar-wrapper .left-sidebar-chat .input-group .form-control {
  border-left: unset;
  background-color: var(--text-gray);
}
[dir=rtl] .left-sidebar-wrapper .left-sidebar-chat .input-group .form-control {
  border-right: unset;
  border-left: 1px solid #ddd;
  border-radius: 0.25rem !important;
}
.left-sidebar-wrapper .left-sidebar-chat .input-group .form-control:focus, .left-sidebar-wrapper .left-sidebar-chat .input-group .form-control:focus-visible {
  border-color: var(--text-gray);
  -webkit-box-shadow: unset;
          box-shadow: unset;
}
.left-sidebar-wrapper .advance-options ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 0;
}
.left-sidebar-wrapper .advance-options ul .nav-item .nav-link {
  color: var(--body-font-color);
  border-bottom: 2px solid transparent;
  background-color: transparent;
  padding: 16px 57px;
  text-decoration: unset;
}
@media (max-width: 1855px) {
  .left-sidebar-wrapper .advance-options ul .nav-item .nav-link {
    padding: 16px 45px;
  }
}
@media (max-width: 1663px) {
  .left-sidebar-wrapper .advance-options ul .nav-item .nav-link {
    padding: 16px 30px;
  }
}
@media (max-width: 1423px) {
  .left-sidebar-wrapper .advance-options ul .nav-item .nav-link {
    padding: 16px 28px;
  }
}
.left-sidebar-wrapper .advance-options ul .nav-item .nav-link:active, .left-sidebar-wrapper .advance-options ul .nav-item .nav-link.active {
  border-bottom: 2px solid var(--theme-deafult);
  color: var(--theme-deafult);
}
.left-sidebar-wrapper .advance-options .chat_title p {
  font-size: 16px !important;
  font-weight: 600;
}
.left-sidebar-wrapper .advance-options .common-space {
  padding: 11px 0;
}
@media (max-width: 767px) {
  .left-sidebar-wrapper .advance-options .common-space {
    padding: 0 0 11px;
  }
}
.left-sidebar-wrapper .advance-options .common-space p {
  margin: 0;
  color: var(--color-paragraph);
  font-size: 12px;
  line-height: 1.3;
}
.left-sidebar-wrapper .advance-options .common-space .header-top .btn {
  padding: 6px 12px;
}
.left-sidebar-wrapper .advance-options .common-space .header-top .btn:hover i {
  color: var(--white);
}
.left-sidebar-wrapper .advance-options .chats-user {
  border-bottom: unset;
  height: 708px;
  overflow-y: auto;
  margin: 0;
}
@media (max-width: 767px) {
  .left-sidebar-wrapper .advance-options .chats-user {
    height: 100%;
  }
}
.left-sidebar-wrapper .advance-options .chats-user li {
  gap: 10px;
  width: 100%;
  border-bottom: 1px solid var(--chart-dashed-border);
  cursor: pointer;
  padding: 11px;
}
.left-sidebar-wrapper .advance-options .chats-user li:hover {
  background-color: var(--light-slate);
}
@media (max-width: 1505px) {
  .left-sidebar-wrapper .advance-options .chats-user li {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 1px;
  }
}
.left-sidebar-wrapper .advance-options .chats-user li:last-child {
  border-bottom: unset;
}
.left-sidebar-wrapper .advance-options .chats-user li .chat-time {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.left-sidebar-wrapper .advance-options .chats-user li .chat-time span {
  display: block;
  color: #a0aec0;
  font-weight: 400;
  font-size: 14px;
}
.left-sidebar-wrapper .advance-options .chats-user li .chat-time > div {
  text-align: left;
}
[dir=rtl] .left-sidebar-wrapper .advance-options .chats-user li .chat-time > div {
  text-align: right;
}
.left-sidebar-wrapper .advance-options .chats-user li .last_msg_time {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media (max-width: 1498px) {
  .left-sidebar-wrapper .advance-options .chats-user li > div {
    width: 100%;
    text-align: end;
  }
  [dir=rtl] .left-sidebar-wrapper .advance-options .chats-user li > div {
    text-align: start;
  }
}
.left-sidebar-wrapper .advance-options .chats-user li.active {
  background: #12161a;
  border-radius: 10px;
}

.active-profile {
  position: relative;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.active-profile img {
  width: 42px;
  height: 42px;
}
@media (max-width: 1650px) {
  .active-profile img {
    width: 33px;
    height: 33px;
  }
}
.active-profile .status {
  position: absolute;
  height: 14px;
  width: 14px;
  border-radius: 100%;
  bottom: 5%;
  right: -2px;
  border: 3px solid var(--white);
}
[dir=rtl] .active-profile .status {
  left: -2px;
  right: unset;
}
@media (max-width: 1600px) {
  .active-profile .status {
    width: 11px;
    height: 11px;
    border: 2px solid var(--white);
  }
}

.contact-edit i {
  color: var(--chart-text-color);
  cursor: pointer;
}
.contact-edit i::after {
  content: unset;
}
.contact-edit svg {
  cursor: pointer;
  width: 18px;
  height: 18px;
}
@media (max-width: 360px) {
  .contact-edit svg {
    width: 14px;
    height: 14px;
  }
}
.contact-edit .dropdown-menu .dropdown-item:hover {
  background-color: var(--light-background);
  opacity: 1;
  text-decoration: unset;
}
.contact-edit.chat-alert {
  width: 40px;
  height: 40px;
  background: var(--light-slate);
  display: fke;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 5px;
}
@media (max-width: 360px) {
  .contact-edit.chat-alert {
    width: 32px;
    height: 32px;
  }
}
@media (max-width: 340px) {
  .contact-edit.chat-alert {
    display: none;
  }
}

.search-contacts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}
.search-contacts .form-control {
  padding-inline: 35px;
}
.search-contacts .form-control:focus {
  -webkit-box-shadow: unset;
          box-shadow: unset;
  border-color: var(--chart-dashed-border);
}
.search-contacts svg {
  stroke: var(--chart-text-color);
  width: 18px;
  height: 18px;
  left: 10px;
  top: 10px;
  position: absolute;
}
[dir=rtl] .search-contacts svg {
  left: unset;
  right: 10px;
}
.search-contacts .mic-search {
  right: 10px;
  top: 8px;
  position: absolute;
  left: unset;
}
[dir=rtl] .search-contacts .mic-search {
  right: unset;
  left: 10px;
}

.contact-wrapper {
  padding-top: 14px;
  border-bottom: unset;
  height: 526px;
  overflow-y: auto;
}
.contact-wrapper > p {
  line-height: 0;
  margin: 0;
  padding: 12px 0;
  font-size: 18px;
  font-weight: 500;
  color: var(--body-font-color);
}
.contact-wrapper ul li {
  width: 100%;
  cursor: pointer;
}
.contact-wrapper ul li .chat-time {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.contact-wrapper ul li .chat-time img {
  width: 42px;
  height: 42px;
}
@media (max-width: 1650px) {
  .contact-wrapper ul li .chat-time img {
    width: 33px;
    height: 33px;
  }
}
.contact-wrapper ul li .chat-time > div span {
  color: var(--body-font-color);
}
.contact-wrapper ul li svg {
  width: 18px;
  height: 18px;
}
.contact-wrapper ul:last-child .common-space {
  padding-bottom: unset;
}

.right-sidebar-chat {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  z-index: 0;
  border: 2px solid #12161a;
  border-left: unset;
  background: #12161a;
}
[dir=rtl] .right-sidebar-chat {
  border-right: unset;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
@media (max-width: 767px) {
  .right-sidebar-chat {
    border-radius: 10px;
  }
}

.right-sidebar-title {
  padding: 13px 25px;
  min-height: 68px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  color: var(--color-paragraph);
  background: #171c23;
}
.right-sidebar-title .common-space {
  width: 100%;
}
.right-sidebar-title .common-space .chat-time {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.right-sidebar-title .common-space .chat-time .active-profile img {
  width: 42px;
  height: 42px;
}
@media (max-width: 360px) {
  .right-sidebar-title .common-space .chat-time .active-profile img {
    width: 36px;
    height: 36px;
  }
}
.right-sidebar-title .common-space .chat-time div p {
  margin: 0;
  color: var(--chart-text-color);
}
.right-sidebar-title .common-space .chat-time ul li img {
  width: 42px;
  height: 42px;
}
.right-sidebar-title .common-space .chat-time.group-chat ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.right-sidebar-title .common-space .chat-time.group-chat ul li img {
  border: 3px solid transparent;
}
.right-sidebar-title .common-space .chat-time.group-chat ul li + li {
  margin-left: -12px;
}
[dir=rtl] .right-sidebar-title .common-space .chat-time.group-chat ul li + li {
  margin-left: unset;
  margin-right: -12px;
}
.right-sidebar-title .common-space .chat-time.group-chat ul li + li img {
  border: 3px solid var(--white);
}
.right-sidebar-title .common-space .chat-time.group-chat ul li img {
  width: 38px;
  height: 38px;
}
.right-sidebar-title .common-space .chat-time.group-chat ul li .profile-count {
  width: 38px;
  height: 38px;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .right-sidebar-title .common-space .chat-time.group-chat ul li:nth-child(2), .right-sidebar-title .common-space .chat-time.group-chat ul li:nth-child(3), .right-sidebar-title .common-space .chat-time.group-chat ul li:nth-child(5), .right-sidebar-title .common-space .chat-time.group-chat ul li:nth-child(6) {
    display: none;
  }
}
@media (min-width: 341px) and (max-width: 410px) {
  .right-sidebar-title .common-space .chat-time.group-chat ul li:nth-child(2), .right-sidebar-title .common-space .chat-time.group-chat ul li:nth-child(3), .right-sidebar-title .common-space .chat-time.group-chat ul li:nth-child(5), .right-sidebar-title .common-space .chat-time.group-chat ul li:nth-child(6) {
    display: none;
  }
}
@media (max-width: 1045px) {
  .right-sidebar-title .common-space .chat-time.group-chat > div span,
  .right-sidebar-title .common-space .chat-time.group-chat > div p {
    display: none;
  }
}

.msger-chat {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  overflow-y: auto;
  padding: 10px;
  background: -webkit-gradient(linear, left bottom, left top, from(#12161a), to(#12161a)), -webkit-gradient(linear, left bottom, left top, from(#12161a), to(#12161a));
  background: linear-gradient(0deg, #12161a, #12161a), linear-gradient(0deg, #12161a, #12161a);
  height: 640px;
}
.msger-chat::-webkit-scrollbar {
  width: 6px;
}
.msger-chat::-webkit-scrollbar-track {
  background: #141618;
}
.msger-chat::-webkit-scrollbar-thumb {
  background: #272b30;
}

.msg {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin-bottom: 10px;
}
.msg:last-of-type {
  margin: 0;
}

.msg-img {
  width: 50px;
  height: 50px;
  margin-right: 10px;
  background: #ddd;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-radius: 50%;
}
[dir=rtl] .msg-img {
  margin-left: 10px;
  margin-right: unset;
}

.msg-bubble {
  max-width: 450px;
  padding: 15px;
  border-radius: 15px;
}

.msg-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 10px;
}

.msg-info-name {
  margin-right: 10px;
  font-weight: bold;
}
[dir=rtl] .msg-info-name {
  margin-left: 10px;
  margin-right: unset;
}

.msg-info-time {
  font-size: 0.85em;
}

.left-msg .msg-img {
  background-image: url(../images/blog/4.jpg);
  width: 33px;
  height: 33px;
}
@media (max-width: 1200px) {
  .left-msg .msg-img {
    min-width: 16px;
    min-height: 16px;
  }
}
.left-msg .msg-bubble {
  position: relative;
  border-radius: 15px;
  background: #1f252c;
  color: var(--color-paragraph);
  width: calc(100% - 33px);
}
[dir=rtl] .left-msg .msg-bubble {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: unset;
}

.right-msg {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.right-msg .msg-bubble {
  color: var(--color-paragraph);
  background: #0c0f12;
  width: calc(100% - 33px);
}
[dir=rtl] .right-msg .msg-bubble {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: unset;
}
.right-msg .msg-img {
  margin: 0 0 0 10px;
  background-image: url(../images/blog/comment.jpg);
  width: 33px;
  height: 33px;
}
@media (max-width: 1200px) {
  .right-msg .msg-img {
    min-width: 16px;
    min-height: 16px;
  }
}

.msger-inputarea {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 10px;
  border-top: 1px solid #33373d;
  background: #12161c;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: var(--color-paragraph);
}
.msger-inputarea .dropdown-toggle::after {
  content: unset;
}
.msger-inputarea .dropdown-toggle .dropdown-menu {
  inset: unset !important;
}
.msger-inputarea .dropdown-form {
  position: relative;
}
.msger-inputarea .dropdown-form i {
  font-size: 16px;
  font-weight: 900;
  color: var(--theme-deafult);
  cursor: pointer;
  padding: 0;
}
.msger-inputarea .dropdown-form .chat-icon {
  position: absolute;
  left: 0 !important;
  bottom: 104px !important;
  background: transparent;
  -webkit-box-shadow: unset;
          box-shadow: unset;
}
[dir=rtl] .msger-inputarea .dropdown-form .chat-icon {
  left: unset !important;
  right: 3px !important;
}
.msger-inputarea .dropdown-form .chat-icon div {
  width: 47px;
  height: 47px;
  border-radius: 50%;
  background-color: var(--white);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0;
  opacity: 1;
}
.msger-inputarea .dropdown-form .chat-icon div svg {
  width: 42px;
  height: 42px;
  cursor: pointer;
}
.msger-inputarea .dropdown-form .chat-icon div:nth-child(1) svg {
  fill: var(--chart-text-color);
  stroke: none;
}
.msger-inputarea .dropdown-form .chat-icon div:nth-child(2) svg {
  stroke: var(--chart-text-color);
  fill: none;
}
.msger-inputarea .dropdown-form .chat-icon div:hover {
  background-color: var(--theme-deafult);
  opacity: 1;
}
.msger-inputarea .dropdown-form .chat-icon div:hover:nth-child(1) svg {
  fill: var(--white);
}
.msger-inputarea .dropdown-form .chat-icon div:hover:nth-child(2) svg {
  stroke: var(--white);
}
.msger-inputarea .msger-send-btn i {
  color: var(--white);
}
.msger-inputarea * {
  padding: 10px;
  border: none;
  border-radius: 3px;
  font-size: 1em;
}

.msger-input {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  background: transparent;
  color: var(--color-paragraph);
}
.msger-input:focus, .msger-input:focus-visible {
  outline: unset;
}

.fg-emoji-container {
  left: calc(10px + 1395 * (100vw - 320px) / 1600) !important;
}
[dir=rtl] .fg-emoji-container {
  right: calc(10px + 1395 * (100vw - 320px) / 1600) !important;
  left: unset !important;
}
@media (min-width: 860px) and (max-width: 945px) {
  .fg-emoji-container {
    left: 417px !important;
  }
  [dir=rtl] .fg-emoji-container {
    left: unset;
    right: 417px;
  }
}
@media (min-width: 686px) and (max-width: 860px) {
  .fg-emoji-container {
    left: 360px !important;
  }
  [dir=rtl] .fg-emoji-container {
    left: unset;
    right: 360px;
  }
}
@media (min-width: 588px) and (max-width: 770px) {
  .fg-emoji-container {
    left: 200px !important;
  }
  [dir=rtl] .fg-emoji-container {
    left: unset;
    right: 200px;
  }
}
@media (min-width: 546px) and (max-width: 588px) {
  .fg-emoji-container {
    left: 144px !important;
  }
  [dir=rtl] .fg-emoji-container {
    left: unset;
    right: 144px;
  }
}
@media (min-width: 500px) and (max-width: 546px) {
  .fg-emoji-container {
    left: 88px !important;
  }
  [dir=rtl] .fg-emoji-container {
    left: unset;
    right: 88px;
  }
}
@media (max-width: 500px) {
  .fg-emoji-container {
    left: 22px !important;
    width: 262px !important;
  }
  [dir=rtl] .fg-emoji-container {
    left: unset;
    right: 22px;
  }
}
.fg-emoji-container .fg-emoji-nav {
  background-color: var(--chart-text-color);
}
.fg-emoji-container #fg-emoji-picker-move {
  display: none;
}

.open-emoji {
  padding: 0;
}
.open-emoji button {
  z-index: 0;
  position: relative;
  padding: 0 14px;
  background: transparent;
}
.open-emoji button::before {
  content: "\f118";
  font-family: "FontAwesome";
  z-index: 1;
  position: relative;
  font-size: 20px;
  color: var(--text-gray);
}

.second-btn {
  z-index: 0;
  position: relative;
  padding: 0 14px;
  background: transparent;
}
.second-btn::before {
  content: "\f118";
  font-family: "FontAwesome";
  z-index: 1;
  position: relative;
  font-size: 20px;
  color: var(--text-gray);
}

.msger-send-btn {
  margin-left: 10px;
  background: var(--color-primary);
  border-radius: 100px;
  width: 40px;
  height: 39px;
  font-weight: bold;
  cursor: pointer;
  -webkit-transition: all 0.23s;
  transition: all 0.23s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
[dir=rtl] .msger-send-btn {
  margin-left: unset;
  margin-right: 10px;
}
.msger-send-btn svg {
  width: 1px;
  height: 12px;
}

.custom-name {
  width: 42px;
  height: 42px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 50px;
}
@media (max-width: 1650px) {
  .custom-name {
    width: 33px;
    height: 33px;
  }
}

.common-space {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.active_chat_user {
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  padding-right: 5px;
}

@media (max-width: 992px) {
  .chat_details_page .msger-chat {
    height: calc(100vh - 250px);
  }
}

@media (max-width: 992px) {
  .chat_list_page .chats-user {
    height: calc(100vh - 180px) !important;
  }
}
@media (max-width: 992px) {
  .chat_list_page .msger-chat {
    height: calc(100vh - 250px);
  }
}
@media (min-width: 1200px) {
  .chat_list_page .scroll_area {
    height: calc(100vh - 130px) !important;
  }
}

#activeUserStatus {
  font-size: 12px;
  margin: 0;
}

.typing {
  font-size: 12px;
  color: #888;
  margin: 5px 0 0 10px;
}

.avid_pagination .page-item.disabled {
  background: transparent !important;
}
.avid_pagination .page-item .page-link {
  color: var(--text-grey);
  background-color: rgb(59, 64, 71);
  border: 1px solid rgba(45, 49, 57, 0.6784313725);
}
.avid_pagination .page-item.active .page-link {
  background-color: #ff0d60 !important;
  color: #fff;
  border-color: #ff0d60 !important;
}

.no_track {
  border: 1px solid rgba(255, 255, 255, 0.0980392157);
  padding: 40px 30px;
  text-align: center;
  border-radius: 10px;
  margin-top: 20px;
}

.track_info .now_play_head img {
  border-radius: 10px;
}

.lyric_area {
  max-height: 380px;
  overflow-y: scroll;
}
@media (max-width: 768px) {
  .lyric_area {
    max-height: 300px;
  }
}

.custom_thumb {
  /* WebKit Browsers */
}
.custom_thumb::-webkit-scrollbar {
  width: 6px; /* thin scrollbar */
}
.custom_thumb::-webkit-scrollbar-track {
  background: transparent; /* no background */
}
.custom_thumb::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 10px;
}
.custom_thumb::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.45);
}
.custom_thumb {
  /* Firefox */
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 0, 0, 0.3) transparent;
}

.my_card_head {
  margin-bottom: 30px;
  border-bottom: 1px solid rgba(44, 49, 58, 0.4588235294);
  padding-bottom: 20px;
}

.generating_loader {
  position: relative;
  width: 120px;
  height: 10px;
  background: #383838;
  border-radius: 20px;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 10px;
}

.generating_loader .glow_bar {
  position: absolute;
  width: 120px;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 0, 0, 0)), color-stop(50%, rgba(255, 34, 86, 0.5137254902)), to(rgba(255, 0, 0, 0)));
  background: linear-gradient(90deg, rgba(255, 0, 0, 0) 0%, rgba(255, 34, 86, 0.5137254902) 50%, rgba(255, 0, 0, 0) 100%);
  border-radius: 20px;
  -webkit-animation: glowMove 1.2s linear infinite;
          animation: glowMove 1.2s linear infinite;
}

@-webkit-keyframes glowMove {
  0% {
    left: -40px;
  }
  100% {
    left: 120px;
  }
}

@keyframes glowMove {
  0% {
    left: -40px;
  }
  100% {
    left: 120px;
  }
}
.gen_text {
  font-size: 12px;
  margin-left: 130px;
  color: #d9534f;
  font-weight: 600;
  white-space: nowrap;
}

.play_area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
}

.sd-with-50 {
  width: 50px !important;
}

.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  margin-left: 1px;
}
.status-dot.gray {
  background-color: #9ca3af;
}
.status-dot.green {
  background-color: #22c55e;
}

@-webkit-keyframes blinkBorder {
  0% {
    border-color: transparent;
  }
  50% {
    border-color: #ff0d60;
  }
  100% {
    border-color: transparent;
  }
}

@keyframes blinkBorder {
  0% {
    border-color: transparent;
  }
  50% {
    border-color: #ff0d60;
  }
  100% {
    border-color: transparent;
  }
}
#blink_card.blinking {
  border: 1px solid #ff0d60;
  -webkit-animation: blinkBorder 0.6s linear infinite;
          animation: blinkBorder 0.6s linear infinite;
}

.list_item.active .card {
  border-color: rgba(255, 34, 86, 0.4392156863) !important;
}

.boost_song_area_wrapper {
  background: #1b1d23;
  border-radius: 8px;
  overflow: hidden;
}
.boost_song_area_wrapper .head_area {
  padding: 15px;
  border-bottom: 1px solid var(--border-color);
}
@media (min-width: 992px) {
  .boost_song_area_wrapper .head_area {
    padding: 24px;
  }
}
.boost_song_area_wrapper .head_area img {
  max-width: 80px;
  width: 100%;
  border-radius: 8px;
}
.boost_song_area_wrapper .head_area h4 {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .boost_song_area_wrapper .head_area h4 {
    font-size: 18px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
}
.boost_song_area_wrapper .inner_content {
  padding: 15px;
}
@media (min-width: 992px) {
  .boost_song_area_wrapper .inner_content {
    padding: 24px;
  }
}
.boost_song_area_wrapper .inner_content .price_sub_title {
  max-width: 600px;
  width: 100%;
  text-align: center;
  margin: 20px auto 40px auto;
}
.boost_song_area_wrapper .inner_content .duration_area {
  background: rgba(43, 48, 59, 0.5019607843);
  padding: 15px;
  border-radius: 7px;
}
.boost_song_area_wrapper .inner_content .duration_area p {
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .boost_song_area_wrapper .inner_content .duration_area {
    padding: 30px;
  }
}
.boost_song_area_wrapper .inner_content .time_control h2 {
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
  margin: 0 !important;
}
@media (min-width: 992px) {
  .boost_song_area_wrapper .inner_content .time_control h2 {
    font-size: 60px;
  }
}
@media (max-width: 768px) {
  .boost_song_area_wrapper .inner_content .mobile-hide {
    display: none;
  }
}
.boost_song_area_wrapper .inner_content .days_data {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-bottom: 1px solid rgba(65, 72, 87, 0.5019607843);
  margin-bottom: 20px;
  padding-bottom: 5px;
}
@media (min-width: 992px) {
  .boost_song_area_wrapper .inner_content .days_data {
    margin-bottom: 30px;
    padding-bottom: 20px;
  }
}
.boost_song_area_wrapper .inner_content .days_data .duration_controll a {
  color: var(--text-grey, #fff);
  font-size: 18px;
  width: 35px;
  height: 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 50%;
  border: 1px solid rgb(78, 78, 79);
  margin: 0 10px;
  padding: 10px;
}
.boost_song_area_wrapper .inner_content .days_data .duration_controll a.disabled {
  opacity: 0.4;
  cursor: not-allowed;
  background: transparent !important;
}
@media (min-width: 992px) {
  .boost_song_area_wrapper .inner_content .days_data .duration_controll a {
    width: 42px;
    height: 42px;
  }
}
.boost_song_area_wrapper .inner_content .price_data ul {
  margin: 0;
  padding: 0;
}
.boost_song_area_wrapper .inner_content .price_data ul li {
  list-style: none;
  margin-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 14px;
}
@media (min-width: 992px) {
  .boost_song_area_wrapper .inner_content .price_data ul li {
    font-size: 16px;
  }
}
.boost_song_area_wrapper .inner_content .price_data ul li .active {
  color: var(--color-primary);
  font-weight: 900;
  font-size: 18px;
}
@media (min-width: 992px) {
  .boost_song_area_wrapper .inner_content .price_data ul li .active {
    font-size: 24px;
  }
}
.boost_song_area_wrapper .inner_content .price_data ul li small {
  font-size: 14px;
}
@media (min-width: 992px) {
  .boost_song_area_wrapper .inner_content .price_data ul li small {
    font-size: 16px;
  }
}
.boost_song_area_wrapper .inner_content .payment_btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (min-width: 992px) {
  .boost_song_area_wrapper .inner_content .payment_btn {
    gap: 15px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.boost_song_area_wrapper .submitBoost {
  margin-top: 0 !important;
}

.boosted_flag {
  position: absolute;
  top: 2%;
  right: 2%;
  background: var(--color-primary);
  padding: 3px 10px;
  border-radius: 50px;
  color: #fff;
  font-weight: 700;
  font-size: 12px;
}

/*--------------------------------------
 Gig Checkout
-------------------------------------*/
.gig_checkout .boost_song_area_wrapper .head_area .title {
  font-size: 18px;
  margin: 0;
  font-weight: 600;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (min-width: 992px) {
  .gig_checkout .boost_song_area_wrapper .head_area .title {
    font-size: 20px;
  }
}
@media (min-width: 992px) {
  .gig_checkout .boost_song_area_wrapper .head_area img {
    max-width: 100px;
  }
}

/* ======================
   Variables
====================== */
/* ======================
   Mixins
====================== */
/* ======================
   Pricing
====================== */
.pricing-box {
  margin-bottom: 30px;
}

.price-card {
  background: #171C23;
  border: 1px solid #2c313a;
  border-radius: 14px;
  padding: 20px;
  text-align: center;
  cursor: pointer;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.price-card .duration {
  font-size: 14px;
  color: rgb(190.664556962, 200.1455696203, 212.335443038);
  margin-bottom: 6px;
  display: block;
}
.price-card .price {
  font-weight: 700;
  margin: 0;
}
.price-card:hover {
  border-color: rgb(77, 85.75, 101.5);
}
.price-card.active {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 59, 59, 0.15)), to(rgb(26, 31, 43)));
  background: linear-gradient(180deg, rgba(255, 59, 59, 0.15), rgb(26, 31, 43));
  border-color: var(--color-primary);
  -webkit-box-shadow: 0 0 0 1px rgba(var(--color-primary), 0.4);
          box-shadow: 0 0 0 1px rgba(var(--color-primary), 0.4);
}

/* ======================
   Stat Cards
====================== */
.stat-card {
  background: #171C23;
  border: 1px solid #2c313a;
  border-radius: 7px;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  color: #fff;
  padding: 22px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.stat-info p {
  font-size: 14px;
  color: #A0AEC0;
  margin-bottom: 6px;
}
.stat-info h3 {
  margin: 0;
  font-weight: 700;
}

.stat-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 18px;
}

/* Icon colors */
.bg-blue {
  background: rgba(0, 174, 255, 0.15);
  color: #00aeff;
}

.bg-green {
  background: rgba(0, 200, 83, 0.15);
  color: #00c853;
}

.bg-yellow {
  background: rgba(255, 193, 7, 0.15);
  color: #ffc107;
}

.bg-red {
  background: rgba(255, 64, 129, 0.15);
  color: #ff4081;
}

/* ======================
   Filter Button
====================== */
.filter-btn {
  background: #171C23;
  color: #fff;
  border: none;
  padding: 6px 20px;
  border-radius: 50px;
  font-size: 14px;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.filter-btn.active {
  background: var(--color-primary);
}

/* ======================
   Info Card
====================== */
.ainfo-card {
  background: #171C23;
  border: 1px solid #2c313a;
  border-radius: 7px;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  color: #fff;
  overflow: hidden;
}

.ainfo-media {
  height: 190px;
  overflow: hidden;
  background: linear-gradient(135deg, #f0425f, #7e1fad);
  position: relative;
}
.ainfo-media img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.ainfo-media .play_ico {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-size: 64px;
}
.ainfo-media .play_ico a {
  color: rgba(255, 255, 255, 0.8);
}

.ainfo-body {
  padding: 16px;
}

.ainfo-title {
  font-size: 16px;
  font-weight: 600;
  margin: 0;
}

.ainfo-desc {
  font-size: 14px;
  color: #A0AEC0;
  margin: 10px 0;
}

.ainfo-meta {
  font-size: 13px;
  color: #A0AEC0;
}

.ainfo-link {
  display: inline-block;
  margin-top: 6px;
  font-size: 13px;
  color: var(--color-primary);
  text-decoration: none;
}

.ainfo-footer {
  padding: 14px 16px;
  border-top: 1px solid #2c313a;
}
.ainfo-footer .stats {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 13px;
  color: #A0AEC0;
  margin-bottom: 12px;
}
.ainfo-footer .actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
}

.info-card {
  background: -webkit-gradient(linear, left top, left bottom, from(#171C23), to(rgb(16.9327586207, 20.6137931034, 25.7672413793)));
  background: linear-gradient(180deg, #171C23, rgb(16.9327586207, 20.6137931034, 25.7672413793));
  border: 1px solid #2c313a;
  border-radius: 17px;
  padding: 20px;
  color: #fff;
  margin-bottom: 30px;
}

.card-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.card-title i {
  color: var(--color-primary);
}

.metric-row,
.detail-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  padding: 12px 14px;
  margin-bottom: 10px;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.metric-row span,
.detail-row span {
  color: #A0AEC0;
  font-size: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.metric-row strong,
.detail-row strong {
  font-weight: 600;
}
.metric-row:hover,
.detail-row:hover {
  background: rgba(255, 255, 255, 0.06);
}

.metric-row.highlight {
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 45, 122, 0.15)), to(rgb(23, 28, 35)));
  background: linear-gradient(90deg, rgba(255, 45, 122, 0.15), rgb(23, 28, 35));
  border: 1px solid rgba(255, 45, 122, 0.35);
}
.metric-row.highlight strong {
  color: #ff2d7a;
}

.my_ad_audio {
  width: 100%;
  height: 42px;
  -webkit-filter: invert(1) hue-rotate(180deg) saturate(1.4);
          filter: invert(1) hue-rotate(180deg) saturate(1.4);
  -webkit-box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
          box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}
/*# sourceMappingURL=style.css.map */