@import "base";

.period-picker {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-left: 10px;
  font-size: 30px;
  max-width: 100%;

  .period-picker__times-fields {
    display: flex;
    flex-direction: row;
    align-items: center;

    &.period-picker__times-fields_hours {
      margin-top: 15%;
    }

    &.period-picker__times-fields_week {
      margin-top: 20%;
    }
  }

  .period-picker__times-inputs {
    display: flex;
    margin-left: 20px;
    margin-bottom: -5px;
  }

  .period-picker__week-day {
    $font-size: 30px;

    display: flex;
    justify-content: center;
    align-items: center;
    width: $font-size;
    height: $font-size;
    font-size: $font-size - 10;
    margin-right: 20px;
    color: color(black, light);

    &.period-picker__week-day_selected {
      color: white;
      background-color: color(primary);
      border-radius: 100%;
    }
  }

  .period-picker__input {
    float: right;
    color: color(black, light);
    background-color: color(black, pale);
    width: 40%;
    border: 2px solid #dadada;
    border-radius: 7px;
    font-size: 17px;
    padding: 5px;

    &:focus {
      outline: none;
      border-color: #9ecaed;
      box-shadow: 0 0 10px #9ecaed;
    }
  }
}
