body {
  position: relative;
}
body #smp-dropdown {
  background: #fff;
  position: absolute;
  z-index: 999;
  width: 150px;
}
body #smp-dropdown > .smp-item {
  margin-bottom: 5px;
  border: 1px solid #0056d7;
  border-radius: 3px;
  background: #f7f8fa;
  padding: 5px 10px;
  cursor: pointer;
}

.smp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  color: #fff;
  font-size: 0.875rem;
  border-radius: 5px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  line-height: 1;
  background: #0056d7;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.smp-btn i {
  margin-right: 5px;
}
.smp-btn .smp-spinner {
  margin-right: 10px;
}
.smp-btn:hover {
  background: #0042a4;
}
.smp-btn.btn-primary {
  background: #007bff;
  color: #fff;
}
.smp-btn.btn-primary:hover {
  background: #0069d9;
  color: #fff;
}
.smp-btn.btn-secondary {
  background: #fff;
  color: #0069d9;
  border: 1px solid #0069d9;
}
.smp-btn.btn-secondary:hover {
  background: #0069d9;
  color: #fff;
}
.smp-btn.btn-success {
  background: #00ff00;
  color: #fff;
}
.smp-btn.btn-success:hover {
  background: #00ff00;
  color: #fff;
}
.smp-btn.btn-warning {
  background-color: #f9d6b7;
  color: #a65300;
}
.smp-btn.btn-warning:hover {
  background-color: #ffcc99;
}
.smp-btn.btn-danger {
  background-color: #f8d7da;
  color: #d8000c;
}
.smp-btn.btn-danger:hover {
  background-color: #f5c6cb;
}
.smp-btn.btn-info {
  background-color: #b4d8e7;
  color: #1f4e6e;
}
.smp-btn.btn-info:hover {
  background-color: #00a5e6;
}
@media (max-width: 767px) {
  .smp-btn {
    font-size: 0.75rem;
    padding: 8px 12px;
  }
}

.smp-hidden {
  display: none !important;
}

.smp-swal {
  z-index: 99999 !important;
}
.smp-swal.embed-code-swal .embed-code-title {
  margin: 0;
}
.smp-swal.embed-code-swal textarea {
  margin-top: 15px;
  width: 99%;
  height: 100px;
  resize: none;
  padding: 10px;
  border: 1px solid #e5e5e5;
  border-radius: 5px;
  font-size: 14px;
  font-family: monospace;
  color: #333;
  word-break: break-all;
}
.smp-swal .swal2-confirm {
  background-color: #0056d7 !important;
}
.smp-swal .swal2-close:focus {
  background: transparent;
  color: inherit;
  box-shadow: none;
}
.smp-swal .swal2-deny,
.smp-swal .swal2-cancel {
  background-color: #f08080 !important;
}
.smp-swal .swal2-title {
  font-size: 1.2rem;
  color: #333;
  font-weight: 500;
}
.smp-swal .swal2-html-container {
  font-size: 1rem;
  color: #555;
}
.smp-swal.smp-review-remind-swal .swal2-deny {
  background-color: #999 !important;
}
.smp-swal.save-settings-toast .swal2-popup {
  display: flex !important;
  padding: 10px;
}
.smp-swal.save-settings-toast .swal2-popup .swal2-html-container {
  margin-left: 5px;
}

.smp-tooltip {
  z-index: 9999999 !important;
}
.smp-tooltip.react-tooltip__show {
  opacity: 1 !important;
  visibility: visible !important;
}
.smp-tooltip.color-picker-tooltip {
  padding: 10px 10px 15px 10px;
}
.smp-tooltip.floating-tooltip {
  font-size: 13px;
}

.loading-spinner {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
}
.loading-spinner svg {
  width: 2.5rem;
  height: 2.5rem;
}

.rp-spinner {
  border: 2px solid #f3f3f3;
  /* Light grey */
  border-top: 2px solid #3498db;
  /* Blue */
  border-radius: 50%;
  width: 20px;
  height: 20px;
  animation: rp-spin 2s linear infinite;
  display: flex;
}
.rp-spinner.spinner-large {
  border-width: 4px;
  width: 50px;
  height: 50px;
  animation: rp-spin 1s linear infinite;
  margin: 30px auto;
}

@keyframes rp-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.smp-app .components-form-toggle,
.smp-settings .components-form-toggle {
  width: -moz-max-content;
  width: max-content;
  background: #fff;
  padding: 3px;
  border-radius: 15px;
  height: auto;
}
.smp-app .components-form-toggle__track,
.smp-settings .components-form-toggle__track {
  width: 44px;
  height: 22px;
  border-radius: 22px;
  border-color: #0056d7;
}
.smp-app .components-form-toggle__thumb,
.smp-settings .components-form-toggle__thumb {
  background: #0056d7;
  border: none;
  width: 15px;
  height: 15px;
  border-radius: 25px;
  top: 6px;
  left: 6px;
}
.smp-app .components-form-toggle.is-checked .components-form-toggle__thumb,
.smp-settings .components-form-toggle.is-checked .components-form-toggle__thumb {
  background: #fff;
  transform: translateX(22px);
}
.smp-app .components-form-toggle.is-checked .components-form-toggle__track,
.smp-settings .components-form-toggle.is-checked .components-form-toggle__track {
  background: #0056d7;
}
.smp-app input[type=text],
.smp-app textarea,
.smp-app input[type=number],
.smp-app input[type=email],
.smp-app input[type=date],
.smp-app input[type=url],
.smp-settings input[type=text],
.smp-settings textarea,
.smp-settings input[type=number],
.smp-settings input[type=email],
.smp-settings input[type=date],
.smp-settings input[type=url] {
  border: 1px solid #e5e5e5;
  border-radius: 7px;
  padding: 5px 10px;
  max-width: 100%;
  font-size: 0.875rem;
  color: #5c637e;
  width: 350px;
}
.smp-app input[type=text]:not(textarea),
.smp-app textarea:not(textarea),
.smp-app input[type=number]:not(textarea),
.smp-app input[type=email]:not(textarea),
.smp-app input[type=date]:not(textarea),
.smp-app input[type=url]:not(textarea),
.smp-settings input[type=text]:not(textarea),
.smp-settings textarea:not(textarea),
.smp-settings input[type=number]:not(textarea),
.smp-settings input[type=email]:not(textarea),
.smp-settings input[type=date]:not(textarea),
.smp-settings input[type=url]:not(textarea) {
  height: 40px;
}
.smp-app .components-range-control,
.smp-settings .components-range-control {
  max-width: 350px;
}
.smp-app .components-range-control .components-base-control__field,
.smp-settings .components-range-control .components-base-control__field {
  margin-bottom: 0;
}
.smp-app .components-range-control .components-input-control__input,
.smp-app .components-range-control .components-input-control__backdrop,
.smp-settings .components-range-control .components-input-control__input,
.smp-settings .components-range-control .components-input-control__backdrop {
  border: 1px solid #e5e5e5 !important;
  border-radius: 7px !important;
  padding: 5px 10px;
  width: 100%;
  font-size: 0.875rem !important;
  color: #5c637e !important;
}
.smp-app .components-range-control__track,
.smp-settings .components-range-control__track {
  background: #0b6dff;
}
.smp-app .components-range-control__track + span span,
.smp-settings .components-range-control__track + span span {
  background: #0042a4;
}
.smp-app .components-range-control__reset,
.smp-settings .components-range-control__reset {
  background: #fff;
  border-radius: 7px;
  padding: 5px 10px;
  color: #ff8000;
  box-shadow: none;
  border: 1px solid rgba(255, 128, 0, 0.25);
  transition: all 0.3s ease;
}
.smp-app .components-range-control__reset:hover,
.smp-settings .components-range-control__reset:hover {
  background: #e67300;
  color: #fff !important;
  box-shadow: none !important;
  border-color: #e67300 !important;
  outline: none !important;
}
.smp-app .components-button-group,
.smp-settings .components-button-group {
  background: #fff;
  padding: 7px 5px;
  width: -moz-max-content;
  width: max-content;
  border-radius: 10px;
  display: inline-flex;
  flex-wrap: wrap;
  max-width: 100%;
  gap: 5px;
}
.smp-app .components-button-group button,
.smp-settings .components-button-group button {
  color: #5c637e;
  box-shadow: inset 0 0 0 1px rgba(103, 94, 213, 0.25) !important;
  border-radius: 5px !important;
  height: 40px;
}
.smp-app .components-button-group button.is-primary,
.smp-settings .components-button-group button.is-primary {
  z-index: auto;
  background: #0056d7;
  color: #fff;
}
.smp-app .components-button-group button.is-primary svg,
.smp-app .components-button-group button.is-primary path,
.smp-settings .components-button-group button.is-primary svg,
.smp-settings .components-button-group button.is-primary path {
  fill: #fff;
}
.smp-app .components-button-group button.is-primary:hover,
.smp-settings .components-button-group button.is-primary:hover {
  background: #0042a4;
}
.smp-app .components-button-group button.disabled,
.smp-settings .components-button-group button.disabled {
  opacity: 0.5;
}
.smp-app .components-button-group button svg,
.smp-settings .components-button-group button svg {
  margin-right: 5px;
}
.smp-app .components-button-group.playlist-list-style,
.smp-settings .components-button-group.playlist-list-style {
  background: rgba(0, 86, 215, 0.1) !important;
  padding: 10px;
  width: -moz-max-content;
  width: max-content;
  border-radius: 10px;
  justify-content: space-between !important;
}
.smp-app .components-button-group.playlist-list-style button,
.smp-settings .components-button-group.playlist-list-style button {
  height: auto !important;
  position: relative;
  text-align: center;
  padding: 0;
  border: 3px solid transparent;
}
.smp-app .components-button-group.playlist-list-style button img,
.smp-settings .components-button-group.playlist-list-style button img {
  width: 100px;
  height: 130px;
  border-radius: 5px;
}
.smp-app .components-button-group.playlist-list-style button span,
.smp-settings .components-button-group.playlist-list-style button span {
  position: absolute;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  width: 100%;
  padding: 7px 0;
  font-size: 13px;
  line-height: 1;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}
.smp-app .components-button-group.disabled,
.smp-settings .components-button-group.disabled {
  opacity: 0.5;
}
.smp-app .smp_color-palette,
.smp-settings .smp_color-palette {
  width: 300px;
  max-width: 100%;
  position: relative;
}
.smp-app .smp_color-palette legend,
.smp-settings .smp_color-palette legend {
  display: none;
}
.smp-app .smp_color-palette .components-dropdown,
.smp-settings .smp_color-palette .components-dropdown {
  width: -moz-max-content;
  width: max-content;
}
.smp-app .smp_color-palette .components-dropdown .components-color-palette__custom-color-wrapper,
.smp-settings .smp_color-palette .components-dropdown .components-color-palette__custom-color-wrapper {
  width: 300px;
  max-width: 100%;
  height: 50px;
  overflow: hidden;
}
.smp-app .smp_color-palette .components-dropdown .components-color-palette__custom-color-wrapper button,
.smp-settings .smp_color-palette .components-dropdown .components-color-palette__custom-color-wrapper button {
  width: 100%;
  height: 100%;
  border-radius: 4px;
}
.smp-app .smp_color-palette .components-dropdown .components-color-palette__custom-color-wrapper button .components-truncate,
.smp-settings .smp_color-palette .components-dropdown .components-color-palette__custom-color-wrapper button .components-truncate {
  display: none;
}
.smp-app .smp_color-palette .components-dropdown .components-color-palette__custom-color-wrapper button .components-color-palette__custom-color-value,
.smp-settings .smp_color-palette .components-dropdown .components-color-palette__custom-color-wrapper button .components-color-palette__custom-color-value {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.smp-app .smp_color-palette .components-dropdown .components-color-palette__custom-color-wrapper .components-color-palette__custom-color-text-wrapper,
.smp-settings .smp_color-palette .components-dropdown .components-color-palette__custom-color-wrapper .components-color-palette__custom-color-text-wrapper {
  position: absolute;
  width: 100%;
  pointer-events: none;
  box-shadow: none;
}
.smp-app .smp_color-palette .components-circular-option-picker__custom-clear-wrapper,
.smp-settings .smp_color-palette .components-circular-option-picker__custom-clear-wrapper {
  position: absolute;
  margin: 0;
  right: -60px;
  top: 6px;
}
.smp-app .smp_color-palette .components-circular-option-picker__custom-clear-wrapper button,
.smp-settings .smp_color-palette .components-circular-option-picker__custom-clear-wrapper button {
  background: #fff;
  color: #ff8000;
  border: 1px solid rgba(255, 128, 0, 0.25);
  box-shadow: none !important;
  font-size: 0.75rem;
  height: 28px;
  width: 50px;
  border-radius: 5px;
  justify-content: center;
  transition: all 0.3s ease;
}
.smp-app .smp_color-palette .components-circular-option-picker__custom-clear-wrapper button:hover,
.smp-settings .smp_color-palette .components-circular-option-picker__custom-clear-wrapper button:hover {
  color: #fff;
  background: #e67300;
}
.smp-app .smp_color-palette .components-circular-option-picker__option:before, .smp-app .smp_color-palette .components-circular-option-picker__option:after,
.smp-settings .smp_color-palette .components-circular-option-picker__option:before,
.smp-settings .smp_color-palette .components-circular-option-picker__option:after {
  width: auto;
  height: auto;
}
.smp-app .smp_color-palette.disabled,
.smp-settings .smp_color-palette.disabled {
  opacity: 0.5;
}
.smp-app .components-custom-gradient-picker__ui-line > .components-flex-item,
.smp-settings .components-custom-gradient-picker__ui-line > .components-flex-item {
  flex: none;
}
.smp-app .components-custom-gradient-picker__ui-line .components-input-control__container,
.smp-app .components-custom-gradient-picker__ui-line .components-select-control__input,
.smp-app .components-custom-gradient-picker__ui-line .components-input-control__backdrop,
.smp-settings .components-custom-gradient-picker__ui-line .components-input-control__container,
.smp-settings .components-custom-gradient-picker__ui-line .components-select-control__input,
.smp-settings .components-custom-gradient-picker__ui-line .components-input-control__backdrop {
  width: 200px;
}
.smp-app .components-custom-gradient-picker__ui-line .components-input-control__container:has(.components-input-control__input),
.smp-settings .components-custom-gradient-picker__ui-line .components-input-control__container:has(.components-input-control__input) {
  width: 100px;
}
.smp-app .components-custom-gradient-picker__ui-line .components-input-control__container:has(.components-input-control__input) .components-select-control__input,
.smp-app .components-custom-gradient-picker__ui-line .components-input-control__container:has(.components-input-control__input) .components-input-control__backdrop,
.smp-settings .components-custom-gradient-picker__ui-line .components-input-control__container:has(.components-input-control__input) .components-select-control__input,
.smp-settings .components-custom-gradient-picker__ui-line .components-input-control__container:has(.components-input-control__input) .components-input-control__backdrop {
  width: 100px;
}
.smp-app .components-custom-gradient-picker__ui-line .components-custom-gradient-picker__type-picker,
.smp-settings .components-custom-gradient-picker__ui-line .components-custom-gradient-picker__type-picker {
  width: auto;
}
.smp-app .components-custom-gradient-picker__ui-line .components-input-control__input,
.smp-settings .components-custom-gradient-picker__ui-line .components-input-control__input {
  height: 45px !important;
  padding: 0 !important;
  padding-left: 15px !important;
  width: 100px;
}
.smp-app .components-custom-gradient-picker__ui-line .components-input-control__backdrop,
.smp-settings .components-custom-gradient-picker__ui-line .components-input-control__backdrop {
  border-radius: 7px !important;
  border-color: #e5e5e5 !important;
  height: 45px;
}
.smp-app .components-spacer,
.smp-settings .components-spacer {
  position: relative;
  max-width: 500px;
}
.smp-app .components-spacer .components-custom-gradient-picker__gradient-bar,
.smp-settings .components-spacer .components-custom-gradient-picker__gradient-bar {
  border-radius: 30px;
  z-index: 5;
}
.smp-app .components-spacer .components-circular-option-picker__custom-clear-wrapper,
.smp-settings .components-spacer .components-circular-option-picker__custom-clear-wrapper {
  position: absolute;
  margin: 0;
  right: 0;
  bottom: 0;
}
.smp-app .components-spacer .components-circular-option-picker__custom-clear-wrapper button,
.smp-settings .components-spacer .components-circular-option-picker__custom-clear-wrapper button {
  color: #fff;
  background: #ff8000;
  border: 1px solid rgba(103, 94, 213, 0.25);
  box-shadow: none;
  font-size: 0.875rem;
  height: 32px;
  width: 60px;
  text-align: center;
  border-radius: 5px;
  padding: 5px 12px;
}
.smp-app .components-spacer .components-circular-option-picker__custom-clear-wrapper button:hover,
.smp-settings .components-spacer .components-circular-option-picker__custom-clear-wrapper button:hover {
  color: #fff;
  background: #e67300;
  border: 1px solid rgba(103, 94, 213, 0.25);
}
.smp-app .components-spacer .components-custom-gradient-picker__type-picker,
.smp-app .components-spacer .components-angle-picker-control__input-field,
.smp-settings .components-spacer .components-custom-gradient-picker__type-picker,
.smp-settings .components-spacer .components-angle-picker-control__input-field {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.smp-app .components-spacer .components-custom-gradient-picker__type-picker .components-flex-item,
.smp-app .components-spacer .components-angle-picker-control__input-field .components-flex-item,
.smp-settings .components-spacer .components-custom-gradient-picker__type-picker .components-flex-item,
.smp-settings .components-spacer .components-angle-picker-control__input-field .components-flex-item {
  margin-right: 7px;
}
.smp-app .components-spacer .components-custom-gradient-picker__type-picker .components-input-control__container,
.smp-app .components-spacer .components-angle-picker-control__input-field .components-input-control__container,
.smp-settings .components-spacer .components-custom-gradient-picker__type-picker .components-input-control__container,
.smp-settings .components-spacer .components-angle-picker-control__input-field .components-input-control__container {
  border-radius: 7px;
}
.smp-app .components-spacer .components-custom-gradient-picker__type-picker .components-input-control__backdrop,
.smp-app .components-spacer .components-angle-picker-control__input-field .components-input-control__backdrop,
.smp-settings .components-spacer .components-custom-gradient-picker__type-picker .components-input-control__backdrop,
.smp-settings .components-spacer .components-angle-picker-control__input-field .components-input-control__backdrop {
  border-color: #e5e5e5;
}
.smp-app .components-spacer .components-custom-gradient-picker__type-picker,
.smp-settings .components-spacer .components-custom-gradient-picker__type-picker {
  justify-content: flex-start;
}
.smp-app .components-spacer .components-custom-gradient-picker__type-picker .components-input-control__container,
.smp-settings .components-spacer .components-custom-gradient-picker__type-picker .components-input-control__container {
  width: 120px;
  flex: none;
}
.smp-app .components-spacer .components-angle-picker-control__input-field,
.smp-settings .components-spacer .components-angle-picker-control__input-field {
  justify-content: flex-end;
  margin-right: 15px;
}
.smp-app .components-spacer .components-angle-picker-control__input-field .components-input-control__container,
.smp-settings .components-spacer .components-angle-picker-control__input-field .components-input-control__container {
  width: 80px;
  flex: none;
}
.smp-app .components-select-control,
.smp-settings .components-select-control {
  width: 350px;
}
.smp-app .components-select-control .components-select-control__input,
.smp-settings .components-select-control .components-select-control__input {
  height: 45px !important;
  padding: 0 !important;
  padding-left: 15px !important;
  margin-top: 0 !important;
}
.smp-app .components-select-control .components-input-control__backdrop,
.smp-settings .components-select-control .components-input-control__backdrop {
  border-radius: 7px !important;
  border-color: #e5e5e5 !important;
  height: 45px;
}
.smp-app .components-select-control .components-input-control__suffix,
.smp-settings .components-select-control .components-input-control__suffix {
  cursor: pointer;
  position: relative;
  right: 10px;
  pointer-events: none;
}
@media (max-width: 767px) {
  .smp-app .components-select-control,
.smp-settings .components-select-control {
    width: 100%;
  }
}
.smp-app .components-color-picker .components-select-control,
.smp-settings .components-color-picker .components-select-control {
  width: auto;
}
.smp-app .components-color-picker .components-select-control__input,
.smp-settings .components-color-picker .components-select-control__input {
  width: 100px !important;
  padding: 0 15px !important;
}
.smp-app .components-color-picker .components-select-control .components-input-control__container,
.smp-settings .components-color-picker .components-select-control .components-input-control__container {
  border: 1px solid #e5e5e5;
  border-radius: 5px;
}
.smp-app .components-color-picker .components-input-control__container,
.smp-settings .components-color-picker .components-input-control__container {
  width: 100%;
  padding-left: 10px;
}
.smp-app .components-color-picker .components-input-control__backdrop,
.smp-settings .components-color-picker .components-input-control__backdrop {
  border-color: #e5e5e5 !important;
  border-radius: 5px !important;
}
.smp-app .smp-select,
.smp-settings .smp-select {
  width: 400px;
}
.smp-app .smp-select__control.smp-select__control--is-focused,
.smp-settings .smp-select__control.smp-select__control--is-focused {
  border-color: #0056d7;
  box-shadow: none;
}
.smp-app .smp-select__input input,
.smp-settings .smp-select__input input {
  height: 35px;
}
.smp-app .smp-select__input input:focus,
.smp-settings .smp-select__input input:focus {
  border: none;
  box-shadow: none;
}
.smp-app .smp-select__menu,
.smp-settings .smp-select__menu {
  border-radius: 7px;
  border: 1px solid rgba(47, 180, 75, 0.3);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}
.smp-app .smp-select__menu .smp-select__option,
.smp-settings .smp-select__menu .smp-select__option {
  padding: 10px 15px;
  font-size: 0.8rem;
  cursor: pointer;
}
.smp-app .smp-select__menu .smp-select__option:hover,
.smp-settings .smp-select__menu .smp-select__option:hover {
  background: rgba(47, 180, 75, 0.1);
}
.smp-app .smp-select__menu .smp-select__option--is-focused,
.smp-settings .smp-select__menu .smp-select__option--is-focused {
  background: rgba(47, 180, 75, 0.1);
}
.smp-app .smp-select__multi-value,
.smp-settings .smp-select__multi-value {
  background: #0056d7;
  color: #fff;
}
.smp-app .smp-select__multi-value .smp-select__multi-value__label,
.smp-settings .smp-select__multi-value .smp-select__multi-value__label {
  color: #fff;
}
@media (max-width: 1199px) {
  .smp-app .smp-select,
.smp-settings .smp-select {
    width: 320px;
  }
}
@media (max-width: 767px) {
  .smp-app .smp-select,
.smp-settings .smp-select {
    width: 100%;
  }
}

.rp-notice {
  border-radius: 5px;
  border: 1px solid #f1f1f1;
  border-left-width: 5px;
  background: #fff;
  box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.1);
  padding: 10px;
  margin: 10px 0 0;
  display: flex;
}
.rp-notice .rp-notice-content {
  margin: 0;
  text-align: left;
  font-size: 0.9rem;
  line-height: 1.5;
  color: #757575;
  max-width: 100%;
}
.rp-notice.rp-notice-info {
  border-color: rgba(0, 181, 255, 0.5);
  background: rgba(0, 181, 255, 0.1);
  border-left-color: #00b5ff;
}
.rp-notice.rp-notice-warning {
  border-color: rgba(255, 200, 0, 0.5);
  background: rgba(255, 200, 0, 0.1);
  border-left-color: #ffc800;
}
@media (max-width: 767px) {
  .rp-notice .rp-notice-content {
    flex-wrap: wrap;
  }
}

/**---- Color Picker ----**/
.smp-color-picker-wrapper .color-holder-wrap {
  display: flex;
  align-items: center;
}
.smp-color-picker-wrapper .color-holder-wrap .color-holder {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 10px;
  border: 1px solid #ddd;
  cursor: pointer;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: repeating-linear-gradient(45deg, #e0e0e0 25%, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0) 75%, #e0e0e0 0, #e0e0e0) 0 0/24px 24px, repeating-linear-gradient(45deg, #e0e0e0 25%, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0) 75%, #e0e0e0 0, #e0e0e0) 12px 12px/24px 24px;
}
.smp-color-picker-wrapper .color-holder-wrap .color-input {
  width: 120px !important;
  height: 38px !important;
  padding: 5px 7px;
  border: 1px solid #ddd;
  border-radius: 5px;
  margin-right: 10px;
}
.smp-color-picker-wrapper .color-holder-wrap .dashicons-edit {
  color: #777;
  border: 1px solid #ddd;
  padding: 4px;
  height: 24px;
  width: 24px;
  font-size: 24px;
  box-sizing: content-box !important;
  cursor: pointer;
  background: #fff;
  border-radius: 3px;
  transition: all 0.2s ease-in-out;
}
.smp-color-picker-wrapper .color-holder-wrap .dashicons-edit-wrap {
  display: flex;
  align-items: center;
}
.smp-color-picker-wrapper .color-holder-wrap .dashicons-edit:hover {
  background: #f9f9f9;
}
.smp-color-picker-wrapper .color-holder-wrap .dashicons-image-rotate {
  color: #777;
  height: 20px;
  width: 20px;
  font-size: 20px;
  margin-left: 15px;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
.smp-color-picker-wrapper .color-holder-wrap .dashicons-image-rotate-wrap {
  display: flex;
  align-items: center;
}
.smp-color-picker-wrapper .color-holder-wrap .dashicons-image-rotate:hover {
  background: #f9f9f9;
}
.smp-color-picker-wrapper .components-color-picker .components-select-control {
  width: auto;
  margin-left: 0;
}
.smp-color-picker-wrapper .components-color-picker .components-select-control .components-input-control__container {
  width: 100%;
}
.smp-color-picker-wrapper .components-color-picker .components-select-control .components-input-control__container select {
  height: 35px !important;
}
.smp-color-picker-wrapper .components-color-picker .components-select-control .components-input-control__container .components-input-control__backdrop {
  border-color: #ddd;
  height: 35px;
}
.smp-color-picker-wrapper .components-color-picker .components-input-control__input {
  height: 35px !important;
  min-height: auto !important;
}
.smp-color-picker-wrapper .components-color-picker .components-h-stack {
  padding: 0;
  margin-bottom: 7px;
}
.smp-color-picker-wrapper .components-color-picker .components-h-stack + .components-flex {
  padding: 0;
}
.smp-color-picker-wrapper .components-color-picker .components-h-stack + .components-flex .components-input-control__container {
  width: 100%;
}
.smp-color-picker-wrapper .components-color-picker .components-h-stack + .components-flex .components-input-control__container .components-input-control__backdrop {
  border-color: #ddd;
  height: 40px;
}
.smp-color-picker-wrapper .components-color-picker .react-colorful__saturation {
  height: 130px;
}

.smp-pro-modal {
  box-sizing: border-box;
  width: 350px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  position: relative;
  text-align: center;
}
.smp-pro-modal * {
  box-sizing: border-box;
}
.smp-pro-modal-wrap {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999999;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
}
.smp-pro-modal-close {
  position: absolute;
  top: 0;
  right: 10px;
  cursor: pointer;
  font-size: 30px;
  color: #777;
  padding: 10px;
  line-height: normal;
  transition: all 0.3s ease;
}
.smp-pro-modal-close:hover {
  color: #333;
}
.smp-pro-modal img {
  width: 200px;
  position: absolute;
  top: -80px;
}
.smp-pro-modal h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #333;
  margin: 30px 0 2px;
}
.smp-pro-modal h2 {
  color: #0056d7;
  margin: 20px 0 20px 0;
  font-size: 2.5rem;
  font-weight: bold;
}
.smp-pro-modal p {
  font-size: 0.875rem;
  color: #666;
  margin-bottom: 15px;
  line-height: 1.2;
  margin-top: 7px;
}
.smp-pro-modal a {
  padding: 10px 20px;
}
.smp-pro-modal a:hover {
  color: #fff;
}
.smp-pro-modal .discount {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
  margin: 20px 0;
  line-height: normal;
}
.smp-pro-modal .discount-special {
  color: #0056d7;
  position: absolute;
  font-size: 22px;
  top: -25px;
  background: #fff;
  padding: 5px;
  text-transform: uppercase;
}
.smp-pro-modal .discount-text {
  border: 2px solid #0056d7;
  font-size: 28px;
  padding: 10px 15px;
  border-radius: 5px;
  font-weight: bold;
  color: #0056d7;
}
.smp-pro-modal .timer {
  display: flex;
  align-items: center;
  text-align: center;
}
.smp-pro-modal .timer > div {
  display: inline-block;
  margin: 0 14px;
  width: 47px;
  background-size: contain;
  line-height: 20px;
}
.smp-pro-modal .timer > div span:first-child {
  font-size: 28px;
  color: #333;
  height: 47px;
  margin: 0 0 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  border: 1px dashed #ddd;
  border-radius: 5px;
  font-weight: 500;
}
.smp-pro-modal .timer > div span:last-child {
  font-family: Arial, serif;
  font-size: 12px;
  text-transform: uppercase;
  color: #555;
}
.smp-pro-modal-actions {
  margin-top: 15px;
}
.smp-pro-modal-actions a:hover {
  transform: scale(1.05);
}

/*----- Modal -----*/
.smp-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99999999;
}
.smp-modal-overlay.player-types-modal .smp-modal-content {
  max-width: 1000px;
}

.smp-modal-content {
  background: white;
  border-radius: 8px;
  position: relative;
  z-index: 1000;
  width: 95%;
  max-height: 90vh;
  padding: 0;
  overflow: auto;
}

.close-btn {
  background: red;
  color: white;
  border: none;
  padding: 10px;
  margin-top: 20px;
  cursor: pointer;
  border-radius: 4px;
}

.smp-rss-loader {
  height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.smp-rss-loader .components-spinner {
  width: 50px;
  height: 50px;
}
.smp-rss-loader .components-spinner .css-5zbsse {
  stroke-width: 4px;
  stroke: #b0cbf3;
}
.smp-rss-loader .components-spinner .css-1r60s1s {
  stroke-width: 4px;
  stroke: #0056d7;
}
.smp-rss-loader h4 {
  margin-top: 25px;
  font-size: 1.5rem;
  font-weight: 500;
  color: #0056d7;
}

.smp-rss-empty {
  height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.smp-rss-empty h4 {
  margin-top: 25px;
  margin-bottom: 0;
  font-size: 1.2rem;
  font-weight: 500;
}
.smp-rss-empty p {
  font-size: 0.875rem;
}

div.smp {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  flex-flow: row;
  justify-content: flex-start;
  max-width: 100%;
  width: var(--smp-width);
  background: var(--smp-bg-color, #fff);
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  /**----------------- song title ------------------**/
  /**----------- Volume --------------**/
  /**-------------------- Button ------------------**/
  /*---------------- shortcode player ------------------*/
  /*---------------- popup player ------------------*/
  /*----------- visualizer ---------------*/
  /* ----------- Blur Background --------------- */
  /* ----------- Hide MediaElement ------------- */
  /**----------------- video ------------------**/
}
div.smp.smp-bg-img {
  background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), var(--smp-bg-color) no-repeat center center/cover;
}
div.smp,
div.smp * {
  box-sizing: border-box;
}
@media (max-width: 767px) {
  div.smp {
    padding: 10px 0;
  }
}
div.smp.sticky {
  bottom: 0;
  z-index: 99999;
  position: fixed;
  width: 100%;
  height: 70px;
  box-shadow: 0 0 3px var(--smp-bg-color);
  border-top: 1px solid #ddd;
  /*---------------- fullwidth player ------------------*/
}
div.smp.sticky.audio-player, div.smp.sticky.podcast-player {
  flex-direction: row !important;
}
div.smp.sticky.audio-player .smp-controls .controls-wrap, div.smp.sticky.podcast-player .smp-controls .controls-wrap {
  justify-content: flex-start;
}
div.smp.sticky.audio-player .smp-controls .controls-wrap .playlist-icon, div.smp.sticky.podcast-player .smp-controls .controls-wrap .playlist-icon {
  display: none;
}
div.smp.sticky + .smp-playlist {
  display: none;
}
div.smp.sticky.position-top {
  top: 0;
  bottom: unset;
}
div.smp.sticky.full-width {
  bottom: 0;
  z-index: 99999;
  position: fixed;
  width: 100%;
  height: 70px;
  box-shadow: 0 0 3px var(--smp-bg-color);
}
div.smp.sticky.full-width.position-top {
  top: 0;
  bottom: unset;
}
div.smp.sticky.full-width .smp-details {
  max-width: 60%;
}
div.smp.sticky.full-width .smp-details .station-meta-wrap {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding-right: 10px;
}
div.smp.sticky.full-width .smp-details .station-meta-wrap .smp-title {
  line-height: normal;
}
div.smp.sticky.full-width .smp-details .station-meta-wrap .smp-status {
  flex: none;
  margin-left: 10px;
}
div.smp.sticky.full-width .smp-details .station-meta-wrap .smp-song-title {
  margin-bottom: 0;
  width: 100%;
}
div.smp.sticky.full-width .smp-details .station-meta-wrap .smp-song-title span {
  margin-bottom: 0;
}
div.smp.sticky.full-width .smp-controls {
  -moz-column-gap: 30px;
  column-gap: 30px;
  justify-content: flex-start;
  flex: 1;
  margin-left: 40px;
}
div.smp.sticky.full-width .smp-controls .smp-visualizer {
  margin-left: 20px;
}
div.smp.sticky.full-width .smp-controls .smp-volume .volume-slider {
  height: unset;
  width: 0;
  bottom: unset;
  position: relative;
  background: unset;
  box-shadow: unset;
  overflow: hidden;
  margin-left: 5px;
  transition: width 0.15s ease-in-out;
}
div.smp.sticky.full-width .smp-controls .smp-volume .volume-slider-bar {
  width: 100%;
  height: 5px;
  top: 50%;
  left: unset;
  bottom: unset;
  background-image: linear-gradient(to right, #ccc 0%, var(--smp-text-color) 100%);
}
div.smp.sticky.full-width .smp-controls .smp-volume .volume-slider-handle {
  left: var(--smp-volume-slider);
  bottom: unset !important;
  cursor: ew-resize;
  margin: -10px 0;
}
div.smp.sticky.full-width .smp-controls .smp-volume:hover .volume-slider {
  width: 80px;
  overflow: unset;
  transition-delay: 0s;
}
div.smp.sticky.full-width .smp-thumbnail {
  width: 65px;
  margin: 0 15px 0 5px;
  border-radius: 5px;
  aspect-ratio: 1;
  -o-object-fit: cover;
  object-fit: cover;
}
div.smp.sticky.full-width .smp-status {
  margin-bottom: 0;
}
div.smp.sticky.full-width .smp-playlist {
  position: absolute;
  bottom: 100%;
  width: 400px;
  background: var(--smp-bg-color);
  right: 0;
  z-index: 9999;
  border-radius: 5px 5px 0 0;
}
div.smp.sticky.full-width .smp-playlist .playlist-item {
  padding: 7px 15px;
}
@media (max-width: 991px) and (min-width: 768px) {
  div.smp.sticky.full-width .smp-controls {
    margin-left: 20px;
    -moz-column-gap: 25px;
    column-gap: 25px;
  }
}
@media (max-width: 767px) {
  div.smp.sticky.full-width {
    flex-direction: column;
    height: auto;
    padding: 5px 10px 10px 10px;
    border-top: 1px solid #ededed;
  }
  div.smp.sticky.full-width .smp-controls {
    padding: 0;
    flex: 1;
    margin-right: auto;
    justify-content: center;
    margin-left: 0;
  }
  div.smp.sticky.full-width .smp-controls button svg {
    width: 22px;
    height: 22px;
  }
  div.smp.sticky.full-width .smp-controls .smp-volume .volume-bar {
    position: absolute;
    transform: rotate(-90deg);
    bottom: 100%;
    margin-bottom: 40px;
    z-index: 99;
  }
  div.smp.sticky.full-width .smp-controls .smp-volume.active .volume-bar, div.smp.sticky.full-width .smp-controls .smp-volume:hover .volume-bar {
    margin-left: 0;
  }
  div.smp.sticky.full-width .smp-details {
    border-radius: 10px;
    padding: 7px;
    margin-bottom: 0;
    width: 100%;
    max-width: 100%;
  }
  div.smp.sticky.full-width .smp-details .station-meta-wrap {
    margin-left: 10px;
    overflow: hidden;
    width: auto;
  }
  div.smp.sticky.full-width .smp-details .station-meta-wrap:not(:has(.track-title)) {
    flex: none;
  }
  div.smp.sticky.full-width .smp-details .station-meta-wrap .station-meta {
    align-items: flex-start;
  }
  div.smp.sticky.full-width .smp-details .station-meta-wrap .smp-title {
    font-size: 15px;
    font-weight: normal;
  }
  div.smp.sticky.full-width .smp-details .station-meta-wrap .track-title {
    margin-top: 5px;
    font-size: 13px;
  }
  div.smp.sticky.full-width .smp-thumbnail {
    width: 35px;
    margin: 0;
    aspect-ratio: auto;
  }
  div.smp.sticky.full-width .smp-visualizer {
    display: none;
  }
  div.smp.sticky.full-width .smp-toggle {
    margin: unset;
  }
}
div.smp.sticky.mini-fullwidth {
  height: 35px;
}
div.smp.sticky.mini-fullwidth img {
  height: 30px !important;
  width: 30px !important;
  border-radius: 3px;
  margin-left: 5px;
}
div.smp.sticky.mini-fullwidth .smp-details .smp-thumbnail {
  height: 30px;
  width: 30px;
  border-radius: 3px;
  margin-left: 5px;
}
div.smp.sticky.mini-fullwidth .smp-details .station-meta-wrap .smp-title {
  font-size: 0.875rem;
}
div.smp.sticky.mini-fullwidth .smp-details .station-meta-wrap .smp-song-title {
  flex: 1;
  font-size: 0.75rem;
  margin-left: 20px;
}
div.smp.sticky.mini-fullwidth .smp-details .station-meta-wrap .smp-song-title .track-title {
  font-size: 13px;
}
div.smp.sticky.mini-fullwidth .smp-details .station-meta-wrap .smp-song-title .track-artist {
  margin-top: 3px;
  font-size: 11px;
}
div.smp.sticky.mini-fullwidth button svg {
  width: 18px;
  height: 18px;
}
@media (max-width: 767px) {
  div.smp.sticky.mini-fullwidth {
    height: auto;
    padding: 5px 10px 10px;
  }
  div.smp.sticky.mini-fullwidth .smp-details {
    padding: 0;
    margin-bottom: 5px;
  }
  div.smp.sticky.mini-fullwidth .smp-details .smp-thumbnail {
    height: 25px;
    width: 25px;
    margin-left: 0;
  }
  div.smp.sticky.mini-fullwidth .smp-controls button svg {
    width: 18px;
    height: 18px;
  }
}
div.smp.sticky.floating {
  height: 60px;
  width: auto;
  border-radius: 10px;
  max-width: 600px;
  right: 15px;
  bottom: 15px;
  min-width: 250px;
}
div.smp.sticky.floating.podcast-player .player-meta-wrap {
  display: flex;
  align-items: center;
}
div.smp.sticky.floating .playlist-icon,
div.smp.sticky.floating .smp-volume {
  display: none;
}
div.smp.sticky.floating .smp-details {
  flex: 1;
}
div.smp.sticky.floating .smp-details .smp-thumbnail {
  width: 50px;
  height: 50px;
  border-radius: 5px;
  margin: 0 10px 0 5px;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -webkit-user-drag: none;
}
div.smp.sticky.floating .smp-details .player-meta-wrap {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
div.smp.sticky.floating .smp-details .player-meta-wrap .smp-title {
  font-size: 0.875rem;
}
div.smp.sticky.floating .smp-details .player-meta-wrap .smp-song-title {
  width: 100%;
  font-size: 0.75rem;
  display: flex;
  flex-direction: column;
}
div.smp.sticky.floating .smp-details .player-meta-wrap .smp-song-title .track-title {
  margin-top: 3px;
  font-size: 13px;
}
div.smp.sticky.floating .smp-details .player-meta-wrap .smp-song-title .track-artist {
  margin-top: 3px;
  font-size: 11px;
}
div.smp.sticky.floating .smp-controls {
  flex: none;
  width: auto;
  flex-wrap: nowrap;
  gap: 0 15px;
  margin: 0 15px 0 auto;
  justify-content: center;
}
div.smp.sticky.floating button svg {
  width: 22px;
  height: 22px;
}
div.smp.sticky.floating button.smp-toggle {
  margin-right: 0;
}
div.smp.sticky.floating svg.smp-move {
  width: 24px;
  height: 24px;
  position: absolute;
  top: -15px;
  left: -15px;
  fill: #555;
  cursor: move;
  opacity: 0;
  transition: opacity 0.5s ease;
}
div.smp.sticky.floating.top-left {
  top: 15px;
  bottom: auto;
  right: auto;
  left: 15px;
}
div.smp.sticky.floating.top-right {
  top: 15px;
  bottom: auto;
  right: 15px;
  left: auto;
}
div.smp.sticky.floating.bottom-left {
  top: auto;
  bottom: 15px;
  right: auto;
  left: 15px;
}
div.smp.sticky.floating.bottom-right {
  top: auto;
  bottom: 15px;
  right: 15px;
  left: auto;
}
div.smp.sticky.floating:hover svg.smp-move {
  opacity: 1;
  transition: opacity 1s ease;
}
@media (max-width: 767px) {
  div.smp.sticky.floating {
    height: auto;
    padding: 5px 10px 10px;
    max-width: calc(100% - 30px);
    right: 10px;
    bottom: 10px;
  }
  div.smp.sticky.floating .smp-details {
    padding: 0;
    margin-bottom: 5px;
  }
  div.smp.sticky.floating .smp-details .smp-thumbnail {
    height: 25px;
    width: 25px;
    margin: 0;
  }
  div.smp.sticky.floating .smp-details .station-meta-wrap {
    padding-right: 5px;
  }
  div.smp.sticky.floating .smp-controls button svg {
    width: 18px;
    height: 18px;
  }
  div.smp.sticky.floating.bottom-left {
    left: 10px;
    right: auto;
  }
}
div.smp.sticky .smp-details,
div.smp.sticky .smp-details-wrap {
  display: flex;
  flex-shrink: 0;
}
div.smp.sticky .smp-details img,
div.smp.sticky .smp-details-wrap img {
  width: 55px;
  margin: 0 10px 0 5px;
  border-radius: 5px;
  aspect-ratio: 1;
  -o-object-fit: cover;
  object-fit: cover;
}
div.smp.sticky .smp-details .player-meta-wrap,
div.smp.sticky .smp-details-wrap .player-meta-wrap {
  font-size: var(--smp-font-size, 12px);
  color: var(--smp-text-color, #fff);
}
div.smp.sticky .smp-controls {
  flex: 1;
  flex-wrap: nowrap;
  margin-left: 40px;
  justify-content: flex-start;
}
div.smp.sticky .smp-controls .controls-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 10px;
  width: 100%;
}
div.smp.sticky .smp-controls .smp-volume:hover {
  transform: scale(1);
}
div.smp.sticky .smp-controls .smp-volume:hover .volume-slider {
  width: 80px;
  overflow: unset;
  transition-delay: 0s;
}
div.smp.sticky .smp-controls .smp-volume .volume-slider {
  height: unset;
  width: 0;
  bottom: unset;
  position: relative;
  background: unset;
  box-shadow: unset;
  overflow: hidden;
  margin-left: 5px;
  transition: width 0.15s ease-in-out;
}
div.smp.sticky .smp-controls .smp-volume .volume-slider .volume-slider-bar {
  width: 100%;
  height: 5px;
  top: 50%;
  left: unset;
  bottom: unset;
  background-image: linear-gradient(to right, #ccc 0, var(--smp-text-color) 100%);
}
div.smp.sticky .smp-controls .smp-volume .volume-slider .volume-slider-bar .volume-slider-handle {
  left: var(--smp-volume-slider);
  bottom: unset !important;
  cursor: ew-resize;
  margin: -10px 0;
}
div.smp.sticky .smp-controls .smp-toggle {
  margin-left: auto;
  margin-right: 0;
}
div.smp.sticky .smp-controls button {
  color: var(--smp-text-color, #fff) !important;
}
div.smp.sticky.audio-player .smp-media, div.smp.sticky.podcast-player .smp-media {
  width: 0 !important;
}
div.smp.sticky.video-player.fullwidth {
  height: 120px;
}
div.smp.sticky.video-player.fullwidth .smp-media {
  width: 210px !important;
}
div.smp.sticky.video-player.mini-fullwidth {
  height: 80px;
}
div.smp.sticky.video-player.mini-fullwidth .smp-media {
  width: 140px !important;
}
div.smp.sticky.video-player.floating .smp-controls {
  flex: auto !important;
}
div.smp.sticky.video-player.floating .smp-media {
  width: 105px !important;
}
div.smp.sticky.video-player.floating .smp-media video {
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}
div.smp-details {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  flex-flow: row;
  justify-content: flex-start;
  overflow: hidden;
}
@media (max-width: 991px) {
  div.smp-details {
    width: 100%;
    justify-content: center;
  }
}
div.smp .smp-thumbnail {
  margin-right: 10px;
  width: 100%;
}
div.smp .smp-thumbnail[src=""] {
  display: none;
}
div.smp .smp-title {
  padding: 0;
  color: var(--smp-text-color);
  font-weight: bold;
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: none;
  line-height: 1;
  font-size: 16px;
}
div.smp-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
  gap: 15px;
}
div.smp .smp-song-title {
  overflow: hidden;
  box-sizing: border-box;
  line-height: 1;
  margin-bottom: 8px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
div.smp .smp-song-title span.track-title {
  width: -moz-max-content;
  width: max-content;
  padding-left: 100%;
  will-change: transform;
  animation: marquee 10s linear infinite;
  line-height: 1;
  color: var(--smp-text-color);
  font-size: 0.875rem;
  display: inline-flex;
  align-items: center;
}
div.smp .smp-song-title span.track-title.animation-disabled {
  animation: none;
  padding: 0;
}
div.smp .smp-song-title span.track-title svg {
  margin-right: 5px;
}
div.smp .smp-song-title span.track-title:empty {
  display: none;
}
div.smp .smp-song-title span.track-title:hover {
  animation-play-state: paused;
}
div.smp .smp-song-title span.track-artist {
  color: var(--smp-text-color);
  font-size: 0.8rem;
  display: inline-flex;
  align-items: center;
  margin-top: 5px;
}
div.smp .smp-song-title span.track-artist svg {
  margin-right: 5px;
  fill: var(--smp-text-color);
}
@keyframes marquee {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(-100%, 0);
  }
}
div.smp .smp-song-title:empty {
  display: none;
}
div.smp .smp-volume {
  box-shadow: none;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 999;
}
div.smp .smp-volume .volume-icon {
  position: relative;
  z-index: 9;
}
div.smp .smp-volume .volume-slider {
  position: absolute;
  height: 0;
  width: 56px;
  overflow: hidden;
  bottom: -5px;
  border-radius: 5px;
  background: var(--smp-bg-color);
  box-shadow: 0 -6px 8px -2px rgba(0, 9, 27, 0.36);
  transition: height 0.15s ease-in-out;
  transition-delay: 1s;
}
div.smp .smp-volume .volume-slider .volume-slider-bar {
  display: block;
  position: absolute;
  top: 20px;
  bottom: 45px;
  left: 50%;
  width: 3px;
  margin-left: -1px;
  border-radius: 2px;
  background: #fff;
}
div.smp .smp-volume .volume-slider .volume-slider-handle {
  position: absolute;
  left: 50%;
  border-radius: 50% !important;
  background: var(--smp-bg-color);
  width: 24px;
  height: 24px;
  box-shadow: 0 4px 4px rgba(0, 9, 27, 0.36), 0 0 0 4px #0056d7 inset;
  cursor: ns-resize;
  margin: -12px;
  bottom: var(--smp-volume-slider);
}
div.smp .smp-volume .volume-slider input {
  -webkit-appearance: slider-vertical;
  position: absolute;
  width: 30px;
  top: -5px;
  left: -15px;
  bottom: 5px;
  z-index: 9;
  opacity: 0 !important;
  height: 110%;
  margin: 0;
}
div.smp .smp-volume:hover .volume-slider, div.smp .smp-volume:focus-visible .volume-slider {
  height: 160px;
  transition-delay: 0s;
}
div.smp .smp-volume:focus-visible .volume-slider {
  outline: 2px dashed var(--smp-text-color);
}
@media (max-width: 768px) {
  div.smp .smp-volume .volume-slider {
    transition-delay: 0s;
  }
}
div.smp button {
  padding: 10px !important;
  background: transparent;
  border: 0;
  outline: none;
  cursor: pointer;
  color: var(--smp-button-color, #fff) !important;
  line-height: 0 !important;
  transition: all 0.2s ease;
}
div.smp button.multimedia-shuffle-button {
  opacity: 0.5;
}
div.smp button.multimedia-shuffle-button.active {
  opacity: 1;
}
div.smp button svg {
  height: 27px;
  width: 27px;
}
div.smp button.smp-open-popup {
  border-top-right-radius: 0;
}
div.smp button.smp-open-popup svg {
  padding: 1px;
}
div.smp button.smp-settings + .playback-speed-tooltip {
  z-index: 999 !important;
  padding: 8px !important;
  background: #222 !important;
  filter: drop-shadow(0px 2px 6px rgba(0, 0, 0, 0.16));
  opacity: 1;
}
div.smp button.smp-settings + .playback-speed-tooltip .playback-speed {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 80px;
}
div.smp button.smp-settings + .playback-speed-tooltip .playback-speed button {
  border: 0 !important;
  padding: 4px 12px !important;
  font-size: 0.875rem;
  line-height: 0 !important;
  color: #fff !important;
}
div.smp button.smp-settings + .playback-speed-tooltip .playback-speed button.active {
  color: #0056d7 !important;
}
div.smp button.smp-video-settings-btn + .smp-video-settings-menu {
  position: absolute;
  bottom: 50px;
  right: 0;
  width: 250px;
  background-color: rgba(28, 28, 28, 0.95);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  transition: opacity 0.15s ease, transform 0.15s ease;
  opacity: 0;
  z-index: 999;
}
div.smp button.smp-video-settings-btn + .smp-video-settings-menu.active {
  opacity: 1;
  transform: translateY(0);
}
div.smp button.smp-video-settings-btn + .smp-video-settings-menu .menu-header {
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  padding: 8px 12px;
}
div.smp button.smp-video-settings-btn + .smp-video-settings-menu .menu-header .back-button {
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  padding: 0;
  margin-right: 12px;
  font-size: 14px;
  display: flex;
  align-items: center;
}
div.smp button.smp-video-settings-btn + .smp-video-settings-menu .menu-header .back-button svg {
  width: 18px;
  height: 18px;
}
div.smp button.smp-video-settings-btn + .smp-video-settings-menu .menu-header .menu-title {
  color: white;
  font-size: 14px;
  font-weight: 500;
  margin: 0;
  padding: 0;
  flex: 1;
}
div.smp button.smp-video-settings-btn + .smp-video-settings-menu .settings-list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
div.smp button.smp-video-settings-btn + .smp-video-settings-menu .settings-list .settings-item {
  padding: 6px 10px;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  color: #fff;
  transition: background-color 0.15s ease;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
div.smp button.smp-video-settings-btn + .smp-video-settings-menu .settings-list .settings-item:hover {
  background: #333;
}
div.smp button.smp-video-settings-btn + .smp-video-settings-menu .settings-list .settings-item .settings-icon svg {
  width: 13px;
  height: 13px;
}
div.smp button.smp-video-settings-btn + .smp-video-settings-menu .settings-list .settings-item .settings-label {
  flex: 1;
  font-size: 14px;
}
div.smp button.smp-video-settings-btn + .smp-video-settings-menu .settings-list .settings-item .settings-label.active {
  color: #0056d7;
}
div.smp button.smp-video-settings-btn + .smp-video-settings-menu .settings-list .settings-item .settings-value {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin-right: 8px;
}
div.smp button.smp-video-settings-btn + .smp-video-settings-menu .settings-list .settings-item .arrow {
  font-size: 18px;
  margin-left: 8px;
  position: unset;
  width: unset;
}
div.smp button.smp-video-settings-btn + .smp-video-settings-menu .settings-list .settings-item .arrow::after {
  display: none;
}
div.smp button.smp-video-settings-btn + .smp-video-settings-menu .settings-list .settings-item.shuffle-item {
  opacity: 0.5;
}
div.smp button.smp-video-settings-btn + .smp-video-settings-menu .settings-list .settings-item.shuffle-item.active {
  opacity: 1;
}
div.smp button:focus-visible {
  outline: 2px dashed var(--smp-text-color);
  border-radius: 10px;
}
div.smp button:hover {
  transform: scale(1.1);
}
div.smp.shortcode {
  border-radius: var(--smp-border-radius);
  flex-flow: column;
  margin: auto;
  max-width: calc(100% - 15px);
}
div.smp.shortcode .smp-controls {
  padding: 0;
}
div.smp.shortcode .smp-thumbnail {
  width: 120px;
  border-radius: 5px;
}
div.smp.shortcode .smp-details {
  width: 100%;
  display: flex;
  text-align: center;
}
div.smp.shortcode .smp-title {
  text-align: center;
}
div.smp.shortcode button .dashicons {
  font-size: 30px !important;
}
div.smp.shortcode .smp-progress-wrap {
  width: 90%;
  margin-top: 10px;
}
div.smp.popup {
  margin-top: 30px;
}
div.smp.popup .smp-loader,
div.smp.popup .smp-loader:after {
  width: 15px;
  height: 15px;
}
div.smp.active .smp-visualizer {
  visibility: visible;
}
div.smp.blur-bg:not(.floating) {
  overflow: hidden;
}
div.smp.blur-bg .bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  filter: blur(30px);
  z-index: 0;
  background-size: 150%;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.8;
}
div.smp.blur-bg > *:not(.bg-img) {
  z-index: 1;
}
div.smp.blur-bg:not(.full-width) .volume-slider {
  background: transparent;
  box-shadow: none;
}
div.smp.blur-bg:not(.full-width) .volume-slider-bar {
  width: 5px;
  background-image: linear-gradient(to top, #ccc 0%, var(--smp-text-color) 100%);
}
div.smp.blur-bg:not(.full-width) .smp-volume:hover .volume-slider {
  height: 120px;
}
div.smp.blur-bg.full-width .smp-volume input {
  -webkit-appearance: none;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 5px;
  z-index: 9;
  opacity: 0 !important;
  height: 0;
  width: calc(100% + 20px);
  margin: 0;
  cursor: ns-resize;
}
div.smp.blur-bg.full-width .smp-volume .volume-slider {
  background: transparent;
  box-shadow: none;
  overflow: visible;
  bottom: 3px;
  width: 0;
  transition: width 0.15s ease-in-out;
}
div.smp.blur-bg.full-width .smp-volume .volume-slider-bar {
  height: 5px;
  width: 100%;
  border-radius: 5px;
  top: 0;
  left: 0;
  bottom: 0;
  background-image: linear-gradient(to right, #ccc 0%, var(--smp-text-color) 100%);
}
div.smp.blur-bg.full-width .smp-volume .volume-slider-handle {
  left: var(--smp-volume-slider);
  bottom: unset !important;
  width: 20px;
  height: 20px;
  margin: -8px 0;
  cursor: pointer;
  right: 10px;
  opacity: 0;
  transition: opacity 0.15s ease-in-out;
}
div.smp.blur-bg.full-width .smp-volume:hover .volume-slider {
  transition-delay: 0s;
  width: 60px;
}
div.smp.blur-bg.full-width .smp-volume:hover .volume-slider-handle {
  opacity: 1;
}
div.smp .mejs-container {
  display: none !important;
}
div.smp.audio-player.skin1 {
  --smp-bg-color: linear-gradient(-225deg, #e3fdf5 0%, #ffe6fa 100%);
  --smp-text-color: rgb(14, 57, 91);
  --smp-box-shadow: rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
  --smp-border-radius: 10px;
  flex-direction: column;
}
div.smp.audio-player.skin2 {
  --smp-bg-color: #5581a4;
  --smp-text-color: #fff;
  --smp-box-shadow: rgba(0, 0, 0, 0.45) 0px 25px 20px -25px;
}
div.smp.audio-player.skin4 {
  --smp-bg-color: linear-gradient(-225deg, #e3fdf5 0%, #ffe6fa 100%);
  --smp-text-color: rgb(14, 57, 91);
  --smp-box-shadow: rgba(0, 0, 0, 0.5) 0px -1px 2px;
}
div.smp.audio-player.skin5 {
  --smp-bg-color: linear-gradient(to left, #243949 0%, #517fa4 100%);
  --smp-text-color: #fff;
  --smp-box-shadow: rgba(50, 50, 93, 0.25) 0 6px 12px -2px;
}
div.smp.audio-player.skin6 {
  --smp-bg-color: linear-gradient(
      to bottom,
      #323232 0%,
      #3f3f3f 40%,
      #1c1c1c 150%
    ),
    linear-gradient(
      to top,
      rgba(255, 255, 255, 0.4) 0%,
      rgba(0, 0, 0, 0.25) 200%
    );
  --smp-text-color: #fff;
  --smp-box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px;
}
div.smp.audio-player.skin7 {
  --smp-bg-color: linear-gradient(to left, #243949 0%, #517fa4 100%);
  --smp-text-color: #fff;
  --smp-box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px;
}
div.smp.audio-player.skin8 {
  --smp-box-shadow: rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
}
div.smp.audio-player.skin10 {
  --smp-bg-color: #fff;
  --smp-text-color: #5c637e;
  --smp-border-radius: 5px;
}
div.smp.audio-player.skin11 {
  --smp-border-radius: 30px;
}
div.smp.video-player {
  border-radius: 0;
}
div.smp.video-player .smp-media {
  aspect-ratio: 16/9;
}
div.smp.video-player .smp-media video,
div.smp.video-player .smp-media iframe {
  display: block;
  aspect-ratio: 16/9;
}

/*----------------- time duration ------------------*/
.smp-time-duration {
  background: #83889d;
  color: #fff;
  padding: 3px 8px;
  border-radius: 20px;
  font-size: 12px;
  font-family: var(--smp-font-family);
}

/**----------------- popup ------------------*/
.smp-popup-header {
  margin-bottom: 20px;
}

.smp-popup-footer {
  margin-top: 20px;
}

/*---- thumbnail ---*/
.thumbnail-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.thumbnail-wrap .thumbnail-dot {
  height: 20px;
  width: 20px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
}
.thumbnail-wrap .thumbnail-dot:after {
  content: "";
  height: 8px;
  width: 8px;
  background: #000;
  border-radius: 50%;
  position: absolute;
}

/*----- toggle -----*/
.smp-toggle {
  cursor: pointer;
  display: flex !important;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 999;
  margin-left: auto;
  margin-right: 20px;
}
.smp-toggle svg {
  transform: scale(0.8);
}
.smp-toggle svg path {
  fill: var(--smp-text-color);
}
.smp-toggle.active {
  position: fixed;
  right: 0;
  bottom: 30px;
  padding: 5px;
  margin-right: 15px;
  background: transparent;
  border: none;
}
.smp-toggle.active img {
  max-width: 80px;
}
.smp-toggle .smp-tooltip {
  line-height: 20px;
}
@media (max-width: 767px) {
  .smp-toggle.active img {
    max-width: 50px;
  }
}

/*--- player loader ---*/
.smp-loader {
  position: relative;
  text-indent: -9999em;
  border-top: 5px solid rgba(45, 98, 211, 0.2);
  border-right: 5px solid rgba(45, 98, 211, 0.2);
  border-bottom: 5px solid rgba(45, 98, 211, 0.2);
  border-left: 5px solid #2d62d3;
  transform: translateZ(0);
  animation: multimedia_player_loader 1.1s infinite linear;
  display: none;
  overflow: hidden;
}
.smp-loader, .smp-loader:after {
  border-radius: 50%;
  width: 26px;
  height: 26px;
  margin: 0 2px;
}

@keyframes multimedia_player_loader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes blink {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.smp-hidden {
  display: none !important;
}

/*------------visualizer----------------*/
.smp-visualizer {
  visibility: hidden;
  width: 100%;
  flex: 1;
  height: auto;
  padding: 5px;
  border-radius: 5px;
  color: #444;
  margin: auto;
  overflow: hidden;
  white-space: nowrap;
  display: flex;
  align-items: center;
  justify-content: center;
}
.smp-visualizer div {
  width: 2.5%;
  height: 3rem;
  border-radius: 5px;
  margin: 0 10px 0 0;
  display: inline-block;
  position: relative;
}
.smp-visualizer div:last-child {
  margin: 0;
}
.smp-visualizer div span {
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: linear-gradient(to up, #7700aa, #8800ff);
  position: absolute;
  animation: visualizer 10s infinite ease-in-out;
  bottom: 0;
}
.smp-visualizer div:nth-of-type(1) span {
  animation-delay: 3.99s;
}
.smp-visualizer div:nth-of-type(2) span {
  animation-delay: 3.8s;
}
.smp-visualizer div:nth-of-type(3) span {
  animation-delay: 3.7s;
}
.smp-visualizer div:nth-of-type(4) span {
  animation-delay: 3.6s;
}
.smp-visualizer div:nth-of-type(5) span {
  animation-delay: 3.5s;
}
.smp-visualizer div:nth-of-type(6) span {
  animation-delay: 3.4s;
}
.smp-visualizer div:nth-of-type(7) span {
  animation-delay: 3.3s;
}
.smp-visualizer div:nth-of-type(8) span {
  animation-delay: 3.2s;
}
.smp-visualizer div:nth-of-type(9) span {
  animation-delay: 3.1s;
}
.smp-visualizer div:nth-of-type(10) span {
  animation-delay: 2.1s;
}
.smp-visualizer div:nth-of-type(11) span {
  animation-delay: 2.1s;
}
.smp-visualizer div:nth-of-type(12) span {
  animation-delay: 2.1s;
}
.smp-visualizer div:nth-of-type(13) span {
  animation-delay: 2.2s;
}
.smp-visualizer div:nth-of-type(14) span {
  animation-delay: 1.3s;
}
.smp-visualizer div:nth-of-type(15) span {
  animation-delay: 1.4s;
}
.smp-visualizer div:nth-of-type(16) span {
  animation-delay: 1.5s;
}
.smp-visualizer div:nth-of-type(17) span {
  animation-delay: 1.6s;
}
.smp-visualizer div:nth-of-type(18) span {
  animation-delay: 1.7s;
}
.smp-visualizer div:nth-of-type(19) span {
  animation-delay: 1.8s;
}
.smp-visualizer div:nth-of-type(20) span {
  animation-delay: 2s;
}

@keyframes visualizer {
  0% {
    height: 0%;
    transform: translatey(0);
    background-color: yellow;
  }
  5% {
    height: 100%;
    transform: translatey(15px);
    background-color: fuchsia;
  }
  10% {
    height: 90%;
    transform: translatey(0);
    -webkit-transform: translatey(0);
    background-color: bisque;
  }
  15% {
    height: 80%;
    transform: translatey(0);
    background-color: cornflowerblue;
  }
  20% {
    height: 70%;
    transform: translatey(0);
    background-color: cornflowerblue;
  }
  25% {
    height: 0%;
    transform: translatey(0);
    background-color: cornflowerblue;
  }
  30% {
    height: 70%;
    transform: translatey(0);
    background-color: cornflowerblue;
  }
  35% {
    height: 0%;
    transform: translatey(0);
    background-color: cornflowerblue;
  }
  40% {
    height: 60%;
    transform: translatey(0);
    background-color: cornflowerblue;
  }
  45% {
    height: 0%;
    transform: translatey(0);
    background-color: cornflowerblue;
  }
  50% {
    height: 50%;
    transform: translatey(0);
    background-color: cornflowerblue;
  }
  55% {
    height: 0%;
    transform: translatey(0);
    background-color: cornflowerblue;
  }
  60% {
    height: 40%;
    transform: translatey(0);
    background-color: cornflowerblue;
  }
  65% {
    height: 0%;
    transform: translatey(0);
    background-color: cornflowerblue;
  }
  70% {
    height: 30%;
    transform: translatey(0);
    background-color: cornflowerblue;
  }
  75% {
    height: 0%;
    transform: translatey(0);
    background-color: cornflowerblue;
  }
  80% {
    height: 20%;
    transform: translatey(0);
    background-color: cornflowerblue;
  }
  85% {
    height: 0%;
    transform: translatey(0);
    background-color: cornflowerblue;
  }
  90% {
    height: 10%;
    transform: translatey(0);
    background-color: cornflowerblue;
  }
  95% {
    height: 5%;
    transform: translatey(0);
    background-color: cornflowerblue;
  }
  100% {
    height: 0;
    transform: translatey(0);
    background-color: cornflowerblue;
  }
}
/*--------- import playlist ---------*/
.smp-playlist {
  display: flex;
  flex-flow: column;
  max-width: calc(100% - 15px);
  margin: 0 auto;
  padding: 28px 16px 16px;
  box-sizing: border-box;
}
.smp-playlist * {
  box-sizing: border-box;
}
.smp-playlist__header {
  text-align: center;
  position: relative;
  margin: 10px auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 6px;
  padding: 10px;
}
.smp-playlist__header-search {
  position: relative;
}
.smp-playlist__header-search .components-base-control__field {
  margin: 0;
}
.smp-playlist__header-search .components-base-control__field input {
  width: 100%;
  border: none;
  border-radius: 30px;
  color: var(--smp-text-color, "#fff");
  background: rgba(255, 255, 255, 0.3);
  padding: 6px 6px 6px 25px;
  height: 30px;
  font-size: 12px;
  line-height: 1;
}
.smp-playlist__header-search .components-base-control__field input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.5);
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
}
.smp-playlist__header-search .components-base-control__field input::placeholder {
  color: rgba(255, 255, 255, 0.5);
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
}
.smp-playlist__header-search svg {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
}
.smp-playlist__header-duration {
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  font-family: var(--smp-font-family);
}
.smp-playlist__body {
  display: flex;
  flex-flow: column;
  width: 100%;
  max-height: var(--smp-playlist-height, 300px);
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #c9ccff var(--smp-playlist-bg-color, #5c637e);
}
.smp-playlist__body::-webkit-scrollbar {
  width: 8px;
  margin-right: 10px;
}
.smp-playlist__body::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 4px;
}
.smp-playlist__body::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 4px;
}
.smp-playlist__body::-webkit-scrollbar-thumb:hover {
  background: #555;
}
.smp-playlist .playlist-item {
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(221, 221, 221, 0.3);
  padding: 5px;
  color: var(--smp-text-color) !important;
  cursor: pointer;
  margin-bottom: 3px;
  font-size: 15px;
  gap: 10px;
  transition: box-shadow 0.2s ease, transform 0.2s ease, background-color 0.2s ease;
  position: relative;
}
.smp-playlist .playlist-item.active {
  background: var(--smp-primary-color) !important;
}
.smp-playlist .playlist-item:last-child {
  margin-bottom: 0;
  border-bottom: none;
}
.smp-playlist .playlist-item svg {
  fill: #fff;
}
.smp-playlist .playlist-item img {
  width: 30px;
  margin-right: 2px;
  -o-object-fit: cover;
  object-fit: cover;
  aspect-ratio: 1;
  border-radius: 3px;
}
.smp-playlist .playlist-item .playlist-item-title {
  flex: 1;
  white-space: normal;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: left;
  font-family: var(--smp-font-family);
}
.smp-playlist .playlist-item .playlist-item__duration {
  margin-left: auto;
  font-family: var(--smp-font-family);
}
.smp-playlist .playlist-item button {
  background: transparent;
  border: 0;
  outline: none;
  cursor: pointer;
  color: var(--smp-text-color);
  line-height: 0;
  padding: 0;
  font-family: var(--smp-font-family);
}
.smp-playlist .playlist-item button svg {
  width: 14px;
  height: 14px;
}
.smp-playlist .playlist-item.history-item {
  cursor: default;
}
.smp-playlist .playlist-item.history-item .item-time {
  margin-right: 10px;
}
.smp-playlist .loading-spinner {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
}
.smp-playlist .loading-spinner svg {
  color: #007cca;
  width: 2rem;
  height: 2rem;
}
.smp-playlist__empty {
  text-align: center;
  color: var(--smp-text-color);
}
.smp-playlist.scrollable .smp-playlist__body {
  max-height: var(--smp-playlist-height);
  overflow-y: auto;
}
.smp-playlist.scrollable .smp-playlist__body::-webkit-scrollbar {
  width: 5px;
  border-radius: 10px;
}
.smp-playlist.scrollable .smp-playlist__body::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}
.smp-playlist.scrollable .smp-playlist__body::-webkit-scrollbar-thumb {
  background: rgba(144, 164, 174, 0.3);
  border-radius: 10px;
}
.smp-playlist.scrollable .smp-playlist__body::-webkit-scrollbar-thumb:hover {
  background: rgba(144, 164, 174, 0.5);
}

.smp.popup + .smp-playlist {
  padding: 0 !important;
}

.podcast-player + .smp-playlist .playlist-item {
  justify-content: space-between;
  align-items: flex-start;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 5px;
  padding: 6px;
  margin-bottom: 12px;
  cursor: inherit;
  font-family: var(--smp-font-family);
}
.podcast-player + .smp-playlist .playlist-item > div:not([class]) {
  width: 70%;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.podcast-player + .smp-playlist .playlist-item-thumbnail {
  max-width: 40px;
  max-height: 40px;
}
.podcast-player + .smp-playlist .playlist-item-thumbnail img {
  margin: 0;
  width: 100%;
}
.podcast-player + .smp-playlist .playlist-item-wrap .playlist-item-title {
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}
.podcast-player + .smp-playlist .playlist-item-wrap .playlist-item-title a {
  margin-bottom: 0;
  outline: none;
}
.podcast-player + .smp-playlist .playlist-item-wrap .playlist-item-title a svg {
  width: 12px;
  height: 12px;
}
.podcast-player + .smp-playlist .playlist-item-wrap p,
.podcast-player + .smp-playlist .playlist-item-wrap a,
.podcast-player + .smp-playlist .playlist-item-wrap button {
  font-size: 12px;
  line-height: 1.2;
  margin: 4px 0;
  color: #fff;
  text-decoration: none;
  outline: none;
}
.podcast-player + .smp-playlist .playlist-item-wrap p.more-text,
.podcast-player + .smp-playlist .playlist-item-wrap a.more-text,
.podcast-player + .smp-playlist .playlist-item-wrap button.more-text {
  font-weight: 600;
}
.podcast-player + .smp-playlist .playlist-item-meta {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: flex-end;
  margin-top: auto;
}
.podcast-player + .smp-playlist .playlist-item-meta .duration,
.podcast-player + .smp-playlist .playlist-item-meta .publish-date {
  font-size: 10px;
}
.podcast-player + .smp-playlist .playlist-item-btn {
  position: absolute;
  right: 0;
}
.podcast-player + .smp-playlist .playlist-item-btn button {
  background: var(--smp-button-bg-color, #fff);
  padding: 4px 15px;
  border-radius: 10px;
  margin-top: 5px;
  margin-right: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
}
.podcast-player + .smp-playlist .playlist-item-btn button span {
  color: var(--smp-button-color, #000) !important;
}
.podcast-player + .smp-playlist .playlist-item-btn button svg path {
  fill: var(--smp-button-color, #000);
}
.podcast-player + .smp-playlist.playlist-style-1 .playlist-item, .podcast-player + .smp-playlist.playlist-style-2 .playlist-item, .podcast-player + .smp-playlist.playlist-style-3 .playlist-item, .podcast-player + .smp-playlist.playlist-style-4 .playlist-item, .podcast-player + .smp-playlist.playlist-style-5 .playlist-item {
  justify-content: flex-start;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  padding: 0 0 12px 0;
  margin-bottom: 12px;
}
.podcast-player + .smp-playlist.playlist-style-1 .playlist-item:last-child, .podcast-player + .smp-playlist.playlist-style-2 .playlist-item:last-child, .podcast-player + .smp-playlist.playlist-style-3 .playlist-item:last-child, .podcast-player + .smp-playlist.playlist-style-4 .playlist-item:last-child, .podcast-player + .smp-playlist.playlist-style-5 .playlist-item:last-child {
  border: 0;
  margin: 0;
}
.podcast-player + .smp-playlist.playlist-style-1 .playlist-item-thumbnail, .podcast-player + .smp-playlist.playlist-style-2 .playlist-item-thumbnail, .podcast-player + .smp-playlist.playlist-style-3 .playlist-item-thumbnail, .podcast-player + .smp-playlist.playlist-style-4 .playlist-item-thumbnail, .podcast-player + .smp-playlist.playlist-style-5 .playlist-item-thumbnail {
  position: relative;
  max-width: 50px;
  max-height: 50px;
}
.podcast-player + .smp-playlist.playlist-style-1 .playlist-item-wrap, .podcast-player + .smp-playlist.playlist-style-2 .playlist-item-wrap, .podcast-player + .smp-playlist.playlist-style-3 .playlist-item-wrap, .podcast-player + .smp-playlist.playlist-style-4 .playlist-item-wrap, .podcast-player + .smp-playlist.playlist-style-5 .playlist-item-wrap {
  width: 65%;
}
.podcast-player + .smp-playlist.playlist-style-1 .playlist-item-wrap p,
.podcast-player + .smp-playlist.playlist-style-1 .playlist-item-wrap a, .podcast-player + .smp-playlist.playlist-style-2 .playlist-item-wrap p,
.podcast-player + .smp-playlist.playlist-style-2 .playlist-item-wrap a, .podcast-player + .smp-playlist.playlist-style-3 .playlist-item-wrap p,
.podcast-player + .smp-playlist.playlist-style-3 .playlist-item-wrap a, .podcast-player + .smp-playlist.playlist-style-4 .playlist-item-wrap p,
.podcast-player + .smp-playlist.playlist-style-4 .playlist-item-wrap a, .podcast-player + .smp-playlist.playlist-style-5 .playlist-item-wrap p,
.podcast-player + .smp-playlist.playlist-style-5 .playlist-item-wrap a {
  font-size: 12px;
  line-height: 1.2;
  margin: 4px 0;
  color: #fff;
  text-decoration: none;
  outline: none;
}
.podcast-player + .smp-playlist.playlist-style-1 .playlist-item-wrap p .more-text,
.podcast-player + .smp-playlist.playlist-style-1 .playlist-item-wrap a .more-text, .podcast-player + .smp-playlist.playlist-style-2 .playlist-item-wrap p .more-text,
.podcast-player + .smp-playlist.playlist-style-2 .playlist-item-wrap a .more-text, .podcast-player + .smp-playlist.playlist-style-3 .playlist-item-wrap p .more-text,
.podcast-player + .smp-playlist.playlist-style-3 .playlist-item-wrap a .more-text, .podcast-player + .smp-playlist.playlist-style-4 .playlist-item-wrap p .more-text,
.podcast-player + .smp-playlist.playlist-style-4 .playlist-item-wrap a .more-text, .podcast-player + .smp-playlist.playlist-style-5 .playlist-item-wrap p .more-text,
.podcast-player + .smp-playlist.playlist-style-5 .playlist-item-wrap a .more-text {
  font-weight: 600;
}
.podcast-player + .smp-playlist.playlist-style-1 .playlist-item-wrap button.more-text, .podcast-player + .smp-playlist.playlist-style-2 .playlist-item-wrap button.more-text, .podcast-player + .smp-playlist.playlist-style-3 .playlist-item-wrap button.more-text, .podcast-player + .smp-playlist.playlist-style-4 .playlist-item-wrap button.more-text, .podcast-player + .smp-playlist.playlist-style-5 .playlist-item-wrap button.more-text {
  background: rgba(128, 128, 128, 0.6);
  font-size: 12px;
  line-height: 1;
  padding: 3px 6px;
  transition: all 0.3s ease-in-out;
  border-radius: 3px;
}
.podcast-player + .smp-playlist.playlist-style-1 .playlist-item-wrap button.more-text:hover, .podcast-player + .smp-playlist.playlist-style-2 .playlist-item-wrap button.more-text:hover, .podcast-player + .smp-playlist.playlist-style-3 .playlist-item-wrap button.more-text:hover, .podcast-player + .smp-playlist.playlist-style-4 .playlist-item-wrap button.more-text:hover, .podcast-player + .smp-playlist.playlist-style-5 .playlist-item-wrap button.more-text:hover {
  background: rgba(128, 128, 128, 0.8) !important;
}
.podcast-player + .smp-playlist.playlist-style-1 .playlist-item-meta, .podcast-player + .smp-playlist.playlist-style-2 .playlist-item-meta, .podcast-player + .smp-playlist.playlist-style-3 .playlist-item-meta, .podcast-player + .smp-playlist.playlist-style-4 .playlist-item-meta, .podcast-player + .smp-playlist.playlist-style-5 .playlist-item-meta {
  justify-content: flex-start;
  flex-direction: row;
  margin-bottom: 4px;
}
.podcast-player + .smp-playlist.playlist-style-1 .playlist-item-meta .wrap, .podcast-player + .smp-playlist.playlist-style-2 .playlist-item-meta .wrap, .podcast-player + .smp-playlist.playlist-style-3 .playlist-item-meta .wrap, .podcast-player + .smp-playlist.playlist-style-4 .playlist-item-meta .wrap, .podcast-player + .smp-playlist.playlist-style-5 .playlist-item-meta .wrap {
  display: flex;
  gap: 4px;
  padding: 2px 4px;
  margin: 0;
  border-radius: 2px;
}
.podcast-player + .smp-playlist.playlist-style-1 .playlist-item-meta .duration,
.podcast-player + .smp-playlist.playlist-style-1 .playlist-item-meta .publish-date,
.podcast-player + .smp-playlist.playlist-style-1 .playlist-item-meta span,
.podcast-player + .smp-playlist.playlist-style-1 .playlist-item-meta a, .podcast-player + .smp-playlist.playlist-style-2 .playlist-item-meta .duration,
.podcast-player + .smp-playlist.playlist-style-2 .playlist-item-meta .publish-date,
.podcast-player + .smp-playlist.playlist-style-2 .playlist-item-meta span,
.podcast-player + .smp-playlist.playlist-style-2 .playlist-item-meta a, .podcast-player + .smp-playlist.playlist-style-3 .playlist-item-meta .duration,
.podcast-player + .smp-playlist.playlist-style-3 .playlist-item-meta .publish-date,
.podcast-player + .smp-playlist.playlist-style-3 .playlist-item-meta span,
.podcast-player + .smp-playlist.playlist-style-3 .playlist-item-meta a, .podcast-player + .smp-playlist.playlist-style-4 .playlist-item-meta .duration,
.podcast-player + .smp-playlist.playlist-style-4 .playlist-item-meta .publish-date,
.podcast-player + .smp-playlist.playlist-style-4 .playlist-item-meta span,
.podcast-player + .smp-playlist.playlist-style-4 .playlist-item-meta a, .podcast-player + .smp-playlist.playlist-style-5 .playlist-item-meta .duration,
.podcast-player + .smp-playlist.playlist-style-5 .playlist-item-meta .publish-date,
.podcast-player + .smp-playlist.playlist-style-5 .playlist-item-meta span,
.podcast-player + .smp-playlist.playlist-style-5 .playlist-item-meta a {
  line-height: 1;
  font-size: 12px;
  margin: 0;
}
.podcast-player + .smp-playlist.playlist-style-1 .playlist-item-meta svg, .podcast-player + .smp-playlist.playlist-style-2 .playlist-item-meta svg, .podcast-player + .smp-playlist.playlist-style-3 .playlist-item-meta svg, .podcast-player + .smp-playlist.playlist-style-4 .playlist-item-meta svg, .podcast-player + .smp-playlist.playlist-style-5 .playlist-item-meta svg {
  width: 12px;
  height: 12px;
}
.podcast-player + .smp-playlist.playlist-style-1 .playlist-item-meta a, .podcast-player + .smp-playlist.playlist-style-2 .playlist-item-meta a, .podcast-player + .smp-playlist.playlist-style-3 .playlist-item-meta a, .podcast-player + .smp-playlist.playlist-style-4 .playlist-item-meta a, .podcast-player + .smp-playlist.playlist-style-5 .playlist-item-meta a {
  text-decoration: underline;
}
.podcast-player + .smp-playlist.playlist-style-2 .playlist-item-thumbnail {
  max-width: 50px;
  max-height: 50px;
  background: #fff;
  border-radius: 50%;
}
.podcast-player + .smp-playlist.playlist-style-2 .playlist-item-thumbnail img {
  border-radius: 50%;
}
.podcast-player + .smp-playlist.playlist-style-2 .playlist-item-title {
  margin-bottom: 5px;
}
.podcast-player + .smp-playlist.playlist-style-2 .playlist-item-wrap button.more-text {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.6);
  display: flex;
  gap: 4px;
}
.podcast-player + .smp-playlist.playlist-style-2 .playlist-item-wrap button.more-text:hover {
  background: transparent !important;
}
.podcast-player + .smp-playlist.playlist-style-2 .playlist-item-meta {
  gap: 5px;
}
.podcast-player + .smp-playlist.playlist-style-2 .playlist-item-meta .wrap {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.6);
}
.podcast-player + .smp-playlist.playlist-style-2 .playlist-item-meta .wrap a {
  text-decoration: none;
}
.podcast-player + .smp-playlist.playlist-style-3 .playlist-item-wrap button.more-text {
  background: transparent;
  padding: 0;
  margin-bottom: 10px;
}
.podcast-player + .smp-playlist.playlist-style-3 .playlist-item-wrap button.more-text:hover {
  background: transparent !important;
}
.podcast-player + .smp-playlist.playlist-style-3 .playlist-item-btn {
  bottom: 15px;
}
.podcast-player + .smp-playlist.playlist-style-4 .playlist-item-wrap {
  width: 85%;
}
.podcast-player + .smp-playlist.playlist-style-4 .playlist-item-wrap button.more-text {
  background: transparent;
  padding: 0;
  margin-bottom: 10px;
}
.podcast-player + .smp-playlist.playlist-style-4 .playlist-item-wrap button.more-text:hover {
  background: transparent !important;
}
.podcast-player + .smp-playlist.playlist-style-4 .playlist-item-meta {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 5px;
}
.podcast-player + .smp-playlist.playlist-style-4 .playlist-item-meta button {
  width: 30px;
  height: 30px;
  background: var(--smp-button-bg-color);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.podcast-player + .smp-playlist.playlist-style-4 .playlist-item-meta button svg {
  width: 14px;
  height: 14px;
}
.podcast-player + .smp-playlist.playlist-style-4 .playlist-item-meta button svg path {
  fill: var(--smp-button-color, #000);
}
.podcast-player + .smp-playlist.playlist-style-5 .playlist-item-wrap {
  width: 85%;
}
.podcast-player + .smp-playlist.playlist-style-5 .playlist-item-wrap button {
  margin-top: 10px;
  background: var(--smp-button-bg-color, #fff);
  padding: 4px 15px;
  border-radius: 10px;
  margin-right: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
}
.podcast-player + .smp-playlist.playlist-style-5 .playlist-item-wrap button span {
  color: var(--smp-button-color, #000) !important;
}
.podcast-player + .smp-playlist.playlist-style-5 .playlist-item-wrap button svg path {
  fill: var(--smp-button-color, #000);
}
.podcast-player + .smp-playlist.playlist-style-5 .playlist-item-wrap button.more-text {
  display: block;
  background: transparent;
  padding: 0;
  margin-bottom: 10px;
}
.podcast-player + .smp-playlist.playlist-style-5 .playlist-item-wrap button.more-text:hover {
  background: transparent !important;
}
.podcast-player + .smp-playlist.smp-playlist-skin1 .playlist-item-btn button {
  background: var(--smp-button-bg-color, #fff) !important;
}
.podcast-player + .smp-playlist.smp-playlist-skin1 .playlist-item-btn button span {
  color: var(--smp-button-color, #51C1F2) !important;
}
.podcast-player + .smp-playlist.smp-playlist-skin1 .playlist-item-btn button svg path {
  fill: var(--smp-button-color, #51C1F2) !important;
}
.podcast-player + .smp-playlist.smp-playlist-skin2 .playlist-item-btn button {
  background: var(--smp-button-bg-color, #fff) !important;
}
.podcast-player + .smp-playlist.smp-playlist-skin2 .playlist-item-btn button span {
  color: var(--smp-button-color, #eb4f6d) !important;
}
.podcast-player + .smp-playlist.smp-playlist-skin2 .playlist-item-btn button svg path {
  fill: var(--smp-button-color, #eb4f6d) !important;
}
.podcast-player + .smp-playlist.smp-playlist-skin3 .playlist-item-btn button {
  background: var(--smp-button-color, #fff) !important;
}
.podcast-player + .smp-playlist.smp-playlist-skin3 .playlist-item-btn button span {
  color: var(--smp-button-bg-color, #002050) !important;
}
.podcast-player + .smp-playlist.smp-playlist-skin3 .playlist-item-btn button svg path {
  fill: var(--smp-button-bg-color, #002050) !important;
}
.podcast-player + .smp-playlist.smp-playlist-skin4 .playlist-item-btn button {
  background: var(--smp-button-bg-color, #fff) !important;
}
.podcast-player + .smp-playlist.smp-playlist-skin4 .playlist-item-btn button span {
  color: var(--smp-button-color, #5C637E) !important;
}
.podcast-player + .smp-playlist.smp-playlist-skin4 .playlist-item-btn button svg path {
  fill: var(--smp-button-color, #5C637E) !important;
}
.podcast-player + .smp-playlist.smp-playlist-skin5 .playlist-item-btn button {
  background: var(--smp-button-bg-color, #fff) !important;
}
.podcast-player + .smp-playlist.smp-playlist-skin5 .playlist-item-btn button span {
  color: var(--smp-button-color, #6861FF) !important;
}
.podcast-player + .smp-playlist.smp-playlist-skin5 .playlist-item-btn button svg path {
  fill: var(--smp-button-color, #6861FF) !important;
}

/*--------- popup player ---------*/
.smp-popup-player-wrap {
  font-family: "Roboto", sans-serif;
}

/*-------- progressbar ----------*/
.smp-progressbar {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  height: 40px;
  padding: 0;
  gap: 8px;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.smp-progressbar.video-player {
  height: 1px;
}
.smp-progressbar.video-player .progress-slider .progress-fill,
.smp-progressbar.video-player .progress-slider .progress-track {
  border-radius: 0;
}
.smp-progressbar.video-player .progress-slider .progress-handle {
  transition: transform 0.1s ease, box-shadow 0.1s ease;
  height: 14px;
  width: 14px;
}
.smp-progressbar.video-player .progress-slider .progress-handle.active {
  box-shadow: 0 0 4px 2px #d3d3d3;
}
.smp-progressbar .track-time-duration {
  color: var(--smp-button-color);
  font-size: 11px;
  font-family: var(--smp-font-family);
}
.smp-progressbar .progress-slider {
  position: relative;
  width: 100%;
  height: 20px;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.smp-progressbar .progress-slider .progress-bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: pointer;
  z-index: 10;
}
.smp-progressbar .progress-slider .progress-handle {
  position: absolute;
  top: 50%;
  left: var(--smp-progress);
  transform: translate(-50%, -50%);
  width: 14px;
  height: 14px;
  background-color: #0056d7;
  border-radius: 50% !important;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  opacity: 1;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 5;
}
.smp-progressbar .progress-slider .progress-handle.active {
  box-shadow: 0 0 4px 2px #d3d3d3;
}
.smp-progressbar .progress-slider .progress-track {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  height: 6px;
  background-color: #fff;
  border-radius: 2px;
  overflow: hidden;
}
.smp-progressbar .progress-slider .progress-fill {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: var(--smp-progress);
  height: 6px;
  background-color: #0056d7;
  border-radius: 2px;
  transition: width 0.1s ease;
}
.smp-progressbar .track-total-duration {
  color: var(--smp-button-color);
  font-size: 11px;
  font-family: var(--smp-font-family);
}
.smp-progressbar:focus-visible .progress-slider {
  outline: 2px dashed var(--smp-text-color);
}
@media (max-width: 768px) {
  .smp-progressbar {
    padding: 0 5px;
  }
  .smp-progressbar .progress-time {
    font-size: 10px;
    min-width: 30px;
  }
}

.smp.skin0.audio-player.shortcode,
.smp.skin0.audio-player.popup {
  border-radius: var(--smp-border-radius, 5px);
  padding: 24px 10px 24px;
  box-shadow: var(--smp-box-shadow, none);
}
.smp.skin0.audio-player.shortcode.playlist-active,
.smp.skin0.audio-player.popup.playlist-active {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  box-shadow: none;
}
.smp.skin0.audio-player.shortcode + .smp-playlist,
.smp.skin0.audio-player.popup + .smp-playlist {
  background: var(--smp-playlist-bg-color, #ffd3e4);
  padding: 0 16px 16px;
}
.smp.skin0.audio-player.shortcode + .smp-playlist .smp-playlist__header-search input::-moz-placeholder, .smp.skin0.audio-player.popup + .smp-playlist .smp-playlist__header-search input::-moz-placeholder {
  color: var(--smp-text-color, #5c637e);
}
.smp.skin0.audio-player.shortcode + .smp-playlist .smp-playlist__header-search input::placeholder,
.smp.skin0.audio-player.popup + .smp-playlist .smp-playlist__header-search input::placeholder {
  color: var(--smp-text-color, #5c637e);
}
.smp.skin0.audio-player.shortcode + .smp-playlist .smp-playlist__header-search svg,
.smp.skin0.audio-player.shortcode + .smp-playlist .smp-playlist__header-search path,
.smp.skin0.audio-player.popup + .smp-playlist .smp-playlist__header-search svg,
.smp.skin0.audio-player.popup + .smp-playlist .smp-playlist__header-search path {
  stroke: var(--smp-text-color, #5c637e);
}
.smp.skin0.audio-player.shortcode + .smp-playlist .smp-playlist__header-duration,
.smp.skin0.audio-player.popup + .smp-playlist .smp-playlist__header-duration {
  color: var(--smp-text-color, #5c637e);
}
.smp.skin0.audio-player.shortcode .smp-details-wrap,
.smp.skin0.audio-player.popup .smp-details-wrap {
  display: flex;
  gap: 10px;
  width: 100%;
}
.smp.skin0.audio-player.shortcode .smp-details-wrap img,
.smp.skin0.audio-player.popup .smp-details-wrap img {
  margin: 0;
  width: 75px;
  height: 75px;
  border-radius: 50%;
}
.smp.skin0.audio-player.shortcode .smp-details-wrap .smp-details,
.smp.skin0.audio-player.popup .smp-details-wrap .smp-details {
  flex-direction: var(--smp-alignment, column);
  align-items: flex-start;
  justify-content: center;
  position: relative;
}
.smp.skin0.audio-player.shortcode .smp-details-wrap .smp-details img,
.smp.skin0.audio-player.popup .smp-details-wrap .smp-details img {
  max-width: 75px;
  margin: 0 auto 25px;
  border-radius: 50%;
}
.smp.skin0.audio-player.shortcode .smp-details-wrap .smp-details .player-meta-wrap,
.smp.skin0.audio-player.popup .smp-details-wrap .smp-details .player-meta-wrap {
  color: var(--smp-text-color, #5c637e);
  margin: 0;
  text-align: var(--smp-text-alignment, left);
}
.smp.skin0.audio-player.shortcode .smp-details-wrap .smp-details .player-meta-wrap .smp-title,
.smp.skin0.audio-player.popup .smp-details-wrap .smp-details .player-meta-wrap .smp-title {
  font-family: var(--smp-font-family);
  font-size: var(--smp-font-size, 16px);
  font-weight: var(--smp-font-weight, 700);
  text-align: var(--smp-text-alignment, left);
  line-height: var(--smp-line-height, 18px);
  letter-spacing: var(--smp-letter-spacing, 1px);
  margin-bottom: 4px;
}
.smp.skin0.audio-player.shortcode .smp-details-wrap .smp-details .player-meta-wrap .smp-meta,
.smp.skin0.audio-player.popup .smp-details-wrap .smp-details .player-meta-wrap .smp-meta {
  font-size: 10px;
  font-family: var(--smp-font-family);
}
.smp.skin0.audio-player.shortcode .smp-controls,
.smp.skin0.audio-player.popup .smp-controls {
  margin-top: 40px;
  display: block;
}
.smp.skin0.audio-player.shortcode .smp-controls .smp-progressbar,
.smp.skin0.audio-player.popup .smp-controls .smp-progressbar {
  height: 0;
  width: 90%;
  gap: 12px;
  margin: 0 auto 15px;
}
.smp.skin0.audio-player.shortcode .smp-controls .smp-progressbar .track-time-duration,
.smp.skin0.audio-player.popup .smp-controls .smp-progressbar .track-time-duration {
  font-size: 12px;
}
.smp.skin0.audio-player.shortcode .smp-controls .smp-progressbar .track-total-duration,
.smp.skin0.audio-player.popup .smp-controls .smp-progressbar .track-total-duration {
  font-size: 12px;
}
.smp.skin0.audio-player.shortcode .smp-controls .smp-progressbar .progress-slider .progress-track,
.smp.skin0.audio-player.popup .smp-controls .smp-progressbar .progress-slider .progress-track {
  background-color: var(--smp-progressbar-bg-color, #fff);
}
.smp.skin0.audio-player.shortcode .smp-controls .smp-progressbar .progress-slider .progress-fill,
.smp.skin0.audio-player.popup .smp-controls .smp-progressbar .progress-slider .progress-fill {
  background-color: var(--smp-progressbar-fill-color, #5c637e);
}
.smp.skin0.audio-player.shortcode .smp-controls .smp-progressbar .progress-slider .progress-handle,
.smp.skin0.audio-player.popup .smp-controls .smp-progressbar .progress-slider .progress-handle {
  border-width: var(--smp-progressbar-handle-border-size, 3px);
  border-style: var(--smp-progressbar-handle-border-style, solid);
  border-color: var(--smp-progressbar-handle-border-color, #5c637e);
  background-color: var(--smp-progressbar-handle-color, #fff);
}
.smp.skin0.audio-player.shortcode .smp-controls .controls-wrap,
.smp.skin0.audio-player.popup .smp-controls .controls-wrap {
  width: 90%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.smp.skin0.audio-player.shortcode .smp-controls .controls-wrap button,
.smp.skin0.audio-player.popup .smp-controls .controls-wrap button {
  padding: 10px !important;
  background: var(--smp-button-bg-color);
  border: var(--smp-button-border-size, 1px) var(--smp-button-border-style, solid) var(--smp-button-border-color, #5c637e);
  border-radius: var(--smp-button-border-radius, 50px);
}
.smp.skin0.audio-player.shortcode .smp-controls .controls-wrap button.smp-volume .volume-slider,
.smp.skin0.audio-player.popup .smp-controls .controls-wrap button.smp-volume .volume-slider {
  background: rgba(34, 34, 34, 0.8980392157);
}
.smp.skin0.audio-player.shortcode .smp-controls .controls-wrap button.smp-volume:hover .volume-icon svg,
.smp.skin0.audio-player.popup .smp-controls .controls-wrap button.smp-volume:hover .volume-icon svg {
  color: #fff !important;
}
.smp.skin0.audio-player.shortcode .smp-controls .controls-wrap button svg,
.smp.skin0.audio-player.popup .smp-controls .controls-wrap button svg {
  width: 15px;
  height: 15px;
  color: var(--smp-button-color, #5c637e);
}

.smp-playlist.smp-playlist-skin0.audio-player {
  width: var(--smp-width);
  background: var(--smp--playlist-bg-color, #ffd3e4);
  box-shadow: var(--smp-box-shadow, none);
  border-bottom-left-radius: var(--smp-border-radius, 5px);
  border-bottom-right-radius: var(--smp-border-radius, 5px);
}
.smp-playlist.smp-playlist-skin0.audio-player .playlist-item span {
  color: var(--smp-text-color, #5c637e);
}
.smp-playlist.smp-playlist-skin0.audio-player .playlist-item button svg {
  color: #fff;
}

.smp.skin1.popup {
  width: var(--smp-width);
  display: block;
  margin: 0 auto;
}

.smp.skin1.audio-player.shortcode,
.smp.skin1.audio-player.popup {
  border-radius: var(--smp-border-radius, 5px);
  padding: 24px 5px 24px;
  box-shadow: var(--smp-box-shadow);
}
.smp.skin1.audio-player.shortcode.playlist-active,
.smp.skin1.audio-player.popup.playlist-active {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  box-shadow: none;
  padding-bottom: 0;
}
.smp.skin1.audio-player.shortcode .smp-details,
.smp.skin1.audio-player.popup .smp-details {
  flex-direction: column;
  position: relative;
}
.smp.skin1.audio-player.shortcode .smp-details img,
.smp.skin1.audio-player.popup .smp-details img {
  width: 75px;
  height: 75px;
  margin: 0 auto 25px;
  border-radius: 50%;
}
.smp.skin1.audio-player.shortcode .smp-details .player-meta-wrap,
.smp.skin1.audio-player.popup .smp-details .player-meta-wrap {
  color: var(--smp-text-color, #5c637e);
  margin: 0 10px;
}
.smp.skin1.audio-player.shortcode .smp-details .player-meta-wrap .smp-title,
.smp.skin1.audio-player.popup .smp-details .player-meta-wrap .smp-title {
  font-family: var(--smp-font-family);
  font-size: var(--smp-font-size, 16px);
  font-weight: var(--smp-font-weight, 700);
  text-align: var(--smp-text-alignment, center);
  line-height: var(--smp-line-height, 18px);
  letter-spacing: var(--smp-letter-spacing, 1px);
  margin-bottom: 4px;
}
.smp.skin1.audio-player.shortcode .smp-details .player-meta-wrap .smp-meta,
.smp.skin1.audio-player.popup .smp-details .player-meta-wrap .smp-meta {
  font-size: 10px;
  text-align: var(--smp-text-alignment, center);
  font-family: var(--smp-font-family);
}
.smp.skin1.audio-player.shortcode .smp-controls,
.smp.skin1.audio-player.popup .smp-controls {
  margin-top: 40px;
  display: block;
}
.smp.skin1.audio-player.shortcode .smp-controls .smp-progressbar,
.smp.skin1.audio-player.popup .smp-controls .smp-progressbar {
  height: 0;
  width: 90%;
  gap: 12px;
  margin: 0 auto 15px;
}
.smp.skin1.audio-player.shortcode .smp-controls .smp-progressbar .track-time-duration,
.smp.skin1.audio-player.popup .smp-controls .smp-progressbar .track-time-duration {
  font-size: 12px;
}
.smp.skin1.audio-player.shortcode .smp-controls .smp-progressbar .track-total-duration,
.smp.skin1.audio-player.popup .smp-controls .smp-progressbar .track-total-duration {
  font-size: 12px;
}
.smp.skin1.audio-player.shortcode .smp-controls .smp-progressbar .progress-slider .progress-track,
.smp.skin1.audio-player.popup .smp-controls .smp-progressbar .progress-slider .progress-track {
  background-color: var(--smp-progressbar-bg-color, #fff);
}
.smp.skin1.audio-player.shortcode .smp-controls .smp-progressbar .progress-slider .progress-fill,
.smp.skin1.audio-player.popup .smp-controls .smp-progressbar .progress-slider .progress-fill {
  background-color: var(--smp-progressbar-fill-color, #5c637e);
}
.smp.skin1.audio-player.shortcode .smp-controls .smp-progressbar .progress-slider .progress-handle,
.smp.skin1.audio-player.popup .smp-controls .smp-progressbar .progress-slider .progress-handle {
  border-width: var(--smp-progressbar-handle-border-size, 3px);
  border-style: var(--smp-progressbar-handle-border-style, solid);
  border-color: var(--smp-progressbar-handle-border-color, #5c637e);
  background-color: var(--smp-progressbar-handle-color, #fff);
}
.smp.skin1.audio-player.shortcode .smp-controls .controls-wrap,
.smp.skin1.audio-player.popup .smp-controls .controls-wrap {
  width: 90%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.smp.skin1.audio-player.shortcode .smp-controls .controls-wrap button,
.smp.skin1.audio-player.popup .smp-controls .controls-wrap button {
  padding: 10px !important;
  background: var(--smp-button-bg-color);
  border: var(--smp-button-border-size) var(--smp-button-border-style) var(--smp-button-border-color);
  border-radius: var(--smp-button-border-radius);
}
.smp.skin1.audio-player.shortcode .smp-controls .controls-wrap button.smp-play-pause,
.smp.skin1.audio-player.popup .smp-controls .controls-wrap button.smp-play-pause {
  background-color: var(--smp-play-pause-button-bg-color, #5c637e);
  border-radius: 50%;
  padding: 10px !important;
}
.smp.skin1.audio-player.shortcode .smp-controls .controls-wrap button.smp-play-pause svg,
.smp.skin1.audio-player.popup .smp-controls .controls-wrap button.smp-play-pause svg {
  width: 15px;
  height: 15px;
  color: var(--smp-play-pause-button-color, #fff);
}
.smp.skin1.audio-player.shortcode .smp-controls .controls-wrap button.smp-volume .volume-slider,
.smp.skin1.audio-player.popup .smp-controls .controls-wrap button.smp-volume .volume-slider {
  background: rgba(34, 34, 34, 0.8980392157);
}
.smp.skin1.audio-player.shortcode .smp-controls .controls-wrap button svg,
.smp.skin1.audio-player.popup .smp-controls .controls-wrap button svg {
  width: 15px;
  height: 15px;
  color: var(--smp-button-color, #5c637e);
}

.smp-playlist.smp-playlist-skin1.audio-player {
  width: var(--smp-width);
  background: var(--smp-playlist-bg-color, rgba(0, 47, 255, 0.1019607843));
  border-bottom-left-radius: var(--smp-border-radius, 5px);
  border-bottom-right-radius: var(--smp-border-radius, 5px);
  box-shadow: var(--smp-box-shadow, none);
  padding: 0 16px 16px;
}
.smp-playlist.smp-playlist-skin1.audio-player .smp-playlist__header-search input::-moz-placeholder {
  color: var(--smp-text-color, #5c637e);
}
.smp-playlist.smp-playlist-skin1.audio-player .smp-playlist__header-search input::placeholder {
  color: var(--smp-text-color, #5c637e);
}
.smp-playlist.smp-playlist-skin1.audio-player .smp-playlist__header-duration {
  color: var(--smp-text-color, #5c637e) !important;
}
.smp-playlist.smp-playlist-skin1.audio-player .playlist-item span {
  color: var(--smp-text-color, #5c637e) !important;
}
.smp-playlist.smp-playlist-skin1.audio-player .playlist-item button svg {
  color: #fff;
}

.smp.skin1.popup {
  width: var(--smp-width);
  display: block;
  margin: 0 auto;
}

.smp.audio-player.skin2.shortcode,
.smp.audio-player.skin2.popup {
  border: none;
  background: var(--smp-bg-color, #5c637e) no-repeat center/cover;
  box-shadow: var(--smp-box-shadow);
}
.smp.audio-player.skin2.shortcode.playlist-active,
.smp.audio-player.skin2.popup.playlist-active {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  box-shadow: none;
}
.smp.audio-player.skin2.shortcode .smp-details,
.smp.audio-player.skin2.popup .smp-details {
  flex-direction: column;
  position: relative;
  border-top-right-radius: var(--smp-border-radius, 5px);
  border-top-left-radius: var(--smp-border-radius, 5px);
  padding: 20px 20px 0;
}
.smp.audio-player.skin2.shortcode .smp-details img,
.smp.audio-player.skin2.popup .smp-details img {
  width: 75px;
  margin: 0 0 10px 0;
  border: 2px solid #fff;
}
.smp.audio-player.skin2.shortcode .smp-details .player-meta-wrap,
.smp.audio-player.skin2.popup .smp-details .player-meta-wrap {
  color: var(--smp-text-color, #fff);
}
.smp.audio-player.skin2.shortcode .smp-details .player-meta-wrap .smp-title,
.smp.audio-player.skin2.popup .smp-details .player-meta-wrap .smp-title {
  font-family: var(--smp-font-family);
  font-size: var(--smp-font-size, 16px);
  font-weight: var(--smp-font-weight, 700);
  text-align: var(--smp-text-alignment, center);
  line-height: var(--smp-line-height, 18px);
  letter-spacing: var(--smp-letter-spacing, 1px);
  margin-bottom: 4px;
}
.smp.audio-player.skin2.shortcode .smp-details .player-meta-wrap .smp-meta,
.smp.audio-player.skin2.popup .smp-details .player-meta-wrap .smp-meta {
  font-size: 12px;
  font-family: var(--smp-font-family);
}
.smp.audio-player.skin2.shortcode .smp-details .smp-title,
.smp.audio-player.skin2.popup .smp-details .smp-title {
  color: var(--smp-text-color, #fff);
  margin-bottom: 10px;
}
.smp.audio-player.skin2.shortcode .smp-controls,
.smp.audio-player.skin2.popup .smp-controls {
  padding: 14px 20px;
  border-bottom-left-radius: var(--smp-border-radius, 5px);
  border-bottom-right-radius: var(--smp-border-radius, 5px);
}
.smp.audio-player.skin2.shortcode .smp-controls button,
.smp.audio-player.skin2.popup .smp-controls button {
  padding: 10px !important;
  background: var(--smp-button-bg-color);
  border: var(--smp-button-border-size, 1px) var(--smp-button-border-style, solid) var(--smp-button-border-color, #fff);
  border-radius: var(--smp-button-border-radius, 50px);
}
.smp.audio-player.skin2.shortcode .smp-controls button svg,
.smp.audio-player.skin2.popup .smp-controls button svg {
  width: 15px;
  height: 15px;
  color: var(--smp-button-color, #fff);
}
.smp.audio-player.skin2.shortcode .smp-controls .smp-progressbar .track-time-duration,
.smp.audio-player.skin2.shortcode .smp-controls .smp-progressbar .track-total-duration,
.smp.audio-player.skin2.popup .smp-controls .smp-progressbar .track-time-duration,
.smp.audio-player.skin2.popup .smp-controls .smp-progressbar .track-total-duration {
  color: var(--smp-text-color, #fff);
}
.smp.audio-player.skin2.shortcode .smp-controls .smp-progressbar .progress-slider .progress-track,
.smp.audio-player.skin2.popup .smp-controls .smp-progressbar .progress-slider .progress-track {
  background-color: var(--smp-progressbar-bg-color, #fff);
}
.smp.audio-player.skin2.shortcode .smp-controls .smp-progressbar .progress-slider .progress-fill,
.smp.audio-player.skin2.popup .smp-controls .smp-progressbar .progress-slider .progress-fill {
  background-color: var(--smp-progressbar-fill-color, #0033fe);
}
.smp.audio-player.skin2.shortcode .smp-controls .smp-progressbar .progress-slider .progress-handle,
.smp.audio-player.skin2.popup .smp-controls .smp-progressbar .progress-slider .progress-handle {
  border-width: var(--smp-progressbar-handle-border-size, 3px);
  border-style: var(--smp-progressbar-handle-border-style, solid);
  border-color: var(--smp-progressbar-handle-border-color, #fff);
  background-color: var(--smp-progressbar-handle-color, #0033fe);
}
.smp.audio-player.skin2.shortcode.popup,
.smp.audio-player.skin2.popup.popup {
  min-width: 300px;
}

.smp-playlist.smp-playlist-skin2.audio-player {
  width: var(--smp-width);
  background: var(--smp-playlist-bg-color);
  padding: 0 16px 16px;
  border-bottom-left-radius: var(--smp-border-radius, 5px);
  border-bottom-right-radius: var(--smp-border-radius, 5px);
  box-shadow: var(--smp-box-shadow);
}

.smp.skin2.popup {
  display: block;
  margin: 0 auto;
}

.smp.audio-player.skin3.shortcode,
.smp.audio-player.skin3.popup {
  border-radius: var(--smp-border-radius, 5px);
  padding: 25px 5px 30px 5px;
  box-shadow: var(--smp-box-shadow);
}
.smp.audio-player.skin3.shortcode.playlist-active,
.smp.audio-player.skin3.popup.playlist-active {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  box-shadow: none;
}
.smp.audio-player.skin3.shortcode.playlist-active + .smp-playlist-skin3,
.smp.audio-player.skin3.popup.playlist-active + .smp-playlist-skin3 {
  padding: 16px;
}
.smp.audio-player.skin3.shortcode .smp-details,
.smp.audio-player.skin3.popup .smp-details {
  flex-direction: var(--smp-alignment, column);
  position: relative;
}
.smp.audio-player.skin3.shortcode .smp-details .smp-thumbnail,
.smp.audio-player.skin3.popup .smp-details .smp-thumbnail {
  height: 120px;
  width: 120px;
  margin: 0 0 25px;
  border-radius: 50%;
  border: 1px solid #fff;
  background: lightgray 50%/cover no-repeat;
}
.smp.audio-player.skin3.shortcode .smp-details .player-meta-wrap,
.smp.audio-player.skin3.popup .smp-details .player-meta-wrap {
  color: var(--smp-text-color, #5c637e);
  margin: 0 10px;
}
.smp.audio-player.skin3.shortcode .smp-details .player-meta-wrap .smp-title,
.smp.audio-player.skin3.popup .smp-details .player-meta-wrap .smp-title {
  font-family: var(--smp-font-family);
  font-size: var(--smp-font-size, 16px);
  font-weight: var(--smp-font-weight, 700);
  text-align: var(--smp-text-alignment, center);
  line-height: var(--smp-line-height, 18px);
  letter-spacing: var(--smp-letter-spacing, 1px);
  margin-bottom: 4px;
  margin-top: 18px;
}
.smp.audio-player.skin3.shortcode .smp-details .player-meta-wrap .smp-meta,
.smp.audio-player.skin3.popup .smp-details .player-meta-wrap .smp-meta {
  font-family: var(--smp-font-family);
  font-size: 10px;
  text-align: var(--smp-text-alignment, center);
}
.smp.audio-player.skin3.shortcode .smp-controls,
.smp.audio-player.skin3.popup .smp-controls {
  margin-top: 14px;
  display: block;
}
.smp.audio-player.skin3.shortcode .smp-controls .controls-wrap,
.smp.audio-player.skin3.popup .smp-controls .controls-wrap {
  width: 90%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 auto;
}
.smp.audio-player.skin3.shortcode .smp-controls .controls-wrap button,
.smp.audio-player.skin3.popup .smp-controls .controls-wrap button {
  padding: 10px !important;
  background: var(--smp-button-bg-color);
  border: var(--smp-button-border-size, 1px) var(--smp-button-border-style, solid) var(--smp-button-border-color, #fff);
  border-radius: var(--smp-button-border-radius, 50px);
}
.smp.audio-player.skin3.shortcode .smp-controls .controls-wrap button svg,
.smp.audio-player.skin3.popup .smp-controls .controls-wrap button svg {
  width: 15px;
  height: 15px;
  color: var(--smp-button-color, #fff);
}
.smp.audio-player.skin3.shortcode .smp-controls .smp-progressbar,
.smp.audio-player.skin3.popup .smp-controls .smp-progressbar {
  width: 95%;
  gap: 12px;
  padding: 0 10px;
  margin: 0 auto 20px auto;
  border-radius: 36px;
  border: 1px solid #fff;
}
.smp.audio-player.skin3.shortcode .smp-controls .smp-progressbar .track-time-duration,
.smp.audio-player.skin3.shortcode .smp-controls .smp-progressbar .track-total-duration,
.smp.audio-player.skin3.popup .smp-controls .smp-progressbar .track-time-duration,
.smp.audio-player.skin3.popup .smp-controls .smp-progressbar .track-total-duration {
  color: var(--smp-text-color, #fff);
  font-size: 12px;
}
.smp.audio-player.skin3.shortcode .smp-controls .smp-progressbar .progress-slider .progress-track,
.smp.audio-player.skin3.popup .smp-controls .smp-progressbar .progress-slider .progress-track {
  background-color: var(--smp-progressbar-bg-color, #fff);
}
.smp.audio-player.skin3.shortcode .smp-controls .smp-progressbar .progress-slider .progress-fill,
.smp.audio-player.skin3.popup .smp-controls .smp-progressbar .progress-slider .progress-fill {
  background-color: var(--smp-progressbar-fill-color, #0056d7);
}
.smp.audio-player.skin3.shortcode .smp-controls .smp-progressbar .progress-slider .progress-handle,
.smp.audio-player.skin3.popup .smp-controls .smp-progressbar .progress-slider .progress-handle {
  border-width: var(--smp-progressbar-handle-border-size, 0px);
  border-style: var(--smp-progressbar-handle-border-style, solid);
  border-color: var(--smp-progressbar-handle-border-color, #0056d7);
  background-color: var(--smp-progressbar-handle-color, #0056d7);
}

.smp-playlist.smp-playlist-skin3.audio-player {
  width: var(--smp-width);
  background: var(--smp-playlist-bg-color, rgba(34, 34, 34, 0.9019607843));
  border-bottom-left-radius: var(--smp-border-radius, 5px);
  border-bottom-right-radius: var(--smp-border-radius, 5px);
  box-shadow: var(--smp-box-shadow, none);
}
.smp-playlist.smp-playlist-skin3.audio-player .playlist-item span {
  color: #fff;
}
.smp-playlist.smp-playlist-skin3.audio-player .playlist-item button svg {
  color: #fff;
}

.smp.skin3.popup {
  display: block;
  margin: 0 auto;
}

.smp.skin4.audio-player.shortcode,
.smp.skin4.audio-player.popup {
  border-radius: var(--smp-border-radius, 5px);
  padding: 16px;
  box-shadow: var(--smp-box-shadow);
}
.smp.skin4.audio-player.shortcode.playlist-active,
.smp.skin4.audio-player.popup.playlist-active {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  box-shadow: none;
}
.smp.skin4.audio-player.shortcode .smp-details,
.smp.skin4.audio-player.popup .smp-details {
  flex-direction: var(--smp-alignment, column);
  position: relative;
  align-items: flex-start !important;
}
.smp.skin4.audio-player.shortcode .smp-details .player-meta-wrap,
.smp.skin4.audio-player.popup .smp-details .player-meta-wrap {
  color: var(--smp-text-color, #5c637e);
  margin: 0 10px;
  text-align: left;
}
.smp.skin4.audio-player.shortcode .smp-details .player-meta-wrap .smp-title,
.smp.skin4.audio-player.popup .smp-details .player-meta-wrap .smp-title {
  font-family: var(--smp-font-family);
  font-size: var(--smp-font-size, 16px);
  font-weight: var(--smp-font-weight, 700);
  text-align: var(--smp-text-alignment, left);
  line-height: var(--smp-line-height, 18px);
  letter-spacing: var(--smp-letter-spacing, 1px);
  margin-bottom: 4px;
}
.smp.skin4.audio-player.shortcode .smp-details .player-meta-wrap .smp-meta,
.smp.skin4.audio-player.popup .smp-details .player-meta-wrap .smp-meta {
  font-size: 10px;
  font-family: var(--smp-font-family);
  text-align: var(--smp-text-alignment, left);
}
.smp.skin4.audio-player.shortcode .smp-controls,
.smp.skin4.audio-player.popup .smp-controls {
  margin-top: 40px;
  display: block;
}
.smp.skin4.audio-player.shortcode .smp-controls .smp-progressbar,
.smp.skin4.audio-player.popup .smp-controls .smp-progressbar {
  height: 0;
  width: 90%;
  gap: 12px;
  margin: 0 auto 20px;
}
.smp.skin4.audio-player.shortcode .smp-controls .smp-progressbar .track-time-duration,
.smp.skin4.audio-player.popup .smp-controls .smp-progressbar .track-time-duration {
  font-size: 12px;
  color: var(--smp-button-color, #fff);
}
.smp.skin4.audio-player.shortcode .smp-controls .smp-progressbar .track-total-duration,
.smp.skin4.audio-player.popup .smp-controls .smp-progressbar .track-total-duration {
  font-size: 12px;
  color: var(--smp-button-color, #fff);
}
.smp.skin4.audio-player.shortcode .smp-controls .smp-progressbar .progress-slider .progress-track,
.smp.skin4.audio-player.popup .smp-controls .smp-progressbar .progress-slider .progress-track {
  background-color: var(--smp-progressbar-bg-color, #fff);
}
.smp.skin4.audio-player.shortcode .smp-controls .smp-progressbar .progress-slider .progress-fill,
.smp.skin4.audio-player.popup .smp-controls .smp-progressbar .progress-slider .progress-fill {
  background-color: var(--smp-progressbar-fill-color, #0056d7);
}
.smp.skin4.audio-player.shortcode .smp-controls .smp-progressbar .progress-slider .progress-handle,
.smp.skin4.audio-player.popup .smp-controls .smp-progressbar .progress-slider .progress-handle {
  border-width: var(--smp-progressbar-handle-border-size, 0px);
  border-style: var(--smp-progressbar-handle-border-style, solid);
  border-color: var(--smp-progressbar-handle-border-color, #0056d7);
  background-color: var(--smp-progressbar-handle-color, #0056d7);
}
.smp.skin4.audio-player.shortcode .smp-controls .controls-wrap,
.smp.skin4.audio-player.popup .smp-controls .controls-wrap {
  width: 90%;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.6);
  padding-top: 14px;
}
.smp.skin4.audio-player.shortcode .smp-controls .controls-wrap button,
.smp.skin4.audio-player.popup .smp-controls .controls-wrap button {
  padding: 10px !important;
  background: var(--smp-button-bg-color);
  border: var(--smp-button-border-size, 1px) var(--smp-button-border-style, solid) var(--smp-button-border-color, #fff);
  border-radius: var(--smp-button-border-radius, 8px);
}
.smp.skin4.audio-player.shortcode .smp-controls .controls-wrap button svg,
.smp.skin4.audio-player.popup .smp-controls .controls-wrap button svg {
  width: 15px;
  height: 15px;
  color: var(--smp-button-color, #fff);
}

.smp-playlist.smp-playlist-skin4.audio-player {
  width: var(--smp-width);
  background: var(--smp-playlist-bg-color, linear-gradient(0deg, #070415 0%, #093cb1 100%));
  border-bottom-left-radius: var(--smp-border-radius, 5px);
  border-bottom-right-radius: var(--smp-border-radius, 5px);
  box-shadow: var(--smp-box-shadow, none);
}
.smp-playlist.smp-playlist-skin4.audio-player .playlist-item span {
  color: #fff;
  font-family: var(--smp-font-family);
}
.smp-playlist.smp-playlist-skin4.audio-player .playlist-item button svg {
  color: #fff;
}

.smp.skin4.popup {
  display: block;
  margin: 0 auto;
}

.smp.audio-player.skin5.shortcode,
.smp.audio-player.skin5.popup {
  border-radius: var(--smp-border-radius, 5px);
  padding: 16px;
  box-shadow: var(--smp-box-shadow);
}
.smp.audio-player.skin5.shortcode.playlist-active,
.smp.audio-player.skin5.popup.playlist-active {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.smp.audio-player.skin5.shortcode .smp-details,
.smp.audio-player.skin5.popup .smp-details {
  flex-direction: var(--smp-alignment, column);
  position: relative;
  align-items: flex-start !important;
}
.smp.audio-player.skin5.shortcode .smp-details .player-meta-wrap,
.smp.audio-player.skin5.popup .smp-details .player-meta-wrap {
  color: var(--smp-text-color, #fff);
  margin: 0 10px;
  text-align: var(--smp-text-alignment, left);
}
.smp.audio-player.skin5.shortcode .smp-details .player-meta-wrap .smp-title,
.smp.audio-player.skin5.popup .smp-details .player-meta-wrap .smp-title {
  font-family: var(--smp-font-family);
  font-size: var(--smp-font-size, 16px);
  font-weight: var(--smp-font-weight, 700);
  text-align: var(--smp-text-alignment, left);
  line-height: var(--smp-line-height, 18px);
  letter-spacing: var(--smp-letter-spacing, 1px);
  margin-bottom: 4px;
}
.smp.audio-player.skin5.shortcode .smp-details .player-meta-wrap .smp-meta,
.smp.audio-player.skin5.popup .smp-details .player-meta-wrap .smp-meta {
  font-family: var(--smp-font-family);
  font-size: 10px;
  text-align: var(--smp-text-alignment, left);
}
.smp.audio-player.skin5.shortcode .smp-controls,
.smp.audio-player.skin5.popup .smp-controls {
  margin-top: 18px;
  display: block;
}
.smp.audio-player.skin5.shortcode .smp-controls .thumbnail-controls,
.smp.audio-player.skin5.popup .smp-controls .thumbnail-controls {
  display: flex;
  justify-content: start;
  gap: 14px;
}
.smp.audio-player.skin5.shortcode .smp-controls .thumbnail-controls .controls,
.smp.audio-player.skin5.popup .smp-controls .thumbnail-controls .controls {
  width: 10%;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  gap: 10px;
}
.smp.audio-player.skin5.shortcode .smp-controls .thumbnail-controls .controls button,
.smp.audio-player.skin5.popup .smp-controls .thumbnail-controls .controls button {
  padding: 10px !important;
  background: var(--smp-button-bg-color);
  border: var(--smp-button-border-size, 1px) var(--smp-button-border-style, solid) var(--smp-button-border-color, #fff);
  border-radius: var(--smp-button-border-radius, 8px);
}
.smp.audio-player.skin5.shortcode .smp-controls .thumbnail-controls .controls button svg,
.smp.audio-player.skin5.popup .smp-controls .thumbnail-controls .controls button svg {
  width: 15px;
  height: 15px;
  color: var(--smp-button-color, #fff);
}
.smp.audio-player.skin5.shortcode .smp-controls .thumbnail-controls .thumbnail,
.smp.audio-player.skin5.popup .smp-controls .thumbnail-controls .thumbnail {
  width: 90%;
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: end;
}
.smp.audio-player.skin5.shortcode .smp-controls .thumbnail-controls .thumbnail img,
.smp.audio-player.skin5.popup .smp-controls .thumbnail-controls .thumbnail img {
  display: block;
  margin: 0 auto 25px;
}
.smp.audio-player.skin5.shortcode .smp-controls .thumbnail-controls .thumbnail .smp-progressbar,
.smp.audio-player.skin5.popup .smp-controls .thumbnail-controls .thumbnail .smp-progressbar {
  height: 0;
  width: 90%;
  gap: 12px;
  margin: 0 auto 25px;
}
.smp.audio-player.skin5.shortcode .smp-controls .thumbnail-controls .thumbnail .smp-progressbar .progress-slider .progress-track,
.smp.audio-player.skin5.popup .smp-controls .thumbnail-controls .thumbnail .smp-progressbar .progress-slider .progress-track {
  background-color: var(--smp-progressbar-bg-color, #fff);
}
.smp.audio-player.skin5.shortcode .smp-controls .thumbnail-controls .thumbnail .smp-progressbar .progress-slider .progress-fill,
.smp.audio-player.skin5.popup .smp-controls .thumbnail-controls .thumbnail .smp-progressbar .progress-slider .progress-fill {
  background-color: var(--smp-progressbar-fill-color, #0056d7);
}
.smp.audio-player.skin5.shortcode .smp-controls .thumbnail-controls .thumbnail .smp-progressbar .progress-slider .progress-handle,
.smp.audio-player.skin5.popup .smp-controls .thumbnail-controls .thumbnail .smp-progressbar .progress-slider .progress-handle {
  border-width: var(--smp-progressbar-handle-border-size, 0px);
  border-style: var(--smp-progressbar-handle-border-style, solid);
  border-color: var(--smp-progressbar-handle-border-color, #0056d7);
  background-color: var(--smp-progressbar-handle-color, #0056d7);
}
.smp.audio-player.skin5.shortcode .smp-controls .controls-wrap,
.smp.audio-player.skin5.popup .smp-controls .controls-wrap {
  width: 90%;
  display: flex;
  justify-content: start;
  flex-wrap: wrap;
  gap: 15px;
}
.smp.audio-player.skin5.shortcode .smp-controls .controls-wrap button,
.smp.audio-player.skin5.popup .smp-controls .controls-wrap button {
  padding: 10px !important;
  background: var(--smp-button-bg-color);
  border: var(--smp-button-border-size, 1px) var(--smp-button-border-style, solid) var(--smp-button-border-color, #fff);
  border-radius: var(--smp-button-border-radius, 8px);
}
.smp.audio-player.skin5.shortcode .smp-controls .controls-wrap button svg,
.smp.audio-player.skin5.popup .smp-controls .controls-wrap button svg {
  width: 15px;
  height: 15px;
  color: var(--smp-button-color, #fff);
}

.smp-playlist.smp-playlist-skin5.audio-player {
  width: var(--smp-width);
  background: var(--smp-playlist-bg-color, #fd6b87);
  border-bottom-left-radius: var(--smp-border-radius, 5px);
  border-bottom-right-radius: var(--smp-border-radius, 5px);
  box-shadow: var(--smp-box-shadow, none);
}
.smp-playlist.smp-playlist-skin5.audio-player .playlist-item span {
  color: #fff;
}
.smp-playlist.smp-playlist-skin5.audio-player .playlist-item button svg {
  color: #fff;
}

.smp.skin5.popup {
  display: block;
  margin: 0 auto;
}
.smp.skin5.popup .smp-controls {
  margin-top: 18px;
  display: block;
}
.smp.skin5.popup .smp-controls .thumbnail-controls {
  display: flex;
  justify-content: start;
  gap: 14px;
}
.smp.skin5.popup .smp-controls .thumbnail-controls .controls {
  width: 10%;
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: end;
}
.smp.skin5.popup .smp-controls .thumbnail-controls .controls button {
  border: 1px solid var(--smp-button-color, #0056d7);
  border-radius: 8px;
  padding: 10px !important;
  margin-bottom: 15px;
}
.smp.skin5.popup .smp-controls .thumbnail-controls .controls button.smp-volume .volume-slider {
  background: rgba(34, 34, 34, 0.8980392157);
  width: 35px;
}
.smp.skin5.popup .smp-controls .thumbnail-controls .controls button.smp-volume .volume-slider-handle {
  left: 250%;
  width: 12px;
  height: 12px;
  margin: -12px;
}
.smp.skin5.popup .smp-controls .thumbnail-controls .controls button svg {
  width: 15px;
  height: 15px;
  color: var(--smp-button-color, #0056d7);
}
.smp.skin5.popup .smp-controls .thumbnail-controls .thumbnail {
  width: 90%;
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: end;
}
.smp.skin5.popup .smp-controls .thumbnail-controls .thumbnail img {
  display: block;
  margin: 0 auto 15px;
  width: 120px;
  height: 120px;
}
.smp.skin5.popup .smp-controls .thumbnail-controls .thumbnail .smp-progressbar {
  height: 0;
  width: 90%;
  gap: 12px;
  margin: 0 auto 25px;
}
.smp.skin5.popup .smp-controls .thumbnail-controls .thumbnail .smp-progressbar .track-time-duration {
  font-size: 12px;
}
.smp.skin5.popup .smp-controls .thumbnail-controls .thumbnail .smp-progressbar .track-total-duration {
  font-size: 12px;
}

.smp.audio-player.skin6.shortcode,
.smp.audio-player.skin6.popup {
  border-radius: var(--smp-border-radius, 5px);
  padding: 16px;
  box-shadow: var(--smp-box-shadow);
  margin-top: 50px;
}
.smp.audio-player.skin6.shortcode.playlist-active,
.smp.audio-player.skin6.popup.playlist-active {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  box-shadow: none;
}
.smp.audio-player.skin6.shortcode .smp-details,
.smp.audio-player.skin6.popup .smp-details {
  position: relative;
  flex-direction: var(--smp-alignment, column);
  margin-top: 25px;
}
.smp.audio-player.skin6.shortcode .smp-details .player-meta-wrap,
.smp.audio-player.skin6.popup .smp-details .player-meta-wrap {
  color: var(--smp-text-color, #5c637e);
  margin: 0 10px;
}
.smp.audio-player.skin6.shortcode .smp-details .player-meta-wrap .smp-title,
.smp.audio-player.skin6.popup .smp-details .player-meta-wrap .smp-title {
  font-family: var(--smp-font-family);
  font-size: var(--smp-font-size, 16px);
  font-weight: var(--smp-font-weight, 700);
  text-align: var(--smp-text-alignment, center);
  line-height: var(--smp-line-height, 18px);
  letter-spacing: var(--smp-letter-spacing, 1px);
  margin-bottom: 8px;
}
.smp.audio-player.skin6.shortcode .smp-details .player-meta-wrap .smp-meta,
.smp.audio-player.skin6.popup .smp-details .player-meta-wrap .smp-meta {
  font-family: var(--smp-font-family);
  font-size: 10px;
  text-align: var(--smp-text-alignment, center);
}
.smp.audio-player.skin6.shortcode .smp-controls,
.smp.audio-player.skin6.popup .smp-controls {
  margin-top: 40px;
  display: block;
}
.smp.audio-player.skin6.shortcode .smp-controls .smp-progressbar,
.smp.audio-player.skin6.popup .smp-controls .smp-progressbar {
  height: 0;
  gap: 12px;
  margin: 0 auto 20px;
}
.smp.audio-player.skin6.shortcode .smp-controls .smp-progressbar .track-time-duration,
.smp.audio-player.skin6.shortcode .smp-controls .smp-progressbar .track-total-duration,
.smp.audio-player.skin6.popup .smp-controls .smp-progressbar .track-time-duration,
.smp.audio-player.skin6.popup .smp-controls .smp-progressbar .track-total-duration {
  font-size: 12px;
  color: var(--smp-text-color, #fff);
}
.smp.audio-player.skin6.shortcode .smp-controls .smp-progressbar .progress-slider .progress-track,
.smp.audio-player.skin6.popup .smp-controls .smp-progressbar .progress-slider .progress-track {
  background-color: var(--smp-progressbar-bg-color, #fff);
}
.smp.audio-player.skin6.shortcode .smp-controls .smp-progressbar .progress-slider .progress-fill,
.smp.audio-player.skin6.popup .smp-controls .smp-progressbar .progress-slider .progress-fill {
  background-color: var(--smp-progressbar-fill-color, #0056d7);
}
.smp.audio-player.skin6.shortcode .smp-controls .smp-progressbar .progress-slider .progress-handle,
.smp.audio-player.skin6.popup .smp-controls .smp-progressbar .progress-slider .progress-handle {
  border-width: var(--smp-progressbar-handle-border-size, 0px);
  border-style: var(--smp-progressbar-handle-border-style, solid);
  border-color: var(--smp-progressbar-handle-border-color, #0056d7);
  background-color: var(--smp-progressbar-handle-color, #0056d7);
}
.smp.audio-player.skin6.shortcode .smp-controls .controls-wrap,
.smp.audio-player.skin6.popup .smp-controls .controls-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  align-items: center;
}
.smp.audio-player.skin6.shortcode .smp-controls .controls-wrap button,
.smp.audio-player.skin6.popup .smp-controls .controls-wrap button {
  padding: 10px !important;
  background: var(--smp-button-bg-color, #fff);
  border: var(--smp-button-border-size, 1px) var(--smp-button-border-style, solid) var(--smp-button-border-color, #fff);
  border-radius: var(--smp-button-border-radius, 50px);
}
.smp.audio-player.skin6.shortcode .smp-controls .controls-wrap button.smp-settings + .playback-speed-tooltip .playback-speed button,
.smp.audio-player.skin6.popup .smp-controls .controls-wrap button.smp-settings + .playback-speed-tooltip .playback-speed button {
  background: none;
}
.smp.audio-player.skin6.shortcode .smp-controls .controls-wrap button.smp-volume .volume-slider,
.smp.audio-player.skin6.popup .smp-controls .controls-wrap button.smp-volume .volume-slider {
  background: rgba(34, 34, 34, 0.8980392157);
}
.smp.audio-player.skin6.shortcode .smp-controls .controls-wrap button svg,
.smp.audio-player.skin6.popup .smp-controls .controls-wrap button svg {
  width: 15px;
  height: 15px;
  color: var(--smp-button-color, #5C637E);
}
.smp.audio-player.skin6.shortcode .smp-thumbnail,
.smp.audio-player.skin6.popup .smp-thumbnail {
  width: 120px;
  height: 120px;
  position: absolute;
  top: -60px;
  left: 16px;
  z-index: 99;
  background: #ffffff 50%/cover no-repeat;
}

.smp.audio-player.skin6.audio-player.audio-player + .smp-playlist.smp-playlist-skin6 {
  width: var(--smp-width);
  background: var(--smp-playlist-bg-color, rgba(34, 34, 34, 0.9019607843));
  border-bottom-left-radius: var(--smp-border-radius, 5px);
  border-bottom-right-radius: var(--smp-border-radius, 5px);
  box-shadow: var(--smp-box-shadow, none);
}
.smp.audio-player.skin6.audio-player.audio-player + .smp-playlist.smp-playlist-skin6 .playlist-item span {
  color: #fff;
}
.smp.audio-player.skin6.audio-player.audio-player + .smp-playlist.smp-playlist-skin6 .playlist-item button svg {
  color: #fff;
}

.smp.skin6.popup {
  display: block;
  margin: 80px auto 0;
}

.smp.audio-player.skin7.shortcode,
.smp.audio-player.skin7.popup {
  background: var(--smp-bg-color);
  border-radius: var(--smp-border-radius, 5px);
  padding: 16px;
  box-shadow: var(--smp-box-shadow);
}
.smp.audio-player.skin7.shortcode.playlist-active,
.smp.audio-player.skin7.popup.playlist-active {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.smp.audio-player.skin7.shortcode .smp-controls,
.smp.audio-player.skin7.popup .smp-controls {
  display: block;
}
.smp.audio-player.skin7.shortcode .smp-controls .smp-progressbar,
.smp.audio-player.skin7.popup .smp-controls .smp-progressbar {
  height: 0;
  gap: 12px;
  margin: 40px auto 20px;
}
.smp.audio-player.skin7.shortcode .smp-controls .smp-progressbar .progress-slider .progress-track,
.smp.audio-player.skin7.popup .smp-controls .smp-progressbar .progress-slider .progress-track {
  background-color: var(--smp-progressbar-bg-color, #fff);
}
.smp.audio-player.skin7.shortcode .smp-controls .smp-progressbar .progress-slider .progress-fill,
.smp.audio-player.skin7.popup .smp-controls .smp-progressbar .progress-slider .progress-fill {
  background-color: var(--smp-progressbar-fill-color, #0056d7);
}
.smp.audio-player.skin7.shortcode .smp-controls .smp-progressbar .progress-slider .progress-handle,
.smp.audio-player.skin7.popup .smp-controls .smp-progressbar .progress-slider .progress-handle {
  border-width: var(--smp-progressbar-handle-border-size, 0px);
  border-style: var(--smp-progressbar-handle-border-style, solid);
  border-color: var(--smp-progressbar-handle-border-color, #0056d7);
  background-color: var(--smp-progressbar-handle-color, #0056d7);
}
.smp.audio-player.skin7.shortcode .smp-controls .controls-wrap,
.smp.audio-player.skin7.popup .smp-controls .controls-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  align-items: center;
}
.smp.audio-player.skin7.shortcode .smp-controls .controls-wrap button,
.smp.audio-player.skin7.popup .smp-controls .controls-wrap button {
  padding: 10px !important;
  background: var(--smp-button-bg-color, linear-gradient(90deg, #0e55c0 0%, #79afff 99.99%));
  border: var(--smp-button-border-size) var(--smp-button-border-style) var(--smp-button-border-color);
  border-radius: var(--smp-button-border-radius, 50px);
}
.smp.audio-player.skin7.shortcode .smp-controls .controls-wrap button.smp-settings + .playback-speed-tooltip .playback-speed button,
.smp.audio-player.skin7.popup .smp-controls .controls-wrap button.smp-settings + .playback-speed-tooltip .playback-speed button {
  background: none;
}
.smp.audio-player.skin7.shortcode .smp-controls .controls-wrap button.smp-volume .volume-slider,
.smp.audio-player.skin7.popup .smp-controls .controls-wrap button.smp-volume .volume-slider {
  background: rgba(34, 34, 34, 0.8980392157);
}
.smp.audio-player.skin7.shortcode .smp-controls .controls-wrap button svg,
.smp.audio-player.skin7.popup .smp-controls .controls-wrap button svg {
  width: 15px;
  height: 15px;
  color: var(--smp-button-color, #fff);
}

.smp-playlist.smp-playlist-skin7.audio-player {
  width: var(--smp-width);
  background: var(--smp-playlist-bg-color, rgba(34, 34, 34, 0.9019607843));
  border-bottom-left-radius: var(--smp-border-radius, 5px);
  border-bottom-right-radius: var(--smp-border-radius, 5px);
  box-shadow: var(--smp-box-shadow, none);
}
.smp-playlist.smp-playlist-skin7.audio-player .playlist-item span {
  color: var(--smp-text-color, #000);
}
.smp-playlist.smp-playlist-skin7.audio-player .playlist-item button svg {
  color: var(--smp-text-color, #000);
}

.smp.skin7.popup {
  display: block;
  margin: 0 auto;
}

.smp.audio-player.skin8.shortcode,
.smp.audio-player.skin8.popup {
  border-radius: var(--smp-border-radius, 130px);
  padding: 16px;
  box-shadow: var(--smp-box-shadow);
  margin-top: 50px;
}
.smp.audio-player.skin8.shortcode.playlist-active,
.smp.audio-player.skin8.popup.playlist-active {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  box-shadow: none;
}
.smp.audio-player.skin8.shortcode .smp-details,
.smp.audio-player.skin8.popup .smp-details {
  position: relative;
  flex-direction: var(--smp-alignment, column);
}
.smp.audio-player.skin8.shortcode .smp-details .player-meta-wrap,
.smp.audio-player.skin8.popup .smp-details .player-meta-wrap {
  color: var(--smp-text-color, #5c637e);
  margin: 0 10px;
}
.smp.audio-player.skin8.shortcode .smp-details .player-meta-wrap .smp-title,
.smp.audio-player.skin8.popup .smp-details .player-meta-wrap .smp-title {
  font-family: var(--smp-font-family);
  font-size: var(--smp-font-size, 16px);
  font-weight: var(--smp-font-weight, 700);
  text-align: var(--smp-text-alignment, center);
  line-height: var(--smp-line-height, 18px);
  letter-spacing: var(--smp-letter-spacing, 1px);
  margin-bottom: 4px;
}
.smp.audio-player.skin8.shortcode .smp-details .player-meta-wrap .smp-meta,
.smp.audio-player.skin8.popup .smp-details .player-meta-wrap .smp-meta {
  font-size: 10px;
  font-family: var(--smp-font-family);
  text-align: var(--smp-text-alignment, center);
}
.smp.audio-player.skin8.shortcode .smp-controls,
.smp.audio-player.skin8.popup .smp-controls {
  margin-top: 20px;
  display: block;
}
.smp.audio-player.skin8.shortcode .smp-controls .controls-play-pause,
.smp.audio-player.skin8.popup .smp-controls .controls-play-pause {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.smp.audio-player.skin8.shortcode .smp-controls .controls-play-pause button,
.smp.audio-player.skin8.popup .smp-controls .controls-play-pause button {
  padding: 10px !important;
  background: var(--smp-button-bg-color);
  border: var(--smp-button-border-size) var(--smp-button-border-style) var(--smp-button-border-color);
  border-radius: var(--smp-button-border-radius);
}
.smp.audio-player.skin8.shortcode .smp-controls .controls-play-pause button.smp-play-pause svg,
.smp.audio-player.skin8.popup .smp-controls .controls-play-pause button.smp-play-pause svg {
  width: 25px;
  height: 25px;
}
.smp.audio-player.skin8.shortcode .smp-controls .controls-play-pause button svg,
.smp.audio-player.skin8.popup .smp-controls .controls-play-pause button svg {
  width: 15px;
  height: 15px;
  color: var(--smp-button-color, #fff);
}
.smp.audio-player.skin8.shortcode .smp-controls .smp-progressbar-wrap,
.smp.audio-player.skin8.popup .smp-controls .smp-progressbar-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 auto 20px;
  max-width: 70%;
}
.smp.audio-player.skin8.shortcode .smp-controls .smp-progressbar-wrap .smp-progressbar,
.smp.audio-player.skin8.popup .smp-controls .smp-progressbar-wrap .smp-progressbar {
  height: 0;
  width: 70%;
  gap: 12px;
  margin: 0 auto;
}
.smp.audio-player.skin8.shortcode .smp-controls .smp-progressbar-wrap .smp-progressbar .track-time-duration,
.smp.audio-player.skin8.shortcode .smp-controls .smp-progressbar-wrap .smp-progressbar .track-total-duration,
.smp.audio-player.skin8.popup .smp-controls .smp-progressbar-wrap .smp-progressbar .track-time-duration,
.smp.audio-player.skin8.popup .smp-controls .smp-progressbar-wrap .smp-progressbar .track-total-duration {
  font-size: 12px;
  color: var(--smp-text-color, #fff);
}
.smp.audio-player.skin8.shortcode .smp-controls .smp-progressbar-wrap .smp-progressbar .progress-slider .progress-track,
.smp.audio-player.skin8.popup .smp-controls .smp-progressbar-wrap .smp-progressbar .progress-slider .progress-track {
  background-color: var(--smp-progressbar-bg-color, rgba(255, 255, 255, 0.3));
}
.smp.audio-player.skin8.shortcode .smp-controls .smp-progressbar-wrap .smp-progressbar .progress-slider .progress-fill,
.smp.audio-player.skin8.popup .smp-controls .smp-progressbar-wrap .smp-progressbar .progress-slider .progress-fill {
  background-color: var(--smp-progressbar-fill-color, #fff);
}
.smp.audio-player.skin8.shortcode .smp-controls .smp-progressbar-wrap .smp-progressbar .progress-slider .progress-handle,
.smp.audio-player.skin8.popup .smp-controls .smp-progressbar-wrap .smp-progressbar .progress-slider .progress-handle {
  border-width: var(--smp-progressbar-handle-border-size, 3px);
  border-style: var(--smp-progressbar-handle-border-style, solid);
  border-color: var(--smp-progressbar-handle-border-color, #0056d7);
  background-color: var(--smp-progressbar-handle-color, #fff);
}
.smp.audio-player.skin8.shortcode .smp-controls .controls-wrap,
.smp.audio-player.skin8.popup .smp-controls .controls-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  align-items: center;
}
.smp.audio-player.skin8.shortcode .smp-controls .controls-wrap button,
.smp.audio-player.skin8.popup .smp-controls .controls-wrap button {
  padding: 10px !important;
  background: var(--smp-button-bg-color);
  border: var(--smp-button-border-size) var(--smp-button-border-style) var(--smp-button-border-color);
  border-radius: var(--smp-button-border-radius);
}
.smp.audio-player.skin8.shortcode .smp-controls .controls-wrap button.smp-volume .volume-slider,
.smp.audio-player.skin8.popup .smp-controls .controls-wrap button.smp-volume .volume-slider {
  background: rgba(34, 34, 34, 0.8980392157);
}
.smp.audio-player.skin8.shortcode .smp-controls .controls-wrap button svg,
.smp.audio-player.skin8.popup .smp-controls .controls-wrap button svg {
  width: 15px;
  height: 15px;
  color: var(--smp-button-color, #fff);
}

.smp-playlist.smp-playlist-skin8.audio-player {
  width: var(--smp-width);
  background: var(--smp-playlist-bg-color, #3d5585);
  box-shadow: var(--smp-box-shadow, none);
  padding: 16px;
}
.smp-playlist.smp-playlist-skin8.audio-player .playlist-item span {
  color: #fff;
}
.smp-playlist.smp-playlist-skin8.audio-player .playlist-item button svg {
  color: #fff;
}

.smp.skin8.popup {
  display: block;
  margin: 0 auto;
}

.smp.audio-player.skin9.shortcode,
.smp.audio-player.skin9.popup {
  border-radius: var(--smp-border-radius, 5px);
  padding: 70px 5px 24px;
  box-shadow: var(--smp-box-shadow);
  margin-top: 80px;
}
.smp.audio-player.skin9.shortcode.playlist-active,
.smp.audio-player.skin9.popup.playlist-active {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  box-shadow: none;
}
.smp.audio-player.skin9.shortcode .smp-details,
.smp.audio-player.skin9.popup .smp-details {
  flex-direction: var(--smp-alignment, column);
  position: relative;
  margin-top: 15px;
}
.smp.audio-player.skin9.shortcode .smp-details .player-meta-wrap,
.smp.audio-player.skin9.popup .smp-details .player-meta-wrap {
  color: var(--smp-text-color, #5c637e);
  margin: 0 10px;
}
.smp.audio-player.skin9.shortcode .smp-details .player-meta-wrap .smp-title,
.smp.audio-player.skin9.popup .smp-details .player-meta-wrap .smp-title {
  font-family: var(--smp-font-family);
  font-size: var(--smp-font-size, 16px);
  font-weight: var(--smp-font-weight, 700);
  text-align: var(--smp-text-alignment, center);
  line-height: var(--smp-line-height, 18px);
  letter-spacing: var(--smp-letter-spacing, 1px);
  margin-bottom: 4px;
}
.smp.audio-player.skin9.shortcode .smp-details .player-meta-wrap .smp-meta,
.smp.audio-player.skin9.popup .smp-details .player-meta-wrap .smp-meta {
  font-family: var(--smp-font-family);
  font-size: 10px;
  text-align: var(--smp-text-alignment, center);
}
.smp.audio-player.skin9.shortcode .smp-controls,
.smp.audio-player.skin9.popup .smp-controls {
  margin-top: 40px;
  display: block;
}
.smp.audio-player.skin9.shortcode .smp-controls .smp-progressbar,
.smp.audio-player.skin9.popup .smp-controls .smp-progressbar {
  height: 0;
  width: 90%;
  gap: 12px;
  margin: 0 auto 15px;
}
.smp.audio-player.skin9.shortcode .smp-controls .smp-progressbar .track-time-duration,
.smp.audio-player.skin9.shortcode .smp-controls .smp-progressbar .track-total-duration,
.smp.audio-player.skin9.popup .smp-controls .smp-progressbar .track-time-duration,
.smp.audio-player.skin9.popup .smp-controls .smp-progressbar .track-total-duration {
  font-size: 12px;
  color: var(--smp-text-color, #fff);
}
.smp.audio-player.skin9.shortcode .smp-controls .smp-progressbar .progress-slider .progress-track,
.smp.audio-player.skin9.popup .smp-controls .smp-progressbar .progress-slider .progress-track {
  background-color: var(--smp-progressbar-bg-color, #fff);
}
.smp.audio-player.skin9.shortcode .smp-controls .smp-progressbar .progress-slider .progress-fill,
.smp.audio-player.skin9.popup .smp-controls .smp-progressbar .progress-slider .progress-fill {
  background-color: var(--smp-progressbar-fill-color, #0056d7);
}
.smp.audio-player.skin9.shortcode .smp-controls .smp-progressbar .progress-slider .progress-handle,
.smp.audio-player.skin9.popup .smp-controls .smp-progressbar .progress-slider .progress-handle {
  border-width: var(--smp-progressbar-handle-border-size, 0px);
  border-style: var(--smp-progressbar-handle-border-style, solid);
  border-color: var(--smp-progressbar-handle-border-color, #0056d7);
  background-color: var(--smp-progressbar-handle-color, #0056d7);
}
.smp.audio-player.skin9.shortcode .smp-controls .smp-progressbar .progress-slider .progress-track,
.smp.audio-player.skin9.popup .smp-controls .smp-progressbar .progress-slider .progress-track {
  background-color: var(--smp-progressbar-bg-color, rgba(255, 255, 255, 0.3));
}
.smp.audio-player.skin9.shortcode .smp-controls .smp-progressbar .progress-slider .progress-fill,
.smp.audio-player.skin9.popup .smp-controls .smp-progressbar .progress-slider .progress-fill {
  background-color: var(--smp-progressbar-fill-color, #fff);
}
.smp.audio-player.skin9.shortcode .smp-controls .smp-progressbar .progress-slider .progress-handle,
.smp.audio-player.skin9.popup .smp-controls .smp-progressbar .progress-slider .progress-handle {
  border-width: var(--smp-progressbar-handle-border-size, 3px);
  border-style: var(--smp-progressbar-handle-border-style, solid);
  border-color: var(--smp-progressbar-handle-border-color, #535168);
  background-color: var(--smp-progressbar-handle-color, #fff);
}
.smp.audio-player.skin9.shortcode .smp-controls .controls-wrap,
.smp.audio-player.skin9.popup .smp-controls .controls-wrap {
  width: 90%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  padding: 0 10px;
}
.smp.audio-player.skin9.shortcode .smp-controls .controls-wrap button,
.smp.audio-player.skin9.popup .smp-controls .controls-wrap button {
  padding: 10px !important;
  background: var(--smp-button-bg-color);
  border: var(--smp-button-border-size) var(--smp-button-border-style) var(--smp-button-border-color);
  border-radius: var(--smp-button-border-radius);
}
.smp.audio-player.skin9.shortcode .smp-controls .controls-wrap button.smp-play-pause,
.smp.audio-player.skin9.popup .smp-controls .controls-wrap button.smp-play-pause {
  background-color: var(--smp-play-pause-button-bg-color, #fff);
  border-radius: 50%;
  padding: 10px !important;
}
.smp.audio-player.skin9.shortcode .smp-controls .controls-wrap button.smp-play-pause svg,
.smp.audio-player.skin9.popup .smp-controls .controls-wrap button.smp-play-pause svg {
  width: 15px;
  height: 15px;
  color: var(--smp-play-pause-button-color, #535168);
}
.smp.audio-player.skin9.shortcode .smp-controls .controls-wrap button.smp-volume .volume-slider,
.smp.audio-player.skin9.popup .smp-controls .controls-wrap button.smp-volume .volume-slider {
  background: rgba(34, 34, 34, 0.8980392157);
}
.smp.audio-player.skin9.shortcode .smp-controls .controls-wrap button svg,
.smp.audio-player.skin9.popup .smp-controls .controls-wrap button svg {
  width: 15px;
  height: 15px;
  color: var(--smp-button-color, #fff);
}
.smp.audio-player.skin9.shortcode .smp-thumbnail,
.smp.audio-player.skin9.popup .smp-thumbnail {
  position: absolute;
  top: -2%;
  left: 50%;
  width: 120px;
  height: 120px;
  transform: translate(-50%, -50%);
  margin: 0;
  z-index: 99;
  border-radius: 10px;
  border: 1px solid #fff;
  background: #ffffff 50%/cover no-repeat;
}

.smp-playlist.smp-playlist-skin9.audio-player {
  width: var(--smp-width);
  background: var(--smp-playlist-bg-color, #345697);
  border-bottom-left-radius: var(--smp-border-radius, 5px);
  border-bottom-right-radius: var(--smp-border-radius, 5px);
  box-shadow: var(--smp-box-shadow, none);
}
.smp-playlist.smp-playlist-skin9.audio-player .playlist-item span {
  color: #fff;
}
.smp-playlist.smp-playlist-skin9.audio-player .playlist-item button svg {
  color: #fff;
}

.smp.skin9.popup {
  display: block;
  margin: 80px auto 0;
}

.smp.video-player.skin0.shortcode {
  border-bottom-left-radius: var(--smp-border-radius);
  border-bottom-right-radius: var(--smp-border-radius);
}
.smp.video-player.skin0.shortcode.playlist-active {
  border-radius: 0;
  border-bottom: none;
}
.smp.video-player.skin0.shortcode .smp-controls {
  background: var(--smp-bg-color, #000);
  display: flex;
  justify-content: center !important;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 10px 2px 0;
}
.smp.video-player.skin0.shortcode .smp-controls button {
  padding: 10px !important;
  background: var(--smp-button-bg-color);
  border: var(--smp-button-border-size) var(--smp-button-border-style) var(--smp-button-border-color);
  border-radius: var(--smp-button-border-radius);
}
.smp.video-player.skin0.shortcode .smp-controls button svg {
  width: 15px !important;
  height: 15px !important;
  color: var(--smp-button-color, #fff);
}
.smp.video-player.skin0.shortcode .smp-controls button.smp-volume .volume-slider {
  background: rgba(34, 34, 34, 0.8980392157);
}
.smp.video-player.skin0.shortcode .smp-controls .progress-slider .progress-track {
  background-color: var(--smp-progressbar-bg-color, rgba(0, 86, 215, 0.2));
}
.smp.video-player.skin0.shortcode .smp-controls .progress-slider .progress-fill {
  background-color: var(--smp-progressbar-fill-color, #0056d7);
}
.smp.video-player.skin0.shortcode .smp-controls .progress-slider .progress-handle {
  border-width: var(--smp-progressbar-handle-border-size, 0);
  border-style: var(--smp-progressbar-handle-border-style, none);
  border-color: var(--smp-progressbar-handle-border-color, none);
  background-color: var(--smp-progressbar-handle-color, #0056d7);
}
.smp.video-player.skin0.shortcode .smp-controls .smp-fullscreen svg g path {
  stroke: var(--smp-button-color, #fff) !important;
}
.smp.video-player.skin0.shortcode .smp-controls .smp-progressbar {
  width: 80px;
  margin: 0;
  padding: 0;
}
.smp.video-player.skin0.shortcode .smp-controls .smp-time-duration {
  color: var(--smp-button-color, #fff);
  background: none;
}

.smp-playlist.smp-playlist-skin0.video-player {
  width: var(--smp-width);
  background: var(--smp-playlist-bg-color);
  border-bottom-left-radius: var(--smp-border-radius);
  border-bottom-right-radius: var(--smp-border-radius);
}

.smp.video-player.skin1.shortcode {
  border-bottom-left-radius: var(--smp-border-radius);
  border-bottom-right-radius: var(--smp-border-radius);
  padding: 5px;
  border: 1px solid var(--smp-button-color, #0056d7);
}
.smp.video-player.skin1.shortcode.playlist-active {
  border-radius: 0;
  border-bottom: none;
}
.smp.video-player.skin1.shortcode .smp-controls {
  display: flex;
  justify-content: center !important;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 10px 2px 0;
}
.smp.video-player.skin1.shortcode .smp-controls button {
  padding: 10px !important;
  background: var(--smp-button-bg-color);
  border: var(--smp-button-border-size) var(--smp-button-border-style) var(--smp-button-border-color);
  border-radius: var(--smp-button-border-radius);
}
.smp.video-player.skin1.shortcode .smp-controls button svg {
  width: 15px !important;
  height: 15px !important;
  color: var(--smp-button-color, #0056d7);
}
.smp.video-player.skin1.shortcode .smp-controls .progress-slider .progress-track {
  background-color: var(--smp-progressbar-bg-color, rgba(0, 86, 215, 0.2));
}
.smp.video-player.skin1.shortcode .smp-controls .progress-slider .progress-fill {
  background-color: var(--smp-progressbar-fill-color, #0056d7);
}
.smp.video-player.skin1.shortcode .smp-controls .progress-slider .progress-handle {
  border-width: var(--smp-progressbar-handle-border-size, 0);
  border-style: var(--smp-progressbar-handle-border-style, none);
  border-color: var(--smp-progressbar-handle-border-color, none);
  background-color: var(--smp-progressbar-handle-color, #0056d7);
}
.smp.video-player.skin1.shortcode .smp-controls .smp-play-pause {
  padding: 10px !important;
  background-color: var(--smp-play-pause-button-bg-color, #0056d7);
  border-radius: 50%;
}
.smp.video-player.skin1.shortcode .smp-controls .smp-play-pause svg {
  color: var(--smp-play-pause-button-color, #fff);
}
.smp.video-player.skin1.shortcode .smp-controls .smp-fullscreen svg g path {
  stroke: var(--smp-button-color, #0056d7) !important;
}
.smp.video-player.skin1.shortcode .smp-controls .smp-progressbar {
  width: 80px;
  margin: 0;
  padding: 0;
}
.smp.video-player.skin1.shortcode .smp-controls .smp-time-duration {
  background-color: var(--smp-button-color, #0056d7);
}
.smp.video-player.skin1.shortcode .smp-controls button svg {
  width: 20px;
  height: 20px;
}
.smp.video-player.skin1.shortcode .smp-controls button.smp-volume .volume-slider {
  background: rgba(34, 34, 34, 0.8980392157);
}

.smp-playlist.smp-playlist-skin1.video-player {
  width: var(--smp-width);
  background: var(--smp-playlist-bg-color);
  border-bottom-left-radius: var(--smp-border-radius);
  border-bottom-right-radius: var(--smp-border-radius);
}

.smp.video-player.skin2.shortcode {
  border-bottom-left-radius: var(--smp-border-radius);
  border-bottom-right-radius: var(--smp-border-radius);
}
.smp.video-player.skin2.shortcode.playlist-active {
  border-radius: 0;
}
.smp.video-player.skin2.shortcode .smp-controls {
  padding: 0 5px 12px 5px;
  justify-content: center !important;
  align-items: center;
  gap: 10px;
}
.smp.video-player.skin2.shortcode .smp-controls button {
  padding: 10px !important;
  background: var(--smp-button-bg-color);
  border: var(--smp-button-border-size, 1px) var(--smp-button-border-style, solid) var(--smp-button-border-color, #fff);
  border-radius: var(--smp-button-border-radius, 50px);
}
.smp.video-player.skin2.shortcode .smp-controls button.smp-prev {
  order: 10;
}
.smp.video-player.skin2.shortcode .smp-controls button.smp-rewind {
  order: 20;
}
.smp.video-player.skin2.shortcode .smp-controls button.smp-play-pause {
  order: 30;
}
.smp.video-player.skin2.shortcode .smp-controls button.smp-forward {
  order: 40;
}
.smp.video-player.skin2.shortcode .smp-controls button.smp-next {
  order: 50;
}
.smp.video-player.skin2.shortcode .smp-controls button.smp-volume {
  order: 70;
}
.smp.video-player.skin2.shortcode .smp-controls button.playlist-icon {
  order: 80;
}
.smp.video-player.skin2.shortcode .smp-controls button.smp-video-settings-btn {
  order: 90;
}
.smp.video-player.skin2.shortcode .smp-controls button.smp-fullscreen {
  order: 100;
}
.smp.video-player.skin2.shortcode .smp-controls button svg {
  width: 15px !important;
  height: 15px !important;
  color: var(--smp-button-color, #fff);
}
.smp.video-player.skin2.shortcode .smp-controls button.smp-play-pause {
  background-color: var(--smp-play-pause-button-bg-color, #fff);
  border-radius: 50%;
  padding: 10px !important;
}
.smp.video-player.skin2.shortcode .smp-controls button.smp-play-pause svg {
  color: var(--smp-play-pause-button-color, #5C637E);
}
.smp.video-player.skin2.shortcode .smp-controls button.smp-volume .volume-slider {
  background: rgba(34, 34, 34, 0.8980392157);
}
.smp.video-player.skin2.shortcode .smp-controls button.smp-fullscreen svg g path {
  stroke: var(--smp-button-color, #fff) !important;
}
.smp.video-player.skin2.shortcode .smp-controls .smp-time-duration {
  order: 60;
}
.smp.video-player.skin2.shortcode .smp-controls .progress-slider .progress-track {
  background-color: var(--smp-progressbar-bg-color, #fff);
}
.smp.video-player.skin2.shortcode .smp-controls .progress-slider .progress-fill {
  background-color: var(--smp-progressbar-fill-color, #0056d7);
}
.smp.video-player.skin2.shortcode .smp-controls .progress-slider .progress-handle {
  border-width: var(--smp-progressbar-handle-border-size);
  border-style: var(--smp-progressbar-handle-border-style);
  border-color: var(--smp-progressbar-handle-border-color);
  background-color: var(--smp-progressbar-handle-color);
}

.smp-playlist.smp-playlist-skin2.video-player {
  width: var(--smp-width);
  background: var(--smp-playlist-bg-color);
  border-bottom-left-radius: var(--smp-border-radius);
  border-bottom-right-radius: var(--smp-border-radius);
}

.smp.video-player.skin3.shortcode {
  position: relative;
  border-bottom-left-radius: var(--smp-border-radius);
  border-bottom-right-radius: var(--smp-border-radius);
  padding: 40px 0 20px;
  border: 1px solid var(--smp-button-color);
}
.smp.video-player.skin3.shortcode.playlist-active {
  border-radius: 0;
  border-bottom: none;
}
.smp.video-player.skin3.shortcode .smp-details {
  position: absolute;
  top: -4px;
}
.smp.video-player.skin3.shortcode .smp-details .smp-title {
  font-family: var(--smp-font-family);
  font-size: var(--smp-font-size, 16px);
  font-weight: var(--smp-font-weight, 700);
  text-align: var(--smp-text-alignment, center);
  line-height: var(--smp-line-height, 18px);
  letter-spacing: var(--smp-letter-spacing, 1px);
  padding: 0 10px;
}
.smp.video-player.skin3.shortcode .smp-controls {
  display: flex;
  justify-content: center !important;
  align-items: center;
  gap: 8px;
  padding: 10px 2px 0;
  margin: 0;
}
.smp.video-player.skin3.shortcode .smp-controls .progress-slider .progress-track {
  background-color: var(--smp-progressbar-bg-color, #4D4D4D);
}
.smp.video-player.skin3.shortcode .smp-controls .progress-slider .progress-fill {
  background-color: var(--smp-progressbar-fill-color, #D91920);
}
.smp.video-player.skin3.shortcode .smp-controls .progress-slider .progress-handle {
  border-width: var(--smp-progressbar-handle-border-size, 1px);
  border-style: var(--smp-progressbar-handle-border-style, solid);
  border-color: var(--smp-progressbar-handle-border-color, #F2F2F2);
  background-color: var(--smp-progressbar-handle-color, #CCCCCC) !important;
}
.smp.video-player.skin3.shortcode .smp-controls button {
  padding: 10px !important;
  background: var(--smp-button-bg-color);
  border: var(--smp-button-border-size) var(--smp-button-border-style) var(--smp-button-border-color);
  border-radius: var(--smp-button-border-radius);
}
.smp.video-player.skin3.shortcode .smp-controls button svg {
  width: 15px !important;
  height: 15px !important;
  color: var(--smp-button-color, #fff);
}
.smp.video-player.skin3.shortcode .smp-controls button.smp-volume .volume-slider {
  background: rgba(34, 34, 34, 0.8980392157);
}
.smp.video-player.skin3.shortcode .smp-controls .smp-fullscreen svg g path {
  stroke: var(--smp-button-color, #fff) !important;
}
.smp.video-player.skin3.shortcode .smp-controls .smp-time-duration {
  background-color: var(--smp-button-color, #fff);
  color: #000;
}
.smp.video-player.skin3.shortcode .smp-controls .smp-progressbar {
  width: 80px;
  margin: 0;
  padding: 0;
}

.smp-playlist.smp-playlist-skin3.video-player {
  width: var(--smp-width);
  background: var(--smp-playlist-bg-color);
  border-bottom-left-radius: var(--smp-border-radius);
  border-bottom-right-radius: var(--smp-border-radius);
}

.smp.video-player.skin4.shortcode {
  border-bottom-left-radius: var(--smp-border-radius);
  border-bottom-right-radius: var(--smp-border-radius);
  padding: 0 0 15px;
}
.smp.video-player.skin4.shortcode.playlist-active {
  border-radius: 0;
}
.smp.video-player.skin4.shortcode .smp-controls {
  display: flex;
  justify-content: center !important;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 15px 2px 0;
}
.smp.video-player.skin4.shortcode .smp-controls button {
  padding: 10px !important;
  background: var(--smp-button-bg-color);
  border: var(--smp-button-border-size) var(--smp-button-border-style) var(--smp-button-border-color);
  border-radius: var(--smp-button-border-radius);
}
.smp.video-player.skin4.shortcode .smp-controls button svg {
  width: 15px !important;
  height: 15px !important;
  color: var(--smp-button-color, #fff);
}
.smp.video-player.skin4.shortcode .smp-controls button.smp-volume .volume-slider {
  background: rgba(34, 34, 34, 0.8980392157);
}
.smp.video-player.skin4.shortcode .smp-controls .smp-fullscreen svg g path {
  stroke: var(--smp-button-color, #fff) !important;
}
.smp.video-player.skin4.shortcode .smp-controls .smp-time-duration {
  background-color: var(--smp-button-color, #fff);
  color: #000;
}
.smp.video-player.skin4.shortcode .smp-controls .smp-progressbar {
  width: 120px;
  margin: 0;
  padding: 0;
}
.smp.video-player.skin4.shortcode .smp-controls .smp-progressbar .progress-slider .progress-track {
  background-color: var(--smp-progressbar-bg-color, #fff);
}
.smp.video-player.skin4.shortcode .smp-controls .smp-progressbar .progress-slider .progress-fill {
  background-color: var(--smp-progressbar-fill-color, #0056d7);
}
.smp.video-player.skin4.shortcode .smp-controls .smp-progressbar .progress-slider .progress-handle {
  border-width: var(--smp-progressbar-handle-border-size, 1px);
  border-style: var(--smp-progressbar-handle-border-style);
  border-color: var(--smp-progressbar-handle-border-color);
  background-color: var(--smp-progressbar-handle-color, #fff);
}

.smp-playlist.smp-playlist-skin4.video-player {
  width: var(--smp-width);
  background: var(--smp-playlist-bg-color);
  border-bottom-left-radius: var(--smp-border-radius);
  border-bottom-right-radius: var(--smp-border-radius);
}

.smp.video-player.skin5.shortcode {
  border-bottom-left-radius: var(--smp-border-radius);
  border-bottom-right-radius: var(--smp-border-radius);
  padding: 0;
}
.smp.video-player.skin5.shortcode:hover .smp-controls {
  opacity: 1;
}
.smp.video-player.skin5.shortcode .smp-media {
  border-radius: var(--smp-border-radius);
  position: relative;
}
.smp.video-player.skin5.shortcode .smp-controls {
  position: absolute;
  top: 0;
  bottom: 0;
  opacity: 0;
  transition: all ease-in-out 0.3s;
}
.smp.video-player.skin5.shortcode .smp-controls button {
  display: none;
}
.smp.video-player.skin5.shortcode .smp-controls button.smp-play-pause {
  display: block;
  padding: 15px !important;
  background: var(--smp-button-bg-color, rgba(92, 99, 126, 0.6980392157));
  border: var(--smp-button-border-size) var(--smp-button-border-style) var(--smp-button-border-color);
  border-radius: var(--smp-button-border-radius, 50px);
}
.smp.video-player.skin5.shortcode .smp-controls button.smp-play-pause svg {
  width: 15px !important;
  height: 15px !important;
  color: var(--smp-button-color, #fff);
}

.smp.video-player.skin6.shortcode {
  border-bottom-left-radius: var(--smp-border-radius);
  border-bottom-right-radius: var(--smp-border-radius);
  position: relative;
  padding: 0;
}
.smp.video-player.skin6.shortcode.playlist-active {
  border-radius: 0;
  border-bottom: none;
}
.smp.video-player.skin6.shortcode .smp-controls {
  position: absolute;
  bottom: 10px;
  display: flex;
  justify-content: center !important;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0 5px;
}
.smp.video-player.skin6.shortcode .smp-controls .smp-fullscreen svg g path {
  stroke: var(--smp-button-color, #5C637E) !important;
}
.smp.video-player.skin6.shortcode .smp-controls .smp-time-duration {
  background-color: #fff;
  color: var(--smp-button-color, #5C637E);
}
.smp.video-player.skin6.shortcode .smp-controls button {
  padding: 10px !important;
  background: var(--smp-button-bg-color, #fff);
  border: var(--smp-button-border-size, 1px) var(--smp-button-border-style, solid) var(--smp-button-border-color, #7A7E8C);
  border-radius: var(--smp-button-border-radius, 50px);
}
.smp.video-player.skin6.shortcode .smp-controls button svg {
  width: 12px !important;
  height: 12px !important;
  color: var(--smp-button-color, #5C637E);
}
.smp.video-player.skin6.shortcode .smp-controls button.smp-volume .volume-slider {
  background: rgba(34, 34, 34, 0.8980392157);
}
.smp.video-player.skin6.shortcode .smp-controls .smp-progressbar {
  max-width: 330px;
  width: 95%;
  margin: 0 auto;
  padding: 0;
}
.smp.video-player.skin6.shortcode .smp-controls .smp-progressbar .progress-slider .progress-track {
  background-color: var(--smp-progressbar-bg-color, #B3B3B3);
}
.smp.video-player.skin6.shortcode .smp-controls .smp-progressbar .progress-slider .progress-fill {
  background-color: var(--smp-progressbar-fill-color, #000);
}
.smp.video-player.skin6.shortcode .smp-controls .smp-progressbar .progress-slider .progress-handle {
  border-width: var(--smp-progressbar-handle-border-size);
  border-style: var(--smp-progressbar-handle-border-style);
  border-color: var(--smp-progressbar-handle-border-color);
  background-color: var(--smp-progressbar-handle-color);
}

.smp.video-player.skin6 + .smp-playlist.smp-playlist-skin6.video-player {
  width: var(--smp-width);
  background: var(--smp-playlist-bg-color);
  border-bottom-left-radius: var(--smp-border-radius);
  border-bottom-right-radius: var(--smp-border-radius);
}

.smp.video-player.skin7.shortcode {
  border-bottom-left-radius: var(--smp-border-radius);
  border-bottom-right-radius: var(--smp-border-radius);
  padding: 0;
  border: 1px solid #B3B3B3;
}
.smp.video-player.skin7.shortcode.playlist-active {
  border-radius: 0;
  border-bottom: none;
}
.smp.video-player.skin7.shortcode .smp-controls {
  display: flex;
  justify-content: center !important;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 10px 2px;
}
.smp.video-player.skin7.shortcode .smp-controls .smp-time-duration {
  background: var(--smp-button-bg-color, #000);
  color: var(--smp-button-color, #fff);
}
.smp.video-player.skin7.shortcode .smp-controls button {
  padding: 10px !important;
  background: var(--smp-button-bg-color, #000);
  border: var(--smp-button-border-size) var(--smp-button-border-style) var(--smp-button-border-color);
  border-radius: var(--smp-button-border-radius, 50px);
}
.smp.video-player.skin7.shortcode .smp-controls button svg {
  width: 15px !important;
  height: 15px !important;
  color: var(--smp-button-color, #fff);
}
.smp.video-player.skin7.shortcode .smp-controls button.smp-volume .volume-slider {
  background: rgba(34, 34, 34, 0.8980392157);
}
.smp.video-player.skin7.shortcode .smp-controls button.smp-fullscreen svg g path {
  stroke: var(--smp-button-color, #fff) !important;
}
.smp.video-player.skin7.shortcode .smp-controls .smp-progressbar {
  width: 80px;
  margin: 0;
  padding: 0;
}
.smp.video-player.skin7.shortcode .smp-controls .smp-progressbar .progress-slider .progress-track {
  background-color: var(--smp-progressbar-bg-color, #B3B3B3);
}
.smp.video-player.skin7.shortcode .smp-controls .smp-progressbar .progress-slider .progress-fill {
  background-color: var(--smp-progressbar-fill-color, #000);
}
.smp.video-player.skin7.shortcode .smp-controls .smp-progressbar .progress-slider .progress-handle {
  border-width: var(--smp-progressbar-handle-border-size);
  border-style: var(--smp-progressbar-handle-border-style);
  border-color: var(--smp-progressbar-handle-border-color);
  background-color: var(--smp-progressbar-handle-color, #000);
}

.smp-playlist.smp-playlist-skin7.video-player {
  width: var(--smp-width);
  background: var(--smp-playlist-bg-color);
  border-bottom-left-radius: var(--smp-border-radius);
  border-bottom-right-radius: var(--smp-border-radius);
}

.smp.video-player.skin8.shortcode {
  border-bottom-left-radius: var(--smp-border-radius);
  border-bottom-right-radius: var(--smp-border-radius);
  position: relative;
  padding: 0;
}
.smp.video-player.skin8.shortcode.playlist-active {
  border-radius: 0;
  border-bottom: none;
}
.smp.video-player.skin8.shortcode .smp-controls {
  position: absolute;
  bottom: 10px;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 0;
  padding: 0;
}
.smp.video-player.skin8.shortcode .smp-controls .smp-progressbar {
  width: 95%;
  margin: 0 auto;
  padding: 0;
}
.smp.video-player.skin8.shortcode .smp-controls .smp-progressbar .progress-slider .progress-track {
  background-color: var(--smp-progressbar-bg-color, #fff);
}
.smp.video-player.skin8.shortcode .smp-controls .smp-progressbar .progress-slider .progress-fill {
  background-color: var(--smp-progressbar-fill-color, #0056d7);
}
.smp.video-player.skin8.shortcode .smp-controls .smp-progressbar .progress-slider .progress-handle {
  border-width: var(--smp-progressbar-handle-border-size);
  border-style: var(--smp-progressbar-handle-border-style);
  border-color: var(--smp-progressbar-handle-border-color);
  background-color: var(--smp-progressbar-handle-color);
}
.smp.video-player.skin8.shortcode .smp-controls .smp-time-duration {
  color: #fff;
  width: 95%;
  margin: 5px auto 0;
  background: transparent;
  padding: 0;
}
.smp.video-player.skin8.shortcode .smp-controls button {
  padding: 10px !important;
  background: var(--smp-button-bg-color);
  border: var(--smp-button-border-size) var(--smp-button-border-style) var(--smp-button-border-color);
  border-radius: var(--smp-button-border-radius);
}
.smp.video-player.skin8.shortcode .smp-controls button svg {
  width: 15px !important;
  height: 15px !important;
  color: var(--smp-button-color, #fff);
}
.smp.video-player.skin8.shortcode .smp-controls button.smp-play-pause {
  background-color: var(--smp-play-pause-button-bg-color, #fff);
  border-radius: 50%;
}
.smp.video-player.skin8.shortcode .smp-controls button.smp-play-pause svg {
  color: var(--smp-play-pause-button-color, #000);
}
.smp.video-player.skin8.shortcode .smp-controls button.smp-volume .volume-slider {
  background: rgba(34, 34, 34, 0.8980392157);
}
.smp.video-player.skin8.shortcode .smp-controls .controls-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center !important;
  align-items: center;
  gap: 8px;
  padding: 5px 10px;
  border: 1px solid #fff;
  margin: 10px auto 0;
  background: rgba(5, 0, 0, 0.4);
}
.smp.video-player.skin8.shortcode .smp-controls .controls-wrapper .smp-fullscreen svg g path {
  stroke: var(--smp-button-color, #fff) !important;
}

.smp-playlist.smp-playlist-skin8.video-player {
  width: var(--smp-width);
  background: var(--smp-playlist-bg-color);
  border-bottom-left-radius: var(--smp-border-radius);
  border-bottom-right-radius: var(--smp-border-radius);
}

.smp.skin0.podcast-player.shortcode,
.smp.skin0.podcast-player.popup {
  border-radius: var(--smp-border-radius, 5px);
  padding: 15px;
  box-shadow: var(--smp-box-shadow);
}
.smp.skin0.podcast-player.shortcode.playlist-active,
.smp.skin0.podcast-player.popup.playlist-active {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  box-shadow: none;
}
.smp.skin0.podcast-player.shortcode .smp-details,
.smp.skin0.podcast-player.popup .smp-details {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  position: relative;
}
.smp.skin0.podcast-player.shortcode .smp-details img,
.smp.skin0.podcast-player.popup .smp-details img {
  width: 80px;
  height: 80px;
  margin: 0;
}
.smp.skin0.podcast-player.shortcode .smp-details .player-meta-wrap,
.smp.skin0.podcast-player.popup .smp-details .player-meta-wrap {
  color: var(--smp-text-color, #5c637e);
  margin: 0 10px;
}
.smp.skin0.podcast-player.shortcode .smp-details .player-meta-wrap .smp-thumbnail,
.smp.skin0.podcast-player.popup .smp-details .player-meta-wrap .smp-thumbnail {
  background: #fff;
  border: 2px solid #AE7DCA;
  border-radius: 50%;
  padding: 10px;
}
.smp.skin0.podcast-player.shortcode .smp-details .player-meta-wrap .smp-title,
.smp.skin0.podcast-player.popup .smp-details .player-meta-wrap .smp-title {
  font-family: var(--smp-font-family);
  font-size: var(--smp-font-size, 16px);
  font-weight: var(--smp-font-weight, 700);
  text-align: var(--smp-text-alignment, center);
  line-height: var(--smp-line-height, 18px);
  letter-spacing: var(--smp-letter-spacing, 1px);
  margin-bottom: 6px;
}
.smp.skin0.podcast-player.shortcode .smp-details .player-meta-wrap .items-wrap,
.smp.skin0.podcast-player.popup .smp-details .player-meta-wrap .items-wrap {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 5px;
}
.smp.skin0.podcast-player.shortcode .smp-details .player-meta-wrap .items-wrap .smp-meta,
.smp.skin0.podcast-player.popup .smp-details .player-meta-wrap .items-wrap .smp-meta {
  font-size: 11px;
}
.smp.skin0.podcast-player.shortcode .smp-details .player-meta-wrap .smp-meta,
.smp.skin0.podcast-player.popup .smp-details .player-meta-wrap .smp-meta {
  margin-top: 7px;
  font-size: 10px;
  text-transform: uppercase;
  text-align: var(--smp-text-alignment, left);
}
.smp.skin0.podcast-player.shortcode .smp-controls,
.smp.skin0.podcast-player.popup .smp-controls {
  margin-top: 20px;
  display: block;
}
.smp.skin0.podcast-player.shortcode .smp-controls .smp-progressbar,
.smp.skin0.podcast-player.popup .smp-controls .smp-progressbar {
  height: 0;
  width: 90%;
  gap: 12px;
  margin: 0 auto 10px;
}
.smp.skin0.podcast-player.shortcode .smp-controls .smp-progressbar .progress-slider .progress-track,
.smp.skin0.podcast-player.popup .smp-controls .smp-progressbar .progress-slider .progress-track {
  background-color: var(--smp-progressbar-bg-color, rgba(255, 255, 255, 0.2980392157));
}
.smp.skin0.podcast-player.shortcode .smp-controls .smp-progressbar .progress-slider .progress-fill,
.smp.skin0.podcast-player.popup .smp-controls .smp-progressbar .progress-slider .progress-fill {
  background-color: var(--smp-progressbar-fill-color, #000000);
}
.smp.skin0.podcast-player.shortcode .smp-controls .smp-progressbar .progress-slider .progress-handle,
.smp.skin0.podcast-player.popup .smp-controls .smp-progressbar .progress-slider .progress-handle {
  background: var(--smp-progressbar-handle-color, #000);
  border-width: var(--smp-progressbar-handle-border-size, 1px);
  border-style: var(--smp-progressbar-handle-border-style, solid);
  border-color: var(--smp-progressbar-handle-border-color, #fff);
}
.smp.skin0.podcast-player.shortcode .smp-controls .smp-progressbar .track-time-duration,
.smp.skin0.podcast-player.shortcode .smp-controls .smp-progressbar .track-total-duration,
.smp.skin0.podcast-player.popup .smp-controls .smp-progressbar .track-time-duration,
.smp.skin0.podcast-player.popup .smp-controls .smp-progressbar .track-total-duration {
  font-size: 12px;
}
.smp.skin0.podcast-player.shortcode .smp-controls .track-duration,
.smp.skin0.podcast-player.popup .smp-controls .track-duration {
  width: 90%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto 10px auto;
}
.smp.skin0.podcast-player.shortcode .smp-controls .track-duration span,
.smp.skin0.podcast-player.popup .smp-controls .track-duration span {
  font-size: 12px;
  color: var(--smp-text-color, #fff);
  font-family: var(--smp-font-family);
}
.smp.skin0.podcast-player.shortcode .smp-controls .controls-wrap,
.smp.skin0.podcast-player.popup .smp-controls .controls-wrap {
  width: 90%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.smp.skin0.podcast-player.shortcode .smp-controls .controls-wrap button,
.smp.skin0.podcast-player.popup .smp-controls .controls-wrap button {
  padding: 10px !important;
  background: var(--smp-button-bg-color, #fff);
  border: var(--smp-button-border-size) var(--smp-button-border-style) var(--smp-button-border-color);
  border-radius: var(--smp-button-border-radius, 50px);
}
.smp.skin0.podcast-player.shortcode .smp-controls .controls-wrap button.smp-play-pause,
.smp.skin0.podcast-player.popup .smp-controls .controls-wrap button.smp-play-pause {
  border-radius: 50%;
  padding: 16px !important;
}
.smp.skin0.podcast-player.shortcode .smp-controls .controls-wrap button.smp-play-pause svg,
.smp.skin0.podcast-player.popup .smp-controls .controls-wrap button.smp-play-pause svg {
  width: 15px;
  height: 15px;
  color: var(--smp-button-color, #000);
}
.smp.skin0.podcast-player.shortcode .smp-controls .controls-wrap button svg,
.smp.skin0.podcast-player.popup .smp-controls .controls-wrap button svg {
  width: 15px;
  height: 15px;
  color: var(--smp-button-color, #000);
}
.smp.skin0.podcast-player.shortcode .smp-controls .controls-wrap .playback-speed-tooltip .playback-speed > button,
.smp.skin0.podcast-player.popup .smp-controls .controls-wrap .playback-speed-tooltip .playback-speed > button {
  background: transparent !important;
  border-radius: 0 !important;
}

.smp-playlist.smp-playlist-skin0.podcast-player {
  width: var(--smp-width);
  background: var(--smp-playlist-bg-color, #000000);
  border-bottom-left-radius: var(--smp-border-radius, 5px);
  border-bottom-right-radius: var(--smp-border-radius, 5px);
  box-shadow: var(--smp-box-shadow, none);
}
.smp-playlist.smp-playlist-skin0.podcast-player .playlist-item span {
  color: #fff;
}
.smp-playlist.smp-playlist-skin0.podcast-player .playlist-item button svg {
  color: #fff;
}

.smp.skin0.popup {
  width: var(--smp-width);
  display: block;
  margin: 0 auto;
}
.smp.skin0.popup .smp-details .player-meta-wrap {
  position: relative;
  left: unset;
  right: unset;
  top: unset;
  bottom: unset;
  text-align: center;
}

.smp.skin1.podcast-player.shortcode,
.smp.skin1.podcast-player.popup {
  border-radius: var(--smp-border-radius, 5px);
  padding: 15px;
  box-shadow: var(--smp-box-shadow);
}
.smp.skin1.podcast-player.shortcode.playlist-active,
.smp.skin1.podcast-player.popup.playlist-active {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  box-shadow: none;
}
.smp.skin1.podcast-player.shortcode .smp-details,
.smp.skin1.podcast-player.popup .smp-details {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
  position: relative;
}
.smp.skin1.podcast-player.shortcode .smp-details img,
.smp.skin1.podcast-player.popup .smp-details img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 2px solid #fff;
}
.smp.skin1.podcast-player.shortcode .smp-details .player-meta-wrap,
.smp.skin1.podcast-player.popup .smp-details .player-meta-wrap {
  color: var(--smp-text-color, #5c637e);
  margin: 0 10px;
  text-align: var(--smp-text-alignment, left);
}
.smp.skin1.podcast-player.shortcode .smp-details .player-meta-wrap .smp-title,
.smp.skin1.podcast-player.popup .smp-details .player-meta-wrap .smp-title {
  font-family: var(--smp-font-family);
  font-size: var(--smp-font-size, 16px);
  font-weight: var(--smp-font-weight, 700);
  text-align: var(--smp-text-alignment, left);
  line-height: var(--smp-line-height, 18px);
  letter-spacing: var(--smp-letter-spacing, 1px);
  margin-bottom: 4px;
}
.smp.skin1.podcast-player.shortcode .smp-details .player-meta-wrap .items-wrap,
.smp.skin1.podcast-player.popup .smp-details .player-meta-wrap .items-wrap {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 5px;
}
.smp.skin1.podcast-player.shortcode .smp-details .player-meta-wrap .items-wrap .smp-meta,
.smp.skin1.podcast-player.popup .smp-details .player-meta-wrap .items-wrap .smp-meta {
  font-size: 11px;
}
.smp.skin1.podcast-player.shortcode .smp-details .player-meta-wrap .smp-meta,
.smp.skin1.podcast-player.popup .smp-details .player-meta-wrap .smp-meta {
  font-size: 10px;
  text-transform: uppercase;
}
.smp.skin1.podcast-player.shortcode .smp-controls,
.smp.skin1.podcast-player.popup .smp-controls {
  margin-top: 20px;
  display: block;
}
.smp.skin1.podcast-player.shortcode .smp-controls .smp-progressbar,
.smp.skin1.podcast-player.popup .smp-controls .smp-progressbar {
  height: 0;
  gap: 12px;
  margin: 0 auto 10px;
}
.smp.skin1.podcast-player.shortcode .smp-controls .smp-progressbar .progress-slider .progress-track,
.smp.skin1.podcast-player.popup .smp-controls .smp-progressbar .progress-slider .progress-track {
  background-color: var(--smp-progressbar-bg-color, rgba(255, 255, 255, 0.3));
}
.smp.skin1.podcast-player.shortcode .smp-controls .smp-progressbar .progress-slider .progress-fill,
.smp.skin1.podcast-player.popup .smp-controls .smp-progressbar .progress-slider .progress-fill {
  background-color: var(--smp-progressbar-fill-color, #fff);
}
.smp.skin1.podcast-player.shortcode .smp-controls .smp-progressbar .progress-slider .progress-handle,
.smp.skin1.podcast-player.popup .smp-controls .smp-progressbar .progress-slider .progress-handle {
  background: var(--smp-progressbar-handle-color, #002050);
  border-width: var(--smp-progressbar-handle-border-size, 1px);
  border-style: var(--smp-progressbar-handle-border-style, solid);
  border-color: var(--smp-progressbar-handle-border-color, #fff);
}
.smp.skin1.podcast-player.shortcode .smp-controls .track-duration,
.smp.skin1.podcast-player.popup .smp-controls .track-duration {
  display: flex;
  justify-content: space-between;
  color: #fff;
  margin-bottom: 15px;
}
.smp.skin1.podcast-player.shortcode .smp-controls .track-duration .track-time-duration,
.smp.skin1.podcast-player.popup .smp-controls .track-duration .track-time-duration {
  font-size: 12px;
  font-family: var(--smp-font-family);
}
.smp.skin1.podcast-player.shortcode .smp-controls .track-duration .track-total-duration,
.smp.skin1.podcast-player.popup .smp-controls .track-duration .track-total-duration {
  font-size: 12px;
  font-family: var(--smp-font-family);
}
.smp.skin1.podcast-player.shortcode .smp-controls .controls-wrap,
.smp.skin1.podcast-player.popup .smp-controls .controls-wrap {
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.smp.skin1.podcast-player.shortcode .smp-controls .controls-wrap button,
.smp.skin1.podcast-player.popup .smp-controls .controls-wrap button {
  padding: 10px !important;
  background: var(--smp-button-bg-color, #fff) !important;
  border: var(--smp-button-border-size) var(--smp-button-border-style) var(--smp-button-border-color) !important;
  border-radius: var(--smp-button-border-radius, 50px) !important;
}
.smp.skin1.podcast-player.shortcode .smp-controls .controls-wrap button.smp-play-pause,
.smp.skin1.podcast-player.popup .smp-controls .controls-wrap button.smp-play-pause {
  padding: 16px !important;
}
.smp.skin1.podcast-player.shortcode .smp-controls .controls-wrap button.smp-volume .volume-slider,
.smp.skin1.podcast-player.popup .smp-controls .controls-wrap button.smp-volume .volume-slider {
  background: rgba(34, 34, 34, 0.8980392157);
}
.smp.skin1.podcast-player.shortcode .smp-controls .controls-wrap button svg,
.smp.skin1.podcast-player.popup .smp-controls .controls-wrap button svg {
  width: 15px;
  height: 15px;
  color: var(--smp-button-color, #51C1F2);
}
.smp.skin1.podcast-player.shortcode .smp-controls .controls-wrap .playback-speed-tooltip .playback-speed > button,
.smp.skin1.podcast-player.popup .smp-controls .controls-wrap .playback-speed-tooltip .playback-speed > button {
  background: transparent !important;
  border-radius: 0 !important;
}

.smp-playlist.smp-playlist-skin1.podcast-player {
  width: var(--smp-width);
  background: var(--smp-playlist-bg-color, rgba(34, 34, 34, 0.9019607843));
  border-bottom-left-radius: var(--smp-border-radius, 5px);
  border-bottom-right-radius: var(--smp-border-radius, 5px);
  box-shadow: var(--smp-box-shadow, none);
}
.smp-playlist.smp-playlist-skin1.podcast-player .playlist-item span {
  color: #fff;
}
.smp-playlist.smp-playlist-skin1.podcast-player .playlist-item button svg {
  color: #fff;
}

.smp.skin1.popup {
  width: var(--smp-width);
  display: block;
  margin: 0 auto;
}

.smp.skin2.podcast-player.shortcode,
.smp.skin2.podcast-player.popup {
  border-radius: var(--smp-border-radius, 5px);
  padding: 15px;
  box-shadow: var(--smp-box-shadow);
}
.smp.skin2.podcast-player.shortcode.playlist-active,
.smp.skin2.podcast-player.popup.playlist-active {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  box-shadow: none;
}
.smp.skin2.podcast-player.shortcode .smp-details,
.smp.skin2.podcast-player.popup .smp-details {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  position: relative;
}
.smp.skin2.podcast-player.shortcode .smp-details img,
.smp.skin2.podcast-player.popup .smp-details img {
  width: 80px;
  height: 80px;
  margin: 0;
  border-radius: 50%;
  border: 2px solid #fff;
}
.smp.skin2.podcast-player.shortcode .smp-details .player-meta-wrap,
.smp.skin2.podcast-player.popup .smp-details .player-meta-wrap {
  color: var(--smp-text-color, #5c637e);
  margin: 0 10px;
}
.smp.skin2.podcast-player.shortcode .smp-details .player-meta-wrap .smp-title,
.smp.skin2.podcast-player.popup .smp-details .player-meta-wrap .smp-title {
  font-family: var(--smp-font-family);
  font-size: var(--smp-font-size, 16px);
  font-weight: var(--smp-font-weight, 700);
  text-align: var(--smp-text-alignment, center);
  line-height: var(--smp-line-height, 18px);
  letter-spacing: var(--smp-letter-spacing, 1px);
  margin-bottom: 6px;
}
.smp.skin2.podcast-player.shortcode .smp-details .player-meta-wrap .items-wrap,
.smp.skin2.podcast-player.popup .smp-details .player-meta-wrap .items-wrap {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 5px;
}
.smp.skin2.podcast-player.shortcode .smp-details .player-meta-wrap .items-wrap .smp-meta,
.smp.skin2.podcast-player.popup .smp-details .player-meta-wrap .items-wrap .smp-meta {
  font-size: 11px;
}
.smp.skin2.podcast-player.shortcode .smp-details .player-meta-wrap .smp-meta,
.smp.skin2.podcast-player.popup .smp-details .player-meta-wrap .smp-meta {
  margin-top: 7px;
  font-size: 10px;
  text-transform: uppercase;
  text-align: var(--smp-text-alignment, left);
}
.smp.skin2.podcast-player.shortcode .smp-controls,
.smp.skin2.podcast-player.popup .smp-controls {
  margin-top: 20px;
  display: block;
}
.smp.skin2.podcast-player.shortcode .smp-controls .smp-progressbar,
.smp.skin2.podcast-player.popup .smp-controls .smp-progressbar {
  height: 0;
  width: 90%;
  gap: 12px;
  margin: 0 auto 10px;
}
.smp.skin2.podcast-player.shortcode .smp-controls .smp-progressbar .progress-slider .progress-track,
.smp.skin2.podcast-player.popup .smp-controls .smp-progressbar .progress-slider .progress-track {
  background-color: var(--smp-progressbar-bg-color, rgba(255, 255, 255, 0.3));
}
.smp.skin2.podcast-player.shortcode .smp-controls .smp-progressbar .progress-slider .progress-fill,
.smp.skin2.podcast-player.popup .smp-controls .smp-progressbar .progress-slider .progress-fill {
  background-color: var(--smp-progressbar-fill-color, #fff);
}
.smp.skin2.podcast-player.shortcode .smp-controls .smp-progressbar .progress-slider .progress-handle,
.smp.skin2.podcast-player.popup .smp-controls .smp-progressbar .progress-slider .progress-handle {
  background: var(--smp-progressbar-handle-color, #002050);
  border-width: var(--smp-progressbar-handle-border-size, 1px);
  border-style: var(--smp-progressbar-handle-border-style, solid);
  border-color: var(--smp-progressbar-handle-border-color, #fff);
}
.smp.skin2.podcast-player.shortcode .smp-controls .smp-progressbar .track-time-duration,
.smp.skin2.podcast-player.shortcode .smp-controls .smp-progressbar .track-total-duration,
.smp.skin2.podcast-player.popup .smp-controls .smp-progressbar .track-time-duration,
.smp.skin2.podcast-player.popup .smp-controls .smp-progressbar .track-total-duration {
  font-size: 12px;
}
.smp.skin2.podcast-player.shortcode .smp-controls .track-duration,
.smp.skin2.podcast-player.popup .smp-controls .track-duration {
  width: 90%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto 10px auto;
}
.smp.skin2.podcast-player.shortcode .smp-controls .track-duration span,
.smp.skin2.podcast-player.popup .smp-controls .track-duration span {
  font-size: 12px;
  color: var(--smp-text-color, #fff);
  font-family: var(--smp-font-family);
}
.smp.skin2.podcast-player.shortcode .smp-controls .controls-wrap,
.smp.skin2.podcast-player.popup .smp-controls .controls-wrap {
  width: 90%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.smp.skin2.podcast-player.shortcode .smp-controls .controls-wrap button,
.smp.skin2.podcast-player.popup .smp-controls .controls-wrap button {
  padding: 10px !important;
  background: var(--smp-button-bg-color, #fff);
  border: var(--smp-button-border-size) var(--smp-button-border-style) var(--smp-button-border-color);
  border-radius: var(--smp-button-border-radius, 50px);
}
.smp.skin2.podcast-player.shortcode .smp-controls .controls-wrap button.smp-play-pause,
.smp.skin2.podcast-player.popup .smp-controls .controls-wrap button.smp-play-pause {
  border-radius: 50%;
  padding: 16px !important;
}
.smp.skin2.podcast-player.shortcode .smp-controls .controls-wrap button.smp-play-pause svg,
.smp.skin2.podcast-player.popup .smp-controls .controls-wrap button.smp-play-pause svg {
  width: 15px;
  height: 15px;
  color: var(--smp-button-color, #fd6b87);
}
.smp.skin2.podcast-player.shortcode .smp-controls .controls-wrap button.smp-volume .volume-slider,
.smp.skin2.podcast-player.popup .smp-controls .controls-wrap button.smp-volume .volume-slider {
  background: rgba(34, 34, 34, 0.8980392157);
}
.smp.skin2.podcast-player.shortcode .smp-controls .controls-wrap button svg,
.smp.skin2.podcast-player.popup .smp-controls .controls-wrap button svg {
  width: 15px;
  height: 15px;
  color: var(--smp-button-color, #fd6b87);
}
.smp.skin2.podcast-player.shortcode .smp-controls .controls-wrap .playback-speed-tooltip .playback-speed > button,
.smp.skin2.podcast-player.popup .smp-controls .controls-wrap .playback-speed-tooltip .playback-speed > button {
  background: transparent !important;
  border-radius: 0 !important;
}

.smp-playlist.smp-playlist-skin2.podcast-player {
  width: var(--smp-width);
  background: var(--smp-playlist-bg-color, #eb4f6d);
  border-bottom-left-radius: var(--smp-border-radius, 5px);
  border-bottom-right-radius: var(--smp-border-radius, 5px);
  box-shadow: var(--smp-box-shadow, none);
}
.smp-playlist.smp-playlist-skin2.podcast-player .playlist-item span {
  color: #fff;
}
.smp-playlist.smp-playlist-skin2.podcast-player .playlist-item button svg {
  color: #fff;
}

.smp.skin2.popup {
  width: var(--smp-width);
  display: block;
  margin: 0 auto;
}
.smp.skin2.popup .smp-details .player-meta-wrap {
  position: relative;
  left: unset;
  right: unset;
  top: unset;
  bottom: unset;
}

.smp.podcast-player.skin3.shortcode,
.smp.podcast-player.skin3.popup {
  border-radius: var(--smp-border-radius, 40px);
  padding: 16px;
  box-shadow: var(--smp-box-shadow);
  margin-top: 50px;
}
.smp.podcast-player.skin3.shortcode.playlist-active,
.smp.podcast-player.skin3.popup.playlist-active {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  box-shadow: none;
}
.smp.podcast-player.skin3.shortcode .smp-details,
.smp.podcast-player.skin3.popup .smp-details {
  position: relative;
  flex-direction: var(--smp-alignment, column);
}
.smp.podcast-player.skin3.shortcode .smp-details .player-meta-wrap,
.smp.podcast-player.skin3.popup .smp-details .player-meta-wrap {
  color: var(--smp-text-color, #5c637e);
  margin: 0 10px;
}
.smp.podcast-player.skin3.shortcode .smp-details .player-meta-wrap .smp-title,
.smp.podcast-player.skin3.popup .smp-details .player-meta-wrap .smp-title {
  font-family: var(--smp-font-family);
  font-size: var(--smp-font-size, 16px);
  font-weight: var(--smp-font-weight, 700);
  text-align: var(--smp-text-alignment, center);
  line-height: var(--smp-line-height, 18px);
  letter-spacing: var(--smp-letter-spacing, 1px);
  margin-bottom: 4px;
}
.smp.podcast-player.skin3.shortcode .smp-details .player-meta-wrap .smp-meta,
.smp.podcast-player.skin3.popup .smp-details .player-meta-wrap .smp-meta {
  font-size: 10px;
  text-align: var(--smp-text-alignment, center);
}
.smp.podcast-player.skin3.shortcode .smp-controls,
.smp.podcast-player.skin3.popup .smp-controls {
  margin-top: 20px;
  display: block;
}
.smp.podcast-player.skin3.shortcode .smp-controls .controls-play-pause,
.smp.podcast-player.skin3.popup .smp-controls .controls-play-pause {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.smp.podcast-player.skin3.shortcode .smp-controls .controls-play-pause .smp-play-pause svg,
.smp.podcast-player.skin3.popup .smp-controls .controls-play-pause .smp-play-pause svg {
  width: 36px;
  height: 36px;
  color: var(--smp-button-color, #fff);
}
.smp.podcast-player.skin3.shortcode .smp-controls .controls-wrap-time-progress,
.smp.podcast-player.skin3.popup .smp-controls .controls-wrap-time-progress {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin: 0 auto 20px;
  width: 60%;
}
.smp.podcast-player.skin3.shortcode .smp-controls .controls-wrap-time-progress .smp-time-duration,
.smp.podcast-player.skin3.popup .smp-controls .controls-wrap-time-progress .smp-time-duration {
  background-color: rgba(255, 255, 255, 0.2);
}
.smp.podcast-player.skin3.shortcode .smp-controls .smp-progressbar,
.smp.podcast-player.skin3.popup .smp-controls .smp-progressbar {
  height: 0;
  width: 90%;
  gap: 12px;
  margin: 0 auto;
}
.smp.podcast-player.skin3.shortcode .smp-controls .smp-progressbar .progress-slider .progress-track,
.smp.podcast-player.skin3.popup .smp-controls .smp-progressbar .progress-slider .progress-track {
  background-color: var(--smp-progressbar-bg-color, rgba(255, 255, 255, 0.3));
}
.smp.podcast-player.skin3.shortcode .smp-controls .smp-progressbar .progress-slider .progress-fill,
.smp.podcast-player.skin3.popup .smp-controls .smp-progressbar .progress-slider .progress-fill {
  background-color: var(--smp-progressbar-fill-color, #fff);
}
.smp.podcast-player.skin3.shortcode .smp-controls .smp-progressbar .progress-slider .progress-handle,
.smp.podcast-player.skin3.popup .smp-controls .smp-progressbar .progress-slider .progress-handle {
  background: var(--smp-progressbar-handle-color, #002050);
  border-width: var(--smp-progressbar-handle-border-size, 1px);
  border-style: var(--smp-progressbar-handle-border-style, solid);
  border-color: var(--smp-progressbar-handle-border-color, #fff);
}
.smp.podcast-player.skin3.shortcode .smp-controls .smp-progressbar .track-time-duration,
.smp.podcast-player.skin3.popup .smp-controls .smp-progressbar .track-time-duration {
  font-size: 12px;
  font-family: var(--smp-font-family);
}
.smp.podcast-player.skin3.shortcode .smp-controls .smp-progressbar .track-total-duration,
.smp.podcast-player.skin3.popup .smp-controls .smp-progressbar .track-total-duration {
  font-size: 12px;
  font-family: var(--smp-font-family);
}
.smp.podcast-player.skin3.shortcode .smp-controls .controls-wrap,
.smp.podcast-player.skin3.popup .smp-controls .controls-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  align-items: center;
}
.smp.podcast-player.skin3.shortcode .smp-controls .controls-wrap button,
.smp.podcast-player.skin3.popup .smp-controls .controls-wrap button {
  padding: 10px !important;
  background: var(--smp-button-bg-color);
  border: var(--smp-button-border-size) var(--smp-button-border-style) var(--smp-button-border-color);
  border-radius: var(--smp-button-border-radius);
}
.smp.podcast-player.skin3.shortcode .smp-controls .controls-wrap button.smp-volume .volume-slider,
.smp.podcast-player.skin3.popup .smp-controls .controls-wrap button.smp-volume .volume-slider {
  background: rgba(34, 34, 34, 0.8980392157);
}
.smp.podcast-player.skin3.shortcode .smp-controls .controls-wrap button svg,
.smp.podcast-player.skin3.popup .smp-controls .controls-wrap button svg {
  width: 15px;
  height: 15px;
  color: var(--smp-button-color, #fff);
}
.smp.podcast-player.skin3.shortcode .smp-controls .controls-wrap .playback-speed-tooltip .playback-speed > button,
.smp.podcast-player.skin3.popup .smp-controls .controls-wrap .playback-speed-tooltip .playback-speed > button {
  background: transparent !important;
  border-radius: 0 !important;
}

.smp-playlist.smp-playlist-skin3.podcast-player {
  width: var(--smp-width);
  background: var(--smp-playlist-bg-color, rgba(34, 34, 34, 0.9019607843));
  border-bottom-left-radius: var(--smp-border-radius, 40px);
  border-bottom-right-radius: var(--smp-border-radius, 40px);
  box-shadow: var(--smp-box-shadow, none);
}
.smp-playlist.smp-playlist-skin3.podcast-player .playlist-item span {
  color: #fff;
}
.smp-playlist.smp-playlist-skin3.podcast-player .playlist-item button svg {
  color: #fff;
}

.smp.skin3.popup {
  display: block;
  margin: 0 auto;
}
.smp.skin3.popup + .smp-playlist {
  padding: 16px !important;
}

.smp.skin4.podcast-player.shortcode,
.smp.skin4.podcast-player.popup {
  border-radius: var(--smp-border-radius, 5px);
  padding: 15px;
  box-shadow: var(--smp-box-shadow);
}
.smp.skin4.podcast-player.shortcode.playlist-active,
.smp.skin4.podcast-player.popup.playlist-active {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  box-shadow: none;
}
.smp.skin4.podcast-player.shortcode .smp-details,
.smp.skin4.podcast-player.popup .smp-details {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  position: relative;
  gap: 10px;
}
.smp.skin4.podcast-player.shortcode .smp-details img,
.smp.skin4.podcast-player.popup .smp-details img {
  width: 80px;
  margin: 0;
  border-radius: 4px;
  background-color: #fff;
  padding: 10px;
}
.smp.skin4.podcast-player.shortcode .smp-details .player-meta-wrap,
.smp.skin4.podcast-player.popup .smp-details .player-meta-wrap {
  color: var(--smp-text-color, #5c637e);
  margin: 0;
  text-align: var(--smp-text-alignment, left);
}
.smp.skin4.podcast-player.shortcode .smp-details .player-meta-wrap .smp-title,
.smp.skin4.podcast-player.popup .smp-details .player-meta-wrap .smp-title {
  font-family: var(--smp-font-family);
  font-size: var(--smp-font-size, 16px);
  font-weight: var(--smp-font-weight, 700);
  text-align: var(--smp-text-alignment, left);
  line-height: var(--smp-line-height, 18px);
  letter-spacing: var(--smp-letter-spacing, 1px);
  margin-bottom: 6px;
}
.smp.skin4.podcast-player.shortcode .smp-details .player-meta-wrap .items-wrap,
.smp.skin4.podcast-player.popup .smp-details .player-meta-wrap .items-wrap {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 5px;
}
.smp.skin4.podcast-player.shortcode .smp-details .player-meta-wrap .items-wrap .smp-meta,
.smp.skin4.podcast-player.popup .smp-details .player-meta-wrap .items-wrap .smp-meta {
  font-size: 11px;
}
.smp.skin4.podcast-player.shortcode .smp-details .player-meta-wrap .smp-meta,
.smp.skin4.podcast-player.popup .smp-details .player-meta-wrap .smp-meta {
  margin-top: 7px;
  font-size: 10px;
  text-transform: uppercase;
}
.smp.skin4.podcast-player.shortcode .smp-controls,
.smp.skin4.podcast-player.popup .smp-controls {
  margin-top: 20px;
  display: block;
}
.smp.skin4.podcast-player.shortcode .smp-controls .smp-progressbar,
.smp.skin4.podcast-player.popup .smp-controls .smp-progressbar {
  height: 0;
  width: 98%;
  gap: 12px;
  margin: 0 auto 10px;
}
.smp.skin4.podcast-player.shortcode .smp-controls .smp-progressbar .progress-slider .progress-track,
.smp.skin4.podcast-player.popup .smp-controls .smp-progressbar .progress-slider .progress-track {
  background-color: var(--smp-progressbar-bg-color, rgb(255, 255, 255));
}
.smp.skin4.podcast-player.shortcode .smp-controls .smp-progressbar .progress-slider .progress-fill,
.smp.skin4.podcast-player.popup .smp-controls .smp-progressbar .progress-slider .progress-fill {
  background-color: var(--smp-progressbar-fill-color, #7E8AB8);
}
.smp.skin4.podcast-player.shortcode .smp-controls .smp-progressbar .progress-slider .progress-handle,
.smp.skin4.podcast-player.popup .smp-controls .smp-progressbar .progress-slider .progress-handle {
  background: var(--smp-progressbar-handle-color, #fff);
  border-width: var(--smp-progressbar-handle-border-size, 1px);
  border-style: var(--smp-progressbar-handle-border-style, solid);
  border-color: var(--smp-progressbar-handle-border-color, #7E8AB8);
}
.smp.skin4.podcast-player.shortcode .smp-controls .smp-progressbar .track-time-duration,
.smp.skin4.podcast-player.shortcode .smp-controls .smp-progressbar .track-total-duration,
.smp.skin4.podcast-player.popup .smp-controls .smp-progressbar .track-time-duration,
.smp.skin4.podcast-player.popup .smp-controls .smp-progressbar .track-total-duration {
  font-size: 12px;
}
.smp.skin4.podcast-player.shortcode .smp-controls .track-duration,
.smp.skin4.podcast-player.popup .smp-controls .track-duration {
  width: 98%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto 10px auto;
}
.smp.skin4.podcast-player.shortcode .smp-controls .track-duration span,
.smp.skin4.podcast-player.popup .smp-controls .track-duration span {
  font-size: 12px;
  color: var(--smp-text-color, #fff);
  font-family: var(--smp-font-family);
}
.smp.skin4.podcast-player.shortcode .smp-controls .controls-wrap,
.smp.skin4.podcast-player.popup .smp-controls .controls-wrap {
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.smp.skin4.podcast-player.shortcode .smp-controls .controls-wrap button,
.smp.skin4.podcast-player.popup .smp-controls .controls-wrap button {
  padding: 10px !important;
  background: var(--smp-button-bg-color, #fff);
  border: var(--smp-button-border-size) var(--smp-button-border-style) var(--smp-button-border-color);
  border-radius: var(--smp-button-border-radius, 50px);
}
.smp.skin4.podcast-player.shortcode .smp-controls .controls-wrap button.smp-volume .volume-slider,
.smp.skin4.podcast-player.popup .smp-controls .controls-wrap button.smp-volume .volume-slider {
  background: rgba(34, 34, 34, 0.8980392157);
}
.smp.skin4.podcast-player.shortcode .smp-controls .controls-wrap button svg,
.smp.skin4.podcast-player.popup .smp-controls .controls-wrap button svg {
  width: 15px;
  height: 15px;
  color: var(--smp-button-color, #5C637E);
}
.smp.skin4.podcast-player.shortcode .smp-controls .controls-wrap .playback-speed-tooltip .playback-speed > button,
.smp.skin4.podcast-player.popup .smp-controls .controls-wrap .playback-speed-tooltip .playback-speed > button {
  background: transparent !important;
  border-radius: 0 !important;
}

.smp-playlist.smp-playlist-skin4.podcast-player {
  width: var(--smp-width);
  background: var(--smp-playlist-bg-color, #5C637E);
  border-bottom-left-radius: var(--smp-border-radius, 5px);
  border-bottom-right-radius: var(--smp-border-radius, 5px);
  padding: 16px;
  box-shadow: var(--smp-box-shadow, none);
}
.smp-playlist.smp-playlist-skin4.podcast-player .playlist-item span {
  color: #fff;
}
.smp-playlist.smp-playlist-skin4.podcast-player .playlist-item button svg {
  color: #fff;
}

.smp.skin4.popup {
  width: var(--smp-width);
  display: block;
  margin: 0 auto;
}
.smp.skin4.popup .smp-details .player-meta-wrap {
  position: relative;
  left: unset;
  right: unset;
  top: unset;
  bottom: unset;
}

.smp.skin5.podcast-player.shortcode,
.smp.skin5.podcast-player.popup {
  border-radius: var(--smp-border-radius, 5px);
  padding: 15px;
  box-shadow: var(--smp-box-shadow);
}
.smp.skin5.podcast-player.shortcode.playlist-active,
.smp.skin5.podcast-player.popup.playlist-active {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  box-shadow: none;
}
.smp.skin5.podcast-player.shortcode .smp-details,
.smp.skin5.podcast-player.popup .smp-details {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  position: relative;
}
.smp.skin5.podcast-player.shortcode .smp-details img,
.smp.skin5.podcast-player.popup .smp-details img {
  width: 80px;
  height: 80px;
  margin: 0 0 15px;
}
.smp.skin5.podcast-player.shortcode .smp-details .player-meta-wrap,
.smp.skin5.podcast-player.popup .smp-details .player-meta-wrap {
  color: var(--smp-text-color, #5c637e);
  margin: 0;
}
.smp.skin5.podcast-player.shortcode .smp-details .player-meta-wrap .smp-title,
.smp.skin5.podcast-player.popup .smp-details .player-meta-wrap .smp-title {
  font-family: var(--smp-font-family);
  font-size: var(--smp-font-size, 16px);
  font-weight: var(--smp-font-weight, 700);
  text-align: var(--smp-text-alignment, center);
  line-height: var(--smp-line-height, 18px);
  letter-spacing: var(--smp-letter-spacing, 1px);
  margin-bottom: 4px;
}
.smp.skin5.podcast-player.shortcode .smp-details .player-meta-wrap .items-wrap,
.smp.skin5.podcast-player.popup .smp-details .player-meta-wrap .items-wrap {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 5px;
  margin-bottom: 5px;
}
.smp.skin5.podcast-player.shortcode .smp-details .player-meta-wrap .items-wrap .smp-meta,
.smp.skin5.podcast-player.popup .smp-details .player-meta-wrap .items-wrap .smp-meta {
  font-size: 11px;
}
.smp.skin5.podcast-player.shortcode .smp-details .player-meta-wrap .smp-meta,
.smp.skin5.podcast-player.popup .smp-details .player-meta-wrap .smp-meta {
  font-size: 10px;
  text-transform: uppercase;
  text-align: var(--smp-text-alignment, left);
}
.smp.skin5.podcast-player.shortcode .smp-controls,
.smp.skin5.podcast-player.popup .smp-controls {
  margin-top: 20px;
  display: block;
}
.smp.skin5.podcast-player.shortcode .smp-controls .smp-progressbar,
.smp.skin5.podcast-player.popup .smp-controls .smp-progressbar {
  height: 0;
  width: 95%;
  gap: 12px;
  margin: 0 auto 10px;
}
.smp.skin5.podcast-player.shortcode .smp-controls .smp-progressbar .progress-slider .progress-track,
.smp.skin5.podcast-player.popup .smp-controls .smp-progressbar .progress-slider .progress-track {
  background-color: var(--smp-progressbar-bg-color, rgb(255, 255, 255));
}
.smp.skin5.podcast-player.shortcode .smp-controls .smp-progressbar .progress-slider .progress-fill,
.smp.skin5.podcast-player.popup .smp-controls .smp-progressbar .progress-slider .progress-fill {
  background-color: var(--smp-progressbar-fill-color, #6861ff);
}
.smp.skin5.podcast-player.shortcode .smp-controls .smp-progressbar .progress-slider .progress-handle,
.smp.skin5.podcast-player.popup .smp-controls .smp-progressbar .progress-slider .progress-handle {
  background: var(--smp-progressbar-handle-color, #fff);
  border-width: var(--smp-progressbar-handle-border-size, 1px);
  border-style: var(--smp-progressbar-handle-border-style, solid);
  border-color: var(--smp-progressbar-handle-border-color, #6861ff);
}
.smp.skin5.podcast-player.shortcode .smp-controls .smp-progressbar .track-time-duration,
.smp.skin5.podcast-player.shortcode .smp-controls .smp-progressbar .track-total-duration,
.smp.skin5.podcast-player.popup .smp-controls .smp-progressbar .track-time-duration,
.smp.skin5.podcast-player.popup .smp-controls .smp-progressbar .track-total-duration {
  font-size: 12px;
}
.smp.skin5.podcast-player.shortcode .smp-controls .track-duration,
.smp.skin5.podcast-player.popup .smp-controls .track-duration {
  width: 98%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto 10px auto;
}
.smp.skin5.podcast-player.shortcode .smp-controls .track-duration span,
.smp.skin5.podcast-player.popup .smp-controls .track-duration span {
  font-size: 12px;
  color: var(--smp-text-color, #fff);
  font-family: var(--smp-font-family);
}
.smp.skin5.podcast-player.shortcode .smp-controls .controls-wrap,
.smp.skin5.podcast-player.popup .smp-controls .controls-wrap {
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.smp.skin5.podcast-player.shortcode .smp-controls .controls-wrap button,
.smp.skin5.podcast-player.popup .smp-controls .controls-wrap button {
  padding: 10px !important;
  background: var(--smp-button-bg-color, #fff);
  border: var(--smp-button-border-size) var(--smp-button-border-style) var(--smp-button-border-color);
  border-radius: var(--smp-button-border-radius, 50px);
}
.smp.skin5.podcast-player.shortcode .smp-controls .controls-wrap button.smp-volume .volume-slider,
.smp.skin5.podcast-player.popup .smp-controls .controls-wrap button.smp-volume .volume-slider {
  background: rgba(34, 34, 34, 0.8980392157);
}
.smp.skin5.podcast-player.shortcode .smp-controls .controls-wrap button svg,
.smp.skin5.podcast-player.popup .smp-controls .controls-wrap button svg {
  width: 15px;
  height: 15px;
  color: var(--smp-button-color, #6861FF);
}
.smp.skin5.podcast-player.shortcode .smp-controls .controls-wrap button.smp-play-pause,
.smp.skin5.podcast-player.popup .smp-controls .controls-wrap button.smp-play-pause {
  border-radius: 50%;
  padding: 15px !important;
}
.smp.skin5.podcast-player.shortcode .smp-controls .controls-wrap button.smp-play-pause svg,
.smp.skin5.podcast-player.popup .smp-controls .controls-wrap button.smp-play-pause svg {
  width: 25px !important;
  height: 25px !important;
}
.smp.skin5.podcast-player.shortcode .smp-controls .controls-wrap .playback-speed-tooltip .playback-speed > button,
.smp.skin5.podcast-player.popup .smp-controls .controls-wrap .playback-speed-tooltip .playback-speed > button {
  background: transparent !important;
  border-radius: 0 !important;
}

.smp-playlist.smp-playlist-skin5.podcast-player {
  width: var(--smp-width);
  background: var(--smp-playlist-bg-color, #6861FF);
  border-bottom-left-radius: var(--smp-border-radius, 5px);
  border-bottom-right-radius: var(--smp-border-radius, 5px);
  padding: 16px;
  box-shadow: var(--smp-box-shadow, none);
}
.smp-playlist.smp-playlist-skin5.podcast-player .playlist-item span {
  color: #fff;
}
.smp-playlist.smp-playlist-skin5.podcast-player .playlist-item button svg {
  color: #fff;
}

.smp.podcast-player.skin5.popup {
  width: var(--smp-width);
  display: block;
  margin: 0 auto;
}
.smp.podcast-player.skin5.popup .player-meta-wrap {
  text-align: center;
}
.smp.podcast-player.skin5.popup + .smp-playlist {
  padding: 16px !important;
}