.cron-picker {
  display: block;
  max-width: 710px;

  .create-item {
    display: flex;
    align-items: flex-start;
    margin: 12px 0;

    .create-label {
      width: 100px;
      padding-top: 3px;
      display: flex;
      justify-content: flex-end;
    }

    .create-input {
      flex: 1;
      display: flex;
      margin: 0 40px 0 12px;
      flex-wrap: wrap;
      align-items: center;

      table {
        margin-left: -8px;

        td input {
          height: 28px;
          width: 48px;
          margin: 0 auto;
        }

        tr a {
          margin: 0 10px;
        }
      }
    }

    .input-s {
      width: 60px;
      height: 30px;
      margin: 0 10px;
    }

    .sub-item {
      display: flex;
      align-items: flex-start;
      margin-bottom: 5px;
    }

    .align-self-center {
      align-self: center;
      padding: 0;
    }

    .btn-day {
      margin: 0 6px 5px 0;
      width: 48px;
      height: 28px;
      padding: 3px 0;
      text-align: center;

      &.active, &:active {
        color: white;
        border: 1px solid transparent;

        &::before {
          background: var(--global-theme-color-light, #00bbb4);
        }

        &:hover {
          color: white;
        }
      }

      &.disabled::before, &[disabled]::before {
        z-index: -999;
      }
    }
  }

  .yearly {
    display: block;

    .month {
      height: 40px;
    }

    .date {
      height: 78px;
    }
  }

  .HMS {
    flex-direction: column;
    align-items: left !important;
  }
}
