:root {
  --bg-primary: #ffffff;
  --bg-secondary: #0033A0;
  --bg-tertiary: #00AEC7;
  --bg-quaternary: #2D6DF6;
  --txt-primary: #0033A0;
  --txt-secondary: #ffffff;
  --txt-tertiary: #00AEC7;
  --txt-quaternary: #2D6DF6;
  --opacity-primary: #00acc73f;
  --opacity-secondary: #00acc721;
  --opacity-tertiary: #00acc700;
  --opacity-quaternary: #0033a02a;
  --progress-primary: #ca9529;
  --progress-success-value: #00724c;
  --progress-error-value: #750000;
  --progress-success-bar: #00a56e;
  --progress-error-bar: #b40000;
  --shadow-primary: rgb(0 0 0 / 15%);
  --color-white1: #ffffff;
  --color-white2: #f2f2f2;
  --color-gray1: #9d9d9c;
  --color-gray2: #9b9b9b;
  --color-error: #ff0000;
  --opacity-error: rgba(255, 0, 0, 0.30);
  --color-yellow2: #FFE946;
  --color-blue2: #4EC3E0;
}

body {
  margin: 0;
  font-family: 'Barlow', sans-serif;
  margin: 0;
  padding: 0;
}

/* LOADER */
.loader {
  visibility: hidden;
  background: #f4f6f9;
  height: 100%;
  width: 100%;
  position: fixed;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 100;
}

.loader>#content {
  -webkit-box-shadow: 0px 0px 56px 1px rgb(127 127 127);
  -moz-box-shadow: 0px 0px 56px 1px rgb(127 127 127);
  box-shadow: 0px 0px 56px 1px rgb(127 127 127);
  border-radius: 50%;
  height: 150px;
  width: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  z-index: 104;
  background: white;
}

.loader>#loader--circle {
  position: absolute;
  z-index: 103;
}


.show {
  visibility: visible;
}

/* END LOADER */

/* FORM */

.form-input_auxiliary {
  color: white;
}

.form-input_button progress::-webkit-progress-bar {
  background: #2D6DF6;
  transition: all 1.5s linear
}

.input-container-items {
  outline: none;
}

/* END FORM */