:root {
  --vc-border: #d1d5db;
  --vc-bg: #fff;
  --vc-muted: #6b7280;
  --vc-text: #111827;
  --vc-accent: #f97316;
}

.vc-calc {
  color: var(--vc-text);
}
.vc-calc__layout {
  display: grid;
  gap: 12px;
  grid-template-columns: minmax(0, 65fr) minmax(0, 35fr);
  align-items: start;
  position: relative;
}
.vc-calc__work {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.vc-calc__toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 10px;
  border: 1px solid var(--vc-border);
  border-radius: 10px;
  background: var(--vc-bg);
  margin-top: 20px;
}
.vc-calc__row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: end;
}
.vc-calc__btn {
  background: #f9fafb;
  border-radius: 8px;
  padding: 7px 10px;
  font-size: 13px;
  line-height: 1;
  color: #222;
  height: 100%;
  margin-top: 0;
}
.vc-calc__btn:hover {
  background: #f3f4f6;
  color: #222;
}
.vc-calc__btn:active {
  background: #e5e7eb;
}
.vc-calc__btn[aria-disabled=true] {
  opacity: 0.45;
  pointer-events: none;
  cursor: not-allowed;
}
.vc-calc__btn[aria-pressed=true] {
  font-weight: 600;
  color: #ffffff;
  background: #0b2a4a;
  border-color: #0b2a4a;
}
.vc-calc__btn[aria-pressed=true] svg, .vc-calc__btn[aria-pressed=true] path {
  fill: #fff;
}
.vc-calc__btn--zoom {
  width: 44px;
  padding: 7px 0 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  background: #0b2a4a;
  border-color: #0b2a4a;
  color: #ffffff;
}
.vc-calc__btn--zoom:hover {
  background: #093055;
  color: #ff7b00;
}
.vc-calc__btn--zoom:active {
  background: #072643;
}
.vc-calc__btn--icon {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 6px 10px;
  min-width: 76px;
}
.vc-calc__btn .icon--openedFigure {
  display: none;
}
.vc-calc__btn--isActive .icon--openedFigure {
  display: inline-block;
}
.vc-calc__btn--isActive .icon--closedFigure {
  display: none;
}
.vc-calc__field {
  display: grid;
  gap: 4px;
}
.vc-calc__field--grow {
  flex: 1 1 auto;
  min-width: 160px;
}
.vc-calc__field--check {
  align-items: start;
  justify-items: center;
  background-color: #f9f9f9;
  padding: 2px 10px 4px;
  border-radius: 4px;
}
.vc-calc__field--inline {
  display: flex;
  flex-direction: column;
}
.vc-calc__fieldsGroup {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  height: 100%;
}
.vc-calc__check {
  width: 18px;
  height: 18px;
}
.vc-calc__label {
  font-size: 12px;
  color: var(--vc-muted);
}
.vc-calc__input {
  border: 1px solid var(--vc-border);
  border-radius: 8px;
  padding: 8px 10px;
  font-size: 14px;
  width: 140px;
  max-width: 100%;
}
.vc-calc__hint {
  font-size: 12px;
  color: var(--vc-muted);
  line-height: 1.25;
  max-width: 240px;
}
.vc-calc .vc-tutorial {
  padding: 12px;
  border: 1px solid var(--vc-border);
  border-radius: 10px;
  background: var(--vc-bg);
  margin-bottom: 25px;
}
.vc-calc .vc-tutorial__stepTitle {
  font-weight: 600;
  margin-bottom: 6px;
}
.vc-calc .vc-tutorial__progress {
  margin-top: 8px;
  font-size: 12px;
  color: var(--vc-muted);
}
.vc-calc .vc-tutorial__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}
.vc-calc .vc-tutorial__title {
  font-weight: 600;
}
.vc-calc .vc-tutorial__close {
  height: 28px;
  border-radius: 8px;
  cursor: pointer;
  user-select: none;
  background: #f9fafb;
  color: #222;
  display: flex;
  width: 23px;
  padding: 0;
  justify-content: center;
  align-items: center;
  line-height: 1;
}
.vc-calc .vc-tutorial__body {
  font-size: 14px;
  line-height: 1.35;
}
.vc-calc .vc-tutorial__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 10px;
  flex-wrap: wrap;
}
.vc-calc .vc-tutorial__nav {
  display: flex;
  gap: 8px;
}
.vc-calc .vc-tutorial__shield {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.45);
  pointer-events: auto;
  z-index: 30;
}
.vc-calc .vc-tutorialSpotlight {
  position: fixed;
  left: 0;
  top: 0;
  width: 0;
  height: 0;
  border-radius: 10px;
  box-shadow: 0 0 0 9999px rgba(0, 0, 0, 0.55);
  pointer-events: none;
  z-index: 9999;
}
.vc-calc__range {
  width: 100%;
}
.vc-calc__stage {
  border: 1px solid var(--vc-border);
  border-radius: 10px;
  background: var(--vc-bg);
  overflow: hidden;
  touch-action: none;
  user-select: none;
  position: relative;
}
.vc-calc--visualization .vc-calc__stage {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.16), rgba(0, 0, 0, 0) 45%) top/100% 44% no-repeat, linear-gradient(90deg, rgba(0, 0, 0, 0.14), rgba(0, 0, 0, 0) 34%) left/24% 100% no-repeat, linear-gradient(270deg, rgba(0, 0, 0, 0.14), rgba(0, 0, 0, 0) 34%) right/24% 100% no-repeat, var(--vc-bg);
}
.vc-calc__svg {
  width: 100%;
  height: min(65vh, 520px);
  display: block;
  position: relative;
  z-index: 1;
}
.vc-calc__zoom {
  display: flex;
  gap: 8px;
  align-items: center;
}
@media (max-width: 767px) {
  .vc-calc__zoom {
    width: 100%;
  }
}
.vc-calc__viewbar {
  position: absolute;
  bottom: 10px;
  right: 10px;
  display: flex;
  gap: 8px;
  align-items: flex-end;
  z-index: 6;
}
@media (max-width: 767px) {
  .vc-calc__viewbar {
    max-width: 95%;
    flex-wrap: wrap;
  }
}
.vc-calc__measure {
  z-index: 2;
  pointer-events: none;
  font-size: 13px;
  font-weight: 600;
}
.vc-calc__modeIndicator {
  position: absolute;
  left: 70px;
  bottom: 10px;
  z-index: 2;
  pointer-events: none;
  font-size: 12px;
  font-weight: 600;
}
@media (max-width: 767px) {
  .vc-calc__modeIndicator {
    left: auto;
    right: 10px;
    bottom: 80px;
  }
}
.vc-calc__box {
  padding: 10px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 1px 1px 3px 1px rgba(0, 0, 0, 0.1215686275);
}
.vc-calc__messages {
  font-size: 13px;
  color: var(--vc-muted);
  min-height: 18px;
}
.vc-calc__results {
  display: grid;
  gap: 6px;
  padding: 10px;
  border: 1px solid var(--vc-border);
  border-radius: 10px;
  background: var(--vc-bg);
  min-width: 0;
}
.vc-calc__result {
  display: flex;
  gap: 8px;
  justify-content: space-between;
  font-size: 14px;
}
.vc-calc__k {
  color: var(--vc-muted);
}
.vc-calc__icon {
  display: block;
  color: #0b2a4a;
}
.vc-calc__btnShortcut {
  font-size: 11px;
  color: var(--vc-muted);
  line-height: 1;
}
.vc-calc__btn svg {
  width: 18px;
  height: 18px;
  display: inline-block;
  vertical-align: middle;
}
.vc-calc__modeIcon--pan {
  display: none;
}
.vc-calc__modeLabel {
  margin-left: 6px;
  vertical-align: middle;
}
.vc-calc__shortcuts {
  flex: 1 0 100%;
  width: 100%;
  margin-top: 8px;
  padding-top: 10px;
  border-top: 1px solid var(--vc-border);
  font-size: 12px;
  color: var(--vc-muted);
}
.vc-calc__shortcutsTitle {
  font-size: 12px;
  font-weight: 600;
  color: var(--vc-text);
  margin-bottom: 6px;
}
.vc-calc__shortcutsList {
  display: grid;
  gap: 4px;
}

/* SVG styling */
.vc-grid line {
  stroke: #d1d5db;
  stroke-width: 0.55;
  vector-effect: non-scaling-stroke;
}
.vc-grid circle {
  fill: #e0dcdc;
}
.vc-grid circle.vc-grid__major {
  fill: #b1b7c1;
}

.vc-path {
  fill: none;
  stroke: #111827;
  stroke-width: 0.8;
  vector-effect: non-scaling-stroke;
}
.vc-path--ghost {
  stroke: #6b7280;
  stroke-dasharray: 2 2;
  opacity: 0.85;
}
.vc-path--visualization {
  stroke: #ff7b00;
  stroke-width: 2.5;
  transform: translateY(-0.6px) translateX(-0.05px);
}

.vc-point {
  fill: #111827;
}

.vc-post {
  fill: none;
  stroke: #111827;
  stroke-width: 0.9;
  vector-effect: non-scaling-stroke;
}

.vc-icon {
  pointer-events: none;
}

.vc-label {
  fill: #a5541c;
  stroke: rgba(255, 255, 255, 0.78);
  stroke-width: 3.5px;
  stroke-linejoin: round;
  paint-order: stroke fill;
  vector-effect: non-scaling-stroke;
  pointer-events: none;
}
.vc-label--ghost {
  fill: #a5541c;
}

.vc-ruler .vc-ruler__bg {
  fill: var(--vc-bg);
  opacity: 0.92;
  pointer-events: none;
}
.vc-ruler line {
  stroke: #9ca3af;
  stroke-width: 0.4;
  vector-effect: non-scaling-stroke;
}
.vc-ruler__label--origin:first-of-type {
  display: none;
}
.vc-ruler text {
  fill: #a5541c;
  stroke: rgba(255, 255, 255, 0.78);
  stroke-width: 3.5px;
  stroke-linejoin: round;
  paint-order: stroke fill;
  vector-effect: non-scaling-stroke;
  pointer-events: none;
}

@media (max-width: 480px) {
  .vc-calc__input {
    width: 120px;
  }
  .vc-calc__layout {
    grid-template-columns: 1fr;
  }
}
.vc-tutorial-header-absolute {
  position: absolute !important;
}

/*# sourceMappingURL=app.css.map */
