:root {
  --text: #101828;
  --link: #4f39f6;
  --link-hover: #4533cc;
  --white: white;
  --seporator: #00000014;
  --red-hover: #be123c;
  --red: #e11d48;
  --transparent: #0000;
  --text-secondary: #6a7282;
  --text-placeholder: #abb0bb;
  --modal-overlay: #10182899;
}

.w-layout-blockcontainer {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.w-layout-hflex {
  flex-direction: row;
  align-items: flex-start;
  display: flex;
}

.w-layout-vflex {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.w-checkbox {
  margin-bottom: 5px;
  padding-left: 20px;
  display: block;
}

.w-checkbox:before {
  content: " ";
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-checkbox:after {
  content: " ";
  clear: both;
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-checkbox-input {
  float: left;
  margin: 4px 0 0 -20px;
  line-height: normal;
}

.w-checkbox-input--inputType-custom {
  border: 1px solid #ccc;
  border-radius: 2px;
  width: 12px;
  height: 12px;
}

.w-checkbox-input--inputType-custom.w--redirected-checked {
  background-color: #3898ec;
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/static/custom-checkbox-checkmark.589d534424.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-color: #3898ec;
}

.w-checkbox-input--inputType-custom.w--redirected-focus {
  box-shadow: 0 0 3px 1px #3898ec;
}

@media screen and (max-width: 991px) {
  .w-layout-blockcontainer {
    max-width: 728px;
  }
}

@media screen and (max-width: 767px) {
  .w-layout-blockcontainer {
    max-width: none;
  }
}

body {
  color: var(--text);
  flex-flow: column;
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  display: flex;
}

h1 {
  letter-spacing: -.04em;
  flex: 1;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 30px;
  font-weight: 700;
  line-height: 140%;
}

h2 {
  color: var(--text);
  margin-top: 0;
  margin-bottom: 16px;
  font-size: 20px;
  font-weight: 600;
  line-height: 140%;
}

h3 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 600;
  line-height: 30px;
}

p {
  margin-bottom: 10px;
}

a {
  color: var(--link);
  text-align: left;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  transition: all .3s;
  display: flex;
}

a:hover {
  text-decoration: underline;
}

.navigation-header {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  flex-flow: row;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  padding: 22px 0;
  display: flex;
}

.container {
  flex-flow: column;
  justify-content: flex-start;
  align-items: stretch;
  max-width: 1200px;
  padding: 16px 0;
  display: flex;
  position: static;
}

.container.pagehero {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-top: 24px;
  padding-bottom: 0;
}

.container.login {
  justify-content: center;
  align-items: center;
  height: 100svh;
}

.container.gap24 {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
}

.navigation-mid {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex: 1;
  justify-content: center;
  align-items: center;
  margin-left: 16px;
  margin-right: 16px;
}

.navigation-logo {
  width: 20px;
}

.navigation-link {
  opacity: .5;
  color: var(--text);
  border-radius: 8px;
  padding: 4px 8px;
  font-weight: 500;
}

.navigation-link:hover {
  opacity: 100;
  color: var(--text);
  text-decoration: none;
}

.navigation-link.w--current {
  opacity: 100;
}

.navigation-logo-link {
  justify-content: flex-start;
  align-items: center;
}

.navigation-trailing {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex: 1;
  justify-content: flex-end;
  align-items: center;
  min-width: 120px;
}

.button {
  border: 1px solid var(--link-hover);
  background-color: var(--link);
  color: var(--white);
  text-align: center;
  border-radius: 6px;
  justify-content: center;
  align-items: center;
  height: 40px;
  padding: 8px 12px;
  font-weight: 500;
  line-height: 20px;
  transition: all .3s;
  display: flex;
}

.button:hover {
  background-color: var(--link-hover);
  text-decoration: none;
}

.button.light {
  border: 1px solid var(--seporator);
  background-color: var(--white);
  color: var(--text);
}

.button.light:hover {
  background-color: var(--seporator);
}

.button.red {
  border-color: var(--red-hover);
  background-color: var(--red);
  flex: 0 auto;
}

.button.red:hover {
  border-color: var(--red-hover);
  background-color: var(--red-hover);
}

.button.full-width {
  align-self: stretch;
}

.button.left {
  align-self: flex-start;
}

.button.hidden {
  border-style: solid;
  border-color: var(--white);
  background-color: var(--transparent);
  color: var(--link);
}

.button.hidden:hover {
  border-color: var(--seporator);
  -webkit-text-stroke-color: var(--link-hover);
}

.table-row {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  border-top: 1px solid var(--seporator);
  flex-flow: row;
  justify-content: flex-start;
  align-self: stretch;
  align-items: center;
  margin-left: 0;
  padding-top: 12px;
  padding-bottom: 12px;
  display: flex;
}

.text-12-secondary {
  pointer-events: auto;
  color: var(--text-secondary);
  align-self: stretch;
  font-size: 12px;
  font-weight: 400;
  line-height: 20px;
}

.table-leading-cell {
  flex: 1;
  justify-content: center;
  align-items: flex-start;
}

.text-title-link {
  pointer-events: auto;
  color: var(--text);
  text-align: left;
  justify-content: flex-start;
  align-self: stretch;
  align-items: center;
  font-weight: 600;
}

.text-title-link:hover {
  color: var(--link-hover);
  text-decoration: none;
}

.footer-spacer {
  min-height: 120px;
}

.section {
  border: 1px none var(--text);
  padding-left: 16px;
  padding-right: 16px;
}

.section-header {
  z-index: 10;
  border-bottom: 1px none var(--seporator);
  background-color: var(--white);
  margin-left: 16px;
  margin-right: 16px;
  position: static;
  inset: 0% 0% auto;
}

.form-filters {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 0;
  display: flex;
}

.form-filters.margin-r-16 {
  margin-right: 16px;
}

.input {
  border: 1px solid var(--seporator);
  background-color: var(--white);
  color: var(--text);
  border-radius: 6px;
  height: 40px;
  margin-bottom: 0;
  padding: 8px 12px;
  font-weight: 400;
  transition: all .3s;
}

.input:hover {
  border-color: var(--text);
}

.input:focus {
  border-width: 1px;
  border-color: var(--link);
  color: var(--text);
}

.input:focus-visible {
  color: var(--text);
}

.input[data-wf-focus-visible] {
  color: var(--text);
}

.input::placeholder {
  color: var(--text-placeholder);
  -webkit-text-stroke-color: var(--text-secondary);
}

.input.status {
  width: 120px;
}

.input.login {
  background-image: url('../images/cnvg_small_logo.svg');
  background-position: 8px;
  background-repeat: no-repeat;
  background-size: 18px;
  padding-left: 36px;
}

.input._140 {
  width: 140px;
}

.form-block {
  align-self: auto;
  margin-bottom: 0;
}

.hero-controlls {
  flex-flow: row;
  flex: 0 auto;
  justify-content: flex-start;
  align-self: stretch;
  align-items: center;
}

.breadcrumb-link {
  color: var(--text-secondary);
  margin-right: 8px;
  font-size: 11px;
  font-weight: 400;
  line-height: 20px;
}

.breadcrumb-link.current {
  border-radius: 20px;
}

.breadcrumb-link.color-seporator {
  color: var(--seporator);
}

.form-login {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  min-width: 300px;
  display: flex;
}

.form-alert-message {
  background-color: var(--seporator);
  color: var(--text);
  text-align: center;
  border-radius: 6px;
  font-weight: 400;
}

.input-label {
  color: var(--text);
  flex: 0 auto;
  align-self: auto;
  margin-bottom: 4px;
  font-size: 14px;
  font-weight: 500;
  display: block;
}

.input-label.checkbox-fix {
  margin-bottom: 0;
}

.form-exchage-profile {
  flex-flow: column;
  display: flex;
}

.input-group {
  max-width: 600px;
  margin-bottom: 16px;
}

.input-group.horisontal {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
}

.input-hint {
  color: var(--text-secondary);
  align-self: stretch;
  margin-top: 4px;
  margin-bottom: 4px;
  font-size: 12px;
  font-weight: 300;
  line-height: 20px;
}

.seporator {
  background-color: var(--seporator);
  pointer-events: auto;
  width: 100%;
  height: 1px;
  margin-top: 16px;
  margin-bottom: 16px;
}

.input-hint-link {
  font-size: 12px;
  font-weight: 400;
  line-height: 20px;
}

.input-timepicker-checkbox {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex-flow: row;
  flex: 1;
  justify-content: flex-start;
  align-self: center;
  align-items: center;
  margin-bottom: 0;
  padding-left: 0;
  display: flex;
}

.checkbox-daypicker {
  border: 1px solid var(--seporator);
  border-radius: 4px;
  align-self: center;
  width: 16px;
  height: 16px;
  margin-top: 0;
  margin-left: 0;
  padding: 1px;
}

.checkbox-daypicker.w--redirected-checked {
  border-color: var(--link);
  background-color: var(--link);
}

.checkbox-daypicker.w--redirected-focus {
  border-color: var(--link);
}

.flex-block {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  justify-content: space-between;
  align-items: flex-start;
}

.modal-wrapper {
  z-index: 99;
  background-color: var(--modal-overlay);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  transition: all .3s;
  display: none;
  position: fixed;
  inset: 0%;
}

.modal-body {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  background-color: var(--white);
  border-radius: 12px;
  flex-flow: column;
  flex: 1;
  justify-content: center;
  align-items: center;
  max-width: 300px;
  padding: 24px;
  display: flex;
  box-shadow: 0 8px 16px #00000026;
}

.modal-heading {
  text-align: center;
  align-self: stretch;
  margin-bottom: 0;
}

.utility-page-wrap {
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  max-height: 100%;
  display: flex;
}

.utility-page-content {
  text-align: center;
  flex-direction: column;
  width: 260px;
  display: flex;
}

.utility-page-form {
  flex-direction: column;
  align-items: stretch;
  display: flex;
}

.text-stat-label {
  color: var(--text-secondary);
  margin-bottom: 2px;
  font-size: 12px;
  line-height: 20px;
}

.stats-cell-block {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  flex: 1;
  padding: 16px;
}

.text-stats-outlinks-small {
  background-image: url('../images/arrow-square-in-bold.svg');
  background-position: 0 60%;
  background-repeat: no-repeat;
  background-size: 16px;
  padding-left: 20px;
  font-weight: 600;
}

.icon-ip {
  width: 18px;
}

.table-header {
  border-top: 1px solid var(--seporator);
  align-self: stretch;
  padding-top: 24px;
  padding-bottom: 16px;
  font-weight: 600;
}

.table-list {
  align-self: auto;
  margin-top: 0;
  margin-bottom: 0;
}

.text-secondary {
  color: var(--text-secondary);
}

.table-cell {
  flex: 1;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.table-cell.primary {
  max-width: 200px;
  font-weight: 500;
}

.table-cell.link {
  color: var(--text-secondary);
}

.table-cell.link:hover {
  color: var(--link);
}

.table-cell.secondary {
  color: var(--text-secondary);
}

.navigation-breadcrumbs {
  flex-flow: wrap;
  justify-content: flex-start;
  align-self: stretch;
  align-items: center;
}

.stats-board {
  border: 1px solid var(--seporator);
  background-color: var(--white);
  border-radius: 6px;
  justify-content: flex-start;
  align-items: center;
}

.text-stats-big {
  align-self: stretch;
  font-size: 24px;
  font-weight: 600;
  line-height: 130%;
}

.text-stats-big.outlinks {
  background-image: url('../images/arrow-square-in-bold.svg');
  background-position: 0%;
  background-repeat: no-repeat;
  background-size: 28px 30px;
  padding-left: 34px;
}

.navigation-dropdown {
  background-color: var(--seporator);
  border-radius: 6px;
  padding: 4px 8px;
}

.navigation-dropdown:hover {
  display: block;
}

.navigation-dropdown.w--open {
  padding: 0;
}

.navigation-dropdown-list {
  background-color: var(--transparent);
  border-radius: 8px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: stretch;
  margin-top: 0;
  display: none;
  inset: auto 0 auto auto;
  overflow: hidden;
}

.navigation-dropdown-list.w--open {
  border-radius: 6px;
}

.navigation-dropdown-link {
  background-color: var(--text);
  color: var(--text-placeholder);
  flex: 1;
  order: 0;
  justify-content: center;
  align-self: flex-start;
  align-items: center;
  width: 120px;
  padding: 8px 16px;
}

.navigation-dropdown-link:hover {
  color: var(--white);
  text-decoration: none;
}

.navigation-dropdown-link.w--current {
  color: var(--text-placeholder);
}

.navigation-dropdown-trigger {
  background-color: var(--seporator);
  border-radius: 6px;
  padding: 4px 8px;
  display: block;
}

.dropdown {
  flex-flow: column;
  order: 1;
  justify-content: center;
  align-items: flex-end;
  display: none;
  position: relative;
}

.navigation-leading {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  justify-content: flex-start;
  align-items: center;
}

.log-userinfo {
  flex: 1;
}

@media screen and (max-width: 767px) {
  h1 {
    align-self: stretch;
    margin-top: 0;
    margin-bottom: 0;
    font-size: 26px;
  }

  .navigation-header {
    justify-content: space-around;
    align-items: center;
  }

  .navigation-trailing {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
  }

  .table-row {
    justify-content: flex-start;
    align-items: center;
  }

  .table-row.compact {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    flex-flow: column;
    justify-content: center;
    align-items: flex-start;
  }

  .section {
    padding-left: 12px;
    padding-right: 12px;
  }

  .hero-controlls {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .icon-ip {
    display: none;
  }

  .table-cell.primary {
    align-self: stretch;
  }

  .table-cell.link, .table-cell.secondary {
    flex: 0 auto;
  }

  .navigation-dropdown-trigger {
    justify-content: flex-end;
    align-items: center;
  }

  .dropdown {
    display: none;
  }

  .log-userinfo {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    align-self: stretch;
  }
}

@media screen and (max-width: 479px) {
  .navigation-header {
    justify-content: flex-start;
    padding-top: 16px;
    padding-bottom: 16px;
    display: flex;
  }

  .container.pagehero {
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding-top: 0;
  }

  .navigation-mid {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    flex: 0 auto;
  }

  .navigation-logo-link.w--current, .navigation-trailing {
    min-width: auto;
  }

  .form-filters {
    align-self: stretch;
  }

  .hero-controlls {
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .navigation-leading {
    grid-column-gap: 4px;
    grid-row-gap: 4px;
  }

  .log-userinfo {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
    align-self: stretch;
  }
}


