.radio-player.skin6.shortcode {
  border: none;
  flex-flow: row;
  flex-wrap: wrap;
  padding: 20px;
  justify-content: space-between;
  align-items: center;

  .thumbnail-wrap {
    width: 40%;
    background: #000;
    padding: 10px;
    border-radius: 15px;

    .radio-player-thumbnail {
      border-radius: 5px;
      height: 100%;
      width: 100%;
      margin-right: 0;
    }
  }

  .radio-player-controls-wrap {
    width: 40%;

    .radio-player-controls {
      margin: 0;
      width: 120px;
      height: 120px;
      position: relative;
      background: linear-gradient(0deg, #222, #111);
      border-radius: 100%;
      border: solid 2px #000;
      box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.2), 0 4px 2px rgba(0, 0, 0, 0.2);
      display: flex;
      align-items: center;
      justify-content: center;

      > button {
        position: absolute;
        cursor: pointer;
        transition: all 0.2s ease;

        &:hover {
          text-shadow: 0 0 4px cyan;
        }

        &.radio-prev {
          left: 1px;
          z-index: 1;
        }

        &.radio-play-pause {
          width: 55px;
          height: 55px;
          border: solid 2px #000;
          box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.2), 0 0 8px rgba(0, 0, 0, 0.6);
          border-radius: 100%;
          line-height: 88px;
          text-align: center;
          background: linear-gradient(0deg, #111, #222);
          display: flex;
          align-items: center;
          justify-content: center;

          svg {
            width: 28px;
            height: 28px;
          }
        }

        &.radio-next {
          right: 1px;
        }

        &.radio-player-volume {
          bottom: 0;
          z-index: 9;

          svg {
            width: 22px;
            height: 22px;
          }

          &.active, &:hover {

            .volume-bar {
              margin-left: 0;
            }

          }

        }

        &.radio-player-open-popup {
          top: 0;

          svg {
            font-size: 24px;
            height: 20px;
            width: 20px;
            margin-right: -4px;
          }
        }

      }

      & > * {
        margin: 0;
      }

    }

    .volume-slider {
      //z-index: 9;
    }
  }

  .radio-player-details {
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 30px;

    .radio-player-title {
      flex: none;
      margin-right: 10px;
    }

    .radio-player-song-title {
      width: 100%;
      margin: 10px auto;

      span {
        margin-top: 5px;
        margin-bottom: 0;
      }
    }

    button {
      margin: 0 7px;
    }

  }


}