:root {
  --base-dir: $BASE-DIR;
}

.ui-button-help {
  height: 16px;
  aspect-ratio: 1;
  padding: 0px;
  margin: 3px 6px;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
}
.ui-button-help.ui-button-help-hover {
  color: #1f83a5;
  background-color: #ffffff;
  opacity: 0.3;
}
.ui-button-help.ui-button-help-hover:hover {
  opacity: 1;
}

.ui-download-button {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  border: none;
  background: none;
  color: #0f1923;
  cursor: pointer;
  position: relative;
  padding: 8px;
  margin-bottom: 20px;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 14px;
  transition: all 0.15s ease;
}

.ui-download-button::before,
.ui-download-button::after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  left: 0;
  height: calc(50% - 5px);
  border: 1px solid #7D8082;
  transition: all 0.15s ease;
}

.ui-download-button::before {
  top: 0;
  border-bottom-width: 0;
}

.ui-download-button::after {
  bottom: 0;
  border-top-width: 0;
}

.ui-download-button:active,
.ui-download-button:focus {
  outline: none;
}

.ui-download-button:active::before,
.ui-download-button:active::after {
  right: 3px;
  left: 3px;
}

.ui-download-button:active::before {
  top: 3px;
}

.ui-download-button:active::after {
  bottom: 3px;
}

.ui-download-button_lg {
  position: relative;
  display: block;
  padding: 10px 20px;
  color: #fff;
  background-color: #0f1923;
  overflow: hidden;
  box-shadow: inset 0px 0px 0px 1px transparent;
}

.ui-download-button_lg::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 2px;
  background-color: #0f1923;
}

.ui-download-button_lg::after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  bottom: 0;
  width: 4px;
  height: 4px;
  background-color: #0f1923;
  transition: all 0.2s ease;
}

.ui-download-button_sl {
  display: block;
  position: absolute;
  top: 0;
  bottom: -1px;
  left: -8px;
  width: 0;
  background-color: #ff4655;
  transform: skew(-15deg);
  transition: all 0.2s ease;
}

.ui-download-button_text {
  position: relative;
}

.ui-download-button:hover {
  color: #0f1923;
}

.ui-download-button:hover .ui-download-button_sl {
  width: calc(100% + 15px);
}

.ui-download-button:hover .ui-download-button_lg::after {
  background-color: #fff;
}/*# sourceMappingURL=JUI.css.map */