/* Start custom CSS for html, class: .elementor-element-610aa65 */.emsi-article {
  --emsi-text: #202833;
  --emsi-muted: #5d6975;
  --emsi-border: #dce3e8;
  --emsi-light: #f5f8fa;
  --emsi-blue: #075fa8;
  --emsi-blue-dark: #064773;
  --emsi-green: #177245;
  --emsi-green-light: #edf8f1;
  --emsi-yellow: #fff7dc;
  --emsi-yellow-border: #e2bb38;
  --emsi-red: #982b31;
  --emsi-red-light: #fff1f1;
  --emsi-orange: #b85d12;

  max-width: 1120px;
  margin: 0 auto;
  color: var(--emsi-text);
  font-size: 17px;
  line-height: 1.72;
  overflow-wrap: anywhere;
}

.emsi-article *,
.emsi-article *::before,
.emsi-article *::after {
  box-sizing: border-box;
}

.emsi-article h2,
.emsi-article h3 {
  color: var(--emsi-text);
  line-height: 1.3;
  scroll-margin-top: 100px;
}

.emsi-article h2 {
  margin: 46px 0 18px;
  font-size: clamp(26px, 3vw, 34px);
}

.emsi-article h3 {
  margin: 28px 0 12px;
  font-size: clamp(20px, 2.2vw, 25px);
}

.emsi-article p {
  margin: 0 0 18px;
}

.emsi-article ul,
.emsi-article ol {
  margin: 0 0 24px;
  padding-left: 26px;
}

.emsi-article li {
  margin-bottom: 9px;
}

.emsi-article a {
  color: var(--emsi-blue);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.emsi-article a:hover,
.emsi-article a:focus-visible {
  color: var(--emsi-blue-dark);
}

.emsi-answer {
  margin-bottom: 24px;
  padding: clamp(22px, 4vw, 34px);
  background: var(--emsi-green-light);
  border: 1px solid #b9ddc8;
  border-left: 6px solid var(--emsi-green);
  border-radius: 16px;
}

.emsi-answer p:last-child {
  margin-bottom: 0;
}

.emsi-answer__label {
  margin-bottom: 10px !important;
  color: var(--emsi-green);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.emsi-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 24px 0 30px;
}

.emsi-fact {
  display: flex;
  min-height: 112px;
  padding: 18px;
  flex-direction: column;
  justify-content: space-between;
  background: #fff;
  border: 1px solid var(--emsi-border);
  border-radius: 13px;
  box-shadow: 0 7px 20px rgba(31, 50, 66, 0.05);
}

.emsi-fact span {
  color: var(--emsi-muted);
  font-size: 14px;
}

.emsi-fact strong {
  font-size: 20px;
  line-height: 1.3;
}

.emsi-warning,
.emsi-note,
.emsi-danger {
  margin: 26px 0;
  padding: 20px 22px;
  border-radius: 12px;
}

.emsi-warning {
  background: var(--emsi-yellow);
  border: 1px solid var(--emsi-yellow-border);
}

.emsi-note {
  background: var(--emsi-light);
  border: 1px solid var(--emsi-border);
}

.emsi-danger {
  color: #711d24;
  background: var(--emsi-red-light);
  border: 1px solid #e0aaaa;
  border-left: 5px solid var(--emsi-red);
}

.emsi-toc {
  margin: 32px 0 40px;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--emsi-border);
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(25, 44, 62, 0.06);
}

.emsi-toc__title {
  margin-bottom: 12px !important;
  font-size: 20px;
  font-weight: 800;
}

.emsi-toc ol {
  margin-bottom: 0;
}

.emsi-checklist {
  padding-left: 0 !important;
  list-style: none;
}

.emsi-checklist li {
  position: relative;
  padding-left: 30px;
}

.emsi-checklist li::before {
  content: "✓";
  position: absolute;
  top: 0;
  left: 0;
  color: var(--emsi-green);
  font-weight: 900;
}

.emsi-table-wrap {
  width: 100%;
  margin: 24px 0 30px;
  overflow-x: auto;
  border: 1px solid var(--emsi-border);
  border-radius: 14px;
  -webkit-overflow-scrolling: touch;
}

.emsi-table {
  width: 100%;
  min-width: 840px;
  margin: 0;
  border-collapse: collapse;
  background: #fff;
}

.emsi-table--wide {
  min-width: 1060px;
}

.emsi-table th,
.emsi-table td {
  padding: 15px 16px;
  text-align: left;
  vertical-align: top;
  border-right: 1px solid var(--emsi-border);
  border-bottom: 1px solid var(--emsi-border);
}

.emsi-table th:last-child,
.emsi-table td:last-child {
  border-right: 0;
}

.emsi-table tr:last-child td {
  border-bottom: 0;
}

.emsi-table th {
  background: #edf4f9;
  font-size: 15px;
  line-height: 1.4;
}

.emsi-table tbody tr:nth-child(even) {
  background: #fafcfd;
}

.emsi-socket {
  position: relative;
  width: min(350px, 100%);
  margin: 30px auto;
  padding: 58px 34px;
  background: #f3f5f7;
  border: 1px solid var(--emsi-border);
  border-radius: 50%;
  box-shadow: inset 0 0 0 8px #fff;
}

.emsi-socket__working {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 68px;
}

.emsi-socket__working > div {
  text-align: center;
}

.emsi-socket__working span {
  display: flex;
  width: 52px;
  height: 52px;
  margin: 0 auto 9px;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: #27313a;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 900;
}

.emsi-socket__working small,
.emsi-socket__earth small {
  display: block;
  color: var(--emsi-muted);
  line-height: 1.35;
}

.emsi-socket__earth {
  position: absolute;
  left: 50%;
  text-align: center;
  transform: translateX(-50%);
}

.emsi-socket__earth--top {
  top: 12px;
}

.emsi-socket__earth--bottom {
  bottom: 12px;
}

.emsi-socket__earth span {
  display: flex;
  min-width: 54px;
  min-height: 24px;
  margin: 0 auto 3px;
  padding: 3px 9px;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: var(--emsi-green);
  border-radius: 8px;
  font-size: 11px;
  font-weight: 900;
}

.emsi-decision,
.emsi-voltage,
.emsi-input-grid,
.emsi-class-grid,
.emsi-device-grid,
.emsi-problems {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 24px 0 30px;
}

.emsi-decision {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.emsi-decision section,
.emsi-voltage > div,
.emsi-input-card,
.emsi-class-grid section,
.emsi-device-grid section,
.emsi-problems section {
  padding: 21px;
  background: #fff;
  border: 1px solid var(--emsi-border);
  border-radius: 13px;
}

.emsi-decision section {
  border-top-width: 5px;
}

.emsi-decision__ok {
  border-top-color: var(--emsi-green) !important;
}

.emsi-decision__check {
  border-top-color: var(--emsi-orange) !important;
}

.emsi-decision__yes {
  border-top-color: var(--emsi-red) !important;
}

.emsi-decision h3,
.emsi-class-grid h3,
.emsi-device-grid h3,
.emsi-problems h3 {
  margin-top: 0;
}

.emsi-decision p:last-child,
.emsi-class-grid ul:last-child,
.emsi-device-grid p:last-child,
.emsi-problems ul:last-child,
.emsi-problems ol:last-child {
  margin-bottom: 0;
}

.emsi-label {
  margin: 24px 0;
  padding: 20px;
  text-align: center;
  background: #edf4f9;
  border: 1px solid #b9cfde;
  border-radius: 12px;
}

.emsi-label code,
.emsi-input-card code {
  color: #17364d;
  font-size: 15px;
  font-weight: 700;
  white-space: normal;
}

.emsi-voltage > div {
  text-align: center;
  background: var(--emsi-light);
}

.emsi-voltage span,
.emsi-voltage strong {
  display: block;
}

.emsi-voltage span {
  margin-bottom: 7px;
  color: var(--emsi-muted);
}

.emsi-voltage strong {
  font-size: 23px;
}

.emsi-input-card {
  border-top-width: 5px;
}

.emsi-input-card--safe {
  border-top-color: var(--emsi-green);
}

.emsi-input-card--danger {
  border-top-color: var(--emsi-red);
}

.emsi-input-card--check {
  border-top-color: var(--emsi-orange);
}

.emsi-input-card code {
  display: inline-block;
  margin-bottom: 14px;
  padding: 7px 10px;
  background: #edf4f9;
  border-radius: 7px;
}

.emsi-input-card p:last-child {
  margin-bottom: 0;
}

.emsi-class-grid__symbol {
  display: inline-flex;
  min-width: 48px;
  min-height: 48px;
  margin-bottom: 14px;
  padding: 6px;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: var(--emsi-blue);
  border-radius: 10px;
  font-size: 22px;
  font-weight: 900;
}

.emsi-power {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 26px 0;
}

.emsi-power > div {
  padding: 22px;
  text-align: center;
  background: var(--emsi-light);
  border: 1px solid var(--emsi-border);
  border-radius: 13px;
}

.emsi-power span,
.emsi-power strong {
  display: block;
}

.emsi-power span {
  margin-bottom: 7px;
  color: var(--emsi-muted);
}

.emsi-power strong {
  font-size: 22px;
}

.emsi-formula {
  max-width: 680px;
  margin: 25px auto;
  padding: 22px;
  text-align: center;
  background: #edf4f9;
  border: 1px solid #b9cfde;
  border-radius: 13px;
}

.emsi-formula strong {
  font-size: clamp(22px, 4vw, 31px);
  line-height: 1.3;
}

.emsi-problems section {
  background: var(--emsi-light);
}

.emsi-myth {
  margin: 18px 0;
  padding: 20px 22px;
  background: #fff;
  border: 1px solid var(--emsi-border);
  border-radius: 12px;
}

.emsi-myth h3 {
  margin-top: 0;
}

.emsi-myth p:last-child {
  margin-bottom: 0;
}

.emsi-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  margin: 46px 0;
  padding: clamp(24px, 5vw, 40px);
  color: #fff;
  background: linear-gradient(135deg, #075fa8, #073e6e);
  border-radius: 18px;
}

.emsi-cta h2 {
  margin-top: 0;
  color: #fff;
}

.emsi-cta p:last-child {
  margin-bottom: 0;
}

.emsi-cta__actions {
  display: flex;
  min-width: 210px;
  flex-direction: column;
  gap: 12px;
}

.emsi-button {
  display: inline-flex;
  min-height: 50px;
  padding: 12px 22px;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
  border-radius: 10px;
  font-weight: 800;
  text-align: center;
  text-decoration: none !important;
}

.emsi-button--primary {
  color: var(--emsi-blue-dark) !important;
  background: #fff;
}

.emsi-button--secondary {
  color: #fff !important;
  background: transparent;
}

.emsi-button--secondary:hover,
.emsi-button--secondary:focus-visible {
  color: var(--emsi-blue-dark) !important;
  background: #fff;
}

.emsi-documents {
  padding: 22px;
  background: var(--emsi-light);
  border: 1px solid var(--emsi-border);
  border-radius: 14px;
}

.emsi-documents ul:last-child {
  margin-bottom: 0;
}

.emsi-faq {
  margin-top: 22px;
}

.emsi-faq details {
  margin-bottom: 12px;
  background: #fff;
  border: 1px solid var(--emsi-border);
  border-radius: 12px;
  overflow: hidden;
}

.emsi-faq summary {
  position: relative;
  padding: 18px 52px 18px 20px;
  cursor: pointer;
  font-weight: 800;
  line-height: 1.45;
  list-style: none;
}

.emsi-faq summary::-webkit-details-marker {
  display: none;
}

.emsi-faq summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 20px;
  color: var(--emsi-blue);
  font-size: 26px;
  line-height: 1;
  transform: translateY(-50%);
}

.emsi-faq details[open] summary::after {
  content: "−";
}

.emsi-faq details > div {
  padding: 0 20px 18px;
}

.emsi-faq details p:last-child {
  margin-bottom: 0;
}

.emsi-related {
  margin-top: 42px;
  padding: clamp(22px, 4vw, 32px);
  background: var(--emsi-light);
  border: 1px solid var(--emsi-border);
  border-radius: 16px;
}

.emsi-related h2 {
  margin-top: 0;
}

.emsi-related ul {
  margin-bottom: 0;
}

@media (max-width: 920px) {
  .emsi-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .emsi-decision,
  .emsi-power {
    grid-template-columns: 1fr;
  }

  .emsi-cta {
    grid-template-columns: 1fr;
  }

  .emsi-cta__actions {
    width: 100%;
  }
}

@media (max-width: 720px) {
  .emsi-article {
    font-size: 16px;
    line-height: 1.68;
  }

  .emsi-voltage,
  .emsi-input-grid,
  .emsi-class-grid,
  .emsi-device-grid,
  .emsi-problems {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .emsi-facts {
    grid-template-columns: 1fr;
  }

  .emsi-fact {
    min-height: 92px;
  }

  .emsi-answer,
  .emsi-warning,
  .emsi-note,
  .emsi-danger,
  .emsi-toc,
  .emsi-related,
  .emsi-documents {
    padding: 18px;
    border-radius: 10px;
  }

  .emsi-article h2 {
    margin-top: 38px;
  }

  .emsi-table th,
  .emsi-table td {
    padding: 13px;
  }

  .emsi-socket {
    padding: 54px 20px;
  }

  .emsi-socket__working {
    gap: 34px;
  }

  .emsi-socket__working span {
    width: 46px;
    height: 46px;
  }

  .emsi-faq summary {
    padding: 16px 48px 16px 16px;
  }

  .emsi-faq summary::after {
    right: 16px;
  }

  .emsi-faq details > div {
    padding: 0 16px 16px;
  }
}/* End custom CSS */