.choice {
  position: relative;
  margin-top: -26px;
  padding: 25px;

  .text {
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: 400;
    color: #939393;
  }

  .header {
    margin-bottom: 10px;
    font-size: 24px;
    font-weight: 500;
  }

  .button {
    cursor: pointer;

    float: right;

    width: 120px;

    font-size: 16px;
    font-weight: 400;
    color: #000;

    background-color: var(--color-gray-fff);
    border: 1px solid #c5c5c5;

    &:hover {
      background-color: #f5f5f5;
    }
  }

  .skip {
  }

  .play-video {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 180px;

    .icon {
      position: relative;
      top: 3px;
    }
  }
}

.card-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 15px;
}

.card-item {
  cursor: pointer;

  display: flex;
  flex-direction: column;
  align-items: center;

  width: 260px;
  height: 333px;
  padding: 10px;

  border: 1px solid #c5c5c5;
  border-radius: 5px;

  &:hover {
    box-shadow:
      0 2px 4px rgb(0 0 0 / 20%),
      0 1px 10px rgb(0 0 0 / 12%),
      0 4px 5px rgb(0 0 0 / 14%);
  }

  &:first-child {
    margin-right: 28px;
  }

  &:nth-child(2) {
    margin-right: 28px;
  }

  .title {
    font-size: 24px;
    font-weight: 500;
    text-align: center;
  }

  .description {
    font-size: 16px;
    font-weight: 400;
    text-align: center;
  }

  img {
    display: flex;
    max-width: 215px;
    margin-bottom: 10px;
  }
}
