.users-trainings {
  .training-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
    margin-bottom: 20px;

    .training-row {
      display: flex;
      align-items: center;
      position: relative;

      .training-card {
        flex-grow: 1;
        background: white;
        border-radius: 14px;
        padding: 12px 16px;
        font-weight: 400;
        font-size: 12px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);

        .card-left {
          display: flex;
          align-items: center;
          gap: 12px;

          img {
            width: 24px;
            height: 24px;
          }
        }

        .card-right {
          img {
            width: 24px;
            height: 24px;
          }
        }
      }
    }
  }
}

.start-train-wrapper {
  position: relative;
  display: block;
  width: 100%;
  min-width: 280px;
  height: 56px;
  margin-bottom: 12px;

  .start-train-bg {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    border-radius: 22px;
  }

  .start-train-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-weight: 600;
    color: white;
    font-size: 16px;
    text-decoration: none;
    white-space: nowrap;
    z-index: 1;
  }
}

.back {
  display: block;
  width: 100%;
  height: 56px;
  border-radius: 22px;
  text-decoration: none;
  text-align: center;
  line-height: 56px;
  font-weight: 700;
  font-size: 16px;
  border: 1px solid transparent;
  background: linear-gradient(#f4f4f4, #f4f4f4) padding-box, linear-gradient(90deg, #41e18f, #2ad082) border-box;

  .back-text {
    color: #2AD082;
  }
}


/* Тач-эффекты */
