@font-face {
  font-family: "Roboto Condensed";
  src: url("/fonts/RobotoCondensed-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto Condensed";
  src: url("/fonts/RobotoCondensed-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --sw-support-bg: #004560;
  --sw-support-dark: #002a3b;
  --sw-support-text: #ffffff;
  --sw-support-yellow: #ffed00;
}

* { box-sizing: border-box; }

html,
body {
  margin: 0;
  min-height: 100%;
  background: var(--sw-support-bg);
  color: var(--sw-support-text);
  font-family: "Roboto Condensed", Arial, sans-serif;
}

body.page-support {
  min-height: 100vh;
  overflow-x: hidden;
}

body.page-support a { color: inherit; text-decoration: none; }
body.page-support button { font-family: "Roboto Condensed", Arial, sans-serif; }

.sw-support-page {
  width: 100%;
  min-height: calc(100vh - 72px);
  background: var(--sw-support-bg);
}

.sw-support-section {
  width: 100%;
  padding: 50px 10px;
  position: relative;
}

.sw-support-content {
  box-sizing: border-box;
  width: 545px;
  max-width: 100%;
  margin: 0 auto;
  color: #fff;
  font-family: "Roboto Condensed", Arial, sans-serif;
  font-size: 14px;
  line-height: 20px;
  font-stretch: condensed;
}

.sw-support-page h1.section-header {
  margin: 0 0 15px;
  color: #fff;
  font-size: 30px;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
}

.sw-support-page .content {
  margin: 0 0 10px;
  color: #fff;
  font-size: 14px;
  line-height: 1.4;
}

.sw-support-page .notification {
  background: #fff;
  color: var(--sw-support-bg);
  padding: 10px 10px;
  margin-bottom: 10px;
  border-radius: 3px;
  font-size: 14px;
  line-height: 20px;
}

.sw-support-page .contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: space-between;
  max-width: 413px;
  flex-direction: column;
}

.sw-support-page .contact-item {
  display: grid;
  grid-template-columns: 40px auto;
  column-gap: 15px;
  justify-content: flex-start;
  width: max-content;
  max-width: 100%;
  align-items: center;
  padding: 15px 0;
  color: #fff;
}

.sw-support-page .item-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.sw-support-page .item-icon svg,
.sw-support-page .live-chat-content svg {
  width: 40px;
  height: 40px;
  display: block;
  fill: currentColor;
}

.sw-support-page .item-link,
.sw-support-page .live_chat_button {
  color: inherit;
}

.sw-support-page .item-link {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  line-height: 1.38;
  min-width: 0;
}

.sw-support-page .item-link b,
.sw-support-page .live_chat_button b {
  font-weight: 700;
}

.sw-support-page .item-link span {
  display: block;
}

.sw-support-page .item-link:hover,
.sw-support-page .item-link:focus,
.sw-support-page .contact-item.chat:hover,
.sw-support-page .live_chat_button:focus {
  color: var(--sw-support-yellow);
  outline: 0;
}

.sw-support-page .item-link:hover b,
.sw-support-page .item-link:focus b,
.sw-support-page .contact-item.chat:hover b,
.sw-support-page .live_chat_button:focus b {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.sw-support-page .live_chat_button {
  display: block;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
}

.sw-support-page .live-chat-content {
  cursor: pointer;
  display: grid;
  align-items: center;
  grid-template-columns: 40px 1fr;
  column-gap: 15px;
  color: inherit;
  padding: 0;
}

.sw-support-toast {
  position: fixed;
  left: 50%;
  bottom: 84px;
  transform: translateX(-50%);
  z-index: 10000;
  width: min(420px, calc(100vw - 28px));
  padding: 13px 16px;
  border-radius: 3px;
  background: #fff;
  color: var(--sw-support-bg);
  box-shadow: 0 12px 30px rgba(0, 0, 0, .28);
  font-size: 14px;
  line-height: 18px;
  font-weight: 700;
  text-align: center;
}

@media (max-width: 1279px) {
  .sw-support-page {
    min-height: calc(100vh - 62px);
    padding-bottom: 76px;
  }

  .sw-support-section {
    padding: 30px 10px;
  }

  .sw-support-content {
    width: 100%;
  }

  .sw-support-page .contact-list {
    max-width: 100%;
  }
}

@media (max-width: 767px) {
  body.page-support {
    background: var(--sw-support-bg);
  }

  .sw-support-page {
    min-height: calc(100vh - 57px);
    padding-bottom: 84px;
  }

  .sw-support-section {
    padding: 28px 12px 26px;
  }

  .sw-support-page h1.section-header {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .sw-support-page .content,
  .sw-support-page .notification {
    font-size: 14px;
    line-height: 20px;
  }

  .sw-support-page .contact-item {
    width: 100%;
    grid-template-columns: 40px minmax(0, 1fr);
    padding: 15px 0;
  }

  .sw-support-page .item-link,
  .sw-support-page .live-chat-content {
    min-width: 0;
  }

  .sw-support-page .item-link span {
    overflow-wrap: anywhere;
  }
}
