/* src/components/Message.module.css */
.Message_main {
  padding: 2px 20px;
  line-height: 32px;
  border: var(--border-inactive);
  border-radius: var(--border-radius-small);
  cursor: pointer;
}
.Message_main:focus {
  border: var(--border-focus);
  outline: var(--border-focus);
  outline-offset: 0px;
}
.Message_error {
  background: var(--color-error);
}
.Message_info {
  background: var(--color-info);
}
.Message_none {
  background: transparent;
}
.Message_title {
  font-weight: 500;
  margin-right: 5px;
}

/* src/components/AppField.module.css */
.AppField_main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 50px;
  box-sizing: border-box;
  position: relative;
  padding: 5px 10px;
  border: var(--border-inactive);
  border-radius: var(--border-radius-small);
  background-color: var(--background-field);
  color: var(--color-shared-field-text);
  cursor: text;
}
.AppField_main:focus-within {
  border: var(--border-focus);
  outline: var(--border-focus);
  outline-offset: 0px;
}
.AppField_main:hover:not(:focus-within) {
  border: var(--border-hover);
}
.AppField_main > input {
  outline: none;
  border: none;
  appearance: none;
  width: 100%;
  font-weight: normal;
  font-size: 24px;
  background-color: var(--background-field);
  -webkit-appearance: none;
  -moz-appearance: none;
}
.AppField_main > input::placeholder {
  color: var(--color-shared-secondary);
}
.AppField_label {
  position: absolute;
  font-weight: normal;
  font-size: 12px;
  line-height: 100%;
  color: var(--color-label-gray);
  transform: translateY(-50%);
  top: 0px;
  left: 8px;
  background-color: var(--background-field);
  padding-left: 5px;
  padding-right: 5px;
}
.AppField_main:focus-within > .AppField_label {
  color: var(--color-label-focus);
}
.AppField_actions {
  display: block;
  height: 20px;
  color: var(--color-actions-gray);
  cursor: pointer;
}
.AppField_actions:hover {
  color: var(--color-actions-hover);
}

/* src/components/AppButton.module.css */
.AppButton_main {
  padding: 10px;
  border: var(--border-inactive);
  border-radius: var(--border-radius-small);
  background: var(--background-button);
  color: var(--color-shared-field-text);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
}
.AppButton_main:not(:disabled):focus {
  border: var(--border-focus);
  outline: var(--border-focus);
  outline-offset: 0px;
}
.AppButton_main:not(:disabled):hover:not(:focus) {
  border: var(--border-hover);
}
.AppButton_main:disabled {
  opacity: 0.5;
}
.AppButton_main:not(:disabled):active {
  background: var(--background-button-active);
}

/* src/components/SelectYears.module.css */
.SelectYears_main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 50px;
  box-sizing: border-box;
  position: relative;
  padding: 5px 10px;
  border: var(--border-inactive);
  border-radius: var(--border-radius-small);
  background: var(--background-select-years);
  color: var(--color-shared-field-text);
  text-overflow: ellipsis;
  word-wrap: break-word;
  font-weight: normal;
  font-size: 24px;
}
.SelectYears_mainFocused,
.SelectYears_main:focus {
  border: var(--border-focus);
  outline: var(--border-focus);
  outline-offset: 0px;
}
.SelectYears_main:hover:not(:focus):not(.SelectYears_mainFocused) {
  border: var(--border-hover);
}
.SelectYears_main > .SelectYears_label {
  position: absolute;
  font-weight: normal;
  font-size: 12px;
  line-height: 100%;
  color: var(--color-label-gray);
  transform: translateY(-50%);
  top: 0px;
  left: 8px;
  background: var(--background-select-years);
  padding-left: 5px;
  padding-right: 5px;
}
.SelectYears_main:focus > .SelectYears_label,
.SelectYears_mainFocused > .SelectYears_label {
  color: var(--color-label-focus);
}
.SelectYears_title {
  color: var(--color-shared-secondary);
}
.SelectYears_dropdown {
  width: 100%;
  position: absolute;
  left: 0;
  top: 50px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 8px 0 rgba(0, 0, 0, .15), 0 0 8px 0 rgba(0, 0, 0, .15);
  background: var(--background-field);
  z-index: 1;
}
.SelectYears_item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: none;
  padding: 0 20px;
  text-align: left;
  color: var(--color-shared-field-text);
  font-size: 20px;
  background: var(--background-field);
  height: 50px;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}
.SelectYears_item:not(:first-child) {
  border-top: var(--border-inactive);
}
.SelectYears_item:hover {
  background: var(--background-item-hover) !important;
}
.SelectYears_actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 20px;
  color: var(--color-actions-gray);
  cursor: pointer;
}
.SelectYears_actions:hover {
  color: var(--color-actions-hover);
}
.SelectYears_checkbox {
  display: inline-block;
  position: relative;
  height: 20px;
  width: 20px;
  border-radius: var(--border-radius-small);
  background: var(--background-field);
  border: var(--border-inactive);
}
.SelectYears_selected {
  background: var(--background-checkbox-checked);
}
.SelectYears_selected:after {
  content: "";
  position: absolute;
  transform: rotate(-45deg);
  top: 3px;
  left: 3px;
  width: 12px;
  height: 6px;
  border: 2px solid var(--background-field);
  border-top-style: none;
  border-right-style: none;
}

/* src/components/AppCheckBox.module.css */
.AppCheckBox_main {
  display: flex;
  align-items: center;
}
.AppCheckBox_main > input {
  position: relative;
  height: 20px;
  width: 20px;
  margin: 0 5px 0 0;
  background: var(--background-button);
  border: var(--border-inactive);
  border-radius: var(--border-radius-small);
  transition: var(--transition-background-color);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
}
.AppCheckBox_main > input:focus {
  border: var(--border-focus);
  outline: var(--border-focus);
  outline-offset: 0px;
}
.AppCheckBox_main > input:hover:not(:focus) {
  border: var(--border-hover);
}
.AppCheckBox_main > input:checked {
  background: var(--background-checkbox-checked);
}
.AppCheckBox_main > input:checked:after {
  content: "";
  position: absolute;
  transform: rotate(-45deg);
  top: 3px;
  left: 2px;
  width: 12px;
  height: 6px;
  border: 2px solid var(--background-field);
  border-top-style: none;
  border-right-style: none;
}

/* src/App.module.css */
.App_actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.App_head2 {
  margin-bottom: 15px;
  font-weight: 500;
  font-size: 24px;
}
.App_header {
  margin: 30px auto 25px auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 500;
  font-size: 32px;
}
.App_itemsRow {
  display: flex;
  column-gap: 25px;
  height: 75px;
  margin: 5px auto;
  padding: 5px;
  overflow-x: auto;
}
.App_itemsColumn2 {
  flex: 50%;
}
.App_section {
  margin-bottom: 30px;
  padding: 30px 50px 30px 50px;
  background: var(--background-card);
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.07);
  border-radius: 5px;
}
/*# sourceMappingURL=main.css.map */
