.player {
  &_btn {
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: all 0.2s;
    font-family: 'Roboto Condensed';
    font-style: normal;
    font-weight: bold;
    font-size: 16px;
    line-height: 19px;
    color: #ffffff;
    padding: 20px 60px;
    background: #004225;
    border: 1px solid #004225;
    border-radius: 10px;
    height: 57px;
    margin-left: 10px;

    &__wrapper {
      display: flex;
      align-items: center;
    }
    svg {
      path {
        transition: all 0.2s;
      }
    }
    &:hover {
      background: transparent;
      color: #004225;

      svg {
        path {
          stroke: #004225;
        }
      }
    }
  }
}
.desktop {
  display: flex;
}
.mobile {
  display: none;
}
@media (max-width: 1024px) {
  .player {
    &_btn {
      height: 34px;
      padding: 10px;
      margin-top: 10px;
      width: 100%;
      margin-left: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      span {
        font-size: 14px;
        padding-left: 10px;
      }
      &__wrapper {
        flex-direction: column;
        position: absolute;
        top: 20px;
        right: 20px;
        z-index: 9;

        &.disableAr {
          position: relative;
          top: 0;
          right: 0;

          .player {
            &_btn {
              margin-top: 0px;
            }
          }
        }
      }
    }
  }
  .desktop {
    display: none;
  }
  .mobile {
    display: flex;
  }
}
