.wrapper {
  padding: 0px 50px;
  width: calc(100% - 400px);
}

.camera_arrow {
  transition: all 0.2s;
  background: #cdcccc;
  border-radius: 6px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  cursor: pointer;

  &:hover {
    background: #b4b1b1;
  }
}

.hint {
  &__wrapper {
    position: relative;
  }
  &_arrows {
    display: none;
  }
}
.player {
  &__wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
  }

  &_content {
    height: calc(var(--vh, 1vh) * 90 - 130px);
    max-height: calc(var(--vh, 1vh) * 100 - 70px - 60px);
  }

  &_name {
    font-family: 'Roboto Condensed';
    font-style: normal;
    font-weight: bold;
    font-size: 30px;
    line-height: 33px;
    color: #000000;
    margin-top: 5px;
  }

  &_back {
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;

    svg {
      margin-right: 8px;
    }

    span {
      font-family: 'Roboto';
      font-style: normal;
      font-weight: 300;
      font-size: 16px;
      line-height: 19px;
      color: #004225;
    }
  }
}
@media (max-width: 1600px) {
  .wrapper {
    width: 70%;
  }
}

@media (max-width: 1300px) {
  .wrapper {
    padding: 0px 20px 0px 0px;
  }
}

@media (max-width: 1024px) {
  .wrapper {
    width: 100%;
    height: auto;
    padding: 0px;
  }

  .camera_arrow {
    display: none;
  }

  .hint {
    &_arrows {
      display: flex;
      position: absolute;
      z-index: 9;
      width: 130px;
      justify-content: space-between;
      transform: translateX(-50%);
      left: 50%;
      bottom: -2px;
      .camera_arrow {
        width: 34px;
        height: 34px;
        display: flex;
      }
    }
  }

  .player {
    &_content {
      height: 100%;
      max-height: unset;
    }
    &_back {
      span {
        font-size: 14px;
      }
    }
    &_name {
      font-size: 28px;
    }
    &__wrapper {
      flex-direction: row;
      height: 70px;
    }
    &_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;
      }
    }
  }
}
@media (max-width: 520px) {
  .player_content {
    height: 230px;
  }
}
@media (max-width: 460px) {
  .camera_arrow {
  }
}
