.time-representation {
  display: flex;

  .time-btn {
    cursor: pointer;
    margin-right: 10px;
  }

  .active {
    font-weight: 500;
    text-decoration: underline;
  }
}

.trigger-time-popup {
  display: flex;

  mat-icon {
    margin-left: 3px;
    font-size: 18px;
    text-decoration: none !important;
  }
}

.edit-time-icon {
  opacity: 0;
}

.visible {
  opacity: 1;
}

.time-representation-popup {
  cursor: auto;

  width: 170px;
  padding: 10px 5px;

  background-color: var(--color-gray-fff);
  border-radius: 5px;
  box-shadow:
    0 1px 1px rgb(0 0 0 / 14%),
    0 2px 1px rgb(0 0 0 / 12%),
    2px 1px 5px rgb(0 0 0 / 20%);

  .title {
    padding: 0 5px;
  }

  .time-components {
    margin-top: 10px;

    .time-components-item {
      display: flex;
      justify-content: space-between;
      margin-bottom: 10px;
      margin-left: 15px;

      input {
        max-width: 50%;
        margin-right: 20px;
        border: none;

        &:focus {
          border-width: 1px;
        }
      }
    }
  }
}

.button__clear {
  cursor: pointer;

  display: inline-block;

  width: 60px;
  margin-top: 10px;
  margin-left: 5px;
  padding: 5px 10px;

  color: #fff;
  text-align: center;

  background-color: var(--accent-color-bg);
  border-radius: 5px;
}
