.nova-listen-share{
    --nova-ink: #111111;
    --nova-soft: #edeff6;
    --nova-soft-hover: #e2e5ef;
    --nova-rule: #edeff6;
    --nova-outline: rgba(0, 0, 0, .8);
    box-sizing: border-box;
    width: 100%;
    min-height: 65px;
    padding: 16px 0;
    border-top: 1px solid var(--nova-rule);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    color: var(--nova-ink);
  font-family: inherit !important;
  }

.nova-listen-share, .nova-listen-share button, .nova-listen-share span, .nova-listen-share output{
  font-family: inherit !important;
    font-style: normal;
    text-transform: none;
    letter-spacing: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

.nova-listen-share *, .nova-listen-share *::before, .nova-listen-share *::after{
    box-sizing: border-box;
  }

.nova-audio-player{
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
  }

.nova-control, .nova-speed, .nova-share{
    appearance: none;
    -webkit-appearance: none;
    border: 0;
    margin: 0;
    font: inherit;
    color: inherit;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
  }

.nova-control{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    padding: 0;
    background: transparent;
  }

.nova-control:focus-visible, .nova-speed:focus-visible, .nova-share:focus-visible{
    outline: 2px solid currentColor;
    outline-offset: 3px;
  }

.nova-play{
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: var(--nova-soft);
    transition: background-color 160ms ease;
  }

.nova-play:hover{
    background: var(--nova-soft-hover);
  }

.nova-play svg{
    display: block;
    flex: 0 0 auto;
  }

.nova-play .nova-icon-play{
    width: 11px;
    height: 16px;
    transform: translateX(.5px);
  }

.nova-play .nova-icon-pause{
    width: 10px;
    height: 16px;
  }

.nova-icon-pause, .nova-play[aria-pressed="true"] .nova-icon-play{
    display: none;
  }

.nova-play[aria-pressed="true"] .nova-icon-pause{
    display: block;
  }

.nova-time{
    min-width: 31px;
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
  }

.nova-skip{
    width: 16px;
    height: 16px;
    border-radius: 8px;
    transition: opacity 160ms ease;
  }

.nova-skip:hover{
    opacity: .6;
  }

.nova-skip svg{
    display: block;
    width: 16px;
    height: 16px;
    fill: none;
  }

.nova-speed{
    min-width: 48px;
    width: 48px;
    height: 26px;
    padding: 2px 8px;
    border: 1px solid var(--nova-outline);
    border-radius: 8px;
    background: transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
    font-variant-numeric: tabular-nums;
    transition: background-color 160ms ease;
  }

.nova-speed:hover{
    background: var(--nova-soft);
  }

.nova-share{
    min-height: 32px;
    padding: 0;
    background: transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    flex: 0 0 auto;
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
  }

.nova-share:hover{
    opacity: .62;
  }

.nova-share svg{
    width: 24px;
    height: 17px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.65;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

.nova-share .nova-share-icon{
    transform: rotate(-45deg);
    transform-origin: center;
  }

.nova-sr-only{
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
  }

body.single-post .elementor-widget-share-buttons{
    display: none !important;
  }

@media (max-width: 480px){
    .nova-listen-share {
      gap: 12px;
    }

    .nova-audio-player {
      gap: 10px;
    }

    .nova-speed {
      min-width: 48px;
      padding-inline: 8px;
    }

    .nova-share {
      gap: 5px;
    }
  }

