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-context-menu {
  z-index: 99999999;
  background-color: #fff;
  border-radius: 4px;
  list-style: none;
  font-size: 14px;
  font-family: sans-serif;
  font-weight: 400;
  line-height: 1.5;
  color: #444;
  cursor: default;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
.smp-context-menu * {
  box-sizing: border-box;
}
.smp-context-menu .context-menu-item {
  display: flex;
  align-items: center;
  padding: 10px 15px;
  cursor: pointer;
  transition: background-color 0.2s ease;
  width: 100%;
  position: relative;
}
.smp-context-menu .context-menu-item i {
  margin-right: 7px;
  color: #777;
}
.smp-context-menu .context-menu-item:hover {
  background-color: #f5f5f5;
}
.smp-context-menu .context-menu-item:hover .pro-badge {
  transform: scale(1.1);
}
.smp-context-menu .context-menu-item .pro-badge {
  position: absolute;
  right: 0;
  background: #FDB837;
  color: #fff;
  padding: 5px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: normal;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease;
}
.smp-context-menu .context-menu-item .pro-badge i {
  margin-right: 2px;
  height: auto;
  width: auto;
  font-size: 15px;
}

.react-contexify {
  position: fixed;
  opacity: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  background-color: #ffffff;
  box-sizing: border-box;
  box-shadow: 0px 10px 30px -5px rgba(0, 0, 0, 0.3);
  border-radius: 6px;
  min-width: 200px;
}

.context-submenu {
  width: 100%;
}

.react-contexify__submenu--is-open, .react-contexify__submenu--is-open > .react-contexify__item__content {
  color: white;
  background-color: #4393e6;
}

.react-contexify__submenu--is-open > .react-contexify__submenu {
  pointer-events: initial;
  opacity: 1;
}

.react-contexify .react-contexify__submenu {
  position: absolute;
  /* negate padding */
  top: -6px;
  pointer-events: none;
  transition: opacity 0.275s;
}

.react-contexify__submenu-arrow {
  margin-left: auto;
  font-size: 12px;
}
.react-contexify__submenu-arrow i {
  margin-right: 0 !important;
}

.react-contexify__separator {
  width: 100%;
  height: 1px;
  cursor: default;
  margin: 4px 0;
  background-color: rgba(0, 0, 0, 0.2);
}

.react-contexify__will-leave--disabled {
  pointer-events: none;
}

.react-contexify__item {
  cursor: pointer;
  position: relative;
}

.react-contexify__item:focus {
  outline: 0;
}

.react-contexify__item:not(.react-contexify__item--disabled):hover > .react-contexify__submenu {
  pointer-events: initial;
  opacity: 1;
}

.react-contexify__item--disabled {
  cursor: default;
  opacity: 0.5;
}

.react-contexify__item__content {
  display: flex;
  align-items: center;
  white-space: nowrap;
  color: #333;
  position: relative;
  width: 100%;
}

.react-contexify__theme--dark {
  background-color: rgba(40, 40, 40, 0.98);
}

.react-contexify__theme--dark .react-contexify__submenu {
  background-color: rgba(40, 40, 40, 0.98);
}

.react-contexify__theme--dark .react-contexify__separator {
  background-color: #eee;
}

.react-contexify__theme--dark .react-contexify__item__content {
  color: #ffffff;
}

.react-contexify__theme--light .react-contexify__separator {
  background-color: #eee;
}

.react-contexify__theme--light .react-contexify__submenu--is-open,
.react-contexify__theme--light .react-contexify__submenu--is-open > .react-contexify__item__content {
  color: #4393e6;
  background-color: #e0eefd;
}

.react-contexify__theme--light .react-contexify__item:not(.react-contexify__item--disabled):hover > .react-contexify__item__content, .react-contexify__theme--light .react-contexify__item:not(.react-contexify__item--disabled):focus > .react-contexify__item__content {
  color: #4393e6;
  background-color: #e0eefd;
}

.react-contexify__theme--light .react-contexify__item__content {
  color: #666;
}

@keyframes react-contexify__scaleIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 1;
  }
}
@keyframes react-contexify__scaleOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
.react-contexify__will-enter--scale {
  transform-origin: top left;
  animation: react-contexify__scaleIn 0.3s;
}

.react-contexify__will-leave--scale {
  transform-origin: top left;
  animation: react-contexify__scaleOut 0.3s;
}

@keyframes react-contexify__fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes react-contexify__fadeOut {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(10px);
  }
}
.react-contexify__will-enter--fade {
  animation: react-contexify__fadeIn 0.3s ease;
}

.react-contexify__will-leave--fade {
  animation: react-contexify__fadeOut 0.3s ease;
}

@keyframes react-contexify__flipInX {
  from {
    transform: perspective(800px) rotate3d(1, 0, 0, 45deg);
  }
  to {
    transform: perspective(800px);
  }
}
@keyframes react-contexify__flipOutX {
  from {
    transform: perspective(800px);
  }
  to {
    transform: perspective(800px) rotate3d(1, 0, 0, 45deg);
    opacity: 0;
  }
}
.react-contexify__will-enter--flip {
  backface-visibility: visible !important;
  transform-origin: top center;
  animation: react-contexify__flipInX 0.3s;
}

.react-contexify__will-leave--flip {
  transform-origin: top center;
  animation: react-contexify__flipOutX 0.3s;
  backface-visibility: visible !important;
}

@keyframes swing-in-top-fwd {
  0% {
    transform: rotateX(-100deg);
    transform-origin: top;
    opacity: 0;
  }
  100% {
    transform: rotateX(0deg);
    transform-origin: top;
    opacity: 1;
  }
}
@keyframes react-contexify__slideIn {
  from {
    opacity: 0;
    transform: scale3d(1, 0.3, 1);
  }
  to {
    opacity: 1;
  }
}
@keyframes react-contexify__slideOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: scale3d(1, 0.3, 1);
  }
}
.react-contexify__will-enter--slide {
  transform-origin: top center;
  animation: react-contexify__slideIn 0.3s;
}

.react-contexify__will-leave--slide {
  transform-origin: top center;
  animation: react-contexify__slideOut 0.3s;
}

.toplevel_page_soft-multimedia-player #wpcontent,
.multimedia-player_page_soft-multimedia-player-add-new #wpcontent {
  padding-left: 0;
}

.smp-app * {
  box-sizing: border-box;
}
.smp-app__header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  background: #fff;
  padding: 12px 15px;
  border-bottom: 1px solid #e5e5e5;
  justify-content: space-between;
  z-index: 99;
  position: sticky;
  top: 32px;
}
.smp-app__header .btn-back {
  border: none;
  background: transparent;
  padding: 0;
  border-right: 1px solid #ccc;
  padding-right: 7px;
  margin-right: 10px;
  cursor: pointer;
  color: #5c637e;
  height: 30px;
}
.smp-app__header .header-title {
  display: flex;
  align-items: center;
  font-size: 1.2em;
  font-weight: 500;
  cursor: pointer;
  margin-right: auto;
  max-width: 70%;
}
.smp-app__header .header-title .header-icon {
  margin-right: 7px;
  width: 35px;
}
.smp-app__header .header-title .input-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 10px;
  border: 1px solid rgba(92, 99, 126, 0.3);
  border-radius: 7px;
  overflow: hidden;
  height: 40px;
  font-size: 15px;
  flex: 1;
}
.smp-app__header .header-title .input-wrap .player-type-icon {
  margin-right: 0px;
  padding-left: 5px;
  padding-right: 5px;
  width: 40px;
  height: 100%;
  border-right: 1px solid #ddd;
  background: #eee;
}
.smp-app__header .header-title .input-wrap .shortcode-title {
  background: #fff;
  position: relative;
  border: none;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 10px;
  cursor: text;
  min-width: 200px;
  max-width: 500px;
}
.smp-app__header .header-title .input-wrap .shortcode-title:focus, .smp-app__header .header-title .input-wrap .shortcode-title:focus-visible, .smp-app__header .header-title .input-wrap .shortcode-title:active, .smp-app__header .header-title .input-wrap .shortcode-title:hover {
  border: none;
  box-shadow: none;
  outline: none;
}
.smp-app__header .header-title .input-wrap .player-types-tooltip {
  width: 500px;
}
.smp-app__header .header-title .input-wrap .player-types-tooltip .smp-player-types {
  padding: 0;
  width: 100%;
  gap: 10px;
}
.smp-app__header .header-title .input-wrap .player-types-tooltip .smp-player-types .player-type {
  width: 100%;
  flex-direction: row;
  text-align: left;
  padding: 15px;
}
.smp-app__header .header-title .input-wrap .player-types-tooltip .smp-player-types .player-type .icon-wrap {
  width: 60px;
  height: 60px;
  margin-right: 7px;
}
.smp-app__header .header-title .input-wrap .player-types-tooltip .smp-player-types .player-type .type-meta {
  flex: 1;
  overflow: hidden;
}
.smp-app__header .header-title .input-wrap .player-types-tooltip .smp-player-types .player-type .type-meta p {
  margin-bottom: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.smp-app__header .header-actions {
  display: flex;
}
.smp-app__header .header-actions .components-button-group {
  border-radius: 5px;
  border: 1px solid #ddd;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  overflow: hidden;
  padding: 0;
}
.smp-app__header .header-actions .components-button-group button {
  color: #555c66;
  background: #f8f8f8;
  height: 38px;
  line-height: 1.5;
  transition: all 0.3s ease;
  box-shadow: none !important;
  font-weight: 500;
  margin: 0;
  border-radius: 0 !important;
  outline: none;
}
.smp-app__header .header-actions .components-button-group button i {
  margin-right: 7px;
}
.smp-app__header .header-actions .components-button-group button:first-child {
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}
.smp-app__header .header-actions .components-button-group button:last-child {
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  border-left: 1px solid #ddd;
}
.smp-app__header .header-actions .components-button-group button:hover {
  background: rgba(0, 86, 215, 0.05);
  color: #0056d7;
}
.smp-app__header .header-actions .components-button-group button:focus, .smp-app__header .header-actions .components-button-group button:active, .smp-app__header .header-actions .components-button-group button:hover {
  outline: none;
  box-shadow: none;
}
.smp-app__header .header-actions .btn-back {
  background: #5c637e;
  color: #fff;
  border-color: rgba(0, 86, 215, 0.3);
}
.smp-app__header .header-actions .btn-back:hover {
  background: #464c61;
}
.smp-app__header .header-actions .btn-save {
  margin-left: 15px;
}
.smp-app__header .header-actions .btn-save .smp-spinner {
  height: auto !important;
  color: #fff !important;
}
.smp-app__header .header-actions .btn-save.disabled {
  opacity: 0.5;
  pointer-events: none;
  background: #ddd;
  border-color: #ddd;
  color: #555;
}
.smp-app__header .header-actions .btn-save.disabled:hover {
  background: #ddd;
  border-color: #ddd;
}
.smp-app__header .header-actions .btn-cancel {
  margin-right: 15px;
}
@media (max-width: 767px) {
  .smp-app__header {
    margin-left: -10px;
    margin-right: -10px;
    padding: 10px;
    top: -50px;
  }
  .smp-app__header .header-title img {
    width: 30px;
    margin-right: 5px;
  }
  .smp-app__header .header-title label {
    font-size: 1em;
  }
  .smp-app__header .header-title .shortcode-title {
    height: 35px;
    min-height: unset;
    margin-left: auto;
    border-radius: 5px;
    color: #555;
    font-size: 14px;
    font-weight: 400;
    width: 150px;
  }
  .smp-app__header .header-actions .add-new-btn {
    margin-left: auto;
  }
  .smp-app__header .header-actions button {
    overflow: hidden;
    padding: 7px;
    font-size: 0.8em;
    margin-left: 10px;
    height: 35px;
  }
  .smp-app__header .header-actions button:first-child {
    margin-left: 0;
  }
  .smp-app__header .header-actions button i {
    margin-right: 3px;
  }
  .smp-app__header .header-actions button span {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
  }
  .smp-app__header:has(.btn-back) .header-title img,
.smp-app__header:has(.btn-back) .header-title label {
    display: none;
  }
  .smp-app__header:has(.btn-back) .header-actions {
    justify-content: center;
  }
  .smp-app__header:has(.btn-back) .header-actions .shortcode-wrap {
    width: 90px;
    height: 35px;
  }
  .smp-app__header:has(.btn-back) .header-actions .shortcode-wrap code {
    height: 35px;
    padding-top: 7px;
  }
}
.smp-app .empty-placeholder {
  padding: 2rem 2rem;
  border-radius: 10px;
  border: 1px solid rgba(0, 86, 215, 0.3);
  background: #fff;
  margin: 50px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  max-width: 100%;
  width: 30rem;
}
.smp-app .empty-placeholder img {
  max-width: 250px;
  width: 100%;
  margin-left: 40px;
}
.smp-app .empty-placeholder h3 {
  color: #333;
  margin-top: 30px;
  margin-bottom: 5px;
  font-weight: 500;
}
.smp-app .empty-placeholder p {
  color: #555;
  margin-bottom: 10px;
}
.smp-app .empty-placeholder button {
  margin-top: 10px;
}
.smp-app .selection-actions-wrap {
  display: flex;
  align-items: center;
  margin-top: 30px;
}
.smp-app .selection-actions-wrap .selection-count {
  font-weight: 500;
  background: rgba(47, 180, 75, 0.1);
  padding: 10px 10px;
  border-radius: 5px;
  height: 35px;
  border: 1px solid rgba(47, 180, 75, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}
.smp-app .selection-actions-wrap .smp-btn {
  margin-left: 10px;
  height: 35px;
}
.smp-app .components-base-control__field {
  margin-bottom: 0;
}
.smp-app .components-base-control__field .components-checkbox-control__input {
  border-color: rgba(92, 99, 126, 0.5);
  margin: 0;
}
.smp-app .components-base-control__field .components-checkbox-control__input-container {
  margin: 0;
}
.smp-app .components-base-control__field .components-checkbox-control__input:checked {
  background: #0b6dff;
  border-color: #0b6dff;
}
.smp-app .player-list {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 10px;
}
.smp-app .player-list-wrap {
  padding: 20px;
}
.smp-app .player-list-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 15px;
  margin-bottom: 15px;
}
.smp-app .player-list-header .player-list-title {
  font-size: 1.2em;
  font-weight: 600;
  margin: 0;
  display: flex;
  align-items: center;
}
.smp-app .player-list-header .player-list-title .shortcode-list-count {
  font-size: 15px;
  font-weight: 400;
  color: #777;
  margin-left: 7px;
}
.smp-app .player-list-header .settings-per-page {
  display: flex;
  align-items: center;
  margin-left: auto;
  margin-right: 20px;
}
.smp-app .player-list-header .settings-per-page h4 {
  margin: 0 7px 0 0;
  padding: 0;
  font-size: 15px;
  font-weight: normal;
}
.smp-app .player-list-header .settings-per-page .components-select-control {
  min-width: 80px;
  width: 80px;
  border-radius: 7px;
}
.smp-app .player-list-header .settings-per-page .components-select-control__input {
  height: 40px !important;
}
.smp-app .player-list-header .settings-per-page .components-input-control__backdrop {
  border-color: #ddd;
  height: 40px !important;
}
.smp-app .player-list-header .search-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #ddd;
  border-radius: 7px;
  overflow: hidden;
  height: 40px;
  margin-right: 20px;
}
.smp-app .player-list-header .search-wrap .search-dismiss {
  border: none;
  background: #fff;
  padding: 0 10px;
  cursor: pointer;
  height: 100%;
  display: flex;
  align-items: center;
}
.smp-app .player-list-header .search-wrap .search-submit {
  margin-right: 0;
  padding-left: 10px;
  padding-right: 10px;
  width: 40px;
  border: none;
  background: #eee;
  height: 100%;
  cursor: pointer;
  display: flex;
  align-items: center;
}
.smp-app .player-list-header .search-wrap input {
  background: #fff;
  position: relative;
  border: none;
  height: 100%;
  padding: 3px 10px;
  width: 200px;
  border-radius: 0;
}
.smp-app .player-list-header .search-wrap input:focus, .smp-app .player-list-header .search-wrap input:active, .smp-app .player-list-header .search-wrap input:hover {
  border: none;
  box-shadow: none;
}
.smp-app .player-list-header .smp-list-column-settings h4 {
  margin-top: 5px;
  margin-bottom: 10px;
}
.smp-app .player-list-header .smp-list-column-settings i {
  width: 30px;
  height: 30px;
  font-size: 30px;
  color: #5c637e;
  cursor: pointer;
}
.smp-app .player-list-header .smp-list-column-settings .list-settings-tooltip {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 580px;
}
.smp-app .player-list-header .smp-list-column-settings .list-settings-tooltip .settings-columns {
  width: 100%;
  margin-bottom: 10px;
}
.smp-app .player-list-header .smp-list-column-settings .column-options {
  display: flex;
}
.smp-app .player-list-header .smp-list-column-settings .column-options .smp-column-setting {
  margin-bottom: 5px;
  margin-right: 10px;
  border: 1px solid #eee;
  padding: 5px 7px;
  border-radius: 5px;
}
.smp-app .player-list-header .smp-list-column-settings .column-options .smp-column-setting .components-base-control__field {
  display: flex;
  align-items: center;
}
.smp-app .player-list-header .smp-list-column-settings .column-options .components-checkbox-control__input-container {
  margin-right: 5px;
}
.smp-app .player-list-header .smp-list-column-settings .components-checkbox-control__label {
  text-transform: capitalize;
  font-size: 13px;
  line-height: 1.5;
}
.smp-app .player-list thead {
  background: #fff;
}
.smp-app .player-list thead th {
  padding: 24px 15px;
  font-size: 0.875rem;
  color: #5c637e;
  border-left-width: 0;
  border-right-width: 0;
  margin-bottom: 1rem;
}
.smp-app .player-list thead th:first-child {
  border-radius: 10px 0 0 10px;
}
.smp-app .player-list thead th:last-child {
  border-radius: 0 10px 10px 0;
}
.smp-app .player-list thead th i {
  margin-left: 5px;
  color: #5c637e;
}
.smp-app .player-list thead th .smp-tooltip {
  font-weight: 500;
  font-size: 12px;
  width: 200px;
}
.smp-app .player-list thead th .sortable {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.smp-app .player-list thead th .sortable i {
  opacity: 0.5;
  margin-left: 5px;
  color: #999;
  transition: all 0.3s ease;
}
.smp-app .player-list thead th .sortable.asc i {
  transform: rotate(180deg);
}
.smp-app .player-list thead th .sortable.desc i {
  transform: rotate(0deg);
}
.smp-app .player-list thead th .sortable.active, .smp-app .player-list thead th .sortable:hover {
  color: #0056d7;
}
.smp-app .player-list thead th .sortable.active i, .smp-app .player-list thead th .sortable:hover i {
  opacity: 1;
  color: #0b6dff;
}
.smp-app .player-list tbody th,
.smp-app .player-list tbody td {
  padding: 10px 20px;
  font-size: 0.875rem;
  color: #5c637e;
  white-space: nowrap;
  text-align: center;
}
.smp-app .player-list tbody th:first-child,
.smp-app .player-list tbody td:first-child {
  border-radius: 10px 0 0 10px;
}
.smp-app .player-list tbody th:last-child,
.smp-app .player-list tbody td:last-child {
  border-radius: 0 10px 10px 0;
}
.smp-app .player-list-item {
  transition: all 0.3s ease;
  background: #fff;
  vertical-align: middle;
}
.smp-app .player-list-item:hover {
  background: #fbfbfb;
}
.smp-app .player-list .col-selection {
  width: 35px;
  text-align: center;
  padding-right: 0;
  padding-left: 20px;
}
.smp-app .player-list .col-selection .components-base-control__field {
  margin-bottom: 0;
}
.smp-app .player-list .col-id {
  width: 60px;
}
.smp-app .player-list .col-title {
  text-align: left;
}
.smp-app .player-list td.col-title {
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
.smp-app .player-list td.col-title:hover {
  color: #0042a4;
}
.smp-app .player-list td.col-type img {
  width: 40px;
}
.smp-app .player-list td.col-id {
  font-weight: 500;
}
.smp-app .player-list .col-code > div {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  width: -moz-max-content;
  width: max-content;
  margin: auto;
}
.smp-app .player-list .col-code > div code {
  padding: 7px 10px 7px 35px;
  background: #fff;
  color: #5c637e;
  border-radius: 7px;
  border: 1px solid rgba(92, 99, 126, 0.2);
  font-size: 12px;
}
.smp-app .player-list .col-code > div i {
  left: 3px;
  color: #0b6dff;
  padding: 7px;
  border-radius: 30px;
  height: auto;
  width: auto;
  cursor: pointer;
  position: absolute;
  font-size: 24px;
}
.smp-app .player-list .col-count {
  text-align: center;
}
.smp-app .player-list .col-count .play-count {
  background: #e7e7e7;
  color: #5c637e;
  padding: 5px 10px;
  border-radius: 5px;
  border: 1px solid rgba(92, 99, 126, 0.2);
}
.smp-app .player-list .col-count .play-count.pro-feature {
  background: #fed561;
  border-color: rgba(254, 213, 97, 0.3);
}
.smp-app .player-list .col-locations {
  text-align: center;
}
.smp-app .player-list .col-locations .location-count {
  text-align: center;
  cursor: pointer;
  border: 1px solid rgba(92, 99, 126, 0.2);
  border-radius: 5px;
  padding: 5px 10px;
  color: #5c637e;
}
.smp-app .player-list .col-locations .location-count:hover {
  background: rgba(92, 99, 126, 0.2);
  color: #fff;
}
.smp-app .player-list .col-locations h3 {
  margin-top: 0;
  margin-bottom: 10px;
}
.smp-app .player-list .col-locations .smp-tooltip {
  padding: 15px;
}
.smp-app .player-list .col-locations .location-item {
  margin-bottom: 7px;
}
.smp-app .player-list .col-locations .location-item a {
  text-decoration: none;
  display: flex;
  align-items: center;
}
.smp-app .player-list .col-locations .location-item a i {
  margin-left: 7px;
}
.smp-app .player-list .col-date {
  text-align: center;
}
.smp-app .player-list .col-actions {
  padding-right: 10px;
  text-align: right;
}
.smp-app .player-list .col-actions button {
  padding: 7px 10px;
  display: inline-flex;
}
.smp-app .player-list .col-actions button.edit-btn {
  background: #edf8ff;
}
.smp-app .player-list .col-actions button.edit-btn:hover {
  background: rgba(11, 109, 255, 0.3);
}
.smp-app .player-list .col-actions button.delete-btn {
  color: red;
}
.smp-app .player-list th.col-actions {
  padding-right: 30px;
}
.smp-app .player-list-footer {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .smp-app .player-list-wrap {
    overflow-x: auto;
    margin-right: 10px;
  }
  .smp-app .player-list thead th {
    padding: 15px;
    white-space: nowrap;
  }
}
.smp-app .smp-form {
  padding: 20px;
}
.smp-app .smp-form-main {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  align-items: flex-start;
}
@media (max-width: 991px) {
  .smp-app .smp-form-main {
    flex-flow: column-reverse;
  }
}
.smp-app .smp-form-settings {
  display: flex;
  flex-direction: column;
  width: 60%;
}
.smp-app .smp-form-settings .settings-tabs {
  background: #fff;
  border-radius: 10px 10px 0 0;
  padding: 20px 10px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  top: 32px;
  position: sticky;
  z-index: 9;
  border-bottom: 1px solid #e5e5e5;
}
.smp-app .smp-form-settings .settings-tabs button {
  background: transparent;
  border: none;
  padding: 0;
  margin: 0 15px;
  display: flex;
  align-items: center;
  font-size: 15px;
  font-weight: 500;
  color: #5c637e;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
}
.smp-app .smp-form-settings .settings-tabs button .tab-icon {
  width: 25px;
  height: 25px;
  margin-right: 7px;
  background-color: #5c637e;
  transition: all 0.3s ease;
}
.smp-app .smp-form-settings .settings-tabs button.active {
  color: #0042a4;
}
.smp-app .smp-form-settings .settings-tabs button.active .tab-icon {
  background-color: #0042a4;
}
.smp-app .smp-form-settings .settings-tabs button.active:after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #0042a4;
}
.smp-app .smp-form-settings .settings-tabs button:hover {
  color: #0042a4;
}
.smp-app .smp-form-settings .settings-tabs button:hover .tab-icon {
  background-color: #0042a4;
}
.smp-app .smp-form-settings .settings-tabs button.tab-type .tab-icon {
  -webkit-mask: url("../images/tabs/module.svg") no-repeat center/contain;
  mask: url("../images/tabs/module.svg") no-repeat center/contain;
}
.smp-app .smp-form-settings .settings-tabs button.tab-tracks .tab-icon {
  -webkit-mask: url("../images/tabs/tracks.svg") no-repeat center/contain;
  mask: url("../images/tabs/tracks.svg") no-repeat center/contain;
}
.smp-app .smp-form-settings .settings-tabs button.tab-podcast-player .tab-icon {
  -webkit-mask: url("../images/tabs/podcast.svg") no-repeat center/contain;
  mask: url("../images/tabs/podcast.svg") no-repeat center/contain;
}
.smp-app .smp-form-settings .settings-tabs button.tab-skins .tab-icon {
  -webkit-mask: url("../images/tabs/skins.svg") no-repeat center/contain;
  mask: url("../images/tabs/skins.svg") no-repeat center/contain;
}
.smp-app .smp-form-settings .settings-tabs button.tab-controls .tab-icon {
  -webkit-mask: url("../images/tabs/controls.svg") no-repeat center/contain;
  mask: url("../images/tabs/controls.svg") no-repeat center/contain;
}
.smp-app .smp-form-settings .settings-tabs button.tab-appearance .tab-icon {
  -webkit-mask: url("../images/tabs/appearance.svg") no-repeat center/contain;
  mask: url("../images/tabs/appearance.svg") no-repeat center/contain;
}
.smp-app .smp-form-settings .settings-tabs button.tab-schedules .tab-icon {
  -webkit-mask: url("../images/tabs/schedules.svg") no-repeat center/contain;
  mask: url("../images/tabs/schedules.svg") no-repeat center/contain;
}
.smp-app .smp-form-settings .settings-header {
  border-bottom: 1px solid #e5e5e5;
  margin-bottom: 15px;
}
.smp-app .smp-form-settings .settings-header h3 {
  margin-top: 0;
  margin-bottom: 0;
}
.smp-app .smp-form-settings .settings-header p {
  margin-bottom: 10px;
  margin-top: 5px;
}
.smp-app .smp-form-settings .settings-body {
  display: flex;
  flex-direction: column;
  width: 100%;
  background: #fff;
  border-radius: 0 0 10px 10px;
  padding: 20px;
}
.smp-app .smp-form-settings .display-playlist {
  margin-bottom: 15px;
  background: #f7f8fa;
}
.smp-app .smp-form-settings .display-playlist.active {
  padding-bottom: 20px;
}
.smp-app .smp-form-settings .display-playlist .playlist {
  padding: 20px 0 0 0;
}
.smp-app .smp-form-settings .display-playlist .playlist .form-group {
  flex-direction: column;
  border: 1px solid #ddd;
  padding: 15px;
  background: #fcfcfc;
  max-width: calc(100% - 60px);
}
.smp-app .smp-form-settings .display-playlist .playlist .form-group label {
  width: 100%;
  margin-bottom: 5px;
  margin-top: 0;
}
.smp-app .smp-form-settings .display-playlist .playlist .form-group label:after {
  display: none;
}
.smp-app .smp-form-settings .display-playlist .playlist .form-group.disabled {
  opacity: 0.5;
}
.smp-app .smp-form-settings .form-group {
  display: flex;
  align-items: flex-start;
  width: 100%;
  margin-bottom: 15px;
  background: #f7f8fa;
  padding: 15px 20px;
  border-radius: 7px;
}
.smp-app .smp-form-settings .form-group .form-content {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.smp-app .smp-form-settings .form-group .form-content .components-button-group button {
  gap: 4px;
}
.smp-app .smp-form-settings .form-group .form-content .components-button-group button.is-primary {
  box-shadow: inset 0 0 0 1px #1e1e1e;
}
.smp-app .smp-form-settings .form-group .form-content .components-button-group button.is-primary img {
  filter: brightness(0) invert(1);
}
.smp-app .smp-form-settings .form-group .form-content .description {
  width: 100%;
  margin-top: 5px;
}
.smp-app .smp-form-settings .form-group .form-content .rss-feed-input {
  width: 320px;
}
.smp-app .smp-form-settings .form-group .form-content .rss-sync-btn {
  height: 40px;
  margin-left: 15px;
}
.smp-app .smp-form-settings .form-group .form-content .rss-sync-btn.loading {
  pointer-events: none;
  opacity: 0.75;
}
.smp-app .smp-form-settings .form-group .form-content .rss-sync-btn.loading .dashicons-update {
  animation: smp-spinner 1s linear infinite;
}
.smp-app .smp-form-settings .form-group .form-content .rss-sync-btn.disabled {
  opacity: 0.5;
  background: #ddd;
  border-color: #ddd;
  color: #555;
}
@keyframes smp-spinner {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.smp-app .smp-form-settings .form-group .rss-feed-validate {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 285px;
  top: 9px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #000;
  color: #fff !important;
  font-size: 20px;
}
.smp-app .smp-form-settings .form-group .rss-feed-validate.dashicons-no {
  background: red;
}
.smp-app .smp-form-settings .form-group .rss-feed-validate.dashicons-yes {
  background: green;
}
.smp-app .smp-form-settings .form-group.playlist-item {
  background: #ffffff;
}
.smp-app .smp-form-settings .form-group.typography .typography_item .components-base-control {
  margin-top: 10px;
}
.smp-app .smp-form-settings .form-group.typography .typography_item .selected-item {
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 10px;
  column-gap: 10px;
}
.smp-app .smp-form-settings .form-group .form-label {
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-right: 20px;
  width: 180px;
  margin-top: 6px;
  margin-bottom: 0;
}
.smp-app .smp-form-settings .form-group .form-label:after {
  content: ":";
  margin-left: auto;
}
.smp-app .smp-form-settings .form-group .form-label svg {
  margin-right: 10px;
}
.smp-app .smp-form-settings .form-group .form-field {
  flex: 1;
  display: flex;
  flex-flow: column;
  max-width: 100%;
}
.smp-app .smp-form-settings .form-group .form-field .description {
  margin-top: 5px;
  font-size: 0.875rem;
  color: #5c637e;
  max-width: 100%;
}
.smp-app .smp-form-settings .form-group .form-field .description a {
  color: #0042a4;
  text-decoration: none;
}
.smp-app .smp-form-settings .form-group .form-field .smp-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;
  align-items: flex-start;
}
.smp-app .smp-form-settings .form-group .form-field .smp-notice.smp-notice-info {
  border-color: rgba(0, 86, 215, 0.5);
  background: rgba(0, 86, 215, 0.1);
  border-left-color: #0056d7;
}
.smp-app .smp-form-settings .form-group .form-field .smp-notice.smp-notice-warning {
  border-color: rgba(255, 200, 0, 0.5);
  background: rgba(255, 200, 0, 0.1);
  border-left-color: #ffc800;
}
.smp-app .smp-form-settings .form-group .form-field-sub {
  margin-top: 15px;
}
.smp-app .smp-form-settings .form-group .form-field-sub .form-group {
  align-items: flex-start;
  flex-direction: column;
  border: 1px dashed #ddd;
  padding: 12px 15px;
}
.smp-app .smp-form-settings .form-group .form-field-sub .form-group .form-label {
  width: auto;
  margin-bottom: 10px;
}
.smp-app .smp-form-settings .form-group .form-field-sub .form-group .form-label:after {
  content: "";
}
.smp-app .smp-form-settings .form-group .form-field.source .source-type-wrap {
  margin-bottom: 10px;
}
.smp-app .smp-form-settings .form-group .form-field.source .source-type-wrap button {
  gap: 4px;
}
.smp-app .smp-form-settings .form-group .form-field.source .source-type-wrap button.active {
  color: #fff;
  background: #0056d7;
  opacity: 1;
}
.smp-app .smp-form-settings .form-group .form-field.source .source-type-wrap button.active img {
  filter: brightness(0) invert(1);
}
.smp-app .smp-form-settings .form-group .form-field.stream p:not(:last-child) {
  margin-bottom: 5px;
}
.smp-app .smp-form-settings .form-group .form-field .progressbar_item label {
  font-size: 11px;
  font-weight: 500;
  line-height: 1.4;
  text-transform: uppercase;
  display: block;
  margin-top: 10px;
  margin-bottom: 8px;
  padding: 0px;
}
.smp-app .smp-form-settings .form-group .form-field.field-playlist-height input {
  width: 200px;
}
.smp-app .smp-form-settings .form-group .form-field.disabled {
  opacity: 0.5;
}
.smp-app .smp-form-settings .form-group:last-child {
  margin-bottom: 0;
}
.smp-app .smp-form-settings .form-group.box-shadow .components-range-control {
  margin-bottom: 15px;
}
.smp-app .smp-form-settings .form-group.box-shadow .components-range-control label {
  margin-bottom: 0;
  display: block;
}
.smp-app .smp-form-settings .form-group.box-shadow .smp-color-palette {
  margin: 10px 0 20px 0;
}
.smp-app .smp-form-settings .form-group.box-shadow .shadow-color-label {
  font-size: 11px;
  font-weight: 500;
  line-height: 1.4;
  text-transform: uppercase;
  box-sizing: border-box;
  display: block;
  padding-top: 0px;
  padding-bottom: 0px;
  max-width: 100%;
  z-index: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-top: 0px;
  margin-bottom: 7px;
}
.smp-app .smp-form-settings .form-group.box-shadow .shadow-color-label + .smp-color-picker-wrapper {
  margin-bottom: 15px;
}
.smp-app .smp-form-settings .form-group.box-shadow .components-select-control {
  width: 100px;
}
.smp-app .smp-form-settings .form-group.box-shadow:has(.components-base-control__field) .components-form-toggle {
  margin-bottom: 30px;
}
.smp-app .smp-form-settings .form-group.group-week-days {
  flex-direction: column;
  align-items: flex-start;
}
.smp-app .smp-form-settings .form-group.group-week-days .form-label {
  margin-bottom: 10px;
  margin-right: 0;
  width: 100%;
}
.smp-app .smp-form-settings .form-group.group-week-days .form-label:after {
  content: "";
}
.smp-app .smp-form-settings .form-group.group-month-dates {
  flex-direction: column;
  align-items: flex-start;
}
.smp-app .smp-form-settings .form-group.group-month-dates .form-label {
  margin-bottom: 10px;
  margin-right: 0;
  width: 100%;
}
.smp-app .smp-form-settings .form-group.group-month-dates .form-label:after {
  content: "";
}
.smp-app .smp-form-settings .form-group.group-play-time {
  flex-direction: column;
  align-items: flex-start;
}
.smp-app .smp-form-settings .form-group.group-play-time .form-label {
  margin-right: 0;
  width: 100%;
}
.smp-app .smp-form-settings .form-group.group-play-time .form-label:after {
  content: "";
}
.smp-app .smp-form-settings .form-group .time-group {
  display: flex;
  align-items: center;
  border: 1px solid #e5e5e5;
  border-radius: 5px;
  padding: 10px;
  margin-bottom: 10px;
  background: #fff;
  width: -moz-max-content;
  width: max-content;
}
.smp-app .smp-form-settings .form-group .time-group .time-index {
  font-weight: 600;
  margin-right: 10px;
}
.smp-app .smp-form-settings .form-group .time-group-wrap {
  display: flex;
  flex-direction: column;
  margin-top: 10px;
}
.smp-app .smp-form-settings .form-group .time-group-wrap > button {
  width: 120px;
}
.smp-app .smp-form-settings .form-group .time-group .input-group {
  display: flex;
  align-items: center;
}
.smp-app .smp-form-settings .form-group .time-group .input-group span {
  margin-right: 10px;
  font-weight: 600;
}
.smp-app .smp-form-settings .form-group .time-group .input-group input {
  border-color: #e5e5e5;
}
.smp-app .smp-form-settings .form-group .time-group .input-group:nth-child(3) {
  margin-left: 30px;
}
.smp-app .smp-form-settings .form-group .time-group button {
  margin-left: 10px;
  padding: 6px;
}
.smp-app .smp-form-settings .form-group .time-group button i {
  margin-right: 0;
}
.smp-app .smp-form-settings .form-group .week-day-time-wrap,
.smp-app .smp-form-settings .form-group .month-date-time-wrap {
  border: 1px solid #e5e5e5;
  border-radius: 5px;
  padding: 10px;
  margin-bottom: 10px;
}
.smp-app .smp-form-settings .form-group .week-day-time-wrap h4,
.smp-app .smp-form-settings .form-group .month-date-time-wrap h4 {
  margin-top: 0;
  margin-bottom: 10px;
}
.smp-app .smp-form-settings .form-group .input-group {
  width: -moz-max-content;
  width: max-content;
  max-width: 100%;
}
.smp-app .smp-form-settings .form-group .input-group.disabled {
  opacity: 0.5;
}
.smp-app .smp-form-settings .form-group .input-group.disabled .components-button-group,
.smp-app .smp-form-settings .form-group .input-group.disabled .smp-color-palette,
.smp-app .smp-form-settings .form-group .input-group.disabled .thumbnail-uploader-wrap {
  pointer-events: none;
}
.smp-app .smp-form-settings .upload-input-wrap {
  display: flex;
  align-items: center;
  position: relative;
}
.smp-app .smp-form-settings .upload-input-wrap .source-validate {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 270px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #000;
  color: #fff;
  font-size: 20px;
}
.smp-app .smp-form-settings .upload-input-wrap .source-validate.dashicons-yes {
  background-color: green;
}
.smp-app .smp-form-settings .upload-input-wrap .source-validate.dashicons-no {
  background-color: red;
}
.smp-app .smp-form-settings .upload-input-wrap input {
  width: 300px;
}
.smp-app .smp-form-settings .upload-input-wrap input::-moz-placeholder {
  color: #ccc;
}
.smp-app .smp-form-settings .upload-input-wrap input::placeholder {
  color: #ccc;
}
.smp-app .smp-form-settings .upload-input-wrap button {
  margin-left: 15px;
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 7px;
  height: 40px;
}
.smp-app .smp-form-settings .upload-input-wrap button.select-file-btn {
  color: #0056d7;
  border: 1px dashed rgba(92, 184, 92, 0.5);
}
.smp-app .smp-form-settings .upload-input-wrap button.select-file-btn:hover {
  background: #d5f0db;
}
.smp-app .smp-form-settings .upload-input-wrap button.remove-file-btn {
  color: #d9534f;
  border: 1px dashed rgba(217, 83, 79, 0.5);
}
.smp-app .smp-form-settings .upload-input-wrap button.remove-file-btn:hover {
  background: #f2dede;
}
.smp-app .smp-form-settings .upload-input-wrap button i {
  width: auto;
  height: auto;
  font-size: 24px;
}
.smp-app .smp-form-settings .upload-input-wrap button span:nth-child(2) {
  margin-left: 5px;
}
.smp-app .smp-form-settings .upload-input-wrap .thumbnail-preview {
  width: 50px;
  border-radius: 7px;
  margin-right: 10px;
}
.smp-app .smp-form-settings .add-new-btn {
  width: -moz-max-content;
  width: max-content;
}
.smp-app .smp-form-settings .add-new-btn.disabled {
  opacity: 0.5;
}
.smp-app .smp-form-settings .skins {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  row-gap: 20px;
}
.smp-app .smp-form-settings .skins .skin-item {
  width: calc(33.33% - 20px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px dashed #e5e5e5;
  border-radius: 10px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  background: #f7f8fa;
}
.smp-app .smp-form-settings .skins .skin-item:nth-child(3n) {
  margin-right: 0;
}
.smp-app .smp-form-settings .skins .skin-item:hover {
  border-color: #0b6dff;
}
.smp-app .smp-form-settings .skins .skin-item.active {
  border-color: #0056d7;
  border-style: solid;
}
.smp-app .smp-form-settings .skins .skin-item.active:after {
  content: "\f15e";
  position: absolute;
  top: 7px;
  right: 7px;
  width: 20px;
  height: 20px;
  font-size: 20px;
  padding: 5px;
  background-color: #0056d7;
  color: #fff;
  font-family: Dashicons;
  border-radius: 30px;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.smp-app .smp-form-settings .skins .skin-item.active .skin-title {
  background: #0042a4;
  border-color: rgba(64, 206, 135, 0.2);
  color: #fff;
}
.smp-app .smp-form-settings .skins .skin-item.active .skin-title a {
  border-color: #0056d7;
  color: #0042a4;
}
.smp-app .smp-form-settings .skins .skin-item .img-wrap {
  margin-top: auto;
}
.smp-app .smp-form-settings .skins .skin-item img {
  width: 100%;
  height: 100%;
}
.smp-app .smp-form-settings .skins .skin-item .skin-title {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 7px 10px;
  background: rgba(64, 206, 135, 0.1);
  margin-top: auto;
  border-top: 1px solid rgba(64, 206, 135, 0.2);
}
.smp-app .smp-form-settings .skins .skin-item .skin-title a {
  color: #555;
  background: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  font-size: 12px;
  border: 1px solid #ccc;
  border-radius: 7px;
  padding: 4px 6px;
  transition: all 0.3s ease;
}
.smp-app .smp-form-settings .skins .skin-item .skin-title a:hover {
  background: #40ce87;
  color: #fff;
  border-color: #0042a4;
}
.smp-app .smp-form-settings .skins .skin-item .skin-title a i {
  margin-right: 5px;
  height: 18px;
  width: 18px;
  font-size: 18px;
  transition: none;
}
.smp-app .smp-form-settings .skins .skin-item.pro {
  border-color: #ffd700;
  border-style: solid;
}
.smp-app .smp-form-settings .skins .skin-item.pro:after {
  content: "PRO";
  position: absolute;
  top: 7px;
  right: 7px;
  font-size: 0.875rem;
  padding: 5px;
  background: linear-gradient(45deg, #ffd700, #ffa500);
  color: #fff;
  border-radius: 5px;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 15px;
  line-height: 20px;
}
.smp-app .smp-form-settings .skins .skin-item.pro .skin-title {
  background: rgba(255, 215, 0, 0.3);
  border-color: rgba(255, 215, 0, 0.2);
}
.smp-app .smp-form-settings .skins .skin-item.pro .skin-title a {
  background: #fff;
  border-color: #ccc;
}
.smp-app .smp-form-settings .skins .skin-item.pro .skin-title a:hover {
  background: #0056d7;
  color: #fff;
  border-color: #0042a4;
}
.smp-app .smp-form-settings .settings-footer {
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.smp-app .smp-form-settings .settings-footer button {
  margin-right: 15px;
  padding: 10px 15px;
}
.smp-app .smp-form-settings .settings-footer button:first-child, .smp-app .smp-form-settings .settings-footer button:last-child {
  background: #fff;
  color: #0056d7;
  border-color: rgba(47, 180, 75, 0.3);
}
.smp-app .smp-form-settings .settings-footer button:first-child:hover, .smp-app .smp-form-settings .settings-footer button:last-child:hover {
  background: #d5f0db;
}
.smp-app .smp-form-settings .settings-footer button:last-child i {
  margin-right: 0;
  margin-left: 5px;
}
.smp-app .smp-form-settings .settings-footer button.disabled {
  opacity: 0.5;
  pointer-events: none;
  background: #ddd;
  border-color: #ddd;
}
.smp-app .smp-form-settings .settings-footer button.disabled:hover {
  background: #ddd;
  border-color: #ddd;
}
.smp-app .smp-form-settings .width-devices {
  margin-bottom: 10px;
}
.smp-app .smp-form-settings .width-devices button i {
  margin-right: 5px;
}
@media (max-width: 1199px) and (min-width: 992px) {
  .smp-app .smp-form-settings .settings-tabs {
    flex-wrap: wrap;
    padding: 10px;
  }
  .smp-app .smp-form-settings .settings-tabs button {
    margin: 10px 0;
    font-size: 0.875rem;
    font-weight: 400;
  }
  .smp-app .smp-form-settings .settings-tabs button:after {
    display: none;
  }
  .smp-app .smp-form-settings .settings-tabs button .tab-icon {
    margin-right: 5px;
  }
  .smp-app .smp-form-settings .form-group {
    flex-direction: column;
    align-items: flex-start;
    padding: 10px;
  }
  .smp-app .smp-form-settings .form-group .form-label {
    margin-right: 0;
    justify-content: flex-start;
    margin-bottom: 7px;
  }
  .smp-app .smp-form-settings .form-group .form-label:after {
    display: none;
  }
  .smp-app .smp-form-settings .form-group .form-field {
    width: 100%;
  }
  .smp-app .smp-form-settings .form-group .form-field .description {
    font-size: 12px;
    word-break: break-all;
  }
  .smp-app .smp-form-settings .skins .skin-item {
    width: calc(50% - 10px);
  }
  .smp-app .smp-form-settings .skins .skin-item:nth-child(2n) {
    margin-right: 0;
  }
  .smp-app .smp-form-settings .skins .skin-item:last-child {
    margin-right: auto;
    margin-left: 0;
  }
}
@media (max-width: 991px) {
  .smp-app .smp-form-settings {
    width: 100%;
  }
  .smp-app .smp-form-settings .thumbnail-uploader-wrap button {
    margin: 5px;
  }
  .smp-app .smp-form-settings .skins .skin-item {
    width: 48%;
    margin-bottom: 10px;
  }
  .smp-app .smp-form-settings .skins .skin-item:last-child {
    margin: 0;
  }
}
@media (max-width: 767px) {
  .smp-app .smp-form-settings .form-group {
    flex-direction: column;
    align-items: flex-start;
    padding: 10px;
  }
  .smp-app .smp-form-settings .form-group .form-label {
    margin-right: 0;
    justify-content: flex-start;
    margin-bottom: 7px;
  }
  .smp-app .smp-form-settings .form-group .form-label:after {
    display: none;
  }
  .smp-app .smp-form-settings .form-group .form-field {
    width: 100%;
  }
  .smp-app .smp-form-settings .form-group .form-field .description {
    font-size: 12px;
    word-break: break-all;
  }
  .smp-app .smp-form-settings .settings-tabs {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 20px;
    position: static;
  }
  .smp-app .smp-form-settings .settings-tabs button {
    margin: 10px 0;
  }
  .smp-app .smp-form-settings .settings-tabs button:after {
    display: none;
  }
  .smp-app .smp-form-settings .skins .skin-item {
    width: 100%;
  }
}
.smp-app .smp-form-sidebar {
  width: calc(40% - 20px);
  margin-left: 20px;
  position: sticky;
  top: 32px;
}
@media (max-width: 991px) {
  .smp-app .smp-form-sidebar {
    width: 100%;
    margin-left: 0;
    position: static;
    margin-bottom: 20px;
  }
}
.smp-app .smp-form-actions {
  background: #fff;
  border-radius: 10px;
  padding: 12px 15px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.smp-app .smp-form-actions .btn-delete {
  background: #ffd700;
  color: #fff;
}
.smp-app .smp-form-actions .btn-save {
  margin-left: auto;
}
.smp-app .smp-form .preview-browser {
  border: 1px solid #ddd;
  border-radius: 15px;
  margin: auto;
  overflow: hidden;
  background: #fff;
}
.smp-app .smp-form .preview-browser.device-mobile {
  width: 375px;
}
.smp-app .smp-form .preview-browser.device-mobile .browser-content .skin12 .smp-wrap {
  flex-direction: column;
}
.smp-app .smp-form .preview-browser.device-mobile .browser-content .skin12 .smp-wrap > .smp-sidebar {
  width: 100%;
}
.smp-app .smp-form .preview-browser.device-mobile .browser-content .skin12 .smp-wrap > .smp-content > .smp-content-list > .smp-content-list-group > .smp-content-list-group-wrap {
  grid-template-columns: repeat(auto-fill, minmax(125px, 1fr));
}
.smp-app .smp-form .preview-browser.device-mobile .browser-content .skin12 .smp-details {
  overflow: visible;
  padding: 24px 6px;
}
.smp-app .smp-form .preview-browser.device-mobile .browser-content .skin12 .smp-details .title-wrap .smp-title {
  display: none;
}
.smp-app .smp-form .preview-browser.device-mobile .browser-content .skin12 .smp-details .smp-controls {
  gap: 0 5px;
}
.smp-app .smp-form .preview-browser.device-mobile .browser-content .skin12 .smp-details .smp-controls button svg {
  width: 16px;
  height: 16px;
}
.smp-app .smp-form .preview-browser.device-mobile .browser-content .skin12 .smp-details .smp-controls button.radio-play-pause svg {
  width: 40px;
  height: 40px;
}
.smp-app .smp-form .preview-browser.device-tablet {
  width: 768px;
  max-width: 100%;
}
.smp-app .smp-form .preview-browser-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px;
  background-color: #ebebeb;
  border-bottom: 1px solid #eee;
}
.smp-app .smp-form .preview-browser-header .preview-browser-devices .dashicons {
  font-size: 20px;
  margin-right: 10px;
  cursor: pointer;
  color: #555;
}
.smp-app .smp-form .preview-browser-header .preview-browser-devices .dashicons:hover {
  color: #333;
}
.smp-app .smp-form .preview-browser-header .preview-browser-devices .dashicons.active {
  color: #0056d7;
}
.smp-app .smp-form .preview-browser-header .preview-browser-devices .dashicons:last-child {
  margin-right: 0;
}
.smp-app .smp-form .preview-browser-buttons {
  display: flex;
}
.smp-app .smp-form .preview-browser-buttons .header-button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin-right: 4px;
}
.smp-app .smp-form .preview-browser-buttons .close {
  background-color: #ff605c;
}
.smp-app .smp-form .preview-browser-buttons .minimize {
  background-color: #ffc130;
}
.smp-app .smp-form .preview-browser-buttons .maximize {
  background-color: #2eca71;
}
.smp-app .smp-form .preview-browser-url {
  display: flex;
  align-items: center;
}
.smp-app .smp-form .preview-browser-url i {
  margin-right: 5px;
}
.smp-app .smp-form .browser-content {
  padding: 30px 15px;
}
.smp-app .smp-form .preview-devices {
  margin: 20px auto 0 auto;
  display: block;
}
.smp-app .rp-checkboxes {
  display: flex;
  flex-wrap: wrap;
}
.smp-app .rp-checkboxes .rp-checkbox {
  margin-bottom: 10px;
  margin-right: 8px;
  border: 1px solid #eee;
  padding: 5px 8px;
  border-radius: 5px;
}
.smp-app .rp-checkboxes .rp-checkbox .components-base-control__field {
  display: flex;
  align-items: center;
}
.smp-app .rp-checkboxes .components-checkbox-control__input-container {
  margin-right: 5px;
}
.smp-app .rp-checkboxes .components-checkbox-control__input-container input:focus {
  outline: none;
  box-shadow: none;
}
.smp-app .rp-checkboxes .components-checkbox-control__label {
  text-transform: capitalize;
  font-size: 0.75rem;
}
.smp-app .rp-checkboxes .week-day .rp-checkbox,
.smp-app .rp-checkboxes .month-date .rp-checkbox {
  background: #fff;
}
.smp-app .btn-tools {
  padding: 0 !important;
  background: transparent;
  color: #555;
  margin-left: 10px;
  transform: rotate(90deg);
}
.smp-app .btn-tools:hover {
  color: #0056d7;
}
.smp-app .options-tooltip {
  padding: 0;
  border-radius: 7px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.smp-app .action-tools {
  display: flex;
  flex-direction: column;
}
.smp-app .action-tools button {
  padding: 10px 15px;
  display: flex;
  background: transparent;
  color: #555;
  justify-content: flex-start;
  border-radius: 0 !important;
  border-bottom: 1px solid #e5e5e5;
  font-size: 0.875rem;
  margin: 0;
  width: 100% !important;
  height: auto !important;
}
.smp-app .action-tools button:hover {
  background: #e5e5e5;
}
.smp-app .action-tools button:last-child {
  border-bottom: none;
  margin-bottom: 0;
}
.smp-app .action-tools button.btn-delete {
  color: #ff605c;
}
.smp-app .shortcode-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  width: -moz-max-content;
  width: max-content;
  background: #f5f5f5;
}
.smp-app .shortcode-wrap code {
  padding: 10px 10px 10px 35px;
  background: #fff;
  color: #5c637e;
  border-radius: 7px;
  border: 1px solid rgba(92, 99, 126, 0.2);
  font-size: 12px;
  word-break: break-all;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.smp-app .shortcode-wrap i {
  left: 3px;
  color: #0b6dff;
  padding: 7px;
  border-radius: 30px;
  height: auto;
  width: auto;
  cursor: pointer;
  position: absolute;
  font-size: 24px;
}

.player-track {
  margin-bottom: 15px;
  border: 1px solid #0056d7;
  border-radius: 5px;
  background: #f7f8fa;
}
.player-track .player-track-header {
  display: flex;
  align-items: center;
  background-color: #e6eefb;
  padding: 7px;
  border-radius: 5px;
}
.player-track .player-track-header .sort-item {
  margin-right: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
  fill: #a9a9a9;
}
.player-track .player-track-header .sort-item:hover {
  fill: #0042a4;
}
.player-track .player-track-header h4 {
  margin: 0;
  color: #555;
  margin-right: auto;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: all 0.3s ease;
  cursor: pointer;
}
.player-track .player-track-header h4:hover {
  color: #0042a4;
}
.player-track .player-track-header button {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 32px;
  width: 32px;
  transition: all 0.3s ease;
  min-height: auto;
  background: transparent;
  border: none;
  border-radius: 6px;
  margin-left: 10px;
}
.player-track .player-track-header button.button-primary {
  background: #0042a4;
}
.player-track .player-track-header button.button-primary:hover {
  color: #fff;
  background: #0042a4;
}
.player-track .player-track-header button.button-link-duplicate {
  background: #02ac3a;
}
.player-track .player-track-header button.button-link-duplicate:hover {
  color: #fff;
  background: #02ac3a;
}
.player-track .player-track-header button.button-link-delete {
  background: #ff8000;
}
.player-track .player-track-header button.button-link-delete:hover {
  color: #fff;
  background: #ff8000;
}
.player-track .player-track-body {
  border-top: none;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
}
.player-track .player-track-body .form-field.stream > div input {
  flex: 1;
}
.player-track .player-track-body .thumbnail-uploader-wrap .thumbnail-preview-wrap img {
  max-width: 100px;
}
.player-track .player-track-body .form-group {
  border-bottom: 1px solid #ededed;
  border-radius: 0;
}
.player-track.sortable-item .smp-ite-header {
  border-radius: 5px;
}
.player-track.sortable-item .smp-ite-body {
  display: none;
}
.player-track .form-group {
  margin-bottom: 0 !important;
}
.player-track .form-group .form-label {
  width: 150px !important;
}
.player-track.active .smp-ite-header {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
@media (max-width: 767px) {
  .player-track .form-group {
    flex-direction: column;
    margin-bottom: 15px;
  }
  .player-track .form-group .form-label {
    margin-bottom: 10px;
  }
}

.notice-wrap {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 5px;
  padding: 10px;
  margin: 10px 0;
  display: flex;
  align-items: center;
  position: relative;
}
.notice-wrap .notice-icon {
  margin-right: 15px;
  width: 30px;
  height: 30px;
  font-size: 30px;
}
.notice-wrap .notice-content {
  flex: 1;
  margin-right: 15px;
}
.notice-wrap p {
  margin: 0;
}
.notice-wrap a {
  text-decoration: none;
  color: #007bff;
}
.notice-wrap .notice-close {
  position: absolute;
  top: 15px;
  right: 15px;
  cursor: pointer;
}
.notice-wrap.notice-warning {
  border-color: #ffd700;
  background: #fff8e1;
}
.notice-wrap.notice-warning .notice-icon {
  color: #ffd700;
}

/*----- pagination -----*/
.smp-pagination {
  display: flex;
  padding: 0;
}
.smp-pagination li {
  justify-content: center !important;
  flex-wrap: wrap !important;
  list-style: none;
  position: relative;
  display: flex;
  align-items: center;
  padding: 8px 16px;
  text-decoration: none !important;
  font-size: 15px;
  margin-left: -1px;
  border: 1px solid #dee2e6;
  margin-right: 0;
  margin-top: 0;
  cursor: pointer;
  background: #fff;
}
.smp-pagination li:hover, .smp-pagination li.selected {
  background: #0056d7;
  color: #fff;
  border-color: #0056d7;
}
.smp-pagination li.disabled {
  background: #d5d8dc;
  color: #333;
  cursor: not-allowed;
  border: none;
}
.smp-pagination li:first-child {
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
}
.smp-pagination li:last-child {
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
}
.smp-pagination li svg {
  fill: currentColor;
}

/*----- Modal -----*/
.player-types {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  row-gap: 20px;
  padding: 40px;
}
.player-types-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.player-types-wrap * {
  box-sizing: border-box;
}
.player-types-wrap .player-types-header {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 9;
  width: 100%;
  padding: 30px 30px 20px 30px;
}
.player-types-wrap .player-types-header h3 {
  color: #555c66;
  margin: 0 0 15px 0;
  font-size: 20px;
  line-height: 1;
  padding: 0;
}
.player-types-wrap .player-types-header p {
  margin: 0;
  color: #555;
  font-size: 15px;
  line-height: 1;
}
.player-types-wrap .player-types-close {
  color: #9ca3af;
  position: absolute;
  right: 10px;
  top: 10px;
  width: 30px;
  height: 30px;
  font-size: 30px;
  cursor: pointer;
}
.player-types-wrap .player-types-close:hover {
  color: #555;
}
.player-types .player-type {
  width: calc(33.33% - 20px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px dashed rgba(0, 86, 215, 0.7);
  border-radius: 10px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  background: #fff;
  padding: 30px;
  text-align: center;
  transition: all 0.3s ease;
}
.player-types .player-type .coming-soon {
  position: absolute;
  top: 0;
  right: 0;
  background: #ffc107;
  color: #fff;
  font-weight: 600;
  padding: 8px 10px;
  border-radius: 0 10px;
  font-size: 12px;
  line-height: 1;
}
.player-types .player-type h3 {
  color: #000;
}
.player-types .player-type p {
  color: #000;
  margin-bottom: 0;
}
.player-types .player-type:hover {
  border-color: rgba(0, 86, 215, 0.7);
  background: rgba(0, 86, 215, 0.1);
}
.player-types .player-type:hover h3,
.player-types .player-type:hover p {
  color: rgba(0, 86, 215, 0.7);
}
.player-types .player-type.active {
  border-color: rgba(0, 86, 215, 0.7);
  background: rgba(0, 86, 215, 0.7);
}
.player-types .player-type.active h3,
.player-types .player-type.active p {
  color: #fff;
}

body.multimedia-player_page_soft-multimedia-player-getting-started #wpcontent {
  padding: 0;
}
body.multimedia-player_page_soft-multimedia-player-getting-started #wpfooter {
  display: none;
}

.smp-dashboard-wrap {
  background: linear-gradient(180deg, #f9e9f1 0, #d6e6ff 50px, #d3e4ff 100px, #d5e6ff 200px, #fff 400px, #fff 100%) fixed;
  min-height: 100vh;
  padding-bottom: 60px;
}
.smp-dashboard-wrap * {
  box-sizing: border-box;
}
.smp-dashboard-header {
  background-size: auto;
  padding: 80px 60px 0 60px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 0 auto;
}
.smp-dashboard-header .header-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}
.smp-dashboard-header .header-logo img {
  width: 50px;
  margin-right: 10px;
  background: #fff;
  padding: 2px;
  border-radius: 50%;
}
.smp-dashboard-header .header-logo span {
  font-size: 2rem;
  font-weight: 600;
  color: #151826;
}
.smp-dashboard-header .smp-dashboard-menu {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  border-bottom: 1px solid #e5e5e5;
  border-radius: 10px;
  box-shadow: 0 1px 16px 0 rgba(85, 85, 85, 0.1);
  padding: 20px;
  gap: 30px;
  width: -moz-max-content;
  width: max-content;
  margin-top: 60px;
}
.smp-dashboard-header .smp-dashboard-menu .menu-item {
  display: flex;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  color: #4d4d4d;
  transition: all 0.3s ease-in-out;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  height: 50px;
  border-radius: 8px;
}
.smp-dashboard-header .smp-dashboard-menu .menu-item img {
  margin-right: 7px;
}
.smp-dashboard-header .smp-dashboard-menu .menu-item span {
  font-size: 0.9rem;
  font-weight: 500;
}
.smp-dashboard-header .smp-dashboard-menu .menu-item:hover {
  color: #0042a4;
}
.smp-dashboard-header .smp-dashboard-menu .menu-item:hover svg,
.smp-dashboard-header .smp-dashboard-menu .menu-item:hover path {
  fill: #0042a4;
}
.smp-dashboard-header .smp-dashboard-menu .menu-item.active {
  color: #fff;
  background: #0042a4;
}
.smp-dashboard-header .smp-dashboard-menu .menu-item.active img {
  filter: brightness(0) invert(1);
}
@media (max-width: 767px) {
  .smp-dashboard-header .smp-dashboard-menu {
    border-radius: 0;
    flex-direction: column;
    align-items: normal;
    width: 100%;
  }
  .smp-dashboard-header .smp-dashboard-menu .menu-item {
    border-bottom: 1px solid #0056d7;
  }
}
.smp-dashboard-header p {
  max-width: 600px;
  font-size: 1rem;
  margin: auto;
  line-height: 1.5;
  color: #7a7e8c;
}
@media (max-width: 767px) {
  .smp-dashboard-header {
    padding: 20px 20px 80px 20px;
  }
  .smp-dashboard-header .header-logo img {
    width: 35px;
    padding: 2px;
  }
  .smp-dashboard-header .header-logo span {
    font-size: 1.5rem;
  }
  .smp-dashboard-header p {
    font-size: 0.9rem;
  }
  .smp-dashboard-header .header-title {
    font-size: 1rem;
    padding: 10px 15px;
  }
}
.smp-dashboard-main {
  max-width: 1000px;
  padding: 0 30px;
  margin: auto;
}
.smp-dashboard-main .getting-started-content {
  display: none;
}
.smp-dashboard-main .getting-started-content.active {
  display: block;
}
.smp-dashboard-main .getting-started-content.basic-usage {
  padding-top: 20px;
}
.smp-dashboard-main .getting-started-content .section-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 30px;
}
.smp-dashboard-main .getting-started-content .section-wrap section {
  width: 48%;
}
.smp-dashboard-main .getting-started-content section {
  display: flex;
  flex-wrap: wrap;
  padding: 30px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid #eee;
}
.smp-dashboard-main .getting-started-content section.section-full {
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}
.smp-dashboard-main .getting-started-content section.section-full > div {
  width: 48%;
}
.smp-dashboard-main .getting-started-content section.section-half {
  justify-content: center;
}
.smp-dashboard-main .getting-started-content section.section-half .col-description {
  text-align: center;
  margin-bottom: 1rem;
}
.smp-dashboard-main .getting-started-content section.section-half .col-image {
  margin-top: auto;
}
.smp-dashboard-main .getting-started-content section .col-image {
  position: relative;
  border-radius: 12px;
  background: #fefefe;
  max-width: 100%;
  max-height: 400px;
  /* optional */
}
.smp-dashboard-main .getting-started-content section .col-image img,
.smp-dashboard-main .getting-started-content section .col-image iframe {
  width: 100%;
}
.smp-dashboard-main .getting-started-content section .col-image img:not(img),
.smp-dashboard-main .getting-started-content section .col-image iframe:not(img) {
  border-radius: 7px;
  border: 1px solid rgba(11, 109, 255, 0.1);
}
.smp-dashboard-main .getting-started-content section .col-image iframe {
  aspect-ratio: 16/9;
  max-height: 500px;
}
.smp-dashboard-main .getting-started-content section .col-content h2 {
  font-size: 1.5rem;
  font-weight: 600;
}
.smp-dashboard-main .getting-started-content section.section-documentation, .smp-dashboard-main .getting-started-content section.section-contact {
  border: 1px solid rgba(11, 109, 255, 0.1);
}
.smp-dashboard-main .getting-started-content section.section-documentation .col-image, .smp-dashboard-main .getting-started-content section.section-contact .col-image {
  box-shadow: none;
}
.smp-dashboard-main .getting-started-content section.section-documentation .col-image img, .smp-dashboard-main .getting-started-content section.section-contact .col-image img {
  border: none;
  width: 200px;
}
.smp-dashboard-main .getting-started-content section.section-documentation .smp-btn, .smp-dashboard-main .getting-started-content section.section-contact .smp-btn {
  padding: 15px 20px;
  margin: 30px auto 0 auto;
}
.smp-dashboard-main .getting-started-content section.section-documentation .smp-btn:hover, .smp-dashboard-main .getting-started-content section.section-contact .smp-btn:hover {
  color: #fff;
}
.smp-dashboard-main .getting-started-content section.section-get-started {
  background: transparent;
  border: none;
}
.smp-dashboard-main .getting-started-content section.section-get-started .col-description {
  margin-bottom: 0;
}
.smp-dashboard-main .getting-started-content .section-reverse {
  flex-direction: row-reverse;
}
.smp-dashboard-main .getting-started-content .section-reverse .col-image {
  text-align: right;
}
.smp-dashboard-main .getting-started-content .section-full {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}
.smp-dashboard-main .getting-started-content .section-full > div {
  width: 48%;
}
.smp-dashboard-main .getting-started-content.content-introduction:not(.setup-complete) > div:not(.heading-get-started) {
  display: none;
}
.smp-dashboard-main .getting-started-content.content-introduction:not(.setup-complete) > section:not(.section-get-started) {
  display: none;
}
.smp-dashboard-main .getting-started-content .introduction-about-smp {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  background: #fff;
  border: 1px solid #eee;
}
.smp-dashboard-main .getting-started-content .introduction-about-smp .introduction-content,
.smp-dashboard-main .getting-started-content .introduction-about-smp .introduction-video {
  width: calc(50% - 15px);
}
.smp-dashboard-main .getting-started-content .introduction-about-smp .introduction-content h2 {
  font-size: 1.5rem;
  font-weight: 700;
  padding-right: 30px;
}
.smp-dashboard-main .getting-started-content .introduction-about-smp .introduction-content span {
  color: #5c637e;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 160%;
}
.smp-dashboard-main .getting-started-content .introduction-about-smp .introduction-content p {
  color: #5c637e;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 160%;
  padding-right: 30px;
}
.smp-dashboard-main .getting-started-content .introduction-about-smp .introduction-content p span {
  font-weight: 500;
  margin-top: 20px;
}
.smp-dashboard-main .getting-started-content .introduction-about-smp .introduction-video iframe {
  width: 100%;
  height: 350px;
  border-radius: 8px;
}
@media (max-width: 1150px) {
  .smp-dashboard-main .getting-started-content .introduction-about-smp .introduction-content,
.smp-dashboard-main .getting-started-content .introduction-about-smp .introduction-video {
    width: 100%;
  }
  .smp-dashboard-main .getting-started-content .introduction-about-smp .introduction-content h2 {
    padding-right: 0;
  }
  .smp-dashboard-main .getting-started-content .introduction-about-smp .introduction-content p {
    padding-right: 0;
  }
  .smp-dashboard-main .getting-started-content .introduction-about-smp .introduction-video iframe {
    width: 100%;
    height: 400px;
  }
}
.smp-dashboard-main .getting-started-content .introduction-heading {
  margin-top: 70px;
  margin-bottom: 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.smp-dashboard-main .getting-started-content .introduction-heading h1 {
  font-size: 2rem;
  color: #151826;
  font-weight: 700;
  margin: 0 0 16px;
  line-height: 120%;
  max-width: 400px;
}
.smp-dashboard-main .getting-started-content .introduction-heading p {
  color: #5c637e;
  font-size: 0.875rem;
  line-height: 150%;
  width: 470px;
  max-width: 300px;
  margin: 0;
}
.smp-dashboard-main .getting-started-content .player-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: start;
  gap: 30px;
}
.smp-dashboard-main .getting-started-content .player-list .player-card {
  width: calc(33.3333333333% - 30px);
  border-radius: 10px;
  border: 1px solid #eee;
  background: #fff;
  padding-bottom: 15px;
  text-align: center;
}
.smp-dashboard-main .getting-started-content .player-list .player-card img {
  display: block;
  margin: 0;
  width: 100%;
}
.smp-dashboard-main .getting-started-content .player-list .player-card h3 {
  margin: 16px auto;
  color: #5c637e;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 120%;
}
.smp-dashboard-main .getting-started-content .player-list .player-card p {
  color: #5c637e;
  font-size: 0.875rem;
  line-height: 150%;
  margin: 10px 0 10px 16px;
  padding-right: 10px;
}
.smp-dashboard-main .getting-started-content .player-list .player-card a {
  margin-left: 16px;
  margin-bottom: 16px;
}
@media (max-width: 1150px) {
  .smp-dashboard-main .getting-started-content .player-list .player-card {
    width: calc(50% - 30px);
  }
}
@media (max-width: 590px) {
  .smp-dashboard-main .getting-started-content .player-list .player-card {
    width: 100%;
    display: block;
    margin: 0 auto;
  }
}
.smp-dashboard-main .getting-started-content .feature-list {
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.smp-dashboard-main .getting-started-content .feature-list .feature-card {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  gap: 20px;
}
.smp-dashboard-main .getting-started-content .feature-list .feature-card.card-popup, .smp-dashboard-main .getting-started-content .feature-list .feature-card.card-preview, .smp-dashboard-main .getting-started-content .feature-list .feature-card.card-skins {
  flex-direction: row-reverse;
}
.smp-dashboard-main .getting-started-content .feature-list .feature-card.card-popup .feature-card-image, .smp-dashboard-main .getting-started-content .feature-list .feature-card.card-preview .feature-card-image, .smp-dashboard-main .getting-started-content .feature-list .feature-card.card-skins .feature-card-image {
  display: flex;
  align-items: end;
  justify-content: end;
}
.smp-dashboard-main .getting-started-content .feature-list .feature-card .feature-card-image,
.smp-dashboard-main .getting-started-content .feature-list .feature-card .feature-card-content {
  width: calc(50% - 10px);
}
.smp-dashboard-main .getting-started-content .feature-list .feature-card .feature-card-image img {
  width: 80%;
  max-width: 500px;
  height: auto;
}
.smp-dashboard-main .getting-started-content .feature-list .feature-card .feature-card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 500px;
}
.smp-dashboard-main .getting-started-content .feature-list .feature-card .feature-card-content h3 {
  font-size: 1.5rem;
  color: #212121;
  font-weight: 700;
  line-height: 120%;
  text-align: center;
}
.smp-dashboard-main .getting-started-content .feature-list .feature-card .feature-card-content p {
  color: #4d4d4d;
  font-size: 0.875rem;
  line-height: 150%;
  margin-top: 20px;
  text-align: center;
}
@media (max-width: 1150px) {
  .smp-dashboard-main .getting-started-content .feature-list .feature-card {
    flex-direction: column-reverse;
  }
  .smp-dashboard-main .getting-started-content .feature-list .feature-card.hidden-item {
    display: none;
  }
  .smp-dashboard-main .getting-started-content .feature-list .feature-card.card-popup, .smp-dashboard-main .getting-started-content .feature-list .feature-card.card-preview, .smp-dashboard-main .getting-started-content .feature-list .feature-card.card-skins {
    flex-direction: column-reverse;
  }
  .smp-dashboard-main .getting-started-content .feature-list .feature-card.card-popup .feature-card-image, .smp-dashboard-main .getting-started-content .feature-list .feature-card.card-preview .feature-card-image, .smp-dashboard-main .getting-started-content .feature-list .feature-card.card-skins .feature-card-image {
    width: 100%;
    justify-content: center;
    align-items: center;
  }
  .smp-dashboard-main .getting-started-content .feature-list .feature-card .feature-card-image,
.smp-dashboard-main .getting-started-content .feature-list .feature-card .feature-card-content {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
.smp-dashboard-main .getting-started-content .other-features-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: start;
  gap: 20px;
  margin-bottom: 2em;
  position: relative;
}
.smp-dashboard-main .getting-started-content .other-features-list .other-feature-card {
  width: calc(33.3333333333% - 20px);
  min-height: 270px;
  border-radius: 10px;
  border: 1px solid #ddd;
  background: #fff;
  text-align: center;
  padding: 20px;
  box-sizing: border-box;
}
.smp-dashboard-main .getting-started-content .other-features-list .other-feature-card img {
  width: 70px;
}
.smp-dashboard-main .getting-started-content .other-features-list .other-feature-card h3 {
  color: #151826;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 120%;
  margin: 10px 0 0;
}
.smp-dashboard-main .getting-started-content .other-features-list .other-feature-card p {
  color: #5c637e;
  font-size: 0.875rem;
  line-height: 160%;
  margin-top: 16px;
}
.smp-dashboard-main .getting-started-content .other-features-list .other-feature-card.hidden-item {
  display: none;
}
.smp-dashboard-main .getting-started-content .other-features-list .show-all-btn-wrap {
  width: 100%;
  text-align: center;
  margin-bottom: 50px;
  z-index: 1;
  margin-top: -50px;
}
.smp-dashboard-main .getting-started-content .other-features-list .show-all-btn-wrap .smp-btn {
  margin: 0 auto;
  height: 50px;
  font-size: 1rem;
}
.smp-dashboard-main .getting-started-content .other-features-list:has(.show-all-btn-wrap):after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 80%;
  border-radius: 10px;
  background: linear-gradient(to bottom, transparent 20%, #fff 90%);
}
@media (max-width: 1150px) {
  .smp-dashboard-main .getting-started-content .other-features-list .other-feature-card {
    width: calc(50% - 30px);
  }
}
@media (max-width: 790px) {
  .smp-dashboard-main .getting-started-content .other-features-list .other-feature-card {
    width: 100%;
    display: block;
    margin: 0 auto;
  }
}
.smp-dashboard-main .getting-started-content .popular-plugins-wrap {
  display: flex;
  flex-direction: column;
  max-width: 800px;
  margin: auto;
}
.smp-dashboard-main .getting-started-content .popular-plugins-wrap .popular-plugin-item {
  display: flex;
  align-items: center;
  padding: 15px;
  border: 1px solid #eee;
  border-radius: 10px;
  margin-bottom: 15px;
  background: #fff;
  transition: all 0.3s ease;
}
.smp-dashboard-main .getting-started-content .popular-plugins-wrap .popular-plugin-item img {
  width: 70px;
  height: 70px;
  margin-right: 15px;
}
.smp-dashboard-main .getting-started-content .popular-plugins-wrap .popular-plugin-item .plugin-info {
  display: flex;
  flex-direction: column;
}
.smp-dashboard-main .getting-started-content .popular-plugins-wrap .popular-plugin-item .plugin-info h3 {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 0;
  margin-top: 0;
}
.smp-dashboard-main .getting-started-content .popular-plugins-wrap .popular-plugin-item .plugin-info p {
  margin-top: 5px;
  margin-bottom: 0;
}
.smp-dashboard-main .getting-started-content .popular-plugins-wrap .popular-plugin-item .plugin-info .users-count {
  display: flex;
  align-items: center;
  font-size: 15px;
  line-height: 1.5;
  font-weight: 400;
  color: #555;
  margin: 7px 0 0 0;
  padding: 2px 5px 2px 8px;
  border-left: 3px solid var(--plugin-color);
  background: linear-gradient(to right, var(--plugin-color) -150%, transparent 95%);
  background-repeat: no-repeat;
  background-size: 120px;
  border-radius: 5px;
}
.smp-dashboard-main .getting-started-content .popular-plugins-wrap .popular-plugin-item .plugin-info .users-count i {
  margin-right: 3px;
}
.smp-dashboard-main .getting-started-content .popular-plugins-wrap .popular-plugin-item .button-group {
  display: flex;
  gap: 10px;
  margin-left: auto;
}
.smp-dashboard-main .getting-started-content .popular-plugins-wrap .popular-plugin-item .button-group .smp-btn {
  padding: 8px 12px;
  font-size: 0.875rem;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  box-shadow: none;
  border: 1px solid transparent;
  transition: background-color 0.3s ease;
  color: #fff;
  background-color: #0042a4;
  white-space: nowrap;
  text-decoration: none;
}
.smp-dashboard-main .getting-started-content .popular-plugins-wrap .popular-plugin-item .button-group .smp-btn:hover {
  background-color: #002d71;
}
.smp-dashboard-main .getting-started-content .popular-plugins-wrap .popular-plugin-item .button-group .smp-btn.btn-primary {
  background-color: #0056d7;
  color: #fff;
}
.smp-dashboard-main .getting-started-content .popular-plugins-wrap .popular-plugin-item .button-group .smp-btn.btn-primary:hover {
  background-color: #0042a4;
}
.smp-dashboard-main .getting-started-content .popular-plugins-wrap .popular-plugin-item:hover {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  border-color: #ccc;
}
@media (max-width: 767px) {
  .smp-dashboard-main .getting-started-content .popular-plugins-wrap .popular-plugin-item {
    flex-direction: column;
    align-items: flex-start;
  }
  .smp-dashboard-main .getting-started-content .popular-plugins-wrap .popular-plugin-item img {
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
  }
  .smp-dashboard-main .getting-started-content .popular-plugins-wrap .popular-plugin-item .plugin-info h3 {
    font-size: 1rem;
  }
  .smp-dashboard-main .getting-started-content .popular-plugins-wrap .popular-plugin-item .components-button-group {
    margin-top: 10px;
    width: 100%;
    justify-content: space-between;
  }
}
.smp-dashboard-main .getting-started-content .service-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  align-items: center;
  margin-top: 70px;
}
.smp-dashboard-main .getting-started-content .service-list .service-card {
  width: calc(50% - 15px);
  height: 500px;
  border-radius: 10px;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px 0;
}
.smp-dashboard-main .getting-started-content .service-list .service-card img {
  max-width: 300px;
  margin: 0 0 40px;
  padding: 0 10px;
}
.smp-dashboard-main .getting-started-content .service-list .service-card h3 {
  color: #151826;
  text-align: center;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 120%;
  margin: 0;
  padding: 0 10px;
}
.smp-dashboard-main .getting-started-content .service-list .service-card p {
  color: #5c637e;
  font-size: 0.875rem;
  line-height: 150%;
  text-align: center;
  max-width: 350px;
  padding: 0 10px;
}
.smp-dashboard-main .getting-started-content .service-list .service-card a {
  border-radius: 50px;
}
@media (max-width: 990px) {
  .smp-dashboard-main .getting-started-content .service-list .service-card {
    width: 100%;
  }
}
.smp-dashboard-main .getting-started-content .content-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 80px auto 40px auto;
  text-align: center;
  max-width: 650px;
  line-height: 1.3;
}
.smp-dashboard-main .getting-started-content .content-heading.heading-introduction h2 mark::after {
  right: -30px;
}
.smp-dashboard-main .getting-started-content .content-heading h2 {
  margin: 5px 0;
  font-size: 30px;
  font-weight: 700;
}
.smp-dashboard-main .getting-started-content .content-heading h2 mark {
  position: relative;
  background: linear-gradient(270deg, #0f9d58 0, #1e62b9 50%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0 7px;
}
.smp-dashboard-main .getting-started-content .content-heading h2 mark:after {
  position: absolute;
  right: 0;
  bottom: -25px;
  content: "";
  width: 215px;
  height: 23px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='22' fill='none'%3E%3Cg opacity='.5'%3E%3Cpath fill='%234285F4' d='m2.72 9.79-.312 3.988.095.007a.565.565 0 0 0 .297-.047c.304-.15.997-.624 1.093-1.85.028-.364.221-.83.412-1.215.169-.338-.048-.763-.424-.792L2.719 9.79Zm1.759 1.406.396 1.96-.396-1.96Zm8.416-1.552-.302-1.977.302 1.977ZM43.367 4.94l.288 1.98-.288-1.98Zm35.684-2.398.051 2-.05-2Zm42.52-.384-.056 2 .056-2Zm40.423 3.149-.328 1.973.328-1.973Zm17.324 2.974.337-1.971-.337 1.971Zm13.929 2.463-.494 1.938.494-1.938Zm17.188 4.28.424-1.954-.424 1.955Zm7.565-.627v4h.095a.568.568 0 0 0 .292-.07c.292-.173.946-.699.946-1.93 0-.364.156-.844.317-1.242.142-.35-.107-.758-.485-.758H218ZM2.72 9.79a1.995 1.995 0 0 1 1.484.858 1.998 1.998 0 0 1-.347 2.648c-.178.152-.34.234-.364.246a1.67 1.67 0 0 1-.11.053c-.047.02-.055.02.023-.006.125-.042.326-.104.56-.173.517-.153.93-.264.909-.26l-.793-3.92c-.196.04-.818.216-1.253.345-.243.072-.497.15-.69.214-.08.027-.212.072-.333.123-.034.015-.091.04-.157.075-.035.018-.207.106-.39.262a2.002 2.002 0 0 0 1.15 3.523l.31-3.988Zm2.155 3.366c2.799-.566 5.506-1.106 8.321-1.535l-.603-3.954c-2.922.445-5.717 1.004-8.51 1.569l.792 3.92Zm8.321-1.535c10.209-1.556 20.263-3.221 30.459-4.7l-.575-3.96c-10.2 1.48-20.36 3.162-30.487 4.706l.603 3.954Zm30.459-4.7c11.302-1.641 23.7-2.08 35.447-2.378L79 .544c-11.736.298-24.354.739-35.92 2.418l.575 3.958Zm35.447-2.378c14.14-.36 28.347-.777 42.413-.385l.111-3.998C107.431-.236 93.106.186 79 .544l.102 3.999Zm42.413-.385c13.503.377 27.241.97 40.151 3.123l.657-3.946C149.117 1.133 135.135.536 121.626.16l-.111 3.998Zm40.151 3.123c5.786.965 11.519 1.982 17.316 2.972l.673-3.942c-5.757-.984-11.541-2.01-17.332-2.976l-.657 3.946Zm17.316 2.972c4.808.822 9.423 1.321 13.771 2.43l.988-3.876c-4.548-1.16-9.61-1.732-14.086-2.496l-.673 3.942Zm13.771 2.43c5.692 1.45 11.333 3.013 17.258 4.297l.848-3.909c-5.831-1.264-11.323-2.787-17.118-4.264l-.988 3.876Zm17.258 4.297c.536.117 1.11.257 1.739.41.619.152 1.286.314 1.964.46 1.343.292 2.833.548 4.286.548v-4c-1.023 0-2.184-.184-3.438-.456a74.285 74.285 0 0 1-1.864-.438c-.615-.15-1.243-.303-1.839-.433l-.848 3.91ZM16.158 14.044l4 .072v-.096a.568.568 0 0 0-.067-.293c-.17-.295-.689-.959-1.92-.98-.364-.007-.842-.172-1.238-.34-.35-.148-.759.094-.763.472l-.012 1.165Zm4.362-.155.417 1.96-.417-1.96Zm7.594-1.153-.277-1.982.277 1.982Zm20.716-2.72-.264-1.984.264 1.985Zm54.479-2.07.003-2-.003 2Zm31.056 1.36.19-1.99-.19 1.99Zm14.668 1.97-.375 1.963.375-1.962Zm12.774 2.207-.478 1.938.478-1.938Zm20.671 3.79.457-1.944-.457 1.944Zm12.803.731-.237 3.992.095.006a.566.566 0 0 0 .296-.05c.301-.154.985-.635 1.058-1.863.022-.364.206-.832.39-1.219.162-.34-.062-.763-.439-.788l-1.163-.078Zm-179.123-3.96c-.01.944.585 1.52.96 1.759.328.208.638.276.76.3.28.056.544.055.682.052.322-.006.692-.047.993-.085.62-.08 1.26-.196 1.384-.222l-.833-3.919a20.971 20.971 0 0 1-1.092.173c-.271.035-.465.052-.562.054-.072.001.018-.008.176.024.062.012.325.064.62.252a1.976 1.976 0 0 1 .91 1.683l-3.998-.071Zm4.779 1.804c2.417-.496 4.84-.782 7.454-1.129l-.554-3.965c-2.532.335-5.14.643-7.733 1.175l.833 3.92Zm7.454-1.129c6.914-.916 13.793-1.852 20.702-2.717l-.527-3.97c-6.927.868-13.834 1.808-20.73 2.722l.555 3.965Zm20.702-2.717C66.86 9.776 85.056 9.79 103.307 9.945l.005-4C85.077 5.79 66.633 5.77 48.566 8.032l.527 3.97Zm54.214-2.056c10.406.09 20.632.292 30.867 1.35l.381-3.98c-10.438-1.078-20.826-1.28-31.243-1.37l-.005 4Zm30.867 1.35c4.974.514 9.762 1.008 14.484 1.943l.749-3.924c-4.936-.978-9.911-1.488-14.852-1.998l-.381 3.979Zm14.484 1.943c2.181.432 4.411.73 6.521 1.04 2.14.314 4.187.644 6.15 1.142l.956-3.877c-2.178-.553-4.401-.907-6.554-1.223-2.183-.32-4.27-.6-6.324-1.006l-.749 3.924Zm12.671 2.182c3.457.878 7.031 1.43 10.505 1.958 3.507.534 6.911 1.044 10.187 1.837l.914-3.887c-3.478-.843-7.062-1.378-10.528-1.905-3.5-.533-6.884-1.058-10.122-1.88l-.956 3.877Zm20.692 3.795c4.049.981 8.188 2.456 13.023 2.78l.237-3.992c-4.38-.293-7.78-1.57-12.346-2.675l-.914 3.887Z' style='mix-blend-mode:multiply'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}
.smp-dashboard-main .getting-started-content .content-heading p {
  margin: 10px 5px;
  font-size: 0.875rem;
  color: #555;
}
.smp-dashboard-main .getting-started-content .content-heading .smp-btn {
  margin-top: 20px;
  height: 50px;
}
.smp-dashboard-main .getting-started-content .content-heading .smp-btn svg,
.smp-dashboard-main .getting-started-content .content-heading .smp-btn path {
  fill: #fff;
}
.smp-dashboard-main .getting-started-content .content-heading .smp-btn svg {
  margin-right: 7px;
}
.smp-dashboard-main .getting-started-content .log {
  border-radius: 15px;
  margin-bottom: 20px;
}
.smp-dashboard-main .getting-started-content .log-header {
  display: flex;
  align-items: center;
  cursor: pointer;
  padding: 20px;
  background: #eff3fe;
  border-radius: 15px;
}
.smp-dashboard-main .getting-started-content .log-header span {
  font-size: 1rem;
  font-weight: 500;
  margin-right: 10px;
}
.smp-dashboard-main .getting-started-content .log-header span.log-version {
  background: #0056d7;
  color: #fff;
  padding: 5px 10px;
  border-radius: 5px;
}
.smp-dashboard-main .getting-started-content .log-header i {
  margin-left: auto;
  background: #0056d7;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border-radius: 50%;
  height: 25px;
  width: 25px;
}
.smp-dashboard-main .getting-started-content .log-body {
  display: none;
}
.smp-dashboard-main .getting-started-content .log-body .log-section {
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(11, 109, 255, 0.1);
}
.smp-dashboard-main .getting-started-content .log-body .log-section:last-child {
  border-bottom: none;
}
.smp-dashboard-main .getting-started-content .log-body .log-item {
  font-size: 1rem;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}
.smp-dashboard-main .getting-started-content .log-body .log-item i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 7px;
  border-radius: 50%;
  height: 25px;
  width: 25px;
  padding: 5px;
}
.smp-dashboard-main .getting-started-content .log-body .log-item-new {
  color: #3265a6;
}
.smp-dashboard-main .getting-started-content .log-body .log-item-new i {
  background: #3265a6;
  color: #fff;
}
.smp-dashboard-main .getting-started-content .log-body .log-item-fix {
  color: #0b6dff;
}
.smp-dashboard-main .getting-started-content .log-body .log-item-fix i {
  background: #0b6dff;
  color: #fff;
}
.smp-dashboard-main .getting-started-content .log-body .log-item-enhancement {
  color: #f5a623;
}
.smp-dashboard-main .getting-started-content .log-body .log-item-enhancement i {
  background: #f5a623;
  color: #fff;
}
.smp-dashboard-main .getting-started-content .log-body .log-item-remove {
  color: #f3754d;
}
.smp-dashboard-main .getting-started-content .log-body .log-item-remove i {
  background: transparent;
}
.smp-dashboard-main .getting-started-content .log.active {
  border: 1px solid rgba(11, 109, 255, 0.3);
}
.smp-dashboard-main .getting-started-content .log.active .log-header {
  border-bottom: 1px solid rgba(11, 109, 255, 0.3);
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.smp-dashboard-main .getting-started-content .log.active .log-body {
  display: block;
  padding: 20px;
}
.smp-dashboard-main .getting-started-content .features-list {
  background: #eff3fe;
  border-radius: 7px;
  overflow: hidden;
  border: 1px solid rgba(11, 109, 255, 0.1);
}
.smp-dashboard-main .getting-started-content .features-list .list-header {
  display: flex;
  align-items: center;
  padding: 25px;
  font-size: 1.2rem;
  border-bottom: 1px solid rgba(11, 109, 255, 0.1);
  font-weight: 600;
  background: rgba(11, 109, 255, 0.0875);
}
.smp-dashboard-main .getting-started-content .features-list .list-header .feature-title {
  width: 75%;
}
.smp-dashboard-main .getting-started-content .features-list .list-header .feature-free {
  width: 12%;
}
.smp-dashboard-main .getting-started-content .features-list .list-header .feature-pro {
  width: 12%;
  margin-left: auto;
  text-align: center;
}
.smp-dashboard-main .getting-started-content .features-list .feature {
  display: flex;
  align-items: center;
  padding: 15px 25px;
  font-size: 1rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(11, 109, 255, 0.1);
}
.smp-dashboard-main .getting-started-content .features-list .feature:nth-child(odd) {
  background: #fff;
}
.smp-dashboard-main .getting-started-content .features-list .feature:last-child {
  border-bottom: none;
}
.smp-dashboard-main .getting-started-content .features-list .feature .feature-title {
  width: 75%;
}
.smp-dashboard-main .getting-started-content .features-list .feature i {
  color: #fff;
  background: #0b6dff;
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
}
.smp-dashboard-main .getting-started-content .features-list .feature i.dashicons-no-alt {
  background: rgba(243, 117, 77, 0.7);
}
.smp-dashboard-main .getting-started-content .features-list .feature .feature-free {
  width: 12%;
}
.smp-dashboard-main .getting-started-content .features-list .feature .feature-pro {
  width: 12%;
  margin-left: auto;
  text-align: center;
}
.smp-dashboard-main .getting-started-content .features-list .feature-sub {
  padding: 24px 30px 30px 30px;
  font-size: 1rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(11, 109, 255, 0.1);
  background: #fff;
}
.smp-dashboard-main .getting-started-content .features-list .feature-sub:last-child {
  border-bottom: none;
}
.smp-dashboard-main .getting-started-content .features-list .feature-sub .feature-list {
  background: rgba(230, 238, 251, 0.4);
  padding: 30px;
  margin-top: 20px;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.smp-dashboard-main .getting-started-content .features-list .feature-sub .feature-list .feature {
  display: flex;
  align-items: center;
  padding: 20px 0 20px 30px;
  font-size: 1rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(11, 109, 255, 0.1);
  background: #fff;
  position: relative;
}
.smp-dashboard-main .getting-started-content .features-list .feature-sub .feature-list .feature:last-child {
  border-bottom: none;
}
.smp-dashboard-main .getting-started-content .features-list .feature-sub .feature-list .feature .feature-title {
  width: 75%;
}
.smp-dashboard-main .getting-started-content .features-list .feature-sub .feature-list .feature i {
  color: #fff;
  background: #0056d7;
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
}
.smp-dashboard-main .getting-started-content .features-list .feature-sub .feature-list .feature i.dashicons-no-alt {
  background: #fe8483;
}
.smp-dashboard-main .getting-started-content .features-list .feature-sub .feature-list .feature .feature-free {
  width: 12%;
  padding-left: 8px;
}
.smp-dashboard-main .getting-started-content .features-list .feature-sub .feature-list .feature .feature-pro {
  position: absolute;
  right: -25px;
  width: 12%;
}
.smp-dashboard-main .getting-started-content .get-pro-cta,
.smp-dashboard-main .getting-started-content .demo-cta {
  display: flex;
  align-items: center;
  border-radius: 10px;
  padding: 60px 30px;
  margin: 60px 0;
  background-size: cover;
  background: linear-gradient(135deg, #f9e9f1 0, #e8f7f9 25%, #dff4ef 50%, #e7f6f8 75%, #f5fafd 100%);
}
.smp-dashboard-main .getting-started-content .get-pro-cta .cta-content,
.smp-dashboard-main .getting-started-content .demo-cta .cta-content {
  display: flex;
  flex-direction: column;
  width: 60%;
}
.smp-dashboard-main .getting-started-content .get-pro-cta .cta-content h2,
.smp-dashboard-main .getting-started-content .demo-cta .cta-content h2 {
  margin-bottom: 5px;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.3;
}
.smp-dashboard-main .getting-started-content .get-pro-cta .cta-content h2 mark,
.smp-dashboard-main .getting-started-content .demo-cta .cta-content h2 mark {
  position: relative;
  background: linear-gradient(270deg, #0f9d58 0, #1e62b9 50%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.smp-dashboard-main .getting-started-content .get-pro-cta .cta-content h2 mark:after,
.smp-dashboard-main .getting-started-content .demo-cta .cta-content h2 mark:after {
  position: absolute;
  right: -50px;
  bottom: -25px;
  content: "";
  width: 215px;
  height: 23px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='22' fill='none'%3E%3Cg opacity='.5'%3E%3Cpath fill='%234285F4' d='m2.72 9.79-.312 3.988.095.007a.565.565 0 0 0 .297-.047c.304-.15.997-.624 1.093-1.85.028-.364.221-.83.412-1.215.169-.338-.048-.763-.424-.792L2.719 9.79Zm1.759 1.406.396 1.96-.396-1.96Zm8.416-1.552-.302-1.977.302 1.977ZM43.367 4.94l.288 1.98-.288-1.98Zm35.684-2.398.051 2-.05-2Zm42.52-.384-.056 2 .056-2Zm40.423 3.149-.328 1.973.328-1.973Zm17.324 2.974.337-1.971-.337 1.971Zm13.929 2.463-.494 1.938.494-1.938Zm17.188 4.28.424-1.954-.424 1.955Zm7.565-.627v4h.095a.568.568 0 0 0 .292-.07c.292-.173.946-.699.946-1.93 0-.364.156-.844.317-1.242.142-.35-.107-.758-.485-.758H218ZM2.72 9.79a1.995 1.995 0 0 1 1.484.858 1.998 1.998 0 0 1-.347 2.648c-.178.152-.34.234-.364.246a1.67 1.67 0 0 1-.11.053c-.047.02-.055.02.023-.006.125-.042.326-.104.56-.173.517-.153.93-.264.909-.26l-.793-3.92c-.196.04-.818.216-1.253.345-.243.072-.497.15-.69.214-.08.027-.212.072-.333.123-.034.015-.091.04-.157.075-.035.018-.207.106-.39.262a2.002 2.002 0 0 0 1.15 3.523l.31-3.988Zm2.155 3.366c2.799-.566 5.506-1.106 8.321-1.535l-.603-3.954c-2.922.445-5.717 1.004-8.51 1.569l.792 3.92Zm8.321-1.535c10.209-1.556 20.263-3.221 30.459-4.7l-.575-3.96c-10.2 1.48-20.36 3.162-30.487 4.706l.603 3.954Zm30.459-4.7c11.302-1.641 23.7-2.08 35.447-2.378L79 .544c-11.736.298-24.354.739-35.92 2.418l.575 3.958Zm35.447-2.378c14.14-.36 28.347-.777 42.413-.385l.111-3.998C107.431-.236 93.106.186 79 .544l.102 3.999Zm42.413-.385c13.503.377 27.241.97 40.151 3.123l.657-3.946C149.117 1.133 135.135.536 121.626.16l-.111 3.998Zm40.151 3.123c5.786.965 11.519 1.982 17.316 2.972l.673-3.942c-5.757-.984-11.541-2.01-17.332-2.976l-.657 3.946Zm17.316 2.972c4.808.822 9.423 1.321 13.771 2.43l.988-3.876c-4.548-1.16-9.61-1.732-14.086-2.496l-.673 3.942Zm13.771 2.43c5.692 1.45 11.333 3.013 17.258 4.297l.848-3.909c-5.831-1.264-11.323-2.787-17.118-4.264l-.988 3.876Zm17.258 4.297c.536.117 1.11.257 1.739.41.619.152 1.286.314 1.964.46 1.343.292 2.833.548 4.286.548v-4c-1.023 0-2.184-.184-3.438-.456a74.285 74.285 0 0 1-1.864-.438c-.615-.15-1.243-.303-1.839-.433l-.848 3.91ZM16.158 14.044l4 .072v-.096a.568.568 0 0 0-.067-.293c-.17-.295-.689-.959-1.92-.98-.364-.007-.842-.172-1.238-.34-.35-.148-.759.094-.763.472l-.012 1.165Zm4.362-.155.417 1.96-.417-1.96Zm7.594-1.153-.277-1.982.277 1.982Zm20.716-2.72-.264-1.984.264 1.985Zm54.479-2.07.003-2-.003 2Zm31.056 1.36.19-1.99-.19 1.99Zm14.668 1.97-.375 1.963.375-1.962Zm12.774 2.207-.478 1.938.478-1.938Zm20.671 3.79.457-1.944-.457 1.944Zm12.803.731-.237 3.992.095.006a.566.566 0 0 0 .296-.05c.301-.154.985-.635 1.058-1.863.022-.364.206-.832.39-1.219.162-.34-.062-.763-.439-.788l-1.163-.078Zm-179.123-3.96c-.01.944.585 1.52.96 1.759.328.208.638.276.76.3.28.056.544.055.682.052.322-.006.692-.047.993-.085.62-.08 1.26-.196 1.384-.222l-.833-3.919a20.971 20.971 0 0 1-1.092.173c-.271.035-.465.052-.562.054-.072.001.018-.008.176.024.062.012.325.064.62.252a1.976 1.976 0 0 1 .91 1.683l-3.998-.071Zm4.779 1.804c2.417-.496 4.84-.782 7.454-1.129l-.554-3.965c-2.532.335-5.14.643-7.733 1.175l.833 3.92Zm7.454-1.129c6.914-.916 13.793-1.852 20.702-2.717l-.527-3.97c-6.927.868-13.834 1.808-20.73 2.722l.555 3.965Zm20.702-2.717C66.86 9.776 85.056 9.79 103.307 9.945l.005-4C85.077 5.79 66.633 5.77 48.566 8.032l.527 3.97Zm54.214-2.056c10.406.09 20.632.292 30.867 1.35l.381-3.98c-10.438-1.078-20.826-1.28-31.243-1.37l-.005 4Zm30.867 1.35c4.974.514 9.762 1.008 14.484 1.943l.749-3.924c-4.936-.978-9.911-1.488-14.852-1.998l-.381 3.979Zm14.484 1.943c2.181.432 4.411.73 6.521 1.04 2.14.314 4.187.644 6.15 1.142l.956-3.877c-2.178-.553-4.401-.907-6.554-1.223-2.183-.32-4.27-.6-6.324-1.006l-.749 3.924Zm12.671 2.182c3.457.878 7.031 1.43 10.505 1.958 3.507.534 6.911 1.044 10.187 1.837l.914-3.887c-3.478-.843-7.062-1.378-10.528-1.905-3.5-.533-6.884-1.058-10.122-1.88l-.956 3.877Zm20.692 3.795c4.049.981 8.188 2.456 13.023 2.78l.237-3.992c-4.38-.293-7.78-1.57-12.346-2.675l-.914 3.887Z' style='mix-blend-mode:multiply'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}
.smp-dashboard-main .getting-started-content .get-pro-cta .cta-btn,
.smp-dashboard-main .getting-started-content .demo-cta .cta-btn {
  margin-left: auto;
}
.smp-dashboard-main .getting-started-content .get-pro-cta .cta-btn .smp-btn,
.smp-dashboard-main .getting-started-content .demo-cta .cta-btn .smp-btn {
  padding: 15px 20px;
  text-decoration: none;
  color: #fff;
  background: #40b3ff;
  font-weight: 500;
}
.smp-dashboard-main .getting-started-content .get-pro-cta .cta-btn .smp-btn span,
.smp-dashboard-main .getting-started-content .demo-cta .cta-btn .smp-btn span {
  margin-left: 4px;
}
.smp-dashboard-main .getting-started-content .get-pro-cta .cta-btn .smp-btn:hover,
.smp-dashboard-main .getting-started-content .demo-cta .cta-btn .smp-btn:hover {
  background: #fff;
  color: #40b3ff;
}
@media (max-width: 767px) {
  .smp-dashboard-main .getting-started-content .get-pro-cta,
.smp-dashboard-main .getting-started-content .demo-cta {
    flex-direction: column;
    align-items: center;
    padding: 30px 20px;
    text-align: center;
  }
  .smp-dashboard-main .getting-started-content .get-pro-cta .cta-content,
.smp-dashboard-main .getting-started-content .demo-cta .cta-content {
    width: 100%;
    margin-bottom: 20px;
  }
  .smp-dashboard-main .getting-started-content .get-pro-cta .cta-btn,
.smp-dashboard-main .getting-started-content .demo-cta .cta-btn {
    width: 100%;
  }
}
.smp-dashboard-main .getting-started-content .demo-cta {
  background: #f0f4ff;
}
.smp-dashboard-main .getting-started-content .demo-cta .cta-content {
  color: #555;
}
.smp-dashboard-main .getting-started-content .demo-cta .cta-content h2 {
  color: #333;
}
.smp-dashboard-main .getting-started-content .demo-cta .cta-btn .smp-btn {
  background: #fff;
  color: #0056d7;
  font-weight: 500;
  padding: 15px 20px;
  text-decoration: none;
  border-radius: 5px;
  transition: all 0.3s ease-in-out;
}
.smp-dashboard-main .getting-started-content .demo-cta .cta-btn .smp-btn:hover {
  color: #fff;
  background: #0056d7;
}
.smp-dashboard-main .getting-started-content .faq-item {
  margin-bottom: 30px;
  border: 1px solid #eff3fe;
  border-radius: 15px;
  overflow: hidden;
  display: flex;
  width: 100%;
  flex-direction: column;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.smp-dashboard-main .getting-started-content .faq-item .faq-header {
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  background: #fff;
  padding: 15px 20px;
}
.smp-dashboard-main .getting-started-content .faq-item .faq-header i {
  margin-right: 15px;
  font-size: 1.2rem;
  transition: all 0.3s ease-in-out;
  background: #5c637e;
  color: #fff;
  width: 35px;
  height: 35px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
}
.smp-dashboard-main .getting-started-content .faq-item .faq-header h3 {
  font-size: 1.2rem;
  margin: 0;
}
.smp-dashboard-main .getting-started-content .faq-item .faq-body {
  display: none;
  line-height: 1.5;
  padding: 10px 20px;
  background: #fff;
}
.smp-dashboard-main .getting-started-content .faq-item .faq-body p {
  font-size: 1rem;
  color: #444;
}
.smp-dashboard-main .getting-started-content .faq-item.active .faq-header i {
  background: #0056d7;
  color: #fff;
  transform: rotate(180deg);
}
.smp-dashboard-main .getting-started-content .faq-item.active .faq-body {
  display: block;
}
.smp-dashboard-main .getting-started-content .section-basic-usage {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  padding: 30px;
  border-radius: 15px;
  margin-bottom: 20px;
  background: #fff;
}
.smp-dashboard-main .getting-started-content .section-basic-usage .col-content,
.smp-dashboard-main .getting-started-content .section-basic-usage .col-image {
  width: calc(50% - 15px);
}
.smp-dashboard-main .getting-started-content .section-basic-usage .col-content {
  margin-bottom: 1rem;
}
.smp-dashboard-main .getting-started-content .section-basic-usage .col-content h2 {
  color: #212121;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 120%;
  margin-top: 0;
}
.smp-dashboard-main .getting-started-content .section-basic-usage .col-content p {
  color: #4d4d4d;
  font-size: 0.875rem;
  line-height: 160%;
}
.smp-dashboard-main .getting-started-content .section-basic-usage .col-content ul {
  list-style: decimal;
  font-size: 14px;
  margin-left: 15px;
}
.smp-dashboard-main .getting-started-content .section-basic-usage .col-content ul li a {
  color: #0056d7;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 160%;
  text-decoration: none;
}
.smp-dashboard-main .getting-started-content .section-basic-usage .col-content ul li ul {
  list-style: disc;
  margin: 10px 0 10px 30px;
}
.smp-dashboard-main .getting-started-content .section-basic-usage .col-image {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
.smp-dashboard-main .getting-started-content .section-basic-usage .col-image img {
  max-width: 100%;
  border-radius: 7px;
}
.smp-dashboard-main .getting-started-content .section-basic-usage .col-image iframe {
  width: 100%;
  border-radius: 7px;
  aspect-ratio: 16/9;
}
@media (max-width: 990px) {
  .smp-dashboard-main .getting-started-content .section-basic-usage .col-content,
.smp-dashboard-main .getting-started-content .section-basic-usage .col-image {
    width: 100%;
  }
}
.smp-dashboard-main .getting-started-content p {
  font-size: 1rem;
}
.smp-dashboard-main .getting-started-content li {
  font-size: 0.975rem;
  margin-bottom: 10px;
  line-height: 1.5;
}
.smp-dashboard-main .getting-started-content ul li {
  margin-left: 20px;
  list-style-type: disc;
}
.smp-dashboard-main .getting-started-content ol ul {
  margin-top: 10px;
}
.smp-dashboard-main .getting-started-content h4 {
  font-size: 1rem;
}
.smp-dashboard-main .getting-started-content .free-vs-pro-wrap {
  margin: 10px 0;
  font-size: 24px;
  font-weight: 500;
}
.smp-dashboard-main .getting-started-content .free-vs-pro-wrap span {
  margin: 0 5px;
}
.smp-dashboard-main .getting-started-content .free-vs-pro-wrap span:first-child {
  color: #7a7a7a;
}
.smp-dashboard-main .getting-started-content .free-vs-pro-wrap span:last-child {
  color: #0056d7;
}
.smp-dashboard-main .timeline-container {
  max-width: 700px;
  position: relative;
  text-align: left;
}
.smp-dashboard-main .timeline-container .timeline-rail {
  position: absolute;
  top: 20px;
  width: 3px;
  height: calc(100% - 50px);
  background: #0b6dff;
  left: 19px;
}
.smp-dashboard-main .timeline-container .timeline-item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  position: relative;
  text-decoration: none;
  transition: all 0.3s ease;
  /* Step-specific colors */
}
.smp-dashboard-main .timeline-container .timeline-item .timeline-step {
  flex: 0 0 70px;
  position: relative;
  transition: all 0.3s ease;
}
.smp-dashboard-main .timeline-container .timeline-item .timeline-step .circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #fff;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  position: relative;
  z-index: 2;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}
.smp-dashboard-main .timeline-container .timeline-item .timeline-step .checked {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #0056d7;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}
.smp-dashboard-main .timeline-container .timeline-item .timeline-step .checked i {
  color: #fff;
  font-size: 26px;
  height: auto;
  width: auto;
}
.smp-dashboard-main .timeline-container .timeline-item .timeline-step .connector {
  position: absolute;
  left: 19px;
  top: 40px;
  width: 3px;
  height: calc(100% + 50px);
  background: #43bc43;
}
.smp-dashboard-main .timeline-container .timeline-item .timeline-content-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
  flex: 1;
  background: #f7f9ff;
  border-radius: 7px;
  padding: 15px 20px;
  color: #334158;
  border: 1px solid rgba(21, 77, 145, 0.1);
  transition: all 0.3s ease;
}
.smp-dashboard-main .timeline-container .timeline-item .timeline-content-wrap .timeline-header {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
}
.smp-dashboard-main .timeline-container .timeline-item .timeline-content-wrap .timeline-header img {
  width: 40px;
  margin-right: 10px;
}
.smp-dashboard-main .timeline-container .timeline-item .timeline-content-wrap .timeline-header .timeline-content-toggle {
  margin-left: 10px;
  height: auto;
  width: auto;
  font-size: 22px;
  padding: 5px;
  border-radius: 3px;
  transition: all 0.3s ease;
  cursor: pointer;
}
.smp-dashboard-main .timeline-container .timeline-item .timeline-content-wrap .timeline-header .timeline-content-toggle:hover {
  background: #0056d7;
  color: #fff;
}
.smp-dashboard-main .timeline-container .timeline-item .timeline-content-wrap .timeline-body {
  display: none;
  border-top: 1px solid #ddd;
  margin-top: 15px;
}
.smp-dashboard-main .timeline-container .timeline-item .timeline-content-wrap .timeline-body a {
  text-decoration: none;
}
.smp-dashboard-main .timeline-container .timeline-item .timeline-content-wrap .timeline-body-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  border-top: 1px solid #ddd;
  padding-top: 15px;
}
.smp-dashboard-main .timeline-container .timeline-item .timeline-content-wrap .timeline-body-actions .smp-btn {
  height: 35px;
  padding: 7px;
}
.smp-dashboard-main .timeline-container .timeline-item .timeline-content-wrap:before {
  content: "";
  position: absolute;
  left: -60px;
  width: 60px;
  height: 2px;
  background: #43bc43;
}
.smp-dashboard-main .timeline-container .timeline-item .timeline-content {
  flex: 1;
}
.smp-dashboard-main .timeline-container .timeline-item .timeline-content strong {
  font-weight: 700;
  font-size: 1.1em;
  color: #222f46;
}
.smp-dashboard-main .timeline-container .timeline-item .timeline-content p {
  margin: 6px 0 0 0;
  font-size: 0.95em;
  line-height: 1.4;
}
.smp-dashboard-main .timeline-container .timeline-item .timeline-content-header {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.smp-dashboard-main .timeline-container .timeline-item .timeline-content-header .smp-btn {
  padding: 5px 10px 5px 7px;
  margin: 0 0 0 10px;
  background: rgba(0, 86, 215, 0.7);
  color: #fff;
  height: 30px;
}
.smp-dashboard-main .timeline-container .timeline-item .timeline-content-header .smp-btn:hover {
  background: #0042a4;
}
.smp-dashboard-main .timeline-container .timeline-item.timeline-step-download-install .timeline-step .circle {
  background: #43bc43;
}
.smp-dashboard-main .timeline-container .timeline-item.timeline-step-download-install .timeline-step .connector {
  background: #43bc43;
}
.smp-dashboard-main .timeline-container .timeline-item.timeline-step-download-install .timeline-content-wrap {
  background: #ecf8ec;
}
.smp-dashboard-main .timeline-container .timeline-item.timeline-step-download-install .timeline-content-wrap:before {
  background: #43bc43;
}
.smp-dashboard-main .timeline-container .timeline-item.timeline-step-activate-license .timeline-step .circle {
  background: #f28b8b;
}
.smp-dashboard-main .timeline-container .timeline-item.timeline-step-activate-license .timeline-step .connector {
  background: #f28b8b;
}
.smp-dashboard-main .timeline-container .timeline-item.timeline-step-activate-license .timeline-content-wrap {
  background: #fef9f9;
}
.smp-dashboard-main .timeline-container .timeline-item.timeline-step-activate-license .timeline-content-wrap:before {
  background: #f28b8b;
}
.smp-dashboard-main .timeline-container .timeline-item.timeline-step-activate-license:hover .timeline-step .circle {
  background: #ed5d5d;
}
.smp-dashboard-main .timeline-container .timeline-item.timeline-step-activate-license:hover .timeline-step .connector {
  background: #ed5d5d;
}
.smp-dashboard-main .timeline-container .timeline-item.timeline-step-activate-license:hover .timeline-content-wrap {
  background: #f9cbcb;
}
.smp-dashboard-main .timeline-container .timeline-item.timeline-step-activate-license:hover .timeline-content-wrap strong {
  color: #ed5d5d;
}
.smp-dashboard-main .timeline-container .timeline-item.timeline-step-activate-license:hover .timeline-content-wrap:before {
  background: #ed5d5d;
}
.smp-dashboard-main .timeline-container .timeline-item.timeline-step-create-players .timeline-step .circle {
  background: #86a9fb;
}
.smp-dashboard-main .timeline-container .timeline-item.timeline-step-create-players .timeline-step .connector {
  background: #86a9fb;
}
.smp-dashboard-main .timeline-container .timeline-item.timeline-step-create-players .timeline-content-wrap {
  background: white;
}
.smp-dashboard-main .timeline-container .timeline-item.timeline-step-create-players .timeline-content-wrap:before {
  background: #86a9fb;
}
.smp-dashboard-main .timeline-container .timeline-item.timeline-step-create-players:hover .timeline-step .circle {
  background: #5586f9;
}
.smp-dashboard-main .timeline-container .timeline-item.timeline-step-create-players:hover .timeline-step .connector {
  background: #5586f9;
}
.smp-dashboard-main .timeline-container .timeline-item.timeline-step-create-players:hover .timeline-content-wrap {
  background: #d0defd;
}
.smp-dashboard-main .timeline-container .timeline-item.timeline-step-create-players:hover .timeline-content-wrap .timeline-header strong {
  color: #5586f9;
}
.smp-dashboard-main .timeline-container .timeline-item.timeline-step-create-players:hover .timeline-content-wrap:before {
  background: #5586f9;
}
.smp-dashboard-main .timeline-container .timeline-item.timeline-step-display-players .timeline-step .circle {
  background: #86d5ff;
  color: #fff;
}
.smp-dashboard-main .timeline-container .timeline-item.timeline-step-display-players .timeline-step .connector {
  background: #86d5ff;
}
.smp-dashboard-main .timeline-container .timeline-item.timeline-step-display-players .timeline-content-wrap {
  background: #fbfeff;
}
.smp-dashboard-main .timeline-container .timeline-item.timeline-step-display-players .timeline-content-wrap:before {
  background: #86d5ff;
}
.smp-dashboard-main .timeline-container .timeline-item.timeline-step-display-players:hover .timeline-step .circle {
  background: #53c3ff;
}
.smp-dashboard-main .timeline-container .timeline-item.timeline-step-display-players:hover .timeline-content-wrap {
  background: #d8f1ff;
}
.smp-dashboard-main .timeline-container .timeline-item.timeline-step-display-players:hover .timeline-content-wrap .timeline-header strong {
  color: #53c3ff;
}
.smp-dashboard-main .timeline-container .timeline-item.timeline-step-display-players:hover .timeline-content-wrap:before {
  background: #53c3ff;
}
.smp-dashboard-main .timeline-container .timeline-item.timeline-step-finish .timeline-step .circle {
  background: #ffdb76;
  color: #222f46;
}
.smp-dashboard-main .timeline-container .timeline-item.timeline-step-finish .timeline-step .circle .checked {
  opacity: 0;
  transition: opacity 0.3s ease;
}
.smp-dashboard-main .timeline-container .timeline-item.timeline-step-finish .timeline-content-wrap {
  background: #fffefb;
}
.smp-dashboard-main .timeline-container .timeline-item.timeline-step-finish .timeline-content-wrap:before {
  background: #ffdb76;
}
.smp-dashboard-main .timeline-container .timeline-item.timeline-step-finish:hover .timeline-step .circle {
  background: #ffce43;
}
.smp-dashboard-main .timeline-container .timeline-item.timeline-step-finish:hover .timeline-step .circle .checked {
  opacity: 1;
}
.smp-dashboard-main .timeline-container .timeline-item.timeline-step-finish:hover .timeline-content-wrap {
  background: #fff0c8;
}
.smp-dashboard-main .timeline-container .timeline-item.timeline-step-finish:hover .timeline-content-wrap strong {
  color: #dca200;
}
.smp-dashboard-main .timeline-container .timeline-item.timeline-step-finish:hover .timeline-content-wrap:before {
  background: #ffce43;
}
.smp-dashboard-main .timeline-container .timeline-item:last-child {
  margin-bottom: 0;
}
.smp-dashboard-main .timeline-container .timeline-item:last-child .timeline-step .connector {
  display: none;
}
.smp-dashboard-main .timeline-container .timeline-item.active .timeline-content-wrap .timeline-header .timeline-content-toggle {
  transform: rotate(180deg);
}

.smp-settings,
#smp-settings {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}
.smp-settings,
.smp-settings *,
#smp-settings,
#smp-settings * {
  box-sizing: border-box;
}
.smp-settings-header,
#smp-settings-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  border-bottom: 1px solid #eaeaea;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
  background: #fff;
  width: calc(100% + 20px);
  margin-left: -20px;
  margin-bottom: 20px;
  position: sticky;
  top: 32px;
  z-index: 9;
}
.smp-settings-header .header-title,
#smp-settings-header .header-title {
  font-size: 1.2rem;
  font-weight: 500;
  display: flex;
  align-items: center;
}
.smp-settings-header .header-title svg,
#smp-settings-header .header-title svg {
  margin-right: 10px;
  width: 35px;
}
.smp-settings-header .header-title svg circle,
#smp-settings-header .header-title svg circle {
  fill: #0056d7;
}
.smp-settings-menu,
#smp-settings-menu {
  background: #fff;
  border-radius: 5px;
  overflow: hidden;
  width: 20%;
  max-width: 250px;
  display: flex;
  flex-direction: column;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 110px;
}
.smp-settings-menu .menu-item,
#smp-settings-menu .menu-item {
  cursor: pointer;
  padding: 15px;
  border-bottom: 1px solid #eaeaea;
  color: #5c637e;
  font-size: 1rem;
  display: flex;
  align-items: center;
  border-right: 4px solid transparent;
}
.smp-settings-menu .menu-item .settings-icon,
#smp-settings-menu .menu-item .settings-icon {
  width: 24px;
  height: 24px;
  margin-right: 10px;
}
.smp-settings-menu .menu-item.active,
#smp-settings-menu .menu-item.active {
  color: #0042a4;
  border-right-color: #0056d7;
}
.smp-settings-menu .menu-item.active svg,
.smp-settings-menu .menu-item.active path,
#smp-settings-menu .menu-item.active svg,
#smp-settings-menu .menu-item.active path {
  fill: #0042a4;
}
.smp-settings-menu .menu-item.tools svg,
#smp-settings-menu .menu-item.tools svg {
  width: 22px;
  height: 22px;
}
@media (max-width: 1199px) {
  .smp-settings-menu,
#smp-settings-menu {
    width: 33%;
  }
}
@media (max-width: 767px) {
  .smp-settings-menu,
#smp-settings-menu {
    position: relative;
    top: 0;
    width: calc(100% - 10px);
    max-width: 100%;
    margin-bottom: 20px;
  }
}
.smp-settings-tab-content,
#smp-settings-tab-content {
  display: flex !important;
  flex-direction: column;
  margin: 0 15px;
  border-radius: 5px;
  background: #fff;
  flex: 1;
  padding: 15px 20px;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
  position: relative;
}
.smp-settings-tab-content .settings-header,
#smp-settings-tab-content .settings-header {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #eaeaea;
  margin-bottom: 20px;
  padding: 10px 0 20px 0;
  line-height: 1;
}
.smp-settings-tab-content .settings-header img,
#smp-settings-tab-content .settings-header img {
  margin-right: 10px;
  width: 24px;
  height: 24px;
}
.smp-settings-tab-content .settings-header span,
#smp-settings-tab-content .settings-header span {
  font-size: 1rem;
  font-weight: 600;
}
.smp-settings-tab-content .pro-addon-modal,
#smp-settings-tab-content .pro-addon-modal {
  position: absolute;
  top: 60px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2;
  display: flex;
  justify-content: center;
  min-height: 500px;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}
.smp-settings-tab-content .pro-addon-modal .modal-inner,
#smp-settings-tab-content .pro-addon-modal .modal-inner {
  background: #fff;
  padding: 30px 20px;
  border-radius: 7px;
  max-width: 500px;
  width: 100%;
  text-align: center;
  position: relative;
  height: -moz-max-content;
  height: max-content;
  margin: 40px auto;
}
.smp-settings-tab-content .pro-addon-modal .modal-inner h2,
#smp-settings-tab-content .pro-addon-modal .modal-inner h2 {
  margin-top: 0;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 25px;
}
.smp-settings-tab-content .pro-addon-modal .modal-inner img,
#smp-settings-tab-content .pro-addon-modal .modal-inner img {
  max-width: 100%;
  border-radius: 7px;
}
.smp-settings-tab-content .pro-addon-modal .modal-inner p,
#smp-settings-tab-content .pro-addon-modal .modal-inner p {
  font-size: 1rem;
  margin-bottom: 20px;
  color: #5c637e;
}
.smp-settings-tab-content .pro-addon-modal .modal-inner .button,
#smp-settings-tab-content .pro-addon-modal .modal-inner .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #0056d7;
  color: #fff;
  border-radius: 5px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1rem;
  border: none;
  padding: 7px 10px;
  height: 40px;
}
.smp-settings-tab-content .pro-addon-modal .modal-inner .button i,
#smp-settings-tab-content .pro-addon-modal .modal-inner .button i {
  margin-right: 10px;
}
.smp-settings-tab-content .pro-addon-modal .modal-inner .button:hover,
#smp-settings-tab-content .pro-addon-modal .modal-inner .button:hover {
  background: #0042a4;
}
.smp-settings .setting-field,
#smp-settings .setting-field {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  background-color: #f7f8fa;
  border-radius: 10px;
  padding: 15px;
}
.smp-settings .setting-field-label,
.smp-settings .setting-field label,
#smp-settings .setting-field-label,
#smp-settings .setting-field label {
  font-weight: 500;
  margin-right: 1rem;
  font-size: 14px;
  width: 200px;
  display: flex;
  justify-content: space-between;
}
.smp-settings .setting-field-label:after,
.smp-settings .setting-field label:after,
#smp-settings .setting-field-label:after,
#smp-settings .setting-field label:after {
  content: ":";
  margin-left: auto;
}
.smp-settings .setting-field-content,
#smp-settings .setting-field-content {
  display: flex;
  flex-flow: column;
  flex: 1;
}
.smp-settings .setting-field-content input[type=email],
#smp-settings .setting-field-content input[type=email] {
  border: 1px solid #e5e5e5;
  border-radius: 7px;
  padding: 7px 10px;
  width: 300px;
  max-width: 100%;
  font-size: 0.875rem;
  color: #5c637e;
}
.smp-settings .setting-field-content select,
#smp-settings .setting-field-content select {
  width: 300px;
  max-width: 100%;
}
.smp-settings .setting-field-content select + .components-input-control__backdrop,
#smp-settings .setting-field-content select + .components-input-control__backdrop {
  border-radius: 7px;
  border: 1px solid #ddd;
}
.smp-settings .setting-field-sub,
#smp-settings .setting-field-sub {
  display: flex;
  flex-flow: column;
  margin-top: 10px;
}
.smp-settings .setting-field-sub .setting-field,
#smp-settings .setting-field-sub .setting-field {
  flex-direction: column;
  align-items: flex-start;
  padding: 10px;
  border: 1px dashed #ddd;
}
.smp-settings .setting-field-sub .setting-field-label,
#smp-settings .setting-field-sub .setting-field-label {
  margin-top: 0;
  margin-bottom: 0.5rem;
  width: auto;
}
.smp-settings .setting-field-sub .setting-field-label:after,
#smp-settings .setting-field-sub .setting-field-label:after {
  display: none;
}
.smp-settings .setting-field .input-group,
#smp-settings .setting-field .input-group {
  display: inline-flex;
  flex-flow: column;
  flex: 1;
  width: -moz-max-content;
  width: max-content;
}
.smp-settings .setting-field .input-group .components-form-toggle,
#smp-settings .setting-field .input-group .components-form-toggle {
  width: -moz-max-content;
  width: max-content;
  background: #fff;
  padding: 3px;
  border-radius: 15px;
  height: auto;
}
.smp-settings .setting-field .input-group .components-form-toggle__track,
#smp-settings .setting-field .input-group .components-form-toggle__track {
  width: 44px;
  height: 22px;
  border-radius: 22px;
  border-color: #0056d7;
}
.smp-settings .setting-field .input-group .components-form-toggle__thumb,
#smp-settings .setting-field .input-group .components-form-toggle__thumb {
  background: #0056d7;
  border: none;
  width: 15px;
  height: 15px;
  border-radius: 25px;
  top: 6px;
  left: 6px;
}
.smp-settings .setting-field .input-group .components-form-toggle.is-checked .components-form-toggle__thumb,
#smp-settings .setting-field .input-group .components-form-toggle.is-checked .components-form-toggle__thumb {
  background: #fff;
  transform: translateX(22px);
}
.smp-settings .setting-field .input-group .components-form-toggle.is-checked .components-form-toggle__track,
#smp-settings .setting-field .input-group .components-form-toggle.is-checked .components-form-toggle__track {
  background: #0056d7;
}
.smp-settings .setting-field .input-group .components-range-control,
#smp-settings .setting-field .input-group .components-range-control {
  max-width: 350px;
}
.smp-settings .setting-field .input-group.disabled,
#smp-settings .setting-field .input-group.disabled {
  opacity: 0.7;
}
.smp-settings .setting-field .input-group.disabled.pro-disabled > *,
#smp-settings .setting-field .input-group.disabled.pro-disabled > * {
  pointer-events: none;
}
.smp-settings .setting-field .description,
#smp-settings .setting-field .description {
  margin-top: 0.5rem;
  font-size: 0.8rem !important;
  color: #777;
}
.smp-settings .setting-field button,
#smp-settings .setting-field button {
  width: -moz-max-content;
  width: max-content;
}
.smp-settings .setting-field button.components-range-control__reset,
#smp-settings .setting-field button.components-range-control__reset {
  background: #ff9142;
  color: #fff;
  border-radius: 7px;
  padding: 5px 20px;
  height: 40px;
}
.smp-settings .setting-field .components-base-control__field,
#smp-settings .setting-field .components-base-control__field {
  margin-bottom: 0;
}
.smp-settings .setting-field.custom-css,
#smp-settings .setting-field.custom-css {
  padding: 0;
  background: transparent;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}
.smp-settings .setting-field.custom-css label,
#smp-settings .setting-field.custom-css label {
  width: auto;
  margin-bottom: 10px;
}
.smp-settings .setting-field.custom-css label:after,
#smp-settings .setting-field.custom-css label:after {
  display: none;
}
.smp-settings .setting-field.custom-css .description,
#smp-settings .setting-field.custom-css .description {
  margin-top: 5px;
  margin-bottom: 10px;
}
.smp-settings .setting-field.custom-css .setting-field-content,
#smp-settings .setting-field.custom-css .setting-field-content {
  margin: 0;
  width: 100%;
}
.smp-settings .setting-field.custom-css .setting-field-content .smp-editor.disabled + .CodeMirror,
#smp-settings .setting-field.custom-css .setting-field-content .smp-editor.disabled + .CodeMirror {
  opacity: 0.7;
}
.smp-settings .setting-field.custom-css .CodeMirror-scroll,
#smp-settings .setting-field.custom-css .CodeMirror-scroll {
  max-width: 100%;
  border-radius: 0.5rem;
  border: 1px solid #ddd;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
  padding: 0;
}
.smp-settings .setting-field.custom-css .CodeMirror-scroll,
.smp-settings .setting-field.custom-css .CodeMirror-scroll *,
#smp-settings .setting-field.custom-css .CodeMirror-scroll,
#smp-settings .setting-field.custom-css .CodeMirror-scroll * {
  box-sizing: border-box;
}
.smp-settings .setting-field.popup-size .components-range-control,
#smp-settings .setting-field.popup-size .components-range-control {
  margin-bottom: 15px;
}
.smp-settings .setting-field.popup-size .components-range-control label,
#smp-settings .setting-field.popup-size .components-range-control label {
  margin-bottom: 0;
  font-size: 12px;
}
.smp-settings .setting-field.popup-size .components-range-control label:after,
#smp-settings .setting-field.popup-size .components-range-control label:after {
  display: none;
  width: auto;
}
.smp-settings .setting-field.exclude-field .input-group,
#smp-settings .setting-field.exclude-field .input-group {
  width: 100%;
}
.smp-settings .setting-field.exclude-field .exclude-field-input,
#smp-settings .setting-field.exclude-field .exclude-field-input {
  display: flex;
  flex-direction: column;
  max-width: 350px;
}
.smp-settings .setting-field.exclude-field .exclude-field-all,
#smp-settings .setting-field.exclude-field .exclude-field-all {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-top: 15px;
  flex-wrap: wrap;
}
.smp-settings .setting-field.exclude-field .exclude-field-all .smp-select,
#smp-settings .setting-field.exclude-field .exclude-field-all .smp-select {
  width: 350px !important;
}
.smp-settings .setting-field.exclude-field .exclude-field-all > div,
#smp-settings .setting-field.exclude-field .exclude-field-all > div {
  display: flex;
  align-items: center;
}
.smp-settings .setting-field.exclude-field .exclude-field-all > div:first-child,
#smp-settings .setting-field.exclude-field .exclude-field-all > div:first-child {
  margin-right: 20px;
}
.smp-settings .setting-field.exclude-field .exclude-field-all-label,
#smp-settings .setting-field.exclude-field .exclude-field-all-label {
  margin-right: 10px;
  font-weight: 500;
  font-size: 0.875rem;
}
.smp-settings .setting-field.exclude-field .exclude-field-all .description,
#smp-settings .setting-field.exclude-field .exclude-field-all .description {
  width: 100%;
  text-align: left;
  line-height: 1.5;
}
@media (max-width: 1199px) {
  .smp-settings .setting-field.exclude-field .exclude-field-all,
#smp-settings .setting-field.exclude-field .exclude-field-all {
    flex-direction: column;
    align-items: flex-start;
  }
  .smp-settings .setting-field.exclude-field .exclude-field-all > div,
#smp-settings .setting-field.exclude-field .exclude-field-all > div {
    margin-bottom: 10px;
    width: 100%;
  }
  .smp-settings .setting-field.exclude-field .exclude-field-all > div span,
#smp-settings .setting-field.exclude-field .exclude-field-all > div span {
    white-space: nowrap;
  }
}
.smp-settings .setting-field.field-editor,
#smp-settings .setting-field.field-editor {
  flex-direction: column;
  align-items: flex-start;
}
.smp-settings .setting-field.field-editor label,
#smp-settings .setting-field.field-editor label {
  width: 100%;
}
.smp-settings .setting-field.field-editor label:after,
#smp-settings .setting-field.field-editor label:after {
  display: none;
}
.smp-settings .setting-field.field-editor .setting-field-content,
#smp-settings .setting-field.field-editor .setting-field-content {
  width: 100%;
}
.smp-settings .setting-field.field-editor .setting-field-content .description,
#smp-settings .setting-field.field-editor .setting-field-content .description {
  margin-bottom: 15px;
}
.smp-settings .setting-field.field-editor .setting-field-content .content-editor,
#smp-settings .setting-field.field-editor .setting-field-content .content-editor {
  width: 100%;
  border: none;
  box-shadow: none;
}
.smp-settings .setting-field.field-editor .setting-field-content .content-editor-wrap.disabled,
#smp-settings .setting-field.field-editor .setting-field-content .content-editor-wrap.disabled {
  opacity: 0.7;
}
.smp-settings .setting-field.field-editor .setting-field-content .content-editor-wrap.disabled .wp-editor-wrap,
#smp-settings .setting-field.field-editor .setting-field-content .content-editor-wrap.disabled .wp-editor-wrap {
  pointer-events: none;
}
.smp-settings .setting-field.field-minimize-player-image .thumbnail-uploader-wrap,
#smp-settings .setting-field.field-minimize-player-image .thumbnail-uploader-wrap {
  flex-direction: row;
  align-items: center;
}
.smp-settings .setting-field .smp-range-control.disabled,
#smp-settings .setting-field .smp-range-control.disabled {
  opacity: 0.7;
}
.smp-settings .setting-field .thumbnail-uploader-wrap,
#smp-settings .setting-field .thumbnail-uploader-wrap {
  display: flex;
  flex-direction: column;
}
.smp-settings .setting-field .thumbnail-uploader-wrap .thumbnail-actions,
#smp-settings .setting-field .thumbnail-uploader-wrap .thumbnail-actions {
  display: flex;
}
.smp-settings .setting-field .thumbnail-uploader-wrap input,
#smp-settings .setting-field .thumbnail-uploader-wrap input {
  width: 300px;
}
.smp-settings .setting-field .thumbnail-uploader-wrap button,
#smp-settings .setting-field .thumbnail-uploader-wrap button {
  margin-left: 15px;
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 7px;
  height: 40px;
}
.smp-settings .setting-field .thumbnail-uploader-wrap button.radio_player_select_img,
#smp-settings .setting-field .thumbnail-uploader-wrap button.radio_player_select_img {
  color: #0056d7;
  border: 1px dashed rgba(92, 184, 92, 0.5);
}
.smp-settings .setting-field .thumbnail-uploader-wrap button.radio_player_select_img:hover,
#smp-settings .setting-field .thumbnail-uploader-wrap button.radio_player_select_img:hover {
  background: #d5f0db;
}
.smp-settings .setting-field .thumbnail-uploader-wrap button.radio_player_delete_img,
#smp-settings .setting-field .thumbnail-uploader-wrap button.radio_player_delete_img {
  color: #ff8000;
  border: 1px dashed rgba(255, 128, 0, 0.5);
}
.smp-settings .setting-field .thumbnail-uploader-wrap button.radio_player_delete_img:hover,
#smp-settings .setting-field .thumbnail-uploader-wrap button.radio_player_delete_img:hover {
  background: #ffd8b3;
}
.smp-settings .setting-field .thumbnail-uploader-wrap button i,
#smp-settings .setting-field .thumbnail-uploader-wrap button i {
  width: auto;
  height: auto;
  font-size: 24px;
}
.smp-settings .setting-field .thumbnail-uploader-wrap .thumbnail-preview,
#smp-settings .setting-field .thumbnail-uploader-wrap .thumbnail-preview {
  max-width: 80px;
  border-radius: 7px;
}
.smp-settings .setting-field .thumbnail-uploader-wrap .thumbnail-preview-wrap,
#smp-settings .setting-field .thumbnail-uploader-wrap .thumbnail-preview-wrap {
  width: 100%;
  margin-top: 10px;
}
.smp-settings .setting-field .popup-triggers,
#smp-settings .setting-field .popup-triggers {
  display: flex;
  flex-direction: column;
  width: 100% !important;
  flex-wrap: wrap;
}
.smp-settings .setting-field .popup-triggers h3,
#smp-settings .setting-field .popup-triggers h3 {
  width: 100%;
  margin-bottom: 5px;
  font-size: 1.2rem;
}
.smp-settings .setting-field .popup-triggers p,
#smp-settings .setting-field .popup-triggers p {
  margin-top: 0;
  font-size: 0.875rem;
  color: #777;
}
.smp-settings .setting-field .popup-triggers .trigger-group,
#smp-settings .setting-field .popup-triggers .trigger-group {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 1.2rem;
  width: 100%;
}
.smp-settings .setting-field .popup-triggers .trigger-group > button,
#smp-settings .setting-field .popup-triggers .trigger-group > button {
  height: 40px;
}
.smp-settings .setting-field .popup-triggers .trigger-group > button i,
#smp-settings .setting-field .popup-triggers .trigger-group > button i {
  margin-right: 0;
}
.smp-settings .setting-field .popup-triggers .group-item,
#smp-settings .setting-field .popup-triggers .group-item {
  display: flex;
  flex-direction: column;
  flex: 1;
  margin-right: 20px;
}
.smp-settings .setting-field .popup-triggers .group-item-header,
#smp-settings .setting-field .popup-triggers .group-item-header {
  display: flex;
  flex-direction: column;
  margin: 7px 5px;
}
.smp-settings .setting-field .popup-triggers .group-item-header .header-title,
#smp-settings .setting-field .popup-triggers .group-item-header .header-title {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  color: #333;
}
.smp-settings .setting-field .popup-triggers .group-item-header .description,
#smp-settings .setting-field .popup-triggers .group-item-header .description {
  font-size: 0.8rem;
  font-weight: 400;
  line-height: 1.5;
  color: #666;
}
.smp-settings .setting-field .popup-triggers .group-item .input-group,
#smp-settings .setting-field .popup-triggers .group-item .input-group {
  width: 100%;
  display: flex;
  align-items: flex-start;
  flex-wrap: nowrap;
}
.smp-settings .setting-field .popup-triggers .group-item .input-group input,
#smp-settings .setting-field .popup-triggers .group-item .input-group input {
  width: 100%;
  border: 1px solid #ddd;
  padding: 0.5rem;
  height: 40px;
  border-radius: 7px;
}
.smp-settings .setting-field .popup-triggers .group-item .input-group .input-group-append,
#smp-settings .setting-field .popup-triggers .group-item .input-group .input-group-append {
  margin-left: -2px;
  border-top-right-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
  background: #0b6dff;
  color: #fff;
  padding: 0.5rem;
  height: 40px;
  width: 50px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease-in-out;
}
.smp-settings .setting-field .popup-triggers .group-item .input-group .input-group-append:hover,
#smp-settings .setting-field .popup-triggers .group-item .input-group .input-group-append:hover {
  background: #0056d7;
}
.smp-settings .setting-field .popup-triggers .group-item .input-group .components-base-control,
.smp-settings .setting-field .popup-triggers .group-item .input-group .components-select-control,
#smp-settings .setting-field .popup-triggers .group-item .input-group .components-base-control,
#smp-settings .setting-field .popup-triggers .group-item .input-group .components-select-control {
  width: 100%;
}
.smp-settings .setting-field .popup-triggers .components-base-control__field,
#smp-settings .setting-field .popup-triggers .components-base-control__field {
  margin-bottom: 0;
}
.smp-settings .setting-field .popup-triggers .add-group,
#smp-settings .setting-field .popup-triggers .add-group {
  width: -moz-max-content;
  width: max-content;
}
.smp-settings .setting-field .popup-triggers .add-group.disabled,
#smp-settings .setting-field .popup-triggers .add-group.disabled {
  opacity: 0.7;
}
.smp-settings .setting-field .wp-editor-wrap,
#smp-settings .setting-field .wp-editor-wrap {
  width: 100%;
}
.smp-settings .setting-field .wp-editor-wrap textarea,
#smp-settings .setting-field .wp-editor-wrap textarea {
  border: none;
  width: 100%;
  min-height: 200px;
}
.smp-settings .setting-field input[type=number],
.smp-settings .setting-field input[type=text],
#smp-settings .setting-field input[type=number],
#smp-settings .setting-field input[type=text] {
  width: 350px;
  max-width: 100%;
  height: 40px;
  border: 1px solid #ddd;
  padding: 0.5rem;
  border-radius: 7px;
}
.smp-settings .setting-field input[type=number] + .components-input-control__backdrop,
.smp-settings .setting-field input[type=text] + .components-input-control__backdrop,
#smp-settings .setting-field input[type=number] + .components-input-control__backdrop,
#smp-settings .setting-field input[type=text] + .components-input-control__backdrop {
  border: 0;
}
.smp-settings .setting-field .smp-select-control,
#smp-settings .setting-field .smp-select-control {
  max-width: 350px;
}
.smp-settings .setting-field .smp-select-control .components-input-control__container .components-select-control__input,
#smp-settings .setting-field .smp-select-control .components-input-control__container .components-select-control__input {
  width: 100%;
}
@media (max-width: 1199px) {
  .smp-settings .setting-field,
#smp-settings .setting-field {
    flex-direction: column;
    margin-bottom: 20px;
    align-items: flex-start;
  }
  .smp-settings .setting-field label,
#smp-settings .setting-field label {
    margin-right: 0;
    margin-bottom: 10px;
  }
  .smp-settings .setting-field label:after,
#smp-settings .setting-field label:after {
    display: none;
  }
  .smp-settings .setting-field .input-group,
#smp-settings .setting-field .input-group {
    width: 100%;
  }
  .smp-settings .setting-field-content,
#smp-settings .setting-field-content {
    width: 100%;
  }
}
.smp-settings .save-settings,
#smp-settings .save-settings {
  display: flex;
  align-items: center;
  padding: 12px 15px;
  background: #0056d7;
  color: #fff;
  border-color: #ddd;
  border-radius: 7px;
  line-height: 1;
  margin-bottom: 0;
}
.smp-settings .save-settings i,
#smp-settings .save-settings i {
  margin-right: 0.5rem;
}
.smp-settings .save-settings:hover,
#smp-settings .save-settings:hover {
  background: #0056d7;
  color: #fff;
}
.smp-settings .display-sticky-player .input-group .components-form-toggle,
#smp-settings .display-sticky-player .input-group .components-form-toggle {
  margin-right: 7px;
}
.smp-settings .display-sticky-player .input-group p,
#smp-settings .display-sticky-player .input-group p {
  margin-top: 0;
}
.smp-settings .display-sticky-player .input-group.page-selection,
#smp-settings .display-sticky-player .input-group.page-selection {
  margin-top: 10px;
  flex-flow: column;
  align-items: baseline;
}
.smp-settings .display-sticky-player .input-group.page-selection .smp-select__control,
#smp-settings .display-sticky-player .input-group.page-selection .smp-select__control {
  max-width: 350px;
  min-width: 200px;
}
@media (max-width: 767px) {
  .smp-settings,
#smp-settings {
    flex-direction: column;
  }
  .smp-settings .smp-settings-header,
#smp-settings .smp-settings-header {
    top: 0;
    padding: 5px 15px;
    margin-left: -10px;
    width: calc(100% + 10px);
  }
  .smp-settings .smp-settings-header .header-title svg,
#smp-settings .smp-settings-header .header-title svg {
    width: 30px;
    margin-right: 7px;
  }
  .smp-settings .smp-settings-header .header-title span,
#smp-settings .smp-settings-header .header-title span {
    font-size: 1rem;
  }
  .smp-settings .tab-links,
#smp-settings .tab-links {
    width: calc(100% - 10px);
    max-width: none;
    margin-bottom: 20px;
    position: static;
    margin-right: 15px;
  }
  .smp-settings .tab-content,
#smp-settings .tab-content {
    width: calc(100% - 10px);
    max-width: none;
    margin-right: 15px;
    margin-left: 0;
  }
}

.smp-select__option {
  color: #555 !important;
  display: none;
}

.smp-statistics, .smp-statistics * {
  box-sizing: border-box;
}
.smp-statistics .statistics-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 32px;
  background: #fff;
  margin: 0 0 30px -20px;
  padding: 15px;
  z-index: 1;
  border-bottom: 1px solid #eaeaea;
}
.smp-statistics .statistics-header .statistics-header-title {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  display: flex;
  align-items: center;
}
.smp-statistics .statistics-header .statistics-header-title img {
  margin-right: 10px;
}
.smp-statistics .statistics-header-desc {
  margin-left: 10px;
  font-size: 14px;
  font-weight: 400;
}
.smp-statistics .statistics-header .statistics-range {
  display: flex;
  align-items: center;
  margin-left: auto;
}
.smp-statistics .statistics-header .statistics-range .date-field-wrap {
  position: relative;
  display: flex;
  margin-right: 10px;
  border: 1px solid #ddd;
  border-radius: 10px;
  overflow: hidden;
}
.smp-statistics .statistics-header .statistics-range .date-field-wrap .date-field-prefix {
  display: inline-flex;
  align-items: center;
  font-size: 0.875rem;
  font-weight: 400;
  background: #EEE;
  color: #333;
  height: inherit;
  padding: 7px;
}
.smp-statistics .statistics-header .statistics-range .date-field-wrap .date-field-prefix span {
  margin-left: 5px;
}
.smp-statistics .statistics-header .statistics-range .date-field-wrap .date-field-suffix {
  display: inline-flex;
  align-items: center;
  vertical-align: middle;
  padding: 7px;
  height: inherit;
}
.smp-statistics .statistics-header .statistics-range input {
  height: 40px;
  border: none;
  border-radius: 0;
  max-width: 100px;
}
.smp-statistics .statistics-header .statistics-range input:focus {
  outline: none;
  box-shadow: none;
}
.smp-statistics .statistics-header .statistics-range > button {
  height: 40px;
}
.smp-statistics .statistics-header .clear-statistics {
  margin-left: 10px;
  transform: rotate(90deg);
  cursor: pointer;
}
.smp-statistics .statistics-header .clear-statistics-tooltip {
  opacity: 1;
  padding: 15px;
  border-radius: 10px;
  margin-top: 30px;
  margin-left: 0;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  width: 200px;
}
.smp-statistics .statistics-header .clear-statistics-tooltip button {
  width: 100%;
}
.smp-statistics .statistics-header .clear-statistics-tooltip .btn-info {
  margin-bottom: 10px;
}
.smp-statistics .statistics-header .clear-statistics-tooltip:after, .smp-statistics .statistics-header .clear-statistics-tooltip:before {
  top: 30px;
}
@media (max-width: 767px) {
  .smp-statistics .statistics-header {
    flex-direction: column;
    position: static;
  }
  .smp-statistics .statistics-header .statistics-header-title {
    margin-bottom: 10px;
  }
  .smp-statistics .statistics-header .statistics-range {
    flex-wrap: wrap;
    justify-content: center;
  }
  .smp-statistics .statistics-header .statistics-range .date-field-wrap {
    width: 47%;
    margin-bottom: 10px;
  }
  .smp-statistics .statistics-header .statistics-range .date-field-wrap:nth-child(2) {
    margin-right: 0;
  }
}
.smp-statistics .statistics-boxes {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.smp-statistics .statistics-boxes .smp-statistics-box {
  width: 49%;
  display: flex;
  flex-direction: column;
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.smp-statistics .statistics-boxes.top-users .user-wrap {
  display: flex;
  align-items: center;
}
.smp-statistics .statistics-boxes.top-users .user-wrap img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  margin-right: 10px;
  border: 1px solid #ddd;
}
.smp-statistics-summary {
  margin-right: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
  gap: 0 30px;
}
.smp-statistics-summary .summary-item {
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  width: 48%;
  border-radius: 10px;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04);
  position: relative;
}
.smp-statistics-summary .summary-item .summary-item-label {
  display: flex;
  align-items: center;
  font-size: 1.2rem;
  color: #333;
  font-weight: 500;
}
.smp-statistics-summary .summary-item .summary-item-label img {
  width: 60px;
  margin-right: 10px;
}
.smp-statistics-summary .summary-item .summary-item-value {
  font-size: 1.2rem;
  font-weight: bold;
  color: #555;
  margin-right: 10px;
}
.smp-statistics-chart {
  display: flex;
  background: #fff;
  padding: 20px;
  flex-flow: column;
  border-radius: 10px;
  margin-right: 20px;
  margin-bottom: 30px;
}
.smp-statistics-chart .chart-title {
  font-size: 1rem;
  margin-bottom: 10px;
  margin-top: 0;
  display: flex;
  align-items: center;
}
.smp-statistics-chart .chart-title img {
  width: 40px;
  height: 40px;
  margin-right: 10px;
}
.smp-statistics-chart canvas {
  width: 100%;
  height: 400px;
}
.smp-statistics-box {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 30px;
  display: flex;
  flex-flow: column;
  margin-right: 20px;
}
.smp-statistics-box .box-title {
  font-size: 1rem;
  font-weight: 500;
  color: #333;
  display: flex;
  align-items: center;
}
.smp-statistics-box .box-title img {
  width: 40px;
  height: 40px;
  margin-right: 10px;
}
.smp-statistics-box .box-title span {
  margin-right: auto;
}
.smp-statistics-box .box-title i {
  cursor: pointer;
  border-radius: 50%;
  background: #0056d7;
  color: #fff;
  padding: 5px;
  width: auto;
  height: auto;
  margin-left: 15px;
}
.smp-statistics-box .table-wrapper {
  width: 100%;
  overflow-y: auto;
  margin: 15px 0;
  max-height: 400px;
}
.smp-statistics-box .table-wrapper thead {
  position: sticky;
  top: -1px;
}
.smp-statistics-box .table-wrapper::-webkit-scrollbar {
  width: 5px;
  border-radius: 10px;
}
.smp-statistics-box .table-wrapper::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
  margin-top: 50px;
  visibility: hidden;
}
.smp-statistics-box .table-wrapper::-webkit-scrollbar-thumb {
  background: rgba(47, 180, 75, 0.3);
  border-radius: 10px;
  visibility: hidden;
}
.smp-statistics-box .table-wrapper::-webkit-scrollbar-thumb:hover {
  background: rgba(47, 180, 75, 0.5);
}
.smp-statistics-box .table-wrapper:hover::-webkit-scrollbar-track {
  visibility: visible;
}
.smp-statistics-box .table-wrapper:hover::-webkit-scrollbar-thumb {
  visibility: visible;
}
.smp-statistics-box table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  font-size: 14px;
  color: #333;
  font-weight: 600;
  border: none;
}
.smp-statistics-box table thead {
  background: #f5f5f5;
  padding: 10px;
}
.smp-statistics-box table thead th:nth-child(1) {
  width: 62px;
}
.smp-statistics-box table thead tr th {
  padding: 15px 0;
  font-weight: 600;
  border: none;
  background: #0056d7;
  color: #fff;
  font-size: 1rem;
}
.smp-statistics-box table thead tr th:first-child {
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  text-align: center;
}
.smp-statistics-box table thead tr th:last-child {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}
.smp-statistics-box table tbody:before {
  content: "_";
  display: block;
  line-height: 1em;
  color: transparent;
}
.smp-statistics-box table tbody tr {
  background: transparent !important;
}
.smp-statistics-box table tbody tr td {
  padding: 15px 5px;
  font-weight: normal;
  border-bottom: 1px dashed rgba(47, 180, 75, 0.2);
  vertical-align: middle;
  font-size: 0.875rem;
}
.smp-statistics-box table tbody tr td a {
  color: #0042a4;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
}
.smp-statistics-box table tbody tr td a:hover {
  color: #0056d7;
}
.smp-statistics-box table .col-sl {
  text-align: center;
}
.smp-statistics-box table .col-times {
  width: 150px;
}
.smp-statistics-box thead th {
  font-weight: bold;
}
.smp-statistics-box.statistics-logs .table-wrapper {
  max-height: 600px;
}
@media (max-width: 767px) {
  .smp-statistics {
    flex-direction: column;
  }
  .smp-statistics .smp-statistics-header {
    top: 0;
  }
  .smp-statistics .smp-statistics-header .header-title span {
    display: none;
  }
  .smp-statistics .smp-statistics-header .dates-filter .form-group {
    flex-direction: column;
  }
  .smp-statistics .smp-statistics-header .dates-filter .form-group input {
    width: 100px;
  }
  .smp-statistics-summary {
    flex-direction: column;
    margin-right: 15px;
  }
  .smp-statistics-summary .summary-item {
    width: 100%;
    margin-bottom: 15px;
  }
  .smp-statistics-players {
    padding: 15px 10px;
  }
  .smp-statistics-players .players-title {
    margin-bottom: 5px;
  }
  .smp-statistics-players table thead tr th {
    font-size: 0.8rem;
    white-space: nowrap;
  }
  .smp-statistics-players table thead tr th:first-child {
    width: 30px;
  }
  .smp-statistics-players table tbody tr td {
    font-size: 0.8rem;
    padding: 10px 5px;
  }
}

.radio-player-admin-notice {
  margin-bottom: 10px !important;
  display: flex;
  padding: 15px !important;
}
.radio-player-admin-notice .notice-main {
  display: flex;
  flex-direction: column;
}
.radio-player-admin-notice .notice-image {
  margin-right: 15px;
}
.radio-player-admin-notice .notice-image img {
  width: 90px;
}
.radio-player-admin-notice .notice-text p {
  line-height: 1.5;
  font-size: 0.85rem;
  margin: 0 0 7px 0;
  padding: 0;
}
.radio-player-admin-notice .notice-actions {
  display: flex;
  align-items: center;
  margin-top: 10px;
}
.radio-player-admin-notice .notice-actions a {
  margin-right: 15px;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}
.radio-player-admin-notice .notice-actions a:last-child {
  margin-right: 0;
}
.radio-player-admin-notice .notice-actions a.button-primary {
  background: #0056d7;
  border-color: #0042a4;
}
.radio-player-admin-notice .notice-actions a.button-primary:hover {
  background: #0042a4;
}
.radio-player-admin-notice .notice-overlay-wrap {
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  display: none;
  z-index: 9999;
}
.radio-player-admin-notice .notice-overlay-wrap .notice-overlay {
  background: #fff;
  width: -moz-max-content;
  width: max-content;
  padding: 30px;
  border-radius: 15px;
  position: relative;
}
.radio-player-admin-notice .notice-overlay-wrap .notice-overlay h4 {
  margin-top: 0;
  margin-bottom: 10px;
}
.radio-player-admin-notice .notice-overlay-wrap .notice-overlay-actions {
  display: flex;
  flex-flow: column;
  line-height: 1.8;
}
.radio-player-admin-notice .notice-overlay-wrap .notice-overlay-actions a {
  text-decoration: none;
}
.radio-player-admin-notice .notice-overlay-wrap .notice-overlay-actions a:nth-child(2) {
  color: #000;
}
.radio-player-admin-notice .notice-overlay-wrap .notice-overlay-actions a:nth-child(3) {
  color: #777;
}
.radio-player-admin-notice .notice-overlay-wrap .notice-overlay-actions a:hover {
  color: #0042a4;
}
.radio-player-admin-notice .notice-overlay-wrap .notice-overlay .close-notice {
  position: absolute;
  top: -5px;
  right: -5px;
  border-radius: 30px;
  border: 1px solid transparent;
  font-size: 16px;
  cursor: pointer;
  width: 30px;
  height: 30px;
  line-height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
}
.radio-player-admin-notice .notice-overlay-wrap .notice-overlay .close-notice:hover {
  color: #ff9966;
  border-color: #ff9966;
}

/*---- addon player notice -----*/
.radio-player-proxy-addon-notice .notice-image {
  display: flex;
  align-items: center;
}
.radio-player-proxy-addon-notice .notice-image img {
  width: 100px;
}
.radio-player-proxy-addon-notice .notice-main {
  flex-direction: row;
  align-items: center;
  width: 100%;
}
.radio-player-proxy-addon-notice .notice-main .notice-text > a:not(:last-child):after {
  content: "|";
  margin: 0 7px;
}
.radio-player-proxy-addon-notice .notice-main .notice-text .notice-title {
  margin-top: 0;
  margin-bottom: 7px;
}
.radio-player-proxy-addon-notice .notice-main .notice-text .notice-title .offer-suffix {
  font-size: 1rem;
  color: #444;
}
.radio-player-proxy-addon-notice .notice-main .notice-text .notice-title .offer-title {
  margin-left: 10px;
  background: #ff9966;
  color: #fff;
  padding: 2px 5px;
  border-radius: 5px;
}
.radio-player-proxy-addon-notice .coupon-code-wrap {
  margin: 0 30px 0 auto;
}
.radio-player-proxy-addon-notice .coupon-code-wrap img {
  max-width: 200px;
}
.radio-player-proxy-addon-notice .notice-actions {
  margin-top: 0;
  margin-right: 20px;
  margin-left: auto;
}
.radio-player-proxy-addon-notice .notice-actions a {
  padding: 7px 14px;
}

/*---- rating notice -----*/
.radio-player-rating-notice {
  display: flex;
  padding: 10px;
}
.radio-player-rating-notice .notice-main {
  display: flex;
  flex-direction: column;
}
.radio-player-rating-notice .notice-image {
  margin-right: 15px;
}
.radio-player-rating-notice .notice-image img {
  width: 90px;
}
.radio-player-rating-notice .notice-text p {
  line-height: 1.5;
  font-size: 0.875rem;
  margin: 0;
  padding: 0;
}
.radio-player-rating-notice .notice-actions {
  display: flex;
  align-items: center;
  margin-top: 10px;
}
.radio-player-rating-notice .notice-actions a {
  margin-right: 15px;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}
.radio-player-rating-notice .notice-actions a:last-child {
  margin-right: 0;
}
.radio-player-rating-notice .notice-actions a.button-primary {
  background: #0042a4;
  border-color: #0b6dff;
  padding: 3px 10px;
}
.radio-player-rating-notice .notice-actions a.button-primary:hover {
  background: #0056d7;
}

.smp-chart-widget,
.smp-chart-widget * {
  box-sizing: border-box;
}
.smp-chart-widget-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}
.smp-chart-widget-header span {
  font-weight: 600;
}
.smp-chart-widget-header .components-base-control__field {
  margin-bottom: 0;
}
.smp-chart-widget-header .components-select-control {
  display: flex;
  align-items: center;
  flex-direction: row;
}
.smp-chart-widget-header .components-select-control label {
  margin: 0 10px !important;
  padding: 0 !important;
  font-weight: 500;
  text-transform: capitalize !important;
}
.smp-chart-widget-header .components-select-control .components-input-control__backdrop {
  border-radius: 3px !important;
  border-color: #ddd !important;
}
.smp-chart-widget .smp-statistics-summary {
  margin: 0 0 20px 0;
  gap: 10px;
  flex-wrap: wrap;
}
.smp-chart-widget .smp-statistics-summary .summary-item {
  border: 1px solid #e5e5e5;
  padding: 10px;
  width: 100%;
}
.smp-chart-widget .smp-statistics-summary .summary-item .summary-item-label {
  font-size: 1rem;
}
.smp-chart-widget .smp-statistics-summary .summary-item .summary-item-label img {
  width: 35px;
}
.smp-chart-widget .smp-statistics-summary .summary-item .summary-item-value {
  font-size: 1rem;
}
.smp-chart-widget .smp-statistics-chart {
  margin: 0;
  padding: 0;
}
.smp-chart-widget .smp-statistics-chart canvas {
  width: 100%;
}
.smp-chart-widget .statistics-stations {
  padding: 0;
  margin-right: 0;
}
.smp-chart-widget .statistics-stations .dashicons {
  display: none;
  pointer-events: none;
}
.smp-chart-widget .statistics-stations th {
  font-size: 14px;
  padding: 15px 0;
}
.smp-chart-widget .statistics-stations th:nth-child(1) {
  width: -moz-max-content;
  width: max-content;
}
.smp-chart-widget .statistics-stations th.col-times {
  max-width: -moz-min-content;
  max-width: min-content;
  display: table-cell;
}
.smp-chart-widget .statistics-stations td {
  padding: 15px 5px;
}
.smp-chart-widget .statistics-stations td.col-times {
  width: 110px;
}
.smp-chart-widget > a {
  margin: 30px auto 10px;
  display: block;
  width: -moz-max-content;
  width: max-content;
}

.smp-statistics, .smp-statistics * {
  box-sizing: border-box;
}
.smp-statistics .statistics-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 32px;
  background: #fff;
  margin: 0 0 30px -20px;
  padding: 15px;
  z-index: 1;
  border-bottom: 1px solid #eaeaea;
}
.smp-statistics .statistics-header .statistics-header-title {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  display: flex;
  align-items: center;
}
.smp-statistics .statistics-header .statistics-header-title img {
  margin-right: 10px;
}
.smp-statistics .statistics-header-desc {
  margin-left: 10px;
  font-size: 14px;
  font-weight: 400;
}
.smp-statistics .statistics-header .statistics-range {
  display: flex;
  align-items: center;
  margin-left: auto;
}
.smp-statistics .statistics-header .statistics-range .date-field-wrap {
  position: relative;
  display: flex;
  margin-right: 10px;
  border: 1px solid #ddd;
  border-radius: 10px;
  overflow: hidden;
}
.smp-statistics .statistics-header .statistics-range .date-field-wrap .date-field-prefix {
  display: inline-flex;
  align-items: center;
  font-size: 0.875rem;
  font-weight: 400;
  background: #EEE;
  color: #333;
  height: inherit;
  padding: 7px;
}
.smp-statistics .statistics-header .statistics-range .date-field-wrap .date-field-prefix span {
  margin-left: 5px;
}
.smp-statistics .statistics-header .statistics-range .date-field-wrap .date-field-suffix {
  display: inline-flex;
  align-items: center;
  vertical-align: middle;
  padding: 7px;
  height: inherit;
}
.smp-statistics .statistics-header .statistics-range input {
  height: 40px;
  border: none;
  border-radius: 0;
  max-width: 100px;
}
.smp-statistics .statistics-header .statistics-range input:focus {
  outline: none;
  box-shadow: none;
}
.smp-statistics .statistics-header .statistics-range > button {
  height: 40px;
}
.smp-statistics .statistics-header .clear-statistics {
  margin-left: 10px;
  transform: rotate(90deg);
  cursor: pointer;
}
.smp-statistics .statistics-header .clear-statistics-tooltip {
  opacity: 1;
  padding: 15px;
  border-radius: 10px;
  margin-top: 30px;
  margin-left: 0;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  width: 200px;
}
.smp-statistics .statistics-header .clear-statistics-tooltip button {
  width: 100%;
}
.smp-statistics .statistics-header .clear-statistics-tooltip .btn-info {
  margin-bottom: 10px;
}
.smp-statistics .statistics-header .clear-statistics-tooltip:after, .smp-statistics .statistics-header .clear-statistics-tooltip:before {
  top: 30px;
}
@media (max-width: 767px) {
  .smp-statistics .statistics-header {
    flex-direction: column;
    position: static;
  }
  .smp-statistics .statistics-header .statistics-header-title {
    margin-bottom: 10px;
  }
  .smp-statistics .statistics-header .statistics-range {
    flex-wrap: wrap;
    justify-content: center;
  }
  .smp-statistics .statistics-header .statistics-range .date-field-wrap {
    width: 47%;
    margin-bottom: 10px;
  }
  .smp-statistics .statistics-header .statistics-range .date-field-wrap:nth-child(2) {
    margin-right: 0;
  }
}
.smp-statistics .statistics-boxes {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.smp-statistics .statistics-boxes .smp-statistics-box {
  width: 49%;
  display: flex;
  flex-direction: column;
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.smp-statistics .statistics-boxes.top-users .user-wrap {
  display: flex;
  align-items: center;
}
.smp-statistics .statistics-boxes.top-users .user-wrap img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  margin-right: 10px;
  border: 1px solid #ddd;
}
.smp-statistics-summary {
  margin-right: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
  gap: 0 30px;
}
.smp-statistics-summary .summary-item {
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  width: 48%;
  border-radius: 10px;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04);
  position: relative;
}
.smp-statistics-summary .summary-item .summary-item-label {
  display: flex;
  align-items: center;
  font-size: 1.2rem;
  color: #333;
  font-weight: 500;
}
.smp-statistics-summary .summary-item .summary-item-label img {
  width: 60px;
  margin-right: 10px;
}
.smp-statistics-summary .summary-item .summary-item-value {
  font-size: 1.2rem;
  font-weight: bold;
  color: #555;
  margin-right: 10px;
}
.smp-statistics-chart {
  display: flex;
  background: #fff;
  padding: 20px;
  flex-flow: column;
  border-radius: 10px;
  margin-right: 20px;
  margin-bottom: 30px;
}
.smp-statistics-chart .chart-title {
  font-size: 1rem;
  margin-bottom: 10px;
  margin-top: 0;
  display: flex;
  align-items: center;
}
.smp-statistics-chart .chart-title img {
  width: 40px;
  height: 40px;
  margin-right: 10px;
}
.smp-statistics-chart canvas {
  width: 100%;
  height: 400px;
}
.smp-statistics-box {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 30px;
  display: flex;
  flex-flow: column;
  margin-right: 20px;
}
.smp-statistics-box .box-title {
  font-size: 1rem;
  font-weight: 500;
  color: #333;
  display: flex;
  align-items: center;
}
.smp-statistics-box .box-title img {
  width: 40px;
  height: 40px;
  margin-right: 10px;
}
.smp-statistics-box .box-title span {
  margin-right: auto;
}
.smp-statistics-box .box-title i {
  cursor: pointer;
  border-radius: 50%;
  background: #0056d7;
  color: #fff;
  padding: 5px;
  width: auto;
  height: auto;
  margin-left: 15px;
}
.smp-statistics-box .table-wrapper {
  width: 100%;
  overflow-y: auto;
  margin: 15px 0;
  max-height: 400px;
}
.smp-statistics-box .table-wrapper thead {
  position: sticky;
  top: -1px;
}
.smp-statistics-box .table-wrapper::-webkit-scrollbar {
  width: 5px;
  border-radius: 10px;
}
.smp-statistics-box .table-wrapper::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
  margin-top: 50px;
  visibility: hidden;
}
.smp-statistics-box .table-wrapper::-webkit-scrollbar-thumb {
  background: rgba(47, 180, 75, 0.3);
  border-radius: 10px;
  visibility: hidden;
}
.smp-statistics-box .table-wrapper::-webkit-scrollbar-thumb:hover {
  background: rgba(47, 180, 75, 0.5);
}
.smp-statistics-box .table-wrapper:hover::-webkit-scrollbar-track {
  visibility: visible;
}
.smp-statistics-box .table-wrapper:hover::-webkit-scrollbar-thumb {
  visibility: visible;
}
.smp-statistics-box table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  font-size: 14px;
  color: #333;
  font-weight: 600;
  border: none;
}
.smp-statistics-box table thead {
  background: #f5f5f5;
  padding: 10px;
}
.smp-statistics-box table thead th:nth-child(1) {
  width: 62px;
}
.smp-statistics-box table thead tr th {
  padding: 15px 0;
  font-weight: 600;
  border: none;
  background: #0056d7;
  color: #fff;
  font-size: 1rem;
}
.smp-statistics-box table thead tr th:first-child {
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  text-align: center;
}
.smp-statistics-box table thead tr th:last-child {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}
.smp-statistics-box table tbody:before {
  content: "_";
  display: block;
  line-height: 1em;
  color: transparent;
}
.smp-statistics-box table tbody tr {
  background: transparent !important;
}
.smp-statistics-box table tbody tr td {
  padding: 15px 5px;
  font-weight: normal;
  border-bottom: 1px dashed rgba(47, 180, 75, 0.2);
  vertical-align: middle;
  font-size: 0.875rem;
}
.smp-statistics-box table tbody tr td a {
  color: #0042a4;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
}
.smp-statistics-box table tbody tr td a:hover {
  color: #0056d7;
}
.smp-statistics-box table .col-sl {
  text-align: center;
}
.smp-statistics-box table .col-times {
  width: 150px;
}
.smp-statistics-box thead th {
  font-weight: bold;
}
.smp-statistics-box.statistics-logs .table-wrapper {
  max-height: 600px;
}
@media (max-width: 767px) {
  .smp-statistics {
    flex-direction: column;
  }
  .smp-statistics .smp-statistics-header {
    top: 0;
  }
  .smp-statistics .smp-statistics-header .header-title span {
    display: none;
  }
  .smp-statistics .smp-statistics-header .dates-filter .form-group {
    flex-direction: column;
  }
  .smp-statistics .smp-statistics-header .dates-filter .form-group input {
    width: 100px;
  }
  .smp-statistics-summary {
    flex-direction: column;
    margin-right: 15px;
  }
  .smp-statistics-summary .summary-item {
    width: 100%;
    margin-bottom: 15px;
  }
  .smp-statistics-players {
    padding: 15px 10px;
  }
  .smp-statistics-players .players-title {
    margin-bottom: 5px;
  }
  .smp-statistics-players table thead tr th {
    font-size: 0.8rem;
    white-space: nowrap;
  }
  .smp-statistics-players table thead tr th:first-child {
    width: 30px;
  }
  .smp-statistics-players table tbody tr td {
    font-size: 0.8rem;
    padding: 10px 5px;
  }
}

.radio-player-datepicker {
  background: #fff;
  border: 1px solid rgba(0, 86, 215, 0.3);
  border-radius: 7px;
  border-top: 2px solid #0b6dff;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  font-size: 14px;
  padding: 10px;
  width: 250px;
}
.radio-player-datepicker .ui-datepicker-header {
  border: none;
  padding: 0;
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.radio-player-datepicker .ui-datepicker-header .ui-datepicker-prev,
.radio-player-datepicker .ui-datepicker-header .ui-datepicker-next {
  background: none;
  color: #0056d7;
  border: 1px solid rgba(0, 86, 215, 0.3);
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  text-shadow: none;
  padding: 0;
  margin: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  text-align: center;
  vertical-align: middle;
  position: relative;
  top: 2px;
  font-family: "Dashicons", serif;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.radio-player-datepicker .ui-datepicker-header .ui-datepicker-prev:hover,
.radio-player-datepicker .ui-datepicker-header .ui-datepicker-next:hover {
  background: #f1f1f1;
}
.radio-player-datepicker .ui-datepicker-header .ui-datepicker-prev {
  float: left;
}
.radio-player-datepicker .ui-datepicker-header .ui-datepicker-prev:before {
  content: "\f341";
}
.radio-player-datepicker .ui-datepicker-header .ui-datepicker-next {
  order: 3;
}
.radio-player-datepicker .ui-datepicker-header .ui-datepicker-next:before {
  content: "\f345";
}
.radio-player-datepicker .ui-datepicker-header .ui-datepicker-title {
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  margin: 0;
  padding: 0;
  text-transform: uppercase;
  order: 2;
}
.radio-player-datepicker .ui-datepicker-calendar {
  border: none;
  width: 100%;
  margin: 0;
  padding: 0;
  border-collapse: collapse;
}
.radio-player-datepicker .ui-datepicker-calendar th {
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  padding: 5px 0;
  text-transform: uppercase;
}
.radio-player-datepicker .ui-datepicker-calendar td {
  padding: 0;
  text-align: center;
}
.radio-player-datepicker .ui-datepicker-calendar td a {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5px;
  color: #000;
  text-decoration: none;
  border-radius: 50%;
  transition: all 0.3s ease;
  aspect-ratio: 1/1;
}
.radio-player-datepicker .ui-datepicker-calendar td a:hover {
  background: #0b6dff;
  color: #FFF;
}
.radio-player-datepicker .ui-datepicker-calendar td.ui-datepicker-today a {
  background: #0b6dff;
  color: #fff;
}
.radio-player-datepicker .ui-datepicker-calendar td.ui-datepicker-unselectable a {
  color: #ccc;
}
.radio-player-datepicker .ui-datepicker-calendar td.ui-datepicker-current-day a {
  background: #0056d7;
  color: #fff;
  aspect-ratio: 1/1;
}
.radio-player-datepicker .ui-datepicker-calendar td.ui-state-disabled {
  color: #ccc;
}

.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;
}

.menu-top#toplevel_page_soft-multimedia-player .wp-menu-image img {
  padding-top: 5px;
  margin-right: 0;
  width: 25px;
}
.menu-top#toplevel_page_soft-multimedia-player a[href="admin.php?page=soft-multimedia-player-getting-started"] {
  color: #fdda00;
  font-weight: 500;
}

body.toplevel_page_soft-multimedia-player #wpbody-content > div.updated, body.toplevel_page_soft-multimedia-player #wpbody-content > div.error, body.toplevel_page_soft-multimedia-player #wpbody-content > div.notice:not(.smp-admin-notice),
body.multimedia-player_page_soft-multimedia-player-add-new #wpbody-content > div.updated,
body.multimedia-player_page_soft-multimedia-player-add-new #wpbody-content > div.error,
body.multimedia-player_page_soft-multimedia-player-add-new #wpbody-content > div.notice:not(.smp-admin-notice),
body.multimedia-player_page_soft-multimedia-player-getting-started #wpbody-content > div.updated,
body.multimedia-player_page_soft-multimedia-player-getting-started #wpbody-content > div.error,
body.multimedia-player_page_soft-multimedia-player-getting-started #wpbody-content > div.notice:not(.smp-admin-notice),
body.multimedia-player_page_soft-multimedia-player-statistics #wpbody-content > div.updated,
body.multimedia-player_page_soft-multimedia-player-statistics #wpbody-content > div.error,
body.multimedia-player_page_soft-multimedia-player-statistics #wpbody-content > div.notice:not(.smp-admin-notice),
body.multimedia-player_page_soft-multimedia-player-settings #wpbody-content > div.updated,
body.multimedia-player_page_soft-multimedia-player-settings #wpbody-content > div.error,
body.multimedia-player_page_soft-multimedia-player-settings #wpbody-content > div.notice:not(.smp-admin-notice) {
  display: none !important;
}
body.toplevel_page_soft-multimedia-player #wpfooter,
body.multimedia-player_page_soft-multimedia-player-add-new #wpfooter,
body.multimedia-player_page_soft-multimedia-player-getting-started #wpfooter,
body.multimedia-player_page_soft-multimedia-player-statistics #wpfooter,
body.multimedia-player_page_soft-multimedia-player-settings #wpfooter {
  display: none;
}

.menu-top#toplevel_page_soft-multimedia-player a[href="admin.php?page=soft-multimedia-player-settings"],
.menu-top#toplevel_page_soft-multimedia-player a[href="admin.php?page=soft-multimedia-player-statistics"] {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.menu-top#toplevel_page_soft-multimedia-player a[href="admin.php?page=soft-multimedia-player-getting-started"] {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 5px;
}
.menu-top#toplevel_page_soft-multimedia-player a[href="admin.php?page=soft-multimedia-player-recommended-plugins"] {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 5px;
  padding-right: 0;
}

.smp-swal {
  z-index: 99999;
}
.smp-swal-toast .swal2-popup {
  padding: 5px 10px 5px 15px;
}
.smp-swal-toast .swal2-popup .swal2-icon {
  margin: 0;
}
.smp-swal-toast .swal2-popup .swal2-title {
  margin-bottom: 0;
  margin-left: 12px;
}
.smp-swal-toast .swal2-popup .swal2-html-container {
  margin-top: 5px;
  font-size: 13px;
  margin-bottom: 0;
}

.smp-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 2rem;
  max-width: 100%;
  width: 420px;
  margin: auto;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.smp-placeholder img {
  width: 48px;
  margin-bottom: 5px;
}
.smp-placeholder .title {
  font-size: 20px;
  font-weight: 600;
  color: #1f2937;
  margin: 18px 0 5px;
}
.smp-placeholder .subtitle {
  font-size: 16px;
  font-weight: 500;
  color: #374151;
  margin-top: 15px;
  margin-bottom: 3px;
  padding: 0;
}
.smp-placeholder .description {
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 15px !important;
}
.smp-placeholder select {
  min-width: 260px;
  padding: 8px 12px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  background: #fff;
  font-size: 14px;
  color: #374151;
  width: 100%;
  cursor: pointer;
  transition: border-color 0.2s ease;
}
.smp-placeholder select:focus {
  border-color: #22c55e;
  outline: none;
}
.smp-placeholder select:hover {
  border-color: #9ca3af;
}
.smp-placeholder .select2-container .select2-selection {
  height: 40px;
  text-align: left;
  border-color: #ddd;
}
.smp-placeholder .select2-container .select2-selection .select2-selection__rendered {
  line-height: 40px;
  font-size: 15px;
}
.smp-placeholder .select2-container .select2-selection .select2-selection__rendered .smp-select2-selection img {
  width: 20px;
  height: 20px;
  margin-right: 5px;
  vertical-align: middle;
}
.smp-placeholder .select2-container .select2-selection .select2-selection__clear {
  margin-right: 7px;
}
.smp-placeholder .select2-container .select2-selection .select2-selection__arrow {
  top: 7px;
}

.smp-select2-option {
  font-size: 15px;
  display: flex;
  align-items: center;
}
.smp-select2-option img {
  width: 20px;
  height: 20px;
  margin-right: 5px;
  vertical-align: middle;
}

.smp-classic-editor-swal .swal2-close {
  position: absolute;
}
.smp-classic-editor-swal + .select2-container {
  z-index: 99999 !important;
}

body.multimedia-player_page_soft-multimedia-player-getting-started:has(.smp-dashboard-wrap) #fs_connect {
  width: calc(100% - 30px) !important;
  margin: 15px !important;
  display: flex;
  flex-wrap: wrap;
  background: #fff;
  box-sizing: border-box;
  border: 1px solid #0056d7;
  border-left: 5px solid #0056d7;
  padding: 15px;
  border-radius: 4px;
  font-size: 14px;
  line-height: 1.5;
}
body.multimedia-player_page_soft-multimedia-player-getting-started:has(.smp-dashboard-wrap) #fs_connect .fs-notice,
body.multimedia-player_page_soft-multimedia-player-getting-started:has(.smp-dashboard-wrap) #fs_connect .fs-freemium-licensing,
body.multimedia-player_page_soft-multimedia-player-getting-started:has(.smp-dashboard-wrap) #fs_connect .fs-terms {
  display: none !important;
}
body.multimedia-player_page_soft-multimedia-player-getting-started:has(.smp-dashboard-wrap) #fs_connect .fs-header {
  height: auto;
  margin-right: 20px;
}
body.multimedia-player_page_soft-multimedia-player-getting-started:has(.smp-dashboard-wrap) #fs_connect .fs-header .fs-plugin-icon {
  position: unset;
  margin: 0;
}
body.multimedia-player_page_soft-multimedia-player-getting-started:has(.smp-dashboard-wrap) #fs_connect .fs-box-container {
  background: transparent;
  padding-top: 0;
  flex: 1;
  box-shadow: none;
}
body.multimedia-player_page_soft-multimedia-player-getting-started:has(.smp-dashboard-wrap) #fs_connect .fs-box-container .fs-content {
  padding: 0;
}
body.multimedia-player_page_soft-multimedia-player-getting-started:has(.smp-dashboard-wrap) #fs_connect .fs-box-container .fs-content h2 {
  text-align: left !important;
  margin-bottom: 5px;
  margin-top: 0;
}
body.multimedia-player_page_soft-multimedia-player-getting-started:has(.smp-dashboard-wrap) #fs_connect .fs-box-container .fs-content p {
  font-size: 14px;
}
body.multimedia-player_page_soft-multimedia-player-getting-started:has(.smp-dashboard-wrap) #fs_connect .fs-box-container .fs-actions {
  padding: 0;
  border: none;
  margin-top: 15px;
  display: flex;
  gap: 15px;
}
body.multimedia-player_page_soft-multimedia-player-getting-started:has(.smp-dashboard-wrap) #fs_connect .fs-box-container .fs-actions .button {
  font-size: 14px;
  height: 32px;
  line-height: 30px;
}
body.multimedia-player_page_soft-multimedia-player-getting-started:has(.smp-dashboard-wrap) #fs_connect .fs-box-container .fs-permissions {
  padding: 0;
  margin-top: 10px;
}
body.multimedia-player_page_soft-multimedia-player-getting-started:has(.smp-dashboard-wrap) #fs_connect .fs-box-container .fs-permissions a {
  text-align: left;
}
body.multimedia-player_page_soft-multimedia-player-getting-started:has(.smp-dashboard-wrap) #fs_connect .fs-box-container .fs-permissions a .button-link {
  color: #0042a4 !important;
}