@import url("https://fonts.googleapis.com/css2?family=Comfortaa:wght@300..700&display=swap");
body {
  font-family: "Comfortaa", sans-serif;
  font-optical-sizing: auto;
}

.stepper-container {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 768px) {
  .stepper-container {
    height: auto;
  }
}

.stepper-content {
  background: #ffffff;
  padding: 2rem;
  border-radius: 0.05rem;
  box-shadow: 0 0 20px #0000001a;
  width: 90%;
  max-width: 1000px;
  height: auto;
  margin: 1rem;
}

.stepper-pins {
  display: flex;
  gap: 10px;
  margin-top: 2rem;
  margin-bottom: 3.5rem;
  justify-content: space-between;
}

.stepper-pin {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
}

.stepper-btn-group {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
}

.stepper-pin button {
  border: none;
  background: none;
  text-transform: uppercase;
  color: #1d1d1d;
  font-size: 16px;
  font-family: "Comfortaa", sans-serif;
}

.stepper-pin button:hover {
  cursor: pointer;
}

.stepper-pin-icon {
  padding: 0.95rem;
  border-radius: 50%;
}

.stepper-pin-icon img {
  height: 2.5rem;
  width: 2.5rem;
  filter: invert(1);
}

.stepper-pin:nth-child(1) .stepper-pin-icon {
  background-color: #61c0ca;
}

.stepper-pin:nth-child(2) .stepper-pin-icon {
  background-color: #7bbe6b;
}

.stepper-pin:nth-child(3) .stepper-pin-icon {
  background-color: #e16a65;
}

.chip-info-fields-group {
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: 1rem 0rem;
  gap: 1rem;
}

.result-btns-block {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  flex-wrap: wrap;
  margin: 1rem 0rem;
}

.result-btns-block > * {
  flex: 1;
}

.result-content {
  display: flex;
  gap: 1rem;
}

.result-content .result-left-block {
  flex: 1 1 25%;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  gap: 1rem;
}

.result-content .result-main-block {
  flex: 1 1 75%;
  height: auto;
  border-style: solid;
  border-radius: 6px;
  border-width: 1px;
  border-color: #c3c3c3;
  padding: 1rem 0.75rem;
}

@media (max-width: 768px) {
  .result-content {
    flex-wrap: wrap;
  }
  .result-content .result-left-block,
.result-content .result-main-block {
    flex: 1 1 100%;
  }
}

.result-left-block-card {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-around;
  border-radius: 6px;
  transition: opacity 0.3s ease;
  padding: 1rem 0.75rem;
  color: #ffffff;
}

.result-left-block-card:hover {
  cursor: pointer;
  opacity: 0.75;
}

.result-left-block-card:nth-child(1) {
  background: #61c0ca;
}

.result-left-block-card:nth-child(2) {
  background: #7bbe6b;
}

.result-left-block-card:nth-child(3) {
  background: #e16a65;
}

.pk-table {
  border: 1px solid #ffffff !important;
  border-collapse: collapse;
}

.pk-table th, .pk-table td {
  border: 1px solid #ffffff !important;
  font-size: 0.75rem;
  padding: 0.15rem 0.25rem;
}

.pk-table thead, .pk-table tbody, .pk-table tfoot, .pk-table tr {
  border: none !important;
}
