.container {
  width: 600px;
  padding: 30px 20px;

  .title {
    display: flex;
    font-size: 20px;
    font-weight: 600;
  }

  .description {
    display: flex;
    margin-top: 20px;
  }

  .label {
    display: flex;
    margin-top: 20px;
    font-size: 11px;
    font-weight: 500;
  }

  .current-location {
    display: flex;
    margin-top: 5px;
  }

  .disabled {
    pointer-events: none;
    background-color: var(--color-gray-eee);
  }

  .select {
    display: flex;
    align-items: center;

    width: 50%;
    margin-top: 3px;
    margin-bottom: 5px;
    padding: 5px;

    border: 1px solid var(--color-gray-aaa);
    border-radius: 2px;

    ::ng-deep {
      .inline-edit-wrap {
        width: 100%;

        .inline-edit-wrapper {
          justify-content: space-between;
          width: 100%;
        }
      }
    }
  }

  .bottom-label {
    display: flex;
    margin-top: 5px;
    font-size: 12px;
    color: var(--color-gray-aaa);
  }

  .warning {
    display: flex;
    margin-top: 10px;
    color: black;
  }

  .buttons {
    display: flex;
    gap: 8px;
    justify-content: flex-end;
    margin-top: 20px;

    .button-complete {
      color: #fff;
      background-color: var(--accent-color-bg);
    }
  }
}

.loader {
  display: flex;
  align-items: center;
  justify-content: center;
}

.checkbox-field {
  display: flex;
  flex-direction: row;
  gap: 8px;
  align-items: center;

  height: 20px;
  margin-bottom: 5px;

  .disabled {
    pointer-events: none;
    background-color: var(--color-gray-eee);
  }
}
