@charset "UTF-8";
html, body {
  margin: 0;
  padding: 0;
}

button {
  text-transform: uppercase;
  background: transparent;
  position: relative;
  border: none;
  padding: 0.5rem 2rem;
  text-align: center;
  max-width: 100%;
  width: 13rem;
  border-radius: 0.5rem;
  border: 1px solid #000000;
  font-size: 1rem;
  margin-bottom: unset;
  line-height: 1;
}
button:focus {
  outline: none;
}
button:hover {
  cursor: pointer;
}
button:disabled {
  border: 1px solid #D9D9D9;
  cursor: not-allowed;
}

button.primary {
  background: #000000;
  min-width: 6.5rem;
}
button.primary:hover {
  background: #000000;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1607843137);
}
button.primary:disabled {
  background: #7a7979;
}

button.hover {
  background: #959292;
}

button.secondary {
  background: #FFF;
  min-width: 6.5rem;
}

button.attention {
  border: 1px solid #E7AD69;
  color: #E7AD69;
}
button.attention::after {
  content: "";
  width: 15px;
  height: 14px;
  background: url("/images/blue_system/icons/btnAttention.png");
  position: absolute;
  right: 0.7rem;
  background-repeat: no-repeat;
  top: calc(50% - 7px);
}

button.correct {
  border: 1px solid #799A59;
  color: #799A59;
}
button.correct::after {
  content: "";
  width: 15px;
  height: 14px;
  background: url("/images/blue_system/icons/btnCorrect.png");
  position: absolute;
  right: 0.7rem;
  background-repeat: no-repeat;
  top: calc(50% - 7px);
}

button.cancel {
  border: 1px solid #A02700;
  color: #A02700;
}
button.cancel::after {
  content: "";
  width: 15px;
  height: 14px;
  background: url("/images/blue_system/icons/btnCancel.png");
  position: absolute;
  right: 0.7rem;
  background-repeat: no-repeat;
  top: calc(50% - 7px);
}

button.tertiary {
  border: 1px solid #000000;
  color: #000000;
}

button.dropdown::after {
  content: "⌵";
  position: absolute;
  right: 0.5rem;
  bottom: 0.5rem;
  color: #000000;
  font-weight: bold;
  transform: rotate(0deg);
  transition-duration: 0.5s;
}

button.dropdown.active::after {
  transform: rotate(180deg);
  transition-duration: 0.5s;
}

button.dropdown.active {
  margin: 0;
}

div.multi-collapse {
  margin-bottom: 2rem;
  width: 13rem;
}

button.table {
  border: none;
  width: -moz-fit-content;
  width: fit-content;
}
button.table:hover {
  background: #959292;
  color: #3FBBCF;
}

@media (min-width: 992px) and (max-width: 1400px) {
  button {
    font-size: 0.8571428571rem;
    padding: 0.4rem 1rem;
    width: 10rem;
  }
  button.primary {
    padding: 0.4rem 1rem;
    width: 10rem;
    margin: 0;
  }
}
input {
  text-transform: unset;
  background: transparent;
  position: relative;
  border: none;
  padding: 0.5rem 2rem;
  text-align: center;
  max-width: 100%;
  width: 20rem;
  border-radius: 0.5rem;
  border: 1px solid #BBBBBB;
  font-size: 1rem;
  margin-bottom: unset;
  line-height: 1;
}
input:focus {
  outline: unset;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1607843137);
  border: 1px solid #3FBBCF;
}
input:disabled {
  background: #F7F7F7;
  border: none;
  cursor: not-allowed;
}

.inputAttention {
  border: 1px solid #E7AD69;
  background: url("/images/blue_system/icons/btnAttention.png") no-repeat;
  background-position-x: 18rem;
  background-position-y: 0.65rem;
  background-color: rgba(231, 173, 105, 0.1);
}
.inputAttention:focus {
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1607843137);
  border: 1px solid #E7AD69;
}

.inputError {
  border: 1px solid #A02700;
  background: url("/images/blue_system/icons/btnCancel.png") no-repeat;
  background-position-x: 18rem;
  background-position-y: 0.65rem;
  background-color: rgba(160, 39, 0, 0.1);
}
.inputError:focus {
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1607843137);
  border: 1px solid #A02700;
}

.inputNumber {
  width: 4rem;
  padding: 0.5rem;
}

.box-notification {
  border: 1px solid #000000;
  border-radius: 10px;
  width: -moz-fit-content;
  width: fit-content;
  padding: 1rem 1.5rem;
}
.box-notification .header-notification {
  display: flex;
  align-items: center;
  line-height: 1;
}
.box-notification .header-notification img {
  width: 2.5rem;
  padding-right: 1rem;
}
.box-notification .header-notification span {
  color: #3FBBCF;
  font-size: 1.5rem;
}
.box-notification .header-notification p {
  padding-left: 5rem;
  margin: 0;
}
.box-notification .content-notification {
  padding-left: 2.5rem;
  margin: 1rem 0;
}

.footer-notification {
  padding-left: 7rem;
}
.footer-notification button.primary, .footer-notification button.secondary {
  margin: 0.5rem;
}

.sucess-notification {
  position: fixed;
  top: -5rem;
  margin: 0 auto;
  left: 0;
  right: 0;
  color: #000;
  font-family: "helvetica";
  border: 1px solid #799A59;
  border-radius: 10px;
  width: -moz-fit-content;
  width: fit-content;
  padding: 1rem 1.5rem;
  padding-right: 4rem;
  display: flex;
  align-items: center;
  line-height: 1;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1607843137);
  animation-name: notification;
  animation-duration: 3s;
  background-color: #fff;
}
.sucess-notification img {
  padding-right: 0.5rem;
}

.removed-notification {
  position: fixed;
  top: -5rem;
  margin: 0 auto;
  left: 0;
  right: 0;
  color: #000;
  font-family: "helvetica";
  border: 1px solid #A02700;
  border-radius: 10px;
  width: -moz-fit-content;
  width: fit-content;
  padding: 1rem 1.5rem;
  padding-right: 4rem;
  display: flex;
  align-items: center;
  line-height: 1;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1607843137);
  animation-name: notification;
  animation-duration: 3s;
  background-color: #fff;
}
.removed-notification img {
  padding-right: 0.5rem;
}

@keyframes notification {
  0% {
    top: 0;
  }
  50% {
    top: 5rem;
  }
  100% {
    top: -5rem;
  }
}
select {
  text-transform: uppercase;
  background: transparent;
  position: relative;
  border: none;
  padding: 0.5rem 2rem;
  text-align: center;
  max-width: 100%;
  width: 13rem;
  border-radius: 0.5rem;
  border: 1px solid #000000;
  font-size: 1rem;
  margin-bottom: 2rem;
  line-height: 1;
}
select:focus {
  outline: none;
}
select:hover {
  cursor: pointer;
}
select:disabled {
  border: 1px solid #D9D9D9;
  cursor: not-allowed;
}
select::after {
  content: "⌵";
  position: absolute;
  right: 0.5rem;
  bottom: 0.5rem;
  color: #000000;
  font-weight: bold;
  transform: rotate(0deg);
  transition-duration: 0.5s;
}/*# sourceMappingURL=style.css.map */